/* ======================================================================
   ZK Driving School — styles
   Brand colours live in :root below. Change --brand to recolour the
   whole site in one place (e.g. gold #F5B301, blue #2563EB).
   ====================================================================== */

:root {
  --ink:        #0A1C3D;   /* deep navy (hero / dark sections) — brand */
  --ink-2:      #0D2247;
  --ink-3:      #143160;
  --surface:    #FFFFFF;
  --surface-2:  #F3F7FD;   /* light alternate section */
  --line:       #E4EAF3;
  --text:       #0E1726;   /* body text on light */
  --text-soft:  #55627A;
  --text-light: #EAF1FB;   /* text on dark */
  --text-light-soft: #A6B6D4;

  --brand:        #2F80ED; /* brand blue */
  --brand-strong: #1F6AD4;
  --brand-dark:   #14508F; /* darker blue for text on light */
  --brand-soft:   #E8F1FE;
  --brand-glow:   rgba(47,128,237,.35);
  --gold:         #F5B301; /* gold accent + stars */

  --radius:    20px;
  --radius-sm: 12px;
  --shadow:    0 14px 40px rgba(10,28,61,.12);
  --shadow-sm: 0 6px 18px rgba(10,28,61,.08);
  --ring:      0 0 0 4px var(--brand-glow);

  --maxw: 1160px;
  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.02em; }
.ico { width: 1em; height: 1em; fill: currentColor; flex: none; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.container.narrow { max-width: 820px; }

/* ---------- buttons ---------- */
.btn {
  --b: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; text-align: center;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-sm { padding: .6rem 1rem; font-size: .92rem; }
.btn-lg { padding: 1.05rem 1.6rem; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px var(--brand-glow); }
.btn-primary:hover { background: var(--brand-strong); transform: translateY(-2px); box-shadow: 0 16px 30px var(--brand-glow); }
.btn-outline { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand-soft); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* button loading spinner */
.btn-spinner { display: none; width: 1.05em; height: 1.05em; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .7s linear infinite; }
.btn.is-loading .btn-label { opacity: .5; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); }
.logo-mark {
  display: block; width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 2px 8px rgba(10,28,61,.18);
}
.logo-text { font-weight: 800; font-size: 1.06rem; line-height: 1; color: var(--text); display: flex; flex-direction: column; gap: 2px; }
.logo-text small { font-weight: 600; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-dark); }
.nav { display: flex; gap: 1.5rem; }
.nav a { font-weight: 600; font-size: .95rem; color: var(--text-soft); transition: color .15s; }
.nav a:hover { color: var(--brand-dark); }
.header-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 40px; border: 1.5px solid var(--line);
  border-radius: 11px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; background: radial-gradient(120% 120% at 80% 0%, #10294F 0%, var(--ink) 55%); color: var(--text-light); overflow: hidden; }
.hero-glow { position: absolute; inset: -20% -10% auto auto; width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, var(--brand-glow), transparent 62%); filter: blur(20px); opacity: .8; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem); }
.hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; margin: .6rem 0 1.1rem; }
.hero-copy .lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--text-light-soft); max-width: 36ch; }
.hero-copy .lead strong { color: #fff; }
.grad { background: linear-gradient(100deg, var(--brand) 10%, var(--gold) 95%); -webkit-background-clip: text; background-clip: text; color: transparent; }
/* make the headline price really pop on the navy hero */
.price-pop { color: var(--gold); font-weight: 900; font-size: 1.16em; white-space: nowrap;
  text-shadow: 0 3px 22px rgba(245,179,1,.4); }
/* on mobile, make the price the dominant element on the screen */
@media (max-width: 640px) { .price-pop { font-size: 1.5em; text-shadow: 0 4px 26px rgba(245,179,1,.5); } }

.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-dark); }
.eyebrow.light { color: #8fe9bb; }
.eyebrow.center { justify-content: center; }
.hero .eyebrow { color: #8fe9bb; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-glow); }

.hero-badges { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; }
.hero-badges li { display: inline-flex; align-items: center; gap: .45rem; font-size: .92rem; font-weight: 600; color: var(--text-light); }
.hero-badges .ico { color: var(--brand); width: 1.1em; height: 1.1em; }

/* hero google rating */
.hero-rating { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 .4rem;
  padding: .38rem .72rem; border-radius: 999px; text-decoration: none;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); transition: background .15s ease; }
.hero-rating:hover { background: rgba(255,255,255,.14); }
.hero-rating .google-g { width: 17px; height: 17px; flex: none; }
.hero-rating-stars { color: var(--gold); letter-spacing: 1px; font-size: .92rem; }
.hero-rating-text { color: var(--text-light); font-weight: 700; font-size: .8rem; }

/* hero right column: floating deals above the form */
.hero-grid { align-items: start; }
.hero-right { display: flex; flex-direction: column; gap: 1.1rem; }

/* hero mobile CTA cluster — shows right under the £35 headline on phones/tablets */
.hero-cta { display: none; flex-direction: column; gap: .6rem; margin: .2rem 0 1.3rem; max-width: 440px; }
.hero-cta .btn { white-space: normal; }
.hero-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
@media (max-width: 640px) { .hero-cta { display: flex; } }

/* hero "popular deal" banner — sits under the mobile CTA, never above it */
.hero-deal { display: flex; align-items: center; gap: .65rem; margin: 0 0 1.3rem; max-width: 440px;
  padding: .7rem .9rem; border-radius: 12px; text-decoration: none;
  background: linear-gradient(100deg, rgba(245,179,1,.18), rgba(245,179,1,.05));
  border: 1px solid rgba(245,179,1,.55); transition: background .15s ease; }
.hero-deal:hover { background: linear-gradient(100deg, rgba(245,179,1,.28), rgba(245,179,1,.09)); }
.hero-deal-flame { font-size: 1.4rem; line-height: 1; flex: none; }
.hero-deal-text { display: flex; flex-direction: column; gap: .28rem; font-size: .9rem; color: var(--text-light-soft); line-height: 1.35; }
.hero-deal-text strong { color: #fff; font-weight: 800; }
.hero-deal-rate { color: var(--gold); font-weight: 800; white-space: nowrap; }
.hero-deal-countdown { color: var(--gold); font-weight: 800; font-size: .8rem; letter-spacing: .01em; }

/* countdown pill (used in the promo banner) */
.deal-countdown { align-self: flex-start; margin-top: .55rem; font-size: .72rem; font-weight: 800; letter-spacing: .01em;
  color: var(--ink); background: var(--gold); padding: .26rem .55rem; border-radius: 999px; white-space: nowrap; }

/* promo banner in packages section */
.promo-banner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin: 0 auto 1.6rem; max-width: 760px;
  padding: 1.1rem 1.4rem; border-radius: var(--radius); color: #fff;
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 100%); border: 1px solid rgba(245,179,1,.5);
  box-shadow: 0 16px 40px rgba(10,28,61,.28); }
.promo-banner-tag { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  padding: .3rem .6rem; border: 1px solid rgba(245,179,1,.5); border-radius: 999px; white-space: nowrap; }
.promo-banner-main { display: flex; align-items: center; gap: 1rem; flex: 1 1 240px; }
.promo-banner-price { font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; white-space: nowrap; }
.promo-banner-price small { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.75); }
.promo-banner-text { display: flex; flex-direction: column; }
.promo-banner-text strong { font-size: 1.05rem; }
.promo-banner-text span { font-size: .86rem; color: var(--text-light-soft); }
.promo-banner-btn { flex: none; }
@media (max-width: 560px) { .promo-banner-price { font-size: 2rem; } .promo-banner-btn { width: 100%; } }

/* hero form card */
.hero-form-card { background: var(--surface); color: var(--text); border-radius: var(--radius); padding: 1.3rem; box-shadow: 0 30px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.6); }
.hero-form-head h2 { font-size: 1.35rem; }
.hero-form-head p { color: var(--text-soft); font-size: .92rem; margin-top: .35rem; }
.hero-form-card .lead-form { margin-top: .3rem; }
.hero-form-card .btn-lg { margin-top: 1.1rem; }
.or-sep { display: flex; align-items: center; gap: .8rem; margin: 1rem 0 .2rem; color: var(--text-soft); font-size: .76rem; font-weight: 600; text-align: center; }
.or-sep::before, .or-sep::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* quick contact buttons (call / whatsapp / text) */
.quick-contact { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; margin-top: .55rem; }
.quick-contact .btn { padding: .68rem 1rem; font-size: .95rem; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1eb457; transform: translateY(-2px); }

/* compact hero form so it fits smaller / older screens */
.hero-form-card .lead-form { gap: .55rem; }
.hero-form-card .field-row { gap: .55rem; }
.hero-form-card .field label { font-size: .76rem; }
.hero-form-card .field input, .hero-form-card .field select, .hero-form-card .field textarea { padding: .58rem .72rem; font-size: .92rem; border-radius: 10px; }
.hero-form-card .hero-form-head h2 { font-size: 1.18rem; }
.hero-form-card .hero-form-head p { font-size: .84rem; margin-top: .25rem; }

/* package deals */
.packages { margin-top: 2.6rem; }
.packages-eyebrow { margin-top: 0; }
.packages-head { text-align: center; font-size: 1.5rem; margin: .3rem 0 .3rem; }
.packages > .section-sub { text-align: center; max-width: 46ch; margin: 0 auto 1.4rem; }
.pl-dur small { color: var(--text-soft); font-weight: 500; }

/* ---------- forms ---------- */
.lead-form { display: grid; gap: .85rem; }
.field { display: grid; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--text);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { font-size: .9rem; font-weight: 600; min-height: 0; }
.form-status.ok { color: var(--brand-dark); }
.form-status.err { color: #d4332f; }
.form-fineprint { font-size: .8rem; color: var(--text-soft); text-align: center; margin-top: .2rem; }
.form-fineprint a { color: var(--brand-dark); font-weight: 600; }

/* ---------- trust strip ---------- */
.trust { background: var(--ink-2); color: var(--text-light); border-top: 1px solid rgba(255,255,255,.06); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.6rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.trust-item strong { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.trust-item strong span { font-size: .9rem; color: var(--text-light-soft); }
.trust-item small { font-size: .82rem; color: var(--text-light-soft); }
.trust-stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.08); }

/* ---------- sections ---------- */
.section { padding-block: clamp(3.4rem, 7vw, 6rem); }
.section-alt { background: var(--surface-2); }
.section-dark { background: radial-gradient(120% 120% at 20% 0%, #10294F 0%, var(--ink) 60%); color: var(--text-light); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin: .7rem 0 0; }
.h2.light, .section-sub.light { color: var(--text-light); }
.section-sub { color: var(--text-soft); font-size: 1.05rem; margin-top: .8rem; }
.section-sub.light { color: var(--text-light-soft); }
.section-sub a { color: var(--brand-dark); font-weight: 600; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d4e6dd; }

.feature-ico { font-size: 1.9rem; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 15px;
  background: var(--brand-soft); margin-bottom: 1rem; }
.feature h3, .lesson h3, .price h3, .review footer { font-size: 1.18rem; }
.feature h3 { margin-bottom: .45rem; }
.feature p, .lesson p { color: var(--text-soft); }
.lesson h3 { margin-bottom: .5rem; position: relative; padding-left: 1.1rem; }
.lesson h3::before { content: ""; position: absolute; left: 0; top: .15em; width: 5px; height: 1em; border-radius: 3px; background: var(--brand); }

/* ---------- pricing ---------- */
.pricing .price { display: flex; flex-direction: column; position: relative; }
.price h3 { margin-bottom: .4rem; }
.price-note { color: var(--text-soft); font-size: .95rem; }
.price .btn { margin-top: auto; }
.price.featured { border-color: var(--brand); box-shadow: 0 20px 44px var(--brand-glow); transform: translateY(-6px); }
.price.featured:hover { transform: translateY(-10px); }
.badge-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .76rem;
  padding: .3rem .8rem; border-radius: 999px; letter-spacing: .03em; white-space: nowrap; }
.pricing-fineprint { text-align: center; color: var(--text-soft); font-size: .92rem; margin-top: 1.8rem; }
.pricing-fineprint a { color: var(--brand-dark); font-weight: 700; }

/* two-card pricing (manual / automatic) */
.pricing-two { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.4rem; max-width: 760px; margin-inline: auto; }
.price-list { list-style: none; padding: 0; margin: .3rem 0 1.1rem; display: grid; }
.price-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px dashed var(--line); }
.price-list li:last-child { border-bottom: none; }
.pl-dur { color: var(--text-soft); font-weight: 600; }
.pl-amt { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--text); }
@media (max-width: 640px) { .pricing-two { grid-template-columns: 1fr; max-width: 420px; } }

/* ---------- passes ---------- */
.passes-cta { text-align: center; margin-top: 2rem; }

/* ---------- reviews ---------- */
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .7rem; }
.review p { color: var(--text); }
.review footer { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--text-soft); margin-top: 1rem; display: flex; align-items: center; gap: .4rem; }

/* google badge + auto-scrolling reviews */
.google-badge { display: inline-flex; align-items: center; gap: .5rem; margin-top: .9rem; padding: .45rem .95rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); font-weight: 600; font-size: .9rem; color: var(--text); }
.google-badge-stars { color: var(--gold); letter-spacing: 1px; }
.google-g { width: 15px; height: 15px; flex: none; }

/* mid-page call-to-action band */
.cta-band { text-align: center; }
.cta-band .section-sub { margin-inline: auto; }
.cta-band-btns { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

/* cookie consent bar */
.cookie-bar { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200; max-width: 560px; margin-inline: auto;
  background: var(--ink); color: var(--text-light); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm);
  box-shadow: 0 14px 40px rgba(0,0,0,.4); padding: 1rem 1.1rem; display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.cookie-bar p { font-size: .88rem; margin: 0; flex: 1 1 240px; color: var(--text-light-soft); }
.cookie-bar-btns { display: flex; gap: .5rem; }
.cookie-bar .btn-ghost { color: var(--text-light); border-color: rgba(255,255,255,.35); }
.cookie-bar[hidden] { display: none; }
@media (max-width: 640px) { .cookie-bar { bottom: 5rem; } }
#reviewGrid .review { display: none; }
#reviewGrid .review.show { display: block; }

/* ---------- about ---------- */
.about-grid { max-width: 780px; margin-inline: auto; }
.about-copy .h2 { margin-bottom: 1rem; }
.about-copy p { color: var(--text-soft); margin-bottom: 1rem; }
.about-copy p strong { color: var(--text); }
.about-points { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .6rem; }
.about-points li { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.about-points .ico { color: var(--brand); width: 1.2em; height: 1.2em; }

/* ---------- areas ---------- */
.area-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.area-chips li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.05rem; font-weight: 600;
  font-size: .92rem; color: var(--text); box-shadow: var(--shadow-sm); transition: transform .15s, border-color .15s; }
.area-chips li:hover { transform: translateY(-2px); border-color: var(--brand); }

/* ---------- faq ---------- */
.faq { display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.3rem; box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  padding: 1.15rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--brand-dark); transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding-bottom: 1.2rem; color: var(--text-soft); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-lead { color: var(--text-light-soft); font-size: 1.08rem; margin: 1rem 0 1.8rem; max-width: 40ch; }
.contact-methods { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-methods li { display: flex; align-items: center; gap: .9rem; }
.cm-ico { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.07); font-size: 1.3rem; }
.contact-methods small { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light-soft); }
.contact-methods a { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; }
.contact-methods a:hover { color: var(--brand); }
.contact-form-card { background: #fff; color: var(--text); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 30px 60px rgba(0,0,0,.35); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--text-light-soft); padding-top: 3.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { max-width: 34ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.footer-col a { display: block; padding: .3rem 0; font-size: .94rem; color: var(--text-light-soft); transition: color .15s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.08); font-size: .86rem; }

/* ---------- sticky mobile call bar ---------- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none; gap: .7rem; padding: .7rem 1rem;
  padding-bottom: calc(.7rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.mobile-bar .btn { flex: 1; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-form-card { max-width: 460px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: .5rem 22px 1rem; transform: translateY(-130%);
    transition: transform .28s ease; box-shadow: var(--shadow); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .header-cta .btn-ghost { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .price.featured { transform: none; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
  .trust-item:nth-child(3) { border-left: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
