/* =============================================================================
   MVWDD — Stylesheet
   Brand: warm savanna — cream, gold, charcoal, elephant stone.
   ========================================================================== */

:root {
  --cream:      #FBF7F0;
  --sand:       #F3EADB;
  --sand-2:     #ECE0CC;
  --ink:        #211D18;
  --charcoal:   #2E2A24;
  --charcoal-2: #38332B;
  --gold:       #B0894C;
  --gold-deep:  #8C6A30;
  --gold-soft:  #D9C49A;
  --stone:      #6F6A60;
  --stone-light:#8E887D;
  --white:      #ffffff;
  --line:       rgba(33, 29, 24, .12);
  --line-light: rgba(255, 255, 255, .14);
  --shadow-sm:  0 2px 10px rgba(33, 29, 24, .06);
  --shadow:     0 14px 40px rgba(33, 29, 24, .10);
  --shadow-lg:  0 30px 70px rgba(33, 29, 24, .16);
  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1160px;
  --serif:      "Fraunces", Georgia, serif;
  --sans:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.25rem; }
.accent { color: var(--gold-deep); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 10px 24px rgba(176, 137, 76, .32); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(140, 106, 48, .38); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn .ico { width: 18px; height: 18px; fill: currentColor; }

/* =============================== HEADER =============================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 240, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--serif); font-size: 1.32rem; letter-spacing: .04em; color: var(--ink); }
.brand-text small { font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--charcoal); transition: color .2s; }
.nav-links a:not(.nav-cta):hover { color: var(--gold-deep); }
.nav-cta { color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================== HERO =============================== */
.hero { position: relative; overflow: hidden; background: linear-gradient(170deg, var(--sand) 0%, var(--cream) 62%); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(176,137,76,.22), transparent 60%),
    radial-gradient(700px 420px at -6% 108%, rgba(110,106,96,.14), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: 84px 24px 96px; }
.hero-copy h1 { margin: 6px 0 20px; }
.lead { font-size: 1.16rem; color: var(--charcoal); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-trust li { font-size: .92rem; color: var(--stone); }
.hero-trust strong { display: block; font-family: var(--serif); font-size: 1.45rem; color: var(--ink); }

.hero-art { display: flex; justify-content: center; }
.hero-card {
  position: relative; width: 100%; max-width: 380px; aspect-ratio: 1; border-radius: 28px;
  background: radial-gradient(120% 120% at 50% 25%, #fff 0%, var(--sand) 100%);
  box-shadow: var(--shadow-lg); display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.7);
}
.hero-logo { width: 64%; filter: drop-shadow(0 18px 30px rgba(33,29,24,.18)); animation: float 6s ease-in-out infinite; }
.hero-chip {
  position: absolute; background: #fff; color: var(--ink); font-weight: 600; font-size: .8rem;
  padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.chip-1 { top: 12%; left: -6%; color: var(--gold-deep); animation: float 5s ease-in-out infinite; }
.chip-2 { bottom: 16%; right: -8%; animation: float 7s ease-in-out infinite .5s; }
.chip-3 { bottom: 4%; left: 8%; animation: float 6.5s ease-in-out infinite .3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =============================== SECTIONS =============================== */
.section { padding: 92px 0; }
.section-alt { background: linear-gradient(180deg, var(--cream), var(--sand) 50%, var(--cream)); }
.section-dark { background: radial-gradient(1100px 600px at 80% -10%, var(--charcoal-2), var(--charcoal) 55%, var(--ink) 100%); color: #fff; }
.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head p { color: var(--stone); font-size: 1.08rem; margin-top: 14px; }
.section-head-light p { color: rgba(255,255,255,.72); }
.block-title { font-size: 1.45rem; margin: 46px 0 22px; }
.block-title:first-of-type { margin-top: 8px; }

/* ---- Services cards ---- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; position: relative;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.svc-card.popular { border-color: var(--gold); box-shadow: 0 18px 44px rgba(176,137,76,.18); }
.svc-badge { position: absolute; top: -12px; right: 22px; background: var(--gold); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.svc-pages { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.svc-card h3 { margin: 10px 0 8px; }
.svc-card p { color: var(--stone); font-size: .96rem; flex: 1; }
.svc-price { margin-top: 22px; font-family: var(--serif); }
.svc-price small { display: block; font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.svc-price b { font-size: 1.7rem; color: var(--ink); }
.svc-card .btn { margin-top: 18px; }

/* ---- Build-by-page ---- */
.byp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.byp-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; box-shadow: var(--shadow-sm); }
.byp-card .rate { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-deep); }
.byp-card .unit { font-size: .8rem; color: var(--stone); }
.byp-card h4 { font-size: 1.02rem; margin: 12px 0 8px; }
.byp-card p { font-size: .88rem; color: var(--stone); }
.worked-example {
  margin-top: 26px; background: var(--sand-2); border: 1px dashed var(--gold); border-radius: var(--radius-sm);
  padding: 20px 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.we-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.worked-example p { font-size: 1.05rem; }

/* ---- Add-ons ---- */
.addons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; }
.addon-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 15px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.addon-row span:first-child { font-weight: 500; }
.addon-row .price { font-family: var(--serif); font-weight: 600; color: var(--gold-deep); white-space: nowrap; }

/* ---- Plans (hosting + care) ---- */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.plan-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.plan-card.popular { border-color: var(--gold); box-shadow: 0 18px 44px rgba(176,137,76,.16); }
.plan-card h4 { font-family: var(--serif); font-size: 1.2rem; }
.plan-price { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); margin: 12px 0 4px; }
.plan-price small { font-family: var(--sans); font-size: .8rem; color: var(--stone); font-weight: 500; }
.plan-annual { font-size: .82rem; color: var(--gold-deep); font-weight: 600; }
.plan-card p { font-size: .9rem; color: var(--stone); margin-top: 14px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.domains-list, .care-list { display: flex; flex-direction: column; gap: 12px; }
.domain-row, .care-row { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.domain-row .d-name, .care-row .d-name { font-family: var(--serif); font-size: 1.08rem; }
.domain-row .d-for, .care-row .d-for { font-size: .84rem; color: var(--stone); }
.domain-row .price, .care-row .price { font-family: var(--serif); font-weight: 600; color: var(--gold-deep); white-space: nowrap; }
.includes-list { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.includes-list li { position: relative; padding-left: 26px; font-size: .9rem; color: var(--charcoal); }
.includes-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold-soft); }
.includes-list li::after { content: ""; position: absolute; left: 5px; top: 9px; width: 5px; height: 8px; border-right: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep); transform: rotate(42deg); }

/* =============================== QUOTE BUILDER =============================== */
.quote-builder { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
.qb-panel { background: rgba(255,255,255,.05); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 30px; }
.qb-step-title { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 4px; color: #fff; }
.qb-step-sub { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.qb-group { margin-bottom: 30px; }
.qb-group:last-child { margin-bottom: 0; }

/* selectable option tiles */
.qb-options { display: grid; gap: 10px; }
.qb-options.cols-2 { grid-template-columns: 1fr 1fr; }
.qb-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-sm); cursor: pointer;
  background: rgba(255,255,255,.04); border: 1.5px solid var(--line-light);
  transition: border-color .2s, background .2s; color: #fff;
}
.qb-opt:hover { border-color: var(--gold-soft); }
.qb-opt.selected { border-color: var(--gold); background: rgba(176,137,76,.16); }
.qb-opt .o-main { display: flex; flex-direction: column; gap: 2px; }
.qb-opt .o-name { font-weight: 600; font-size: .96rem; }
.qb-opt .o-desc { font-size: .8rem; color: rgba(255,255,255,.6); }
.qb-opt .o-price { font-family: var(--serif); font-weight: 600; color: var(--gold-soft); white-space: nowrap; font-size: .98rem; }
.qb-opt input { accent-color: var(--gold); width: 18px; height: 18px; flex: none; }

/* steppers */
.qb-stepper { display: flex; align-items: center; gap: 10px; }
.qb-stepper button { width: 34px; height: 34px; border-radius: 9px; border: 1.5px solid var(--line-light); background: rgba(255,255,255,.06); color: #fff; font-size: 1.2rem; cursor: pointer; transition: .2s; }
.qb-stepper button:hover { border-color: var(--gold); color: var(--gold-soft); }
.qb-stepper output { min-width: 28px; text-align: center; font-weight: 700; font-size: 1.05rem; }
.qb-counter-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line-light); }
.qb-counter-row:last-child { border-bottom: 0; }
.qb-counter-row .c-label { font-weight: 500; }
.qb-counter-row .c-rate { font-size: .8rem; color: rgba(255,255,255,.55); display: block; }

.qb-field { margin-bottom: 14px; }
.qb-field label { display: block; font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 6px; font-weight: 500; }
.qb-field input, .qb-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--line-light);
  background: rgba(255,255,255,.06); color: #fff; font-family: var(--sans); font-size: .95rem;
}
.qb-field input:focus, .qb-field textarea:focus { outline: none; border-color: var(--gold); }
.qb-field input::placeholder, .qb-field textarea::placeholder { color: rgba(255,255,255,.4); }
.qb-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* summary panel */
.qb-summary { position: sticky; top: 96px; background: #fff; color: var(--ink); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); }
.qb-summary h3 { font-size: 1.15rem; margin-bottom: 4px; }
.qb-summary .ref { font-size: .78rem; color: var(--stone); margin-bottom: 18px; letter-spacing: .04em; }
.qb-lines { display: flex; flex-direction: column; gap: 9px; max-height: 230px; overflow-y: auto; padding-right: 4px; }
.qb-line { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; }
.qb-line span:first-child { color: var(--charcoal); }
.qb-line span:last-child { font-weight: 600; white-space: nowrap; }
.qb-line.muted span { color: var(--stone); }
.qb-divider { height: 1px; background: var(--line); margin: 16px 0; }
.qb-total-row { display: flex; justify-content: space-between; align-items: baseline; margin: 6px 0; }
.qb-total-row .t-label { font-size: .9rem; color: var(--stone); }
.qb-total-row .t-val { font-family: var(--serif); font-weight: 600; }
.qb-total-row.grand { padding: 14px 16px; margin: 14px -10px 0; background: var(--sand-2); border-radius: 12px; }
.qb-total-row.grand .t-label { color: var(--ink); font-weight: 600; font-size: .95rem; }
.qb-total-row.grand .t-val { font-size: 1.7rem; color: var(--gold-deep); }
.qb-recurring { font-size: .82rem; color: var(--stone); margin-top: 10px; }
.qb-actions { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.qb-actions .btn { width: 100%; }
.qb-note { font-size: .76rem; color: var(--stone); text-align: center; margin-top: 12px; }

/* feedback / success */
.qb-feedback { margin-top: 14px; padding: 14px 16px; border-radius: 12px; font-size: .9rem; display: none; }
.qb-feedback.show { display: block; }
.qb-feedback.ok { background: #e8f3ea; color: #1f6b3b; border: 1px solid #b9ddc4; }
.qb-feedback.err { background: #fbeaea; color: #9b2c2c; border: 1px solid #e6c3c3; }
.qb-feedback.info { background: var(--sand-2); color: var(--charcoal); border: 1px solid var(--gold-soft); }
.spinner { display: inline-block; width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -2px; margin-right: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================== WHY =============================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-num { font-family: var(--serif); font-size: 1.1rem; color: #fff; background: var(--gold); width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px; }
.why-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-card p { color: var(--stone); font-size: .94rem; }
.payment-terms { margin-top: 30px; background: var(--charcoal); color: #fff; border-radius: var(--radius); padding: 26px 30px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.pt-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }
.payment-terms p { font-size: 1.02rem; }

/* =============================== CONTACT =============================== */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-list { margin-top: 26px; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: center; }
.c-ico { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--sand-2); display: grid; place-items: center; }
.c-ico svg { width: 22px; height: 22px; fill: var(--gold-deep); }
.contact-list strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--stone); }
.contact-list a, .contact-list span { font-size: 1.05rem; color: var(--ink); }
.contact-list a:hover { color: var(--gold-deep); }
.contact-cta { background: var(--charcoal); color: #fff; border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow); }
.contact-cta h3 { font-size: 1.5rem; margin-bottom: 10px; }
.contact-cta p { color: rgba(255,255,255,.72); margin-bottom: 22px; }
.contact-cta .btn { margin: 6px; }

/* =============================== FOOTER =============================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 56px 0 28px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 260px; }
.footer-brand img { width: 54px; }
.footer-brand p { font-family: var(--serif); font-style: italic; color: var(--gold-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { padding-top: 22px; font-size: .85rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom .muted { color: rgba(255,255,255,.45); }

/* =============================== WHATSAPP FLOAT =============================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px;
  background: #25D366; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s; animation: pop .4s ease .6s both;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* =============================== REVEAL ANIM =============================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-logo, .hero-chip, .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* =============================== RESPONSIVE =============================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero-art { order: -1; }
  .hero-card { max-width: 300px; }
  .cards-grid, .plans-grid, .byp-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-builder { grid-template-columns: 1fr; }
  .qb-summary { position: static; }
  .two-col, .contact-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px 0;
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.2,.7,.2,1); box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin: 12px 24px; text-align: center; border-radius: 999px; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
  .addons-grid, .includes-list { grid-template-columns: 1fr; }
  .cards-grid, .plans-grid, .byp-grid, .why-grid { grid-template-columns: 1fr; }
  .qb-options.cols-2 { grid-template-columns: 1fr; }
  .qb-row-2 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
