/* ===== Tokens ===== */
:root{
  --bg: #faf8f4;
  --bg-2: #f3efe6;
  --ink: #1a1714;
  --ink-2: #2b2622;
  --muted: #6b6259;
  --line: #e8e2d6;
  --line-2: #d9d2c2;
  --orange: #e85d2c;
  --orange-2: #d44d1e;
  --lime: #c8e85c;
  --lime-2: #b8d84a;
  --card: #ffffff;
  --shadow-sm: 0 1px 2px rgba(26,23,20,.06), 0 2px 8px rgba(26,23,20,.04);
  --shadow-md: 0 4px 16px rgba(26,23,20,.08), 0 12px 40px rgba(26,23,20,.06);
  --shadow-lg: 0 8px 24px rgba(26,23,20,.10), 0 24px 64px rgba(26,23,20,.10);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img,svg{display:block; max-width:100%}
a{color:inherit; text-decoration:none}
button{font:inherit; cursor:pointer; border:0; background:transparent; color:inherit}

.shell{max-width: 1200px; margin: 0 auto; padding: 0 24px}

section{padding: 96px 0}
@media (max-width:780px){ section{padding: 64px 0} }

h1,h2,h3,h4,h5{
  font-family: 'Inter Tight', 'Inter', sans-serif;
  letter-spacing:-0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}
h1{ font-size: clamp(40px, 5.4vw, 68px); font-weight: 800; letter-spacing:-0.03em }
h2{ font-size: clamp(30px, 3.8vw, 46px); }
h3{ font-size: clamp(22px, 2.4vw, 28px) }
h4{ font-size: 18px; font-weight: 700 }
p{ margin: 0; color: var(--ink-2) }
.lede{ font-size: 18px; color: var(--ink-2); max-width: 60ch; line-height: 1.6 }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,93,44,.08);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232,93,44,.2);
}
.eyebrow.muted{ color: var(--muted); background: var(--bg-2); border-color: var(--line) }

.section-head{ display:flex; flex-direction:column; gap:14px; margin-bottom: 56px; max-width: 760px }
.section-head .eyebrow{ align-self:flex-start }

.alt{
  font-family: 'Fraunces', 'Inter Tight', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn .arrow{ transition: transform .2s ease }
.btn:hover .arrow{ transform: translateX(3px) }
.btn-primary{ background: var(--orange); color: #fff; box-shadow: 0 6px 20px rgba(232,93,44,.3) }
.btn-primary:hover{ background: var(--orange-2); transform: translateY(-1px) }
.btn-ghost{ background: transparent; border:1px solid var(--line-2); color: var(--ink) }
.btn-ghost:hover{ background: var(--bg-2); border-color: var(--ink-2) }
.btn-lime{ background: var(--lime); color: var(--ink); box-shadow: 0 6px 20px rgba(200,232,92,.4) }
.btn-lime:hover{ background: var(--lime-2); transform: translateY(-1px) }
.btn-wa{ background: #25D366; color: #fff; width: 100%; justify-content: center; padding: 16px; font-size: 16px; box-shadow: 0 6px 20px rgba(37,211,102,.3) }
.btn-wa:hover{ background: #1fb858; transform: translateY(-1px) }

/* ===== Nav ===== */
.nav{
  position: sticky; top:0; z-index: 50;
  background: rgba(250,248,244,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding: 16px 24px; gap: 32px }
.brand{ display:flex; align-items:center; gap:10px; font-weight: 700 }
.brand .mark{
  width: 38px; height: 38px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 10px;
  display:grid; place-items:center;
}
.brand .mark svg{ width:20px; height:20px }
.brand .name{ font-family: 'Inter Tight'; line-height: 1.05; font-size: 15px }
.brand .name small{ font-weight: 500; color: var(--muted); font-size: 11px; letter-spacing: 0.04em }
.nav-links{ display:flex; gap: 32px; font-size: 14px; color: var(--ink-2); font-weight: 500 }
.nav-links a:hover{ color: var(--orange) }
.nav-cta{
  display:inline-flex; align-items:center; gap:6px;
  background: var(--ink); color: var(--lime);
  padding: 11px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: transform .15s;
}
.nav-cta:hover{ transform: translateY(-1px) }
@media (max-width:880px){ .nav-links{ display:none } }

/* ===== Hero ===== */
.hero{ padding: 80px 0 96px; position: relative; overflow: hidden }
.hero::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(232,93,44,.08), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(200,232,92,.10), transparent 60%);
  pointer-events:none;
}
.hero-grid{ display:grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; position: relative }
@media (max-width: 980px){ .hero-grid{ grid-template-columns: 1fr; gap: 40px } }
.hero-pill{
  display:inline-flex; align-items:center; gap:10px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.hero-pill .dot{ width:8px; height:8px; border-radius:50%; background:#1fb858; box-shadow: 0 0 0 4px rgba(31,184,88,.18) }
.hero h1{ margin-bottom: 24px }
.hero-lede{ font-size: 19px; margin-bottom: 32px; max-width: 56ch }
.hero-ctas{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px }
.hero-trust{ display:flex; align-items:center; gap: 16px; font-size: 13px; color: var(--muted) }
.avatars{ display:flex }
.avatars span{
  width: 36px; height: 36px; border-radius: 50%;
  display:grid; place-items:center;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatars span:first-child{ margin-left: 0 }
.avatars span:nth-child(2){ background: var(--orange) }
.avatars span:nth-child(3){ background: #2b2622 }
.avatars span:nth-child(4){ background: var(--lime); color: var(--ink) }

.stats-card{
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.stats-card::before{
  content:""; position:absolute; top:-40px; right:-40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,44,.4), transparent 70%);
}
.stats-eyebrow{ font-size: 11px; letter-spacing: 0.2em; text-transform:uppercase; color: var(--lime); font-weight: 700; margin-bottom: 12px; position: relative }
.stats-big{
  font-family: 'Inter Tight'; font-weight: 800;
  font-size: 72px; line-height: 1; letter-spacing: -0.04em;
  color: #fff; position: relative;
}
.stats-caption{ color: rgba(255,255,255,.7); font-size: 14px; margin-top: 8px; margin-bottom: 24px; position: relative }
.stats-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative }
.stat-tile{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding: 16px;
}
.stat-tile .stars{ color: var(--orange); font-size: 12px; letter-spacing: 1px; margin-bottom: 4px }
.stat-tile .value{ font-family:'Inter Tight'; font-size: 26px; font-weight: 700; color: #fff }
.stat-tile .label{ font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px }

/* ===== Searches ===== */
.searches{ background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line) }
.searches-grid{ display:grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center }
@media (max-width: 880px){ .searches-grid{ grid-template-columns: 1fr; gap: 32px } }
.big-num{
  font-family:'Inter Tight'; font-weight: 800;
  font-size: clamp(72px, 10vw, 128px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--ink);
  margin: 16px 0 12px;
}
.sub{ font-size: 16px; color: var(--muted); max-width: 28ch }
.search-chips{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 24px }
.search-chip{
  display:inline-flex; align-items:center; gap: 10px;
  background: var(--card); border:1px solid var(--line);
  padding: 10px 14px; border-radius: 999px;
  font-size: 14px; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.search-chip svg{ width:14px; height:14px; color: var(--muted) }
.search-chip strong{ color: var(--ink); font-weight: 600 }
.search-chip .vol{ color: var(--muted); font-size: 12px; padding-left: 10px; border-left: 1px solid var(--line) }

/* ===== Problema ===== */
.problem-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap: 32px }
@media (max-width: 980px){ .problem-grid{ grid-template-columns: 1fr } }
.problem-cards{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 600px){ .problem-cards{ grid-template-columns: 1fr } }
.problem-card{
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
  display:flex; gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.problem-card:hover{ border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-2px) }
.problem-card .ic{
  flex: 0 0 40px; width: 40px; height: 40px;
  background: rgba(232,93,44,.08);
  color: var(--orange);
  border-radius: 10px;
  display:grid; place-items:center;
}
.problem-card .ic svg{ width: 20px; height: 20px }
.problem-card h4{ margin-bottom: 6px }
.problem-card p{ font-size: 14px; color: var(--muted); line-height: 1.5 }

.story-card{
  background: var(--ink); color: #fff;
  border-radius: var(--r-xl); padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.story-tabs{ display:flex; flex-wrap: wrap; gap: 6px }
.story-tab{
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .15s;
}
.story-tab.active{ background: var(--lime); color: var(--ink); border-color: var(--lime) }
.story-tab:hover:not(.active){ background: rgba(255,255,255,.14) }
.story-text{ font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.9) }
.story-text .name{ color: var(--lime); font-weight: 600 }
.story-text strong{ color: #fff; font-weight: 600 }
.story-foot{ display:flex; align-items:center; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px }
.story-foot .stars{ color: var(--orange) }
.story-foot .name-foot{ font-size: 13px; color: rgba(255,255,255,.7) }
.story-foot .name-foot strong{ color: #fff; display:block; font-size: 14px }

/* ===== Solución ===== */
.solution-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
@media (max-width: 880px){ .solution-grid{ grid-template-columns: 1fr 1fr } }
@media (max-width: 580px){ .solution-grid{ grid-template-columns: 1fr } }
.sol-card{
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.sol-card:hover{ border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-2px) }
.sol-card .ic{
  width: 48px; height: 48px;
  background: var(--ink); color: var(--lime);
  border-radius: 12px;
  display:grid; place-items:center;
  margin-bottom: 18px;
}
.sol-card .ic svg{ width: 22px; height: 22px }
.sol-card h4{ margin-bottom: 8px }
.sol-card p{ font-size: 14.5px; color: var(--muted); line-height: 1.55 }

/* ===== Mockup ===== */
.mockup-section{ background: var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line) }
.mockup-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center }
@media (max-width: 880px){ .mockup-grid{ grid-template-columns: 1fr; gap: 40px } }
.mockup-bullets{ list-style:none; padding:0; margin: 32px 0 0; display: grid; gap: 16px }
.mockup-bullet{ display:flex; gap: 14px; align-items: flex-start }
.mockup-bullet .check{
  flex:0 0 28px; width:28px; height:28px;
  background: var(--lime); color: var(--ink);
  border-radius: 8px; display:grid; place-items:center;
}
.mockup-bullet .check svg{ width: 16px; height: 16px; stroke-width: 2.5 }
.mockup-bullet h4{ margin-bottom: 2px }
.mockup-bullet p{ font-size: 14px; color: var(--muted) }

.phone{
  background: #15110e; border-radius: 36px;
  padding: 14px; max-width: 360px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid #2a2520;
}
.phone-screen{
  background: #fff; border-radius: 24px;
  overflow: hidden;
  height: 580px;
  display: flex; flex-direction: column;
}
.gbar{ padding: 14px; background: #fff; border-bottom: 1px solid #eee }
.gsearch{
  display: flex; align-items: center; gap: 10px;
  background: #f1f3f4; border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px; color: #444;
}
.gsearch svg{ width: 14px; height: 14px; color: #666 }
.gmap{
  flex: 0 0 200px; position: relative;
  background:
    linear-gradient(135deg, #e8efe5 0%, #d8e4d2 100%);
  background-size: cover;
}
.gmap::before{
  content:""; position:absolute; inset:0;
  background:
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,.4) 30px 31px),
    repeating-linear-gradient(-45deg, transparent 0 50px, rgba(0,0,0,.04) 50px 51px);
}
.pin{
  position:absolute; width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.pin.alt{ background: #888 }
.pin.alt.a{ top: 30%; left: 22% }
.pin.alt.b{ top: 60%; left: 75% }
.pin.alt.c{ top: 25%; left: 70% }
.pin.main{
  background: var(--orange);
  width: 22px; height: 22px;
  top: 45%; left: 45%;
  box-shadow: 0 4px 14px rgba(232,93,44,.5);
}
.phone-listing{ flex: 1; overflow: hidden; padding: 8px 0 }
.biz{ padding: 12px 16px; border-bottom: 1px solid #f0f0f0 }
.biz.featured{ background: #fff8f4; border-left: 3px solid var(--orange) }
.biz h5{ font-size: 14px; margin-bottom: 4px; color: #1a73e8 }
.biz.featured h5{ color: var(--ink) }
.biz .meta{ display:flex; gap: 6px; font-size: 12px; color: #555; flex-wrap: wrap }
.biz .meta .rating{ font-weight: 700; color: var(--ink) }
.biz .meta .stars{ color: #fbbc04 }
.biz .desc{ font-size: 12px; color: var(--muted); margin-top: 6px; font-style: italic }

/* ===== Process ===== */
.process{ background: var(--bg) }
.process-list{ display:flex; flex-direction:column; gap: 8px }
.process-step{
  display:grid; grid-template-columns: 120px 1fr 220px; gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.process-step:first-child{ border-top: 1px solid var(--ink) }
.process-step:last-child{ border-bottom: 1px solid var(--line) }
@media (max-width: 880px){ .process-step{ grid-template-columns: 1fr; gap: 12px } }
.num-big{
  font-family:'Inter Tight'; font-weight: 800;
  font-size: 64px; line-height: 1; letter-spacing: -0.04em;
  color: var(--orange);
}
.process-step h3{ margin-bottom: 8px }
.process-step p{ color: var(--muted); font-size: 15.5px; max-width: 50ch }
.process-step .meta{ display:flex; flex-direction:column; gap: 8px; font-size: 13px; color: var(--muted) }
.process-step .meta span{ display:inline-flex; align-items:center; gap: 6px }
.process-step .meta svg{ width: 14px; height: 14px; color: var(--orange) }
.process-step .meta strong{ color: var(--ink); font-weight: 600 }

/* ===== Results ===== */
.results-grid{ display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 16px }
@media (max-width: 980px){ .results-grid{ grid-template-columns: 1fr 1fr } }
@media (max-width: 580px){ .results-grid{ grid-template-columns: 1fr } }
.result-tile{
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  display:flex; flex-direction:column; justify-content: space-between; gap: 20px;
  min-height: 260px;
}
.result-tile.lead{ background: var(--ink); color: #fff; grid-row: span 1 }
.result-tile .label{ font-size: 11px; letter-spacing: 0.2em; font-weight: 700; color: var(--muted) }
.result-tile.lead .label{ color: var(--lime) }
.result-tile .value{ font-family:'Inter Tight'; font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -0.03em; color: var(--ink) }
.result-tile .desc{ font-size: 13px; color: var(--muted); line-height: 1.5 }
.result-tile.lead .quote{ font-family:'Inter Tight'; font-size: 22px; line-height: 1.3; color: #fff; font-weight: 500; letter-spacing: -0.01em }
.result-tile.lead .quote .hl{ color: var(--lime); font-weight: 700 }
.result-tile.lead .who{ display:flex; align-items:center; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px }
.result-tile.lead .avatar{ width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #fff; display:grid; place-items:center; font-weight: 700; font-size: 13px }
.result-tile.lead .who-name{ font-size: 13px; color: rgba(255,255,255,.7) }
.result-tile.lead .who-name strong{ color: #fff; display:block; font-size: 14px }

/* ===== Plans ===== */
.plans-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto }
@media (max-width: 880px){ .plans-grid{ grid-template-columns: 1fr } }
.plan-card{
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--r-xl); padding: 32px;
  display:flex; flex-direction: column;
  position: relative;
}
.plan-card.featured{ background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow-lg) }
.plan-tag{
  display:inline-flex;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--orange);
  background: rgba(232,93,44,.1);
  padding: 6px 12px; border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 18px;
}
.plan-card.featured .plan-tag{ background: var(--lime); color: var(--ink) }
.plan-name{ font-family:'Inter Tight'; font-weight: 700; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 6px }
.plan-card.featured .plan-name{ color: #fff }
.plan-desc{ font-size: 14.5px; color: var(--muted); margin-bottom: 22px; line-height: 1.5 }
.plan-card.featured .plan-desc{ color: rgba(255,255,255,.7) }
.plan-feats{ list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; flex: 1 }
.plan-feats li{ display:flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5 }
.plan-feats .feat-key{ font-weight: 600 }
.plan-feats .check{
  flex: 0 0 20px; width: 20px; height: 20px;
  background: var(--lime); color: var(--ink);
  border-radius: 6px; display:grid; place-items:center;
  margin-top: 2px;
}
.plan-feats .check svg{ width: 12px; height: 12px; stroke-width: 3 }
.plan-card.featured .plan-feats li{ color: rgba(255,255,255,.85) }
.plan-foot{ border-top: 1px solid var(--line); padding-top: 20px }
.plan-card.featured .plan-foot{ border-top-color: rgba(255,255,255,.1) }
.plan-price{ display:flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 16px }
.plan-price .strike{ color: var(--muted); text-decoration: line-through; font-size: 16px }
.plan-card.featured .plan-price .strike{ color: rgba(255,255,255,.5) }
.plan-price .now{ font-family:'Inter Tight'; font-weight: 800; font-size: 40px; letter-spacing: -0.03em; color: var(--ink) }
.plan-card.featured .plan-price .now{ color: #fff }
.plan-price .per{ font-size: 13px; color: var(--muted) }
.plan-card.featured .plan-price .per{ color: rgba(255,255,255,.6) }
.plan-cta{ width: 100%; justify-content: center }

/* ===== Exclusivity ===== */
.exclusivity{ background: var(--bg) }
.availability{
  display:inline-flex; align-items:center; gap: 10px;
  background: rgba(232,93,44,.08); color: var(--orange);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.availability .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 1.6s ease infinite }
@keyframes pulse{ 0%,100%{opacity:1} 50%{opacity:.4} }
.exclusivity h2{ margin-bottom: 16px; max-width: 22ch }
.exclusivity-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px }
@media (max-width: 780px){ .exclusivity-grid{ grid-template-columns: 1fr } }
.excl-tile{
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
}
.excl-tile .num-big{ font-size: 56px; margin-bottom: 12px }
.excl-tile h4{ margin-bottom: 6px }
.excl-tile p{ font-size: 14px; color: var(--muted); line-height: 1.5 }

/* ===== FAQ ===== */
.faq-list{ max-width: 820px; margin: 0 auto; display:flex; flex-direction:column; gap: 12px }
.faq-item{
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open{ border-color: var(--ink-2) }
.faq-q{
  width: 100%;
  padding: 20px 22px;
  display:flex; align-items:center; justify-content: space-between; gap: 16px;
  font-size: 16.5px; font-weight: 600; color: var(--ink);
  text-align: left;
}
.faq-icon{
  flex: 0 0 28px; width: 28px; height: 28px;
  background: var(--bg-2); border-radius: 50%;
  display:grid; place-items:center; color: var(--ink);
  transition: transform .25s, background .25s;
}
.faq-item.open .faq-icon{ transform: rotate(45deg); background: var(--orange); color: #fff }
.faq-icon svg{ width: 14px; height: 14px }
.faq-a{
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a{ max-height: 360px; padding: 0 22px 22px }
.faq-a p{ color: var(--muted); font-size: 15px; line-height: 1.6 }

/* ===== CTA / form ===== */
.cta-section{}
.cta-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center }
@media (max-width: 880px){ .cta-grid{ grid-template-columns: 1fr; gap: 40px } }
.text-orange{ color: var(--orange) }
.perks{ display:flex; flex-direction:column; gap: 12px; margin: 28px 0 }
.perk{ display:flex; gap: 10px; align-items:center; font-size: 15px; color: var(--ink-2) }
.perk .check{
  width: 22px; height: 22px; flex: 0 0 22px;
  background: var(--lime); color: var(--ink);
  border-radius: 6px; display:grid; place-items:center;
}
.perk .check svg{ width: 12px; height: 12px; stroke-width: 3 }
.wa-card{
  display:flex; align-items:center; gap: 14px;
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--r-md); padding: 16px;
  transition: border-color .2s, transform .15s;
}
.wa-card:hover{ border-color: #25D366; transform: translateY(-1px) }
.wa-card .ic{
  width: 44px; height: 44px; flex: 0 0 44px;
  background: #25D366; color: #fff; border-radius: 12px;
  display:grid; place-items:center;
}
.wa-card .ic svg{ width: 22px; height: 22px }
.wa-card .label{ font-size: 12px; color: var(--muted); margin-bottom: 2px }
.wa-card .num-tel{ font-weight: 700; font-size: 17px; color: var(--ink) }

.form-card{
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-card h3{ margin-bottom: 6px; font-size: 22px }
.form-card .lede-sm{ font-size: 14px; color: var(--muted); margin-bottom: 22px }
.form-row{ margin-bottom: 18px }
.form-row label{ display:block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px }
.form-row input, .form-row select{
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line-2); border-radius: 10px;
  background: var(--bg);
  font: inherit; color: var(--ink);
  transition: border-color .15s, background .15s;
}
.form-row input:focus, .form-row select:focus{
  outline: none; border-color: var(--orange);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(232,93,44,.12);
}
.form-submit{ margin-top: 4px }
.form-foot{ font-size: 12px; color: var(--muted); margin-top: 12px; text-align:center }

/* ===== Footer ===== */
footer{ background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 32px }
footer .brand .mark{ background: var(--lime); color: var(--ink) }
footer .brand .name{ color: #fff }
footer .brand .name small{ color: rgba(255,255,255,.6) }
.foot-row{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 780px){ .foot-row{ grid-template-columns: 1fr 1fr; gap: 32px } }
@media (max-width: 460px){ .foot-row{ grid-template-columns: 1fr } }
.foot-blurb{ font-size: 14px; color: rgba(255,255,255,.6); margin-top: 16px; max-width: 36ch }
footer h5{ color: #fff; font-size: 14px; margin-bottom: 14px; font-weight: 600 }
footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 8px }
footer ul a{ font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s }
footer ul a:hover{ color: var(--lime) }
.foot-meta{ padding-top: 24px; display:flex; justify-content:space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.5) }

/* ===== Floating WA ===== */
.float-wa{
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display:grid; place-items:center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 40;
  transition: transform .2s;
}
.float-wa:hover{ transform: scale(1.08) }
.float-wa svg{ width: 30px; height: 30px }

/* ===== Reveal animations ===== */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease }
.reveal.in{ opacity: 1; transform: none }
