/*
Theme Name:  Big Van
Theme URI:   https://bigvan.co.nz
Author:      Firefly Websites
Author URI:  https://fireflywebsites.co.nz
Description: Man with a van — Kapiti Coast & Wellington. Rod's Big Van. Built by Firefly Websites, Porirua.
Version:     1.0.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      8.0
License:     GPL-2.0-or-later
Text Domain: bigvan
*/

/* ═══════════════════════════════════════════════
   FIREFLY WEBSITES — Big Van Design System
   Skill v1.2 | Custom PHP Theme
   ═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { max-width: 100%; height: auto; display: block; }

/* ── Design tokens ── */
:root {
  --primary:     #F4500A;
  --primary-dk:  #d63d06;
  --secondary:   #F9C030;
  --secondary-dk:#e0aa1a;
  --dark:        #1A1F2E;
  --dark-mid:    #252C40;
  --text:        #1A1F2E;
  --muted:       #5A6275;
  --light:       #F6F7FA;
  --border:      rgba(26,31,46,0.12);
  --white:       #FFFFFF;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 16px rgba(26,31,46,0.10);
  --shadow-lg:   0 8px 40px rgba(26,31,46,0.18);
  --head:        'Bebas Neue', Impact, Arial Narrow, sans-serif;
  --body:        'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w:       1180px;
}

/* ── Base ── */
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); transition: color .2s; }
a:hover { color: var(--primary-dk); }
h1,h2,h3,h4,h5 {
  font-family: var(--head);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--text);
}

/* ── Layout ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1rem,4vw,2rem); }
.section    { padding: clamp(3rem,7vw,5rem) 0; }
.section-sm { padding: clamp(2rem,4vw,3rem) 0; }
.bg-dark  { background: var(--dark); }
.bg-mid   { background: var(--dark-mid); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }

/* ── Typography scale ── */
.label {
  display: block;
  font-family: var(--body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary); margin-bottom: .5rem;
}
.h1 { font-size: clamp(2.8rem,7vw,5.5rem); }
.h2 { font-size: clamp(2rem,4.5vw,3.2rem); }
.h3 { font-size: clamp(1.5rem,3vw,2rem); }
.lead { font-size: clamp(1rem,1.5vw,1.15rem); color: var(--muted); line-height: 1.7; }
.text-white    { color: #fff !important; }
.text-white-65 { color: rgba(255,255,255,.65); }
.text-white-80 { color: rgba(255,255,255,.8); }
.text-muted    { color: var(--muted); }
.text-primary  { color: var(--primary); }
.text-secondary{ color: var(--secondary); }
.text-center   { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.5rem; }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.25rem,2.5vw,2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.align-center { align-items: center; }
.align-start  { align-items: start; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-family: var(--head); font-size: 1.1rem; letter-spacing: .04em;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; transition: all .2s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary   { background: var(--primary);   color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); color: #fff; }
.btn-secondary { background: var(--secondary); color: var(--dark); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dk); border-color: var(--secondary-dk); color: var(--dark); }
.btn-outline   { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn-ghost     { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: .6rem 1.3rem; font-size: .95rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); padding: 2rem;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.icon-wrap {
  width: 54px; height: 54px; border-radius: 12px;
  background: rgba(244,80,10,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; flex-shrink: 0;
}
.icon-wrap svg { width: 26px; height: 26px; fill: var(--primary); }

/* ── Suburb tags ── */
.tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.tag  { background: var(--light); color: var(--text); padding: .3rem .85rem; border-radius: 2rem; font-size: .85rem; font-weight: 500; }

/* ── Checklist ── */
.checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.checklist li { display: flex; align-items: flex-start; gap: .65rem; font-size: .96rem; }
.checklist li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: .05em; }

/* ── Trust strip ── */
.trust-strip { background: rgba(255,255,255,.06); border-top: 1px solid rgba(255,255,255,.08); padding: 1.1rem 0; margin-top: 3rem; }
.trust-inner { display: flex; flex-wrap: wrap; gap: .75rem 2.5rem; justify-content: center; align-items: center; }
.trust-item  { display: flex; align-items: center; gap: .5rem; color: var(--secondary); font-size: .88rem; font-weight: 600; }
.trust-item svg { width: 14px; height: 14px; fill: var(--secondary); flex-shrink: 0; }

/* ── Pricing cards ── */
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; align-items: start; }
.price-card {
  border-radius: var(--radius-lg); border: 2px solid var(--border);
  padding: 2rem 1.75rem; text-align: center;
  display: flex; flex-direction: column; gap: .25rem;
  background: var(--white); transition: all .2s;
}
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.price-card.featured { background: var(--dark); border-color: var(--primary); color: #fff; transform: scale(1.04); }
.price-card .price-label { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .6; }
.price-card .price-amt   { font-family: var(--head); font-size: 3.5rem; color: var(--primary); line-height: 1.1; }
.price-card h3  { font-family: var(--head); font-size: 1.6rem; margin: .4rem 0 .2rem; }
.price-card p   { font-size: .9rem; opacity: .8; line-height: 1.6; flex-grow: 1; }
.price-card .checklist { text-align: left; margin: .75rem 0; font-size: .88rem; }
.price-badge {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .8rem; border-radius: 2rem; margin-bottom: .5rem;
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  font-family: var(--body); font-size: 1.02rem; font-weight: 600;
  color: var(--dark); text-align: left; gap: 1rem;
}
.faq-btn .icon { flex-shrink: 0; transition: transform .2s; }
.faq-btn[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 0 1.25rem; color: var(--muted); line-height: 1.75; }
.faq-body.open { display: block; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: var(--head); font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step h4 { font-family: var(--head); font-size: 1.35rem; margin-bottom: .4rem; }
.step p  { font-size: .93rem; color: var(--muted); }

/* ── Why points ── */
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point  { display: flex; gap: 1rem; }
.why-icon   {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: rgba(244,80,10,.1);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.why-point h4 { font-family: var(--head); font-size: 1.2rem; margin-bottom: .25rem; }
.why-point p  { color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ── Stats grid ── */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.stat { background: var(--light); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.stat-num { font-family: var(--head); font-size: 2.5rem; color: var(--primary); line-height: 1; }
.stat-lbl { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: .2rem; }

/* ── Form ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.25rem; }
.field label { font-weight: 600; font-size: .88rem; color: var(--dark); }
.field input,
.field select,
.field textarea {
  padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--body); font-size: 1rem;
  color: var(--text); background: var(--white); width: 100%; transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--primary); }
.field textarea { resize: vertical; min-height: 100px; }
.honeypot { display: none !important; visibility: hidden !important; }
.notice { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-weight: 500; font-size: .95rem; }
.notice-ok  { background: #E8F8EF; color: #1A5E38; border-left: 4px solid #2ECC71; }
.notice-err { background: #FDE8E8; color: #9B2020; border-left: 4px solid #E53E3E; }

/* ── Contact info ── */
.contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--muted); font-size: .95rem; }
.contact-list li svg { fill: var(--primary); flex-shrink: 0; margin-top: .15rem; width: 16px; height: 16px; }
.contact-list a { color: var(--muted); text-decoration: none; }
.contact-list a:hover { color: var(--primary); }

/* ── CTA link blocks (contact page) ── */
.cta-link-row { display: flex; flex-direction: column; gap: 1rem; }
.cta-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem; border-radius: var(--radius-lg);
  border: 2px solid var(--border); text-decoration: none; color: var(--dark);
  font-family: var(--head); font-size: 1.3rem; letter-spacing: .03em;
  transition: border-color .2s, background .2s;
}
.cta-link:hover { border-color: var(--primary); text-decoration: none; color: var(--dark); }
.cta-link.primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.cta-link.primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); color: #fff; }
.cta-link svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

/* ── Form box ── */
.form-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow);
}
.form-box h2 { font-family: var(--head); font-size: 2rem; margin-bottom: .3rem; }
.form-box .form-sub { color: var(--muted); font-size: .88rem; margin-bottom: 1.75rem; }

/* ── Placeholders ── */
.map-ph {
  background: var(--light); border-radius: var(--radius-lg);
  border: 2px dashed var(--border); height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .95rem; font-weight: 500; text-align: center;
}
.photo-ph {
  background: linear-gradient(135deg, var(--dark-mid), var(--dark));
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  color: rgba(255,255,255,.22); font-size: .88rem; text-align: center; padding: 2rem;
}
.photo-ph svg { width: 56px; height: 56px; stroke: rgba(255,255,255,.18); fill: none; stroke-width: 1.5; }

/* ── Dark box ── */
.dark-box { background: var(--dark-mid); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid rgba(255,255,255,.08); }
.dark-box h3 { font-family: var(--head); font-size: 1.8rem; color: var(--secondary); letter-spacing: .03em; margin-bottom: .75rem; }
.dark-box p  { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

/* ── Quote box ── */
.quote-box { background: var(--light); border-radius: var(--radius-lg); padding: 1.75rem; border-left: 4px solid var(--primary); }
.quote-box blockquote { font-family: var(--head); font-size: 1.5rem; color: var(--dark); letter-spacing: .03em; margin-bottom: .4rem; }
.quote-box cite { color: var(--muted); font-size: .88rem; font-style: normal; }

/* ── Trust badge cards ── */
.trust-card { text-align: center; }
.trust-card .tc-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(244,80,10,.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.trust-card .tc-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.trust-card h3 { font-family: var(--head); font-size: 1.3rem; margin-bottom: .4rem; }
.trust-card p  { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ── Page hero ── */
.page-hero { background: var(--dark); padding: clamp(3rem,7vw,5rem) 0; }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.8rem); color: #fff; margin: .4rem 0 1rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 52ch; }

/* ── Hero (home) ── */
.hero { background: linear-gradient(135deg, var(--dark) 0%, #0f1322 100%); padding: clamp(4rem,10vw,7rem) 0 0; position: relative; overflow: hidden; }
.hero::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 65% 80% at 80% 50%, rgba(244,80,10,.13) 0%, transparent 70%); pointer-events:none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.hero-label { font-family: var(--body); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin-bottom: .6rem; }
.hero h1 { font-size: clamp(3rem,7.5vw,5.8rem); color: #fff; line-height: .95; margin-bottom: 1.25rem; }
.hero-strike { text-decoration: line-through; color: rgba(255,255,255,.3); }
.hero-sub { font-size: clamp(.97rem,1.5vw,1.15rem); color: rgba(255,255,255,.72); margin-bottom: 2rem; max-width: 46ch; line-height: 1.7; }
.hero-img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; aspect-ratio: 5/4; background: linear-gradient(145deg, var(--dark-mid), var(--dark)); display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 60px rgba(0,0,0,.45); position: relative; }
.hero-img-ph { display: flex; flex-direction: column; align-items: center; gap: .6rem; color: rgba(255,255,255,.2); text-align: center; padding: 2rem; }
.hero-img-ph svg { width: 64px; height: 64px; stroke: rgba(255,255,255,.18); fill: none; stroke-width: 1.5; }
.hero-img-ph span { font-size: .82rem; }
.hero-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--primary); color: #fff; font-family: var(--head); font-size: .88rem; letter-spacing: .06em; padding: .45rem 1rem; border-radius: 2rem; }

/* ══════════════════════════════
   HEADER
   ══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--dark); border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  column-gap: clamp(1.5rem,4vw,4rem); align-items: center; padding: 1rem 0;
}
.site-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: var(--head); font-size: 2rem; color: #fff; letter-spacing: .05em; }
.logo-text span { color: var(--primary); }
.logo-sub  { font-size: .65rem; color: rgba(255,255,255,.38); letter-spacing: .14em; text-transform: uppercase; margin-top: .1rem; }
.site-nav ul { list-style: none; padding: 0; display: flex; gap: clamp(.75rem,2vw,2rem); align-items: center; justify-content: center; }
.site-nav a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .93rem; font-weight: 500; padding: .25rem 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.site-nav a:hover, .site-nav a.current { color: var(--secondary); border-bottom-color: var(--primary); }
.header-right { display: flex; align-items: center; gap: 1rem; }
.header-phone { color: var(--secondary); text-decoration: none; font-weight: 700; font-size: .9rem; display: flex; align-items: center; gap: .4rem; white-space: nowrap; }
.header-phone:hover { color: #fff; text-decoration: none; }
.header-phone svg { width: 15px; height: 15px; fill: currentColor; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: block; background: var(--dark-mid); position: fixed; left: 0; right: 0; z-index: 199; transform: translateY(-110%); transition: transform .25s ease; }
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul { list-style: none; padding: 0; }
.nav-drawer a { display: block; padding: 1rem 1.5rem; color: rgba(255,255,255,.85); text-decoration: none; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.07); transition: background .15s; }
.nav-drawer a:hover { background: rgba(255,255,255,.05); color: var(--secondary); }
.drawer-call { margin: 1rem 1.5rem 1.5rem; width: calc(100% - 3rem); }

/* ══════════════════════════════
   FOOTER — Firefly Standard
   ══════════════════════════════ */

/* CTA strip */
.cta-strip { background: var(--primary); padding: clamp(2.5rem,5vw,3.5rem) 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip-text h2 { font-family: var(--head); font-size: clamp(1.6rem,3vw,2.4rem); color: #fff; margin-bottom: .3rem; letter-spacing: .03em; }
.cta-strip-text p  { color: rgba(255,255,255,.85); font-size: 1rem; }

/* Footer body */
.site-footer { background: var(--dark); padding: clamp(3rem,6vw,4.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { font-family: var(--head); font-size: 2rem; color: #fff; text-decoration: none; letter-spacing: .05em; display: inline-block; }
.footer-logo span { color: var(--primary); }
.footer-tagline { color: rgba(255,255,255,.5); margin: .75rem 0 1.1rem; font-size: .93rem; line-height: 1.55; }
.footer-phone { display: inline-flex; align-items: center; gap: .5rem; color: var(--secondary); font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.footer-phone:hover { color: #fff; text-decoration: none; }
.footer-phone svg { fill: currentColor; width: 15px; height: 15px; }
.footer-heading { font-family: var(--head); font-size: .95rem; color: #fff; margin: 0 0 1rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.58); text-decoration: none; font-size: .93rem; transition: color .2s; }
.footer-links a:hover { color: var(--secondary); }
.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .6rem; color: rgba(255,255,255,.58); font-size: .93rem; }
.footer-contact-list svg { fill: var(--primary); width: 14px; height: 14px; flex-shrink: 0; margin-top: .18rem; }
.footer-contact-list a { color: rgba(255,255,255,.58); text-decoration: none; }
.footer-contact-list a:hover { color: var(--secondary); }

/* Footer bottom bar */
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  color: rgba(255,255,255,.3); font-size: .83rem;
}
.footer-bar a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.footer-bar a:hover { color: var(--secondary); }
.footer-bar-right { display: flex; align-items: center; gap: .4rem; }
.footer-bar-sep { color: rgba(255,255,255,.2); }

/* ══════════════════════════════
   SCROLL ANIMATION
   ══════════════════════════════ */
.anim { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.anim.in { opacity: 1; transform: none; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .site-nav, .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .header-phone { font-size: .82rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-inner .btn-group { justify-content: center; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bar { flex-direction: column; text-align: center; gap: .4rem; }
  .footer-bar-right { flex-direction: column; gap: .2rem; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
