/* ─────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────── */
:root {
  /* Brand */
  --yellow:        #F5C518;
  --yellow-hover:  #EABC10;
  --yellow-subtle: #FFFBEA;
  --yellow-border: rgba(245,197,24,0.28);

  /* Neutrals */
  --black:    #111111;
  --ink:      #1E1E1E;
  --gray-800: #3A3A3A;
  --gray-600: #666666;
  --gray-400: #999999;
  --gray-200: #E6E6E3;
  --gray-100: #F4F4F2;
  --gray-50:  #FAFAF8;
  --white:    #FFFFFF;

  /* WhatsApp */
  --wa-dark:   #075E54;
  --wa-mid:    #128C7E;
  --wa-green:  #25D366;
  --wa-chat:   #ECE5DD;
  --wa-out:    #D9F7BE;
  --wa-in:     #FFFFFF;

  /* Semantic */
  --surface:   var(--white);
  --surface-2: var(--gray-100);
  --border:    var(--gray-200);
  --text:      var(--ink);
  --text-soft: var(--gray-600);
  --text-muted:var(--gray-400);

  /* Shadows — all very soft */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-page: 0 0 60px rgba(0,0,0,0.12);

  /* Radii */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-pill:100px;

  /* Page */
  --page-w: 430px;
}

/* ─────────────────────────────────────
   RESET + BASE
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, sans-serif;
  background: #DEDED9;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page wrapper */
.page {
  max-width: var(--page-w);
  margin: 0 auto;
  background: var(--surface);
  position: relative;
  overflow-x: hidden;
  box-shadow: var(--shadow-page);
  min-height: 100vh;
}

/* ─────────────────────────────────────
   TOPBAR
───────────────────────────────────── */
.topbar {
  background: var(--black);
  color: var(--yellow);
  text-align: center;
  padding: 9px 16px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 300;
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  padding: 44px 28px 0;
  text-align: center;
  background: var(--white);
  position: relative;
}

/* Soft yellow glow behind mockup */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 120px;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.45s ease both;
}
.hero-badge::before { content: '⚡'; font-size: 10px; }

.hero h1 {
  font-family: 'Lora', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
  animation: fadeUp 0.5s ease 0.07s both;
  letter-spacing: -0.01em;
}

/* Yellow underline highlight */
.hl {
  position: relative;
  display: inline;
}
.hl::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 3px;
  height: 9px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 3px;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 300px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeUp 0.5s ease 0.13s both;
}

/* Mockup */
.mockup-wrap {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto 44px;
  animation: fadeUp 0.55s ease 0.19s both;
  z-index: 1;
}
.mockup-badge {
  position: absolute;
  top: -13px; right: -18px;
  background: var(--yellow);
  color: var(--black);
  font-size: 9.5px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  box-shadow: 0 3px 10px rgba(245,197,24,0.35);
  transform: rotate(4.5deg);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}
.mockup-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* ─────────────────────────────────────
   PROOF STRIP
───────────────────────────────────── */
.proof-strip {
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 8px;
  gap: 3px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.proof-item:last-child { border-right: none; }
.proof-item strong {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.proof-item span {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.03em;
  text-align: center;
}

/* ─────────────────────────────────────
   SHARED SECTION
───────────────────────────────────── */
.s { padding: 52px 28px; }
.s-tight { padding: 44px 28px; }

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

h2 {
  font-family: 'Lora', serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
h2 .pill {
  background: var(--yellow);
  padding: 1px 7px 2px;
  border-radius: 6px;
  font-style: normal;
}

.body-txt {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─────────────────────────────────────
   PAIN SECTION
───────────────────────────────────── */
.pain-section { background: var(--gray-100); }

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 13px 15px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  border-left: 3px solid #FFBCB5;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s;
}
.pain-list li:hover { box-shadow: var(--shadow-sm); }

.x-badge {
  width: 18px; height: 18px;
  background: #FFF0EE;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #D44B3A;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pullquote */
.pullquote {
  background: var(--yellow-subtle);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 20px 18px 22px;
  margin-top: 26px;
}
.pullquote p {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
}
.pullquote cite {
  display: block;
  font-size: 9.5px;
  color: var(--text-muted);
  margin-top: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────
   SOLUTION / VALUE PROPS
───────────────────────────────────── */
.solution-grid {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.solution-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 16px;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.solution-card:hover {
  border-color: rgba(245,197,24,0.4);
  box-shadow: var(--shadow-sm);
}
.sc-icon {
  width: 42px; height: 42px;
  background: var(--yellow-subtle);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.solution-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
  line-height: 1.3;
}
.solution-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ─────────────────────────────────────
   MODULES (dark)
───────────────────────────────────── */
.modules-section {
  background: var(--black);
  padding: 52px 28px;
}
.modules-section .eyebrow { color: rgba(245,197,24,0.5); }
.modules-section h2 { color: var(--white); }
.modules-section .body-txt { color: rgba(255,255,255,0.62); }

.module-list { display: flex; flex-direction: column; gap: 6px; }

.module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 12px 14px;
  transition: background 0.18s;
  cursor: default;
}
.module-item:hover { background: rgba(255,255,255,0.06); }

.m-num {
  width: 28px; height: 28px;
  background: var(--yellow);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.m-info { flex: 1; }
.m-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.m-info span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.58);
}
.m-check {
  font-size: 12px;
  color: var(--yellow);
  opacity: 0.7;
}

/* ─────────────────────────────────────
   SCRIPTS — WhatsApp UI
───────────────────────────────────── */
.scripts-section {
  background: var(--gray-100);
  padding: 52px 28px;
}

/* Tab row */
.wa-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 14px;
}
.wa-tabs::-webkit-scrollbar { display: none; }

.wa-tab {
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  outline: none;
  transition: all 0.18s;
  box-shadow: var(--shadow-xs);
}
.wa-tab:hover { border-color: var(--wa-mid); color: var(--wa-mid); }
.wa-tab.on {
  background: var(--wa-mid);
  border-color: var(--wa-mid);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(18,140,126,0.22);
}

/* Phone shell */
.phone {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* Status bar */
.ph-status {
  background: var(--wa-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 16px 4px;
}
.ph-status .ph-time {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.01em;
}
.ph-status .ph-icons {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 5px;
  align-items: center;
}
.wifi-label { font-size: 11px; }
.bar-icon { display: flex; gap: 2px; align-items: flex-end; }
.bar-icon span {
  display: block;
  width: 3px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
}
.bar-icon span:nth-child(1) { height: 4px; }
.bar-icon span:nth-child(2) { height: 7px; }
.bar-icon span:nth-child(3) { height: 10px; }

/* Header */
.ph-header {
  background: var(--wa-dark);
  padding: 8px 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.ph-back { font-size: 22px; color: rgba(255,255,255,0.7); line-height: 1; padding-right: 2px; }
.ph-avatar {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.16);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ph-contact { flex: 1; }
.ph-contact strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--white); }
.ph-contact span { font-size: 11px; color: rgba(255,255,255,0.68); }
.ph-actions { display: flex; gap: 18px; }
.ph-action { font-size: 15px; color: rgba(255,255,255,0.65); }

/* Chat body */
.ph-body {
  background: var(--wa-chat);
  padding: 12px 11px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a882' fill-opacity='0.06'%3E%3Cpath d='M50 50v-10h-4v10H36v4h10v10h4V54h10v-4H50zm0-40V0h-4v10H36v4h10v10h4V14h10v-4H50zM10 50v-10H6v10H-4v4H6v10h4V54h10v-4H10zM10 10V0H6v10H-4v4H6v10h4V14h10v-4H10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Date pill */
.chat-date {
  text-align: center;
  margin: 2px 0 4px;
}
.chat-date span {
  display: inline-block;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(4px);
  font-size: 10px;
  color: var(--text-soft);
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
}

/* Incoming */
.msg-in-row { display: flex; align-items: flex-end; gap: 5px; }
.msg-avatar {
  width: 24px; height: 24px;
  background: #B0BEC5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.msg-in {
  background: var(--wa-in);
  border-radius: 2px var(--r-md) var(--r-md) var(--r-md);
  padding: 8px 10px 5px;
  max-width: 79%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  position: relative;
}
.msg-in::before {
  content: '';
  position: absolute;
  top: 0; left: -6px;
  border: 6px solid transparent;
  border-top-color: var(--wa-in);
  border-right-color: var(--wa-in);
  border-radius: 1px;
}

/* Outgoing */
.msg-out-row { display: flex; justify-content: flex-end; }
.msg-out {
  background: var(--wa-out);
  border-radius: var(--r-md) 2px var(--r-md) var(--r-md);
  padding: 8px 10px 5px;
  max-width: 83%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07);
  position: relative;
}
.msg-out::before {
  content: '';
  position: absolute;
  top: 0; right: -6px;
  border: 6px solid transparent;
  border-top-color: var(--wa-out);
  border-left-color: var(--wa-out);
  border-radius: 1px;
}

.msg-in p, .msg-out p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.msg-in p + p, .msg-out p + p { margin-top: 4px; }

.msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 4px;
  font-size: 10px;
  color: rgba(0,0,0,0.35);
}
.msg-out .msg-meta { color: rgba(67,160,71,0.9); }
.double-check { font-size: 11px; letter-spacing: -1px; }

/* Panels */
.wa-panel { display: none; flex-direction: column; gap: 7px; }
.wa-panel.on { display: flex; }

/* Input bar */
.ph-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #F0F0F0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.ph-field {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Geist', sans-serif;
  border: none;
  outline: none;
  box-shadow: var(--shadow-xs);
}
.ph-mic {
  width: 36px; height: 36px;
  background: var(--wa-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(18,140,126,0.2);
}

/* ─────────────────────────────────────
   FOR WHOM
───────────────────────────────────── */
.forwhom-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.forwhom-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  background: var(--yellow-subtle);
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--yellow-border);
  box-shadow: var(--shadow-xs);
}
.chk-badge {
  width: 22px; height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--black);
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   GUARANTEE
───────────────────────────────────── */
.guarantee-section { background: var(--gray-100); }
.guarantee-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1.5px dashed #CCCCC8;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  margin-top: 18px;
}
.guarantee-icon {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
}
.guarantee-card h3 {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--black);
}
.guarantee-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 270px;
  margin: 0 auto;
}

/* ─────────────────────────────────────
   PRICING
───────────────────────────────────── */
.pricing-section {
  background: var(--black);
  padding: 56px 28px 52px;
  text-align: center;
}
.pricing-section .eyebrow { color: rgba(245,197,24,0.55); }
.pricing-section h2 { color: var(--white); }
.pricing-section .body-txt { color: rgba(255,255,255,0.62); margin-bottom: 28px; }

.price-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px 24px 24px;
  text-align: left;
  box-shadow: var(--shadow-lg);
}

.price-old {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-row {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 4px;
}
.price-cur {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 9px;
  line-height: 1;
}
.price-num {
  font-family: 'Lora', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-dec {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 9px;
  line-height: 1;
}
.price-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-div {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.45;
}
.price-includes li .ok {
  color: var(--wa-green);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Payment icons */
.payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}
.pay-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
}
.pay-badge .pay-icon { font-size: 14px; }

/* ─────────────────────────────────────
   CTA BUTTON
───────────────────────────────────── */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--wa-mid);
  color: var(--white);
  font-family: 'Geist', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 17px 20px;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(18,140,126,0.28);
  transition: background 0.18s, transform 0.14s, box-shadow 0.18s;
  animation: pulse-cta 3s ease infinite;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta:active { transform: scale(0.98); box-shadow: 0 2px 8px rgba(18,140,126,0.2); }
.cta .cta-icon { font-size: 17px; }

.cta-meta {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 11px;
}
.cta-meta .dot { opacity: 0.4; }

/* ─────────────────────────────────────
   FINAL BANNER
───────────────────────────────────── */
.final-section {
  background: var(--yellow-subtle);
  border-top: 2px solid var(--yellow-border);
  padding: 52px 28px;
  text-align: center;
}
.final-section h2 { font-size: 24px; margin-bottom: 10px; }
.final-section .sub {
  font-size: 14.5px;
  color: var(--text-soft);
  margin-bottom: 26px;
  line-height: 1.65;
}
.final-section .cta { max-width: 370px; margin: 0 auto 10px; }
.security-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 11px;
}

/* ─────────────────────────────────────
   FAQ
───────────────────────────────────── */
.faq-section { padding: 52px 28px; }

.faq-list { margin-top: 22px; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  gap: 10px;
  user-select: none;
  color: var(--ink);
  transition: color 0.18s;
}
.faq-q:hover { color: var(--black); }
.faq-chevron {
  width: 22px; height: 22px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--text-soft);
  transition: transform 0.22s, background 0.18s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--yellow);
  color: var(--black);
}
.faq-a {
  font-size: 14px;
  color: var(--text-soft);
  padding: 0 0 16px;
  display: none;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ─────────────────────────────────────
   STICKY BAR
───────────────────────────────────── */
.sticky {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(110%);
  width: 100%;
  max-width: var(--page-w);
  background: var(--white);
  border-top: 2px solid rgba(245,197,24,0.5);
  padding: 10px 20px 20px;
  z-index: 500;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.sticky.show { transform: translateX(-50%) translateY(0); }
.sticky-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 9px;
  font-weight: 500;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 24px;
  font-size: 12.5px;
  line-height: 2;
}
footer strong { color: var(--yellow); }

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 16px rgba(18,140,126,0.28); }
  50%       { box-shadow: 0 6px 24px rgba(18,140,126,0.45); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in { opacity: 1; transform: none; }
