/* =========================================================
   BC Accountants — Design System
   Palette: Trust blue (#1E40AF) + Profit green (#059669)
   Type: Lexend (display) / Source Sans 3 (body)
   ========================================================= */

:root {
  /* Color tokens */
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-50: #eff4ff;
  --primary-100: #dbe6ff;
  --accent: #059669;
  --accent-dark: #047857;
  --accent-50: #ecfdf5;

  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --ring: rgba(30, 64, 175, 0.35);

  --gold: #c79a3a; /* subtle premium accent for stars/details */

  /* Typography */
  --font-display: "Lexend", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing & shape */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container: 1180px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(30, 64, 175, 0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 160ms;
  --t-med: 300ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--surface { background: var(--surface); }
[id] { scroll-margin-top: 96px; }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2px 26px; transition: box-shadow var(--t-med) var(--ease), border-color var(--t-med); }
.faq details[open] { box-shadow: var(--shadow-md); border-color: transparent; }
.faq summary { list-style: none; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); border-radius: 6px; }
.faq .chev { flex: 0 0 auto; width: 22px; height: 22px; color: var(--primary); transition: transform var(--t-med) var(--ease); }
.faq details[open] .chev { transform: rotate(180deg); }
.faq .ans { padding: 0 0 22px; color: var(--muted); font-size: 1.02rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-med) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  will-change: transform;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--blue { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.btn--blue:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--primary); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand .mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand .mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted); margin-top: -2px; }
.brand-logo { height: 38px; width: auto; display: block; }
.site-footer .brand-logo { height: 42px; }
@media (max-width: 560px) { .brand-logo { height: 30px; } }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-soft);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-50); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-family: var(--font-display); color: var(--ink); font-size: 0.95rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--accent); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  position: relative;
}
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t-med) var(--ease), opacity var(--t-fast); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(59, 130, 246, 0.12), transparent 60%),
    radial-gradient(50% 50% at 0% 30%, rgba(5, 150, 105, 0.08), transparent 60%),
    linear-gradient(180deg, var(--primary-50), transparent 40%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--primary), var(--primary-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--ink-soft); }
.trust-item strong { font-family: var(--font-display); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
  z-index: 2;
}
.hero-card .hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-card .hc-top span { font-family: var(--font-display); font-weight: 600; }
.hc-pill { font-size: 0.78rem; font-weight: 600; color: var(--accent); background: var(--accent-50); padding: 5px 12px; border-radius: 999px; }
.hc-bars { display: flex; align-items: flex-end; gap: 12px; height: 130px; padding: 8px 0 0; }
.hc-bars .bar { flex: 1; background: linear-gradient(180deg, var(--primary-light), var(--primary)); border-radius: 8px 8px 4px 4px; opacity: 0.92; }
.hc-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1px solid var(--border); }
.hc-row:first-of-type { margin-top: 18px; }
.hc-row .label { color: var(--muted); font-size: 0.95rem; }
.hc-row .val { font-family: var(--font-display); font-weight: 600; }
.hc-row .val.up { color: var(--accent); }
.hero-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.hero-float .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--accent); }
.hero-float .ic svg { width: 20px; height: 20px; }
.hero-float small { color: var(--muted); display: block; font-size: 0.78rem; }
.hero-float strong { font-family: var(--font-display); }
.hero-float.f1 { top: -24px; left: -28px; }
.hero-float.f2 { bottom: -26px; right: -22px; }

/* ---------- Logos / trust bar ---------- */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 64px); }
.logos .lbl { width: 100%; text-align: center; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.logos .logo { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--muted); opacity: 0.7; transition: opacity var(--t-fast), color var(--t-fast); letter-spacing: -0.02em; }
.logos .logo:hover { opacity: 1; color: var(--primary); }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-med) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--primary-50); color: var(--primary);
  margin-bottom: 20px;
  transition: background var(--t-med), color var(--t-med);
}
.card:hover .icon { background: var(--primary); color: #fff; }
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 1rem; }
.card .more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  color: var(--primary);
}
.card .more svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.card:hover .more svg { transform: translateX(4px); }

/* ---------- Why / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.feature-list { display: grid; gap: 22px; margin-top: 28px; }
.feature { display: flex; gap: 16px; }
.feature .fic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--accent-50); color: var(--accent); display: grid; place-items: center; }
.feature .fic svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 0.98rem; }

.media-stack { position: relative; }
.media-stack .panel {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 40px; color: #fff; min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.media-stack .panel h3 { color: #fff; }
.media-stack .panel .quote { font-size: 1.3rem; font-family: var(--font-display); line-height: 1.4; }
.media-stack .panel .who { display: flex; align-items: center; gap: 14px; }
.media-stack .panel .who .av { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.18); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.media-stack .panel .who small { color: rgba(255,255,255,0.75); display: block; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 14px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.2rem); line-height: 1; background: linear-gradient(120deg, var(--primary), var(--primary-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); margin-top: 10px; font-size: 0.98rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .n {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--border); color: var(--primary);
  box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.step h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.98rem; }
.step:not(:last-child)::before {
  content: ""; position: absolute; top: 44px; left: 64px; right: -12px; height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.tcard .stars { margin-bottom: 16px; }
.tcard blockquote { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 22px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-50); color: var(--primary); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.tcard .who strong { font-family: var(--font-display); display: block; }
.tcard .who small { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 80% 0%, rgba(5,150,105,0.4), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 700px; margin: 0 auto 16px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1224; color: #cbd5e1; padding: 72px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand small { color: #94a3b8; }
.foot-about { color: #94a3b8; font-size: 0.98rem; max-width: 320px; }
.foot-col h5 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 18px; }
.foot-col a, .foot-col li { color: #94a3b8; font-size: 0.96rem; padding: 6px 0; display: block; transition: color var(--t-fast); }
.foot-col a:hover { color: #fff; }
.foot-contact li { display: flex; gap: 12px; align-items: flex-start; }
.foot-contact svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; margin-top: 4px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #64748b; font-size: 0.9rem; }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: #cbd5e1; transition: background var(--t-fast), color var(--t-fast); }
.socials a:hover { background: var(--primary); color: #fff; }
.socials svg { width: 18px; height: 18px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 150px 0 60px; background: var(--surface); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 90% 0%, rgba(59,130,246,0.1), transparent 60%); }
.page-hero .container { position: relative; }
.crumbs { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.crumbs a:hover { color: var(--primary); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 620px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; margin-bottom: 16px; transition: box-shadow var(--t-med), transform var(--t-med); }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-50); color: var(--primary); display: grid; place-items: center; flex: 0 0 auto; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { font-family: var(--font-display); margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--muted); }
.info-card a:hover { color: var(--primary); }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: 0.92rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--surface);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px var(--ring); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.88rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; padding: 16px; border-radius: var(--radius-sm); background: var(--accent-50); color: var(--accent-dark); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .card:hover, .info-card:hover, .hero-float { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .grid-3, .tgrid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step:not(:last-child)::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 16px 24px 28px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--t-med) var(--ease), opacity var(--t-med);
  }
  body.nav-open .nav-links { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 16px; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .media-stack { order: -1; }
  .hero-float.f1 { left: 0; }
  .hero-float.f2 { right: 0; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .tgrid, .stats, .steps, .foot-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { padding-top: 124px; }
  .nav-cta .btn { padding: 11px 18px; }
  .hero-float { display: none; }
}
