:root {
  --cream: #FBF6EE;
  --carrot: #E8743B;
  --carrot-dark: #C85A26;
  --pea: #5C8A5A;
  --pea-light: #DCE9D5;
  --ink: #2E2A26;
  --ink-soft: #6B655E;
  --line: #E5DCC9;
  --white: #FFFFFF;
  --lvl1: #3F8F4E; --lvl1-bg: #E3F0E0;
  --lvl2: #8BB04A; --lvl2-bg: #EFF4E5;
  --lvl3: #E0B23C; --lvl3-bg: #FBF1D9;
  --lvl4: #D9772E; --lvl4-bg: #FBE9DA;
  --lvl5: #C84A3B; --lvl5-bg: #FBE4DF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251,246,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--line);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-size: 22px; font-weight: 900; color: var(--ink);
  text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--carrot); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
}

.nav-link {
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  text-decoration: none; padding: 6px 12px; border-radius: 8px;
  transition: color 0.15s, background 0.15s; cursor: pointer; border: none; background: none;
}
.nav-link:hover { color: var(--ink); background: var(--line); }

.nav-cta {
  font-size: 13px; font-weight: 800; color: white;
  background: var(--carrot); border: none; cursor: pointer;
  padding: 8px 18px; border-radius: 20px;
  transition: background 0.15s; text-decoration: none;
}
.nav-cta:hover { background: var(--carrot-dark); }

.nav-link-secondary { color: var(--ink-soft); }

/* Hamburger button, hidden on desktop, shown on small screens via media query */
.nav-toggle {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  width: 38px; height: 38px;
  border: none; background: none; cursor: pointer;
  border-radius: 8px;
}
.nav-toggle:hover { background: var(--line); }
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle-open span:nth-child(2) { opacity: 0; }
.nav-toggle-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #F0E8D8 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pea-light) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pea-light); color: var(--pea);
  font-size: 12px; font-weight: 800; padding: 5px 12px;
  border-radius: 20px; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; line-height: 1.1;
  color: var(--ink); margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--carrot);
  position: relative; display: inline-block;
}

.hero-sub {
  font-size: 17px; color: var(--ink-soft);
  line-height: 1.65; margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--carrot); color: white;
  font-size: 15px; font-weight: 800;
  padding: 14px 28px; border-radius: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--carrot-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-soft); font-size: 14px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer; background: none;
  padding: 14px 4px;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--ink); }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.phone-mockup {
  width: 260px; height: 520px;
  background: var(--ink);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 32px 64px rgba(46,42,38,0.25), 0 0 0 1px rgba(46,42,38,0.1);
  position: relative;
}

.phone-screen {
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.phone-notch {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 16px;
  background: var(--ink); border-radius: 0 0 10px 10px;
  z-index: 5;
}

.phone-header {
  padding: 22px 16px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.ph-logo { font-size: 16px; font-weight: 900; color: var(--ink); }
.ph-logo span { color: var(--carrot); }
.ph-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pea-light); display: flex; align-items: center;
  justify-content: center; font-size: 14px;
}

.phone-content { flex: 1; padding: 12px 14px; overflow: hidden; }

.ph-bsel {
  background: white; border-radius: 12px; border: 1.5px solid var(--line);
  padding: 8px 10px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.ph-bav { width: 26px; height: 26px; border-radius: 50%; background: var(--pea-light); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.ph-bn { font-size: 10px; font-weight: 800; color: var(--ink); }
.ph-ba { font-size: 8.5px; color: var(--ink-soft); }
.ph-bch { margin-left: auto; font-size: 9px; font-weight: 700; color: var(--carrot); }

.ph-cards { display: flex; gap: 8px; margin-bottom: 8px; }
.ph-scan { flex: 1; background: var(--carrot); border-radius: 14px; padding: 14px 10px; color: white; }
.ph-scan .pci { font-size: 22px; margin-bottom: 4px; }
.ph-scan .pcl { font-size: 11px; font-weight: 800; }
.ph-search { flex: 1; background: white; border-radius: 14px; padding: 14px 10px; border: 1.5px solid var(--line); }
.ph-search .pci { font-size: 22px; margin-bottom: 4px; }
.ph-search .pcl { font-size: 11px; font-weight: 800; color: var(--ink); }

.ph-result {
  background: white; border-radius: 12px; border: 1.5px solid var(--line);
  padding: 10px;
}
.ph-prod { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ph-thumb { width: 36px; height: 36px; border-radius: 8px; background: var(--pea-light); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ph-pname { font-size: 10px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.ph-pbrand { font-size: 8.5px; color: var(--ink-soft); }
.ph-lvl { display: flex; align-items: center; gap: 6px; background: var(--lvl1-bg); border-radius: 8px; padding: 7px 9px; }
.ph-ldot { width: 22px; height: 22px; border-radius: 50%; background: var(--lvl1); display: flex; align-items: center; justify-content: center; font-size: 10px; }
.ph-ltitle { font-size: 10px; font-weight: 800; color: #2C5C2F; }
.ph-lsub { font-size: 8.5px; color: #2C5C2F; opacity: 0.8; }

.floating-badge {
  position: absolute; top: 40px; right: -24px;
  background: white; border-radius: 16px; padding: 12px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1.5px solid var(--line);
  font-size: 12px; font-weight: 700; color: var(--ink);
  white-space: nowrap;
    z-index: 1;
}
.floating-badge .fb-emoji { font-size: 18px; display: block; margin-bottom: 2px; }
.floating-badge .fb-label { color: var(--ink-soft); font-size: 10px; font-weight: 600; }

.floating-badge-2 {
  position: absolute; bottom: 60px; left: -32px;
  background: var(--pea-light); border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 1.5px solid var(--pea);
  font-size: 11px; font-weight: 700; color: var(--pea);
  white-space: nowrap;
}

.hero-phone-shot {
  width: 260px; aspect-ratio: 1080 / 2400;
  border-radius: 38px; overflow: hidden;
  border: 10px solid var(--ink);
  box-shadow: 0 40px 70px -25px rgba(46,42,38,0.4), 0 12px 24px -10px rgba(46,42,38,0.25);
  position: relative; background: var(--ink);
}
.hero-phone-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* ---- STATS ---- */
.stats {
  background: var(--ink); padding: 48px 24px;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  text-align: center;
}
.stat-number {
  font-size: 42px; font-weight: 900; color: var(--carrot);
  line-height: 1; margin-bottom: 6px; letter-spacing: -1px;
}
.stat-label {
  font-size: 13px; color: rgba(251,246,238,0.65); font-weight: 600; line-height: 1.4;
}

/* ---- HOW ---- */
.how {
  padding: 96px 24px;
  background: var(--cream);
}
.section-eyebrow {
  font-size: 11px; font-weight: 800; color: var(--carrot);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 900;
  color: var(--ink); line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px; color: var(--ink-soft); max-width: 520px; line-height: 1.6;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { margin-bottom: 56px; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.step {
  background: white; border-radius: 20px; padding: 28px 24px;
  border: 1.5px solid var(--line);
  position: relative; overflow: hidden;
}
.step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--carrot);
  border-radius: 20px 20px 0 0;
}
.step-num {
  font-size: 11px; font-weight: 800; color: var(--carrot);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.step-icon { width: 36px; height: 36px; object-fit: contain; margin-bottom: 14px; display: block; }
.step-title { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.step-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ---- LEVELS ---- */
.levels {
  background: white; padding: 96px 24px;
  border-top: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
}
.levels-inner { max-width: 1100px; margin: 0 auto; }
.levels-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center; margin-top: 56px;
}
.levels-list { display: flex; flex-direction: column; gap: 10px; }
.level-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 14px;
}
.ldot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: white;
}
.ltitle { font-size: 14px; font-weight: 800; }
.lsub { font-size: 12px; margin-top: 1px; opacity: 0.8; }

.levels-text { padding-left: 24px; }
.levels-text h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 14px; line-height: 1.3; }
.levels-text p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.source-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
}

/* ---- FEATURES ---- */
.features { padding: 96px 24px; background: var(--cream); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.feature-card {
  background: white; border-radius: 18px; padding: 24px 22px;
  border: 1.5px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 14px;
  border: 1.5px solid var(--line);
}
.feature-icon img { object-fit: contain; }
.feature-title { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* ---- CTA ---- */
.cta-section {
  background: var(--carrot); padding: 96px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '🥣';
  position: absolute; font-size: 300px; opacity: 0.07;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 36px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--carrot-dark);
  font-size: 15px; font-weight: 800;
  padding: 14px 32px; border-radius: 14px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ---- FOOTER ---- */
footer {
  background: var(--ink); padding: 48px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-size: 20px; font-weight: 900; color: white; letter-spacing: -0.5px; }
.footer-logo span { color: var(--carrot); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-link {
  font-size: 13px; color: rgba(251,246,238,0.55); text-decoration: none;
  cursor: pointer; border: none; background: none; transition: color 0.15s;
}
.footer-link:hover { color: rgba(251,246,238,0.9); }
.footer-copy { font-size: 12px; color: rgba(251,246,238,0.35); }

/* ---- LEGAL PAGES ---- */
.legal-wrap {
  max-width: 760px; margin: 0 auto; padding: 120px 24px 80px;
}
.legal-eyebrow {
  font-size: 11px; font-weight: 800; color: var(--carrot);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.legal-title {
  font-size: 36px; font-weight: 900; color: var(--ink);
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.legal-date {
  font-size: 13px; color: var(--ink-soft); margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1.5px solid var(--line);
}
.legal-body h2 {
  font-size: 19px; font-weight: 800; color: var(--ink);
  margin: 36px 0 12px; letter-spacing: -0.2px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px;
}
.legal-body ul {
  padding-left: 20px; margin-bottom: 14px;
}
.legal-body li {
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 6px;
}
.legal-body a { color: var(--carrot); text-decoration: none; font-weight: 700; }
.legal-body a:hover { text-decoration: underline; }
.legal-highlight {
  background: var(--pea-light); border-radius: 12px; padding: 16px 20px;
  border-left: 4px solid var(--pea); margin: 20px 0;
}
.legal-highlight p { color: var(--pea); font-weight: 600; margin: 0; }

/* ---- JORNADA (passos com capturas de ecrã reais) ---- */
.journey { padding: 110px 24px 60px; background: var(--cream); }
.journey-header { max-width: 640px; margin: 0 auto 80px; text-align: center; }
.journey-header .section-sub { margin: 0 auto; }
.journey-list { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 96px; }

.journey-row { display: flex; align-items: center; gap: 64px; }
.journey-row-reverse { flex-direction: row-reverse; }

.journey-media { flex: 1 1 300px; min-width: 260px; display: flex; justify-content: center; position: relative; }
.journey-shot {
  width: 240px; aspect-ratio: 1080 / 2400;
  border-radius: 32px; overflow: hidden;
  border: 8px solid var(--ink);
  box-shadow: 0 28px 52px -18px rgba(46,42,38,0.35);
}
.journey-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.journey-shot-small {
  position: absolute; bottom: -16px; left: -20px;
  width: 108px; aspect-ratio: 1080 / 2400;
  border-radius: 18px; overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 0 18px 34px -14px rgba(46,42,38,0.4);
}
.journey-shot-small img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.journey-text { flex: 1 1 360px; min-width: 280px; }
.journey-step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.journey-step-num { font-size: 22px; font-weight: 900; color: var(--carrot); }
.journey-step-icon { width: 48px; height: 48px; }
.journey-title { font-size: 26px; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.3px; }
.journey-desc { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }

@media (max-width: 900px) {
  .journey-row, .journey-row-reverse { flex-wrap: wrap; gap: 40px; }
}

/* ---- PRODUCTS COVERED ---- */
.products-covered {
  padding: 96px 24px; background: var(--cream);
  border-top: 1.5px solid var(--line);
}
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 48px; max-width: 900px;
}
.product-type {
  background: white; border: 1.5px solid var(--line);
  border-radius: 16px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform 0.15s, border-color 0.15s;
}
.product-type:hover { transform: translateY(-2px); border-color: var(--carrot); }
.pt-icon { width: 32px; height: 32px; object-fit: contain; }
.pt-name { font-size: 13px; font-weight: 800; color: var(--ink); text-align: center; }
@media (max-width: 700px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- STORE BADGES ---- */
.store-buttons {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 8px;
}
.store-badge {
  display: block; height: 52px; width: auto;
  border-radius: 10px; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  flex-shrink: 0;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.store-badge.coming-soon { opacity: 0.45; cursor: default; filter: grayscale(30%); }
.store-badge.coming-soon:hover { transform: none; box-shadow: none; }
.store-badge img { height: 52px; width: auto; display: block; border-radius: 10px; }
.badge-hidden { display: none !important; }

.store-badge-light img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15)); }
.store-badge-dark img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }

.badge-label {
  font-size: 10px; color: var(--ink-soft); font-weight: 600;
  margin-top: 4px; text-align: center;
}
.badge-wrap { display: flex; flex-direction: column; align-items: center; }

@media (max-width: 600px) {
  .store-buttons { flex-direction: column; align-items: flex-start; }
  .store-badge img { height: 46px; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .floating-badge { right: -8px; }
  .floating-badge-2 { left: -8px; }
  .steps { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: 1fr; }
  .levels-text { padding-left: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream);
    border-bottom: 1.5px solid var(--line);
    box-shadow: 0 16px 30px -18px rgba(46,42,38,0.3);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .nav-links-open { max-height: 420px; opacity: 1; }
  .nav-links .nav-link {
    display: block; width: 100%; padding: 14px 24px; border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links .nav-cta { margin: 16px 24px 20px; text-align: center; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .phone-mockup { width: 220px; height: 440px; }
  .hero-phone-shot { width: 220px; }
  .floating-badge, .floating-badge-2 { display: none; }
  .journey-row { flex-direction: column-reverse; }
  .journey-row.journey-row-reverse { flex-direction: column-reverse; }
}

/* ---- FAQ ---- */
.faq {
  padding: 96px 24px; background: var(--cream);
  border-top: 1.5px solid var(--line);
}
.faq-list {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 48px; max-width: 760px;
}
.faq-item {
  background: white; border: 1.5px solid var(--line);
  border-radius: 16px; padding: 20px 22px;
}
.faq-q {
  font-size: 16px; font-weight: 800; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -0.2px;
}
.faq-a {
  font-size: 14px; color: var(--ink-soft); line-height: 1.65;
}
