/* TASK MULTI SERVICES LLC — theme: bold/fresh gradient, teal→cyan + sunny accent, geometric sans (Sora + Manrope) */
:root {
  --bg: #eef6f4;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f4faf8;
  --ink: #0a1f1b;
  --ink-soft: #3a4d49;
  --muted: #6c807b;
  --line: #dde9e5;
  --brand: #0e8f78;
  --brand-2: #12c2a3;
  --sky: #1aa6c4;
  --accent: #ffc341;
  --accent-ink: #3a2c00;
  --grad: linear-gradient(135deg, #12c2a3 0%, #0e8f78 45%, #1aa6c4 100%);
  --grad-soft: linear-gradient(135deg, #e6fbf5 0%, #e4f5fb 100%);
  --ring: rgba(18, 194, 163, 0.40);
  --shadow-sm: 0 8px 24px -16px rgba(10, 31, 27, 0.45);
  --shadow: 0 26px 60px -28px rgba(10, 60, 50, 0.45);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1160px;
  --display: "Sora", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --sans: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -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(--display); font-weight: 700; line-height: 1.08; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
p { color: var(--ink-soft); margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 800;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand-2); border-radius: 2px; }
.lead { font-size: 1.18rem; max-width: 60ch; color: var(--ink-soft); }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-left: auto; margin-right: auto; }
.center .eyebrow::before { display: none; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-family: var(--sans);
  font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 16px 34px -16px var(--brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -16px var(--brand); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -16px rgba(255, 195, 65, .8); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--brand-2); color: var(--brand); }
.btn-block { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--ring); outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(238, 246, 244, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm); border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; transition: padding .25s ease; }
.site-header.scrolled .nav { padding: 12px 24px; }
.brand { position: relative; z-index: 60; display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand .mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  overflow: hidden; background: var(--grad); color: #fff; font-size: 1.15rem;
  box-shadow: 0 10px 22px -10px var(--brand); flex: none;
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand .brand-name { line-height: 1; }
.brand .brand-sub { display: block; font-family: var(--sans); font-weight: 700; font-size: .6rem; letter-spacing: .22em; color: var(--muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 14px; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); transition: color .18s ease, background .18s ease; }
.nav-links a:hover { color: var(--brand); background: var(--surface-soft); }
.nav-links a[aria-current="page"] { color: var(--brand); font-weight: 700; }
.nav-cta { color: #fff !important; margin-left: 8px; }
.nav-links a.nav-cta:hover { background: var(--grad); color: #fff !important; box-shadow: 0 16px 34px -16px var(--brand); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; align-items: center; justify-content: center; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .25s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; padding: 88px 0 96px; background: var(--grad-soft); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(18,194,163,.30), transparent 65%); filter: blur(8px); }
.hero::after { content: ""; position: absolute; bottom: -180px; left: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(26,166,196,.22), transparent 65%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--muted); font-weight: 600; font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-2); }

.hero-card { position: relative; background: var(--surface); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero-card .badge { position: absolute; top: -18px; right: 24px; background: var(--accent); color: var(--accent-ink); font-weight: 800; font-size: .8rem; padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.hero-card h3 { margin-bottom: 18px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.check { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--surface-soft); display: grid; place-items: center; color: var(--brand); font-weight: 900; border: 1px solid var(--line); }
.hero-card .price-line { margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--line); display: flex; align-items: baseline; gap: 8px; }
.hero-card .price-line strong { font-family: var(--display); font-size: 2rem; color: var(--ink); }

/* Stats band */
.statband { background: var(--ink); color: #fff; }
.statband .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-top: 56px; padding-bottom: 56px; }
.stat { text-align: center; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .label { color: #b9ccc7; font-weight: 600; font-size: .92rem; }

/* Section heading */
.sec-head { max-width: 62ch; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* Feature / value cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand-2); }
.card .icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--brand); margin-bottom: 18px; font-size: 1.6rem;
  border: 1px solid var(--line);
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }
.card .tag { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--brand); font-size: .92rem; }

/* Service detail rows */
.svc { display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc .num-badge { font-family: var(--display); font-weight: 800; font-size: 1.4rem; width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; color: #fff; background: var(--grad); }
.svc ul { margin: 12px 0 0; padding-left: 18px; color: var(--ink-soft); }
.svc ul li { margin-bottom: 6px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .dot { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; }

/* Split / about */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.media-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--grad-soft); min-height: 360px; position: relative; display: grid; place-items: center; }
.media-card .blob { font-size: clamp(4rem, 10vw, 7rem); }
.media-card .ph-label { position: absolute; bottom: 18px; left: 18px; background: rgba(255,255,255,.85); padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: .82rem; color: var(--brand); }

/* Timeline */
.timeline { position: relative; margin: 0; padding: 0 0 0 28px; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brand-2), var(--sky)); }
.timeline li { position: relative; padding: 0 0 30px 6px; }
.timeline li::before { content: ""; position: absolute; left: -28px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--surface); border: 3px solid var(--brand-2); }
.timeline .yr { font-family: var(--display); font-weight: 800; color: var(--brand); }

/* Values / pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 10px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-weight: 700; font-size: .92rem; box-shadow: var(--shadow-sm); }

/* Team */
.team-card { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: #fff; background: var(--grad); }
.team-card .role { color: var(--brand); font-weight: 700; font-size: .9rem; }

/* Testimonials */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.quote p { font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.quote .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .who .avatar { width: 46px; height: 46px; font-size: 1rem; margin: 0; }
.quote .who .name { font-weight: 800; font-family: var(--display); font-size: .95rem; }
.quote .who .loc { color: var(--muted); font-size: .85rem; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier.featured { border: 2px solid var(--brand-2); box-shadow: var(--shadow); position: relative; }
.tier.featured::after { content: "Most popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--accent-ink); font-weight: 800; font-size: .76rem; letter-spacing: .04em; padding: 6px 16px; border-radius: 999px; }
.tier .tname { font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.tier .price { font-family: var(--display); font-weight: 800; font-size: 3rem; margin: 10px 0 2px; }
.tier .price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.tier .per { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.tier ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.tier ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); }
.tier ul li::before { content: "✓"; color: var(--brand); font-weight: 900; }
.tier ul li.no { color: var(--muted); }
.tier ul li.no::before { content: "–"; color: var(--muted); }
.tier .btn { margin-top: auto; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 24px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-family: var(--display); font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--brand); transition: transform .25s ease; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 22px; margin: 0; }

/* CTA band */
.cta-band { background: var(--grad); color: #fff; border-radius: var(--radius); padding: 56px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 50%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.92); position: relative; max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-accent { position: relative; margin-top: 12px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 1rem; background: var(--surface); color: var(--ink); transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand-2); box-shadow: 0 0 0 3px var(--ring); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-success { display: none; background: var(--grad-soft); border: 1px solid var(--brand-2); color: var(--brand); padding: 16px 18px; border-radius: var(--radius-sm); font-weight: 700; margin-bottom: 18px; }
.form-success.show { display: block; }

.info-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico { flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; font-size: 1.2rem; border: 1px solid var(--line); }
.info-list .k { font-weight: 800; font-family: var(--display); font-size: .95rem; }
.info-list .v { color: var(--ink-soft); }
.map-ph { margin-top: 8px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--grad-soft); min-height: 220px; display: grid; place-items: center; color: var(--brand); font-weight: 700; box-shadow: var(--shadow-sm); position: relative; }
.map-ph .pin { font-size: 2.4rem; }

/* Page hero (inner pages) */
.page-hero { background: var(--grad-soft); padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; top: -120px; right: -100px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(18,194,163,.22), transparent 65%); }
.page-hero .container { position: relative; z-index: 1; }
.crumb { color: var(--muted); font-weight: 600; font-size: .9rem; margin-bottom: 14px; }
.crumb a:hover { color: var(--brand); }

/* Footer */
.site-footer { background: var(--ink); color: #c8d8d3; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand .brand-sub { color: #8aa39d; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.site-footer p { color: #a9bdb8; max-width: 36ch; }
.foot-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-links a { color: #c8d8d3; font-weight: 500; transition: color .18s ease; }
.foot-links a:hover { color: var(--brand-2); }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #8aa39d; font-size: .88rem; }

/* Page transitions — the page content AND footer fade out together; the header stays put */
@media (prefers-reduced-motion: no-preference) {
  main, .site-footer { transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1); }
  body.is-leaving main, body.is-leaving .site-footer { opacity: 0; transform: translateY(14px); }
}

/* Icons (Lucide) */
.icon svg { width: 26px; height: 26px; stroke-width: 2; }
.check svg { width: 15px; height: 15px; stroke-width: 3; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.info-list .ico svg { width: 22px; height: 22px; }
.map-ph .pin svg { width: 42px; height: 42px; }
.media-card .blob svg { width: clamp(72px, 12vw, 120px); height: auto; color: var(--brand); }
.pill { display: inline-flex; align-items: center; gap: 8px; }
.pill svg { width: 16px; height: 16px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px) scale(.985); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
/* Failsafe: if JS is unavailable, never hide content */
.no-js .reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* Directional reveal variants (optional via data-anim) */
.reveal[data-anim="left"] { transform: translateX(-36px); }
.reveal[data-anim="right"] { transform: translateX(36px); }
.reveal[data-anim="zoom"] { transform: scale(.9); }
.reveal[data-anim].in { transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .price-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .statband .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 26px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--surface); padding: 14px 24px 22px;
    box-shadow: var(--shadow); border-top: 1px solid var(--line);
    transform-origin: top; transform: translateY(-10px); opacity: 0;
    visibility: hidden; pointer-events: none;
    transition: opacity .26s ease, transform .3s cubic-bezier(.22,.61,.36,1), visibility .3s; z-index: 40;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .nav-cta { text-align: center; }
  .hamburger { display: flex; z-index: 60; }
  .section { padding: 72px 0; }
  .grid-3, .grid-4, .price-grid, .steps, .grid-2 { grid-template-columns: 1fr; }
  .statband .container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 36px 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .card:hover, .tier:hover, .svc:hover, .team-card:hover { transform: none !important; }
}
