/* ============================================================
   Revamp Solutions — Shared Design System
   All pages import this file. Page-specific rules live at
   the bottom of each section, clearly marked.
   ============================================================ */

/* ── ARS Maquette Pro web fonts ─────────────────────────────
   Files live in assets/fonts/ (woff2 + woff for each weight)
   ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'ARS Maquette Pro';
  src: url('../assets/fonts/ARSMaquettePro-Regular.woff2') format('woff2'),
       url('../assets/fonts/ARSMaquettePro-Regular.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ARS Maquette Pro';
  src: url('../assets/fonts/ARSMaquettePro-Medium.woff2') format('woff2'),
       url('../assets/fonts/ARSMaquettePro-Medium.woff')  format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ARS Maquette Pro';
  src: url('../assets/fonts/ARSMaquettePro-Bold.woff2') format('woff2'),
       url('../assets/fonts/ARSMaquettePro-Bold.woff')  format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ARS Maquette Pro';
  src: url('../assets/fonts/ARSMaquettePro-Black.woff2') format('woff2'),
       url('../assets/fonts/ARSMaquettePro-Black.woff')  format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ARS Maquette Pro';
  src: url('../assets/fonts/ARSMaquettePro-Light.woff2') format('woff2'),
       url('../assets/fonts/ARSMaquettePro-Light.woff')  format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ── Custom properties ── */
:root {
  --ink:       #0D0D12;
  --grey:      #6B7280;
  --line:      #ECEEF2;
  --soft:      #F3F4F6;
  --white:     #FFFFFF;
  --p1:        #6C5DD3;
  --p2:        #A855F7;
  --pink:      #FF4DB8;
  --orange:    #FF8A3A;
  --grad:      linear-gradient(100deg, #6C5DD3, #A855F7 38%, #FF4DB8 70%, #FF8A3A);
  --grad-soft: linear-gradient(100deg, #6C5DD3, #A855F7);
  --shadow:    0 24px 60px -20px rgba(13,13,18,.18);
  --shadow-sm: 0 12px 30px -12px rgba(13,13,18,.12);
  --r:         20px;
  --nav-h:     74px;
}

/* ── Reset & base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'ARS Maquette Pro', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'ARS Maquette Pro', sans-serif; font-weight: 700; letter-spacing: -.02em; line-height: 1.06; }
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }

/* ── Layout helpers ── */
.wrap    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-soft { background: var(--soft); }

/* ── Typography helpers ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .01em;
  color: var(--p1); margin-bottom: 14px; display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'ARS Maquette Pro', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--p1); outline-offset: 3px; }
.btn-primary {
  background: var(--grad-soft); color: #fff;
  box-shadow: 0 10px 24px -8px rgba(108,93,211,.55);
  background-size: 200% auto; background-position: left center;
}
.btn-primary:hover  { transform: translateY(-2px) scale(1.025); box-shadow: 0 18px 34px -8px rgba(108,93,211,.65); background-position: right center; }
.btn-ghost  { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover  { border-color: var(--p2); transform: translateY(-2px) scale(1.015); }
.btn .arr   { transition: transform .2s ease; display: inline-block; }
.btn:hover .arr { transform: translate(3px,-3px); }
.btn-full   { width: 100%; justify-content: center; }

/* ── Sticky header ── */
header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
header.scrolled { box-shadow: 0 6px 24px -12px rgba(13,13,18,.18); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo img { height: 32px; width: auto; }
.navlinks { display: flex; gap: 30px; font-size: 15px; font-weight: 500; color: #33363f; }
.navlinks a { position: relative; transition: color .2s; padding: 4px 0; }
.navlinks a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--grad-soft); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s ease; transform-origin: left;
}
.navlinks a:hover,
.navlinks a.active          { color: var(--p1); }
.navlinks a:hover::after,
.navlinks a.active::after   { transform: scaleX(1); }
.menu-btn {
  display: none; background: none; border: 0; cursor: pointer;
  color: var(--ink); padding: 8px; border-radius: 8px; transition: background .2s;
}
.menu-btn:hover       { background: var(--soft); }
.menu-btn:focus-visible { outline: 3px solid var(--p1); }
.drawer {
  display: flex; flex-direction: column;
  background: #fff; border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease, padding .32s ease;
  padding: 0 24px;
}
.drawer.open  { max-height: 480px; padding: 10px 24px 24px; }
.drawer a {
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-weight: 500; color: var(--ink); display: block; transition: color .2s;
}
.drawer a:hover { color: var(--p1); }
.drawer .btn    { margin-top: 16px; justify-content: center; }
@media (max-width: 880px) {
  .navlinks { display: none; }
  .nav .btn  { display: none; }
  .menu-btn  { display: flex; }
}

/* ── Section defaults ── */
section        { padding: 96px 0; }
.section-head  { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; margin-bottom: 14px; }
.section-head p  { color: var(--grey); font-size: 17px; }

/* ── Pill badge ── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: .01em;
  color: var(--p1); margin-bottom: 24px;
}
.pill .pdot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-soft); flex-shrink: 0; }

/* ── Trust line ── */
.trust { display: flex; align-items: flex-start; gap: 10px; margin-top: 28px; color: var(--grey); font-size: 14px; line-height: 1.55; }
.livedot { width: 9px; height: 9px; min-width: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.2); margin-top: 3px; animation: green-pulse 2s infinite; }

/* ── Glow blobs ── */
.glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .45; z-index: 0; pointer-events: none; }
.glow.a { width: 560px; height: 560px; background: radial-gradient(circle, rgba(168,85,247,.5), transparent 70%); top: -160px; right: -140px; animation: glow-drift-a 14s ease-in-out infinite; }
.glow.b { width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,77,184,.32), transparent 70%); bottom: -200px; left: -140px; animation: glow-drift-b 18s ease-in-out infinite; }

@keyframes glow-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(22px, -16px) scale(1.06); }
  66%       { transform: translate(-12px, 10px) scale(.96); }
}
@keyframes glow-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-20px, 14px) scale(1.05); }
  70%       { transform: translate(16px, -10px) scale(.97); }
}

/* ── Process steps (shared between index + audit) ── */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { display: flex; gap: 18px; }
.step-num {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--grad-soft); display: flex; align-items: center; justify-content: center;
  font-family: 'ARS Maquette Pro', sans-serif; font-weight: 700; font-size: 14px; color: #fff;
}
.step-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.step-body p  { font-size: 14px; color: var(--grey); line-height: 1.6; }
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

/* ── Tagline strip ── */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 36px 0; text-align: center; }
.strip-tag { font-family: 'ARS Maquette Pro', sans-serif; font-size: clamp(20px,3vw,32px); font-weight: 800; letter-spacing: .01em; margin-bottom: 12px; }
.strip p   { font-size: 16px; color: var(--grey); max-width: 560px; margin: 0 auto; }

/* ── Footer ── */
footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 56px;
}
.footer-brand .logo img { height: 30px; margin-bottom: 18px; }
.footer-brand p    { font-size: 14px; line-height: 1.7; max-width: 220px; }
.footer-col h4     { font-family: 'ARS Maquette Pro', sans-serif; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-col a      { display: block; font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--p2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 13px;
}
.footer-bottom-tag { font-family: 'ARS Maquette Pro', sans-serif; font-weight: 600; letter-spacing: .1em; font-size: 11px; color: rgba(255,255,255,.3); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(36px) scale(.98); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Pulsing green dot ── */
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: green-pulse 2s infinite;
}
@keyframes green-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ── Homepage — hero ── */
.hero         { position: relative; padding: 90px 0 96px; overflow: hidden; }
.hero-grid    { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1      { font-size: clamp(38px, 5.2vw, 62px); font-weight: 800; margin-bottom: 22px; }
.hero p.lead  { font-size: 17px; color: var(--grey); margin-bottom: 32px; max-width: 490px; line-height: 1.75; }
.cta-row      { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } .hero { padding: 60px 0 70px; } }

/* gradient shimmer on the "scale." word */
.hero h1 .grad-text {
  background-size: 200% auto;
  animation: grad-shimmer 3.5s linear infinite;
}
@keyframes grad-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Homepage — dashboard KPI card ── */
.dash          { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 22px; position: relative; animation: float 6s ease-in-out infinite; }
.dash-tag      { position: absolute; top: -11px; left: 20px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 3px 12px; font-size: 10px; letter-spacing: .01em; color: var(--grey); }
.dash-head     { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-title    { font-family: 'ARS Maquette Pro', sans-serif; font-size: 13px; font-weight: 700; }
.dash-sub      { font-size: 11px; color: var(--grey); margin-top: 1px; }
.dash-badge    { font-size: 10px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; color: var(--grey); font-weight: 500; }
.kpi-grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kpi           { background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 14px; position: relative; overflow: hidden; transition: box-shadow .25s ease; }
.kpi:hover     { box-shadow: 0 8px 24px -6px rgba(108,93,211,.28), 0 0 0 1px rgba(168,85,247,.12); }
.kpi::before   { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.kpi-val       { font-family: 'ARS Maquette Pro', sans-serif; font-size: 22px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.kpi-label     { font-size: 11px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.kpi-note      { font-size: 10px; color: var(--grey); }
.kpi-dot       { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; margin-right: 4px; }
.ai-row        { margin-top: 14px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ai-row-label  { font-size: 11px; font-weight: 600; }
.ai-row-sub    { font-size: 10px; color: var(--grey); margin-top: 1px; }
.ai-live       { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; color: #22c55e; white-space: nowrap; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ── Homepage — services ── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.service-card  { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; gap: 14px; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -14px rgba(108,93,211,.28), 0 0 0 1px rgba(168,85,247,.12); }
.service-icon  { width: 48px; height: 48px; border-radius: 14px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 16px; font-weight: 700; }
.service-card p  { font-size: 14px; color: var(--grey); flex: 1; line-height: 1.65; }
.service-card a  { font-size: 14px; font-weight: 600; color: var(--p1); display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.service-card a:hover { gap: 8px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Homepage — concept work ── */
.work-grid         { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.work-card         { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.work-card:hover   { transform: translateY(-6px); box-shadow: 0 20px 44px -14px rgba(255,77,184,.22), 0 0 0 1px rgba(168,85,247,.1); }
.work-card-header  { height: 140px; display: flex; align-items: center; justify-content: center; }
.work-card-header.g1 { background: linear-gradient(135deg, #6C5DD3, #A855F7); }
.work-card-header.g2 { background: linear-gradient(135deg, #A855F7, #FF4DB8); }
.work-card-header.g3 { background: linear-gradient(135deg, #FF4DB8, #FF8A3A); }
.work-card-header svg { width: 48px; height: 48px; stroke: rgba(255,255,255,.9); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.work-card-body    { padding: 22px 20px; }
.work-card-tag     { font-size: 11px; font-weight: 600; letter-spacing: .01em; color: var(--p1); margin-bottom: 8px; }
.work-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.work-card-body p  { font-size: 14px; color: var(--grey); }
@media (max-width: 860px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .work-grid { grid-template-columns: 1fr; } }

/* ── Homepage — founding offer ── */
.founding { background: var(--ink); border-radius: 28px; padding: 72px 48px; position: relative; overflow: hidden; text-align: center; }
.founding .glow2   { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(100px); opacity: .35; pointer-events: none; }
.founding .glow2.a { background: radial-gradient(circle, rgba(108,93,211,.8), transparent 70%); top: -200px; left: -100px; }
.founding .glow2.b { background: radial-gradient(circle, rgba(255,77,184,.6), transparent 70%); bottom: -200px; right: -100px; }
.founding-content  { position: relative; z-index: 1; }
.founding-badge    { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 7px 16px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .08em; margin-bottom: 28px; }
.founding-badge .spot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.founding h2 { font-size: clamp(24px,3.2vw,38px); font-weight: 700; color: #fff; margin-bottom: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }
.founding p  { color: rgba(255,255,255,.65); font-size: 16px; max-width: 540px; margin: 0 auto 36px; line-height: 1.75; }
@media (max-width: 640px) { .founding { padding: 52px 28px; } }

/* ── Homepage — founder note ── */
.founder-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.founder-left h2 { font-size: clamp(24px,3vw,36px); font-weight: 700; margin-bottom: 18px; }
.founder-left p  { color: var(--grey); font-size: 16px; line-height: 1.8; }
.quote-card      { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; position: relative; }
.quote-card::before { content: '\201C'; font-family: 'ARS Maquette Pro', sans-serif; font-size: 72px; font-weight: 800; color: var(--line); position: absolute; top: -8px; left: 24px; line-height: 1; }
.quote-card blockquote { font-size: 15px; line-height: 1.8; color: var(--ink); margin-bottom: 22px; padding-top: 32px; }
.quote-credit   { font-size: 13px; font-weight: 600; color: var(--grey); }
.quote-credit span { display: block; color: var(--p1); font-weight: 600; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── Homepage — final CTA ── */
.cta-final    { text-align: center; }
.cta-final h2 { font-size: clamp(26px,3.4vw,42px); font-weight: 700; margin-bottom: 16px; }
.cta-final p  { color: var(--grey); font-size: 17px; max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }

/* ============================================================
   AUDIT PAGE — specific styles
   ============================================================ */

/* Hero two-column layout */
.audit-hero { position: relative; padding: 80px 0 92px; overflow: hidden; }
.audit-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  position: relative; z-index: 1;
}
.audit-hero h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; margin-bottom: 22px; line-height: 1.1; }
.audit-hero p.lead { font-size: 17px; color: var(--grey); margin-bottom: 32px; line-height: 1.75; }

/* "What you get" checklist */
.audit-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.audit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.6; }
.check-icon {
  width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Audit form card */
.audit-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 36px 32px;
}
.audit-form-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }

/* Form fields */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input,
.field textarea {
  font-family: 'ARS Maquette Pro', sans-serif;
  font-size: 15px; color: var(--ink);
  background: var(--soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  resize: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--grey); }
.field input:focus,
.field textarea:focus {
  border-color: var(--p1);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(108,93,211,.12);
}
.field input.error,
.field textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.field-error { font-size: 12px; color: #dc2626; font-weight: 500; display: none; margin-top: 2px; }
.field-error.visible { display: block; }

/* Visually hidden (honeypot) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.form-submit-note { font-size: 12px; color: var(--grey); text-align: center; margin-top: 12px; }

/* Success state */
.form-success {
  display: none; text-align: center;
  padding: 20px 0 8px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.form-success p  { font-size: 15px; color: var(--grey); line-height: 1.7; }

/* Reassurance strip */
.reassurance {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0; text-align: center;
}
.reassurance p { font-size: 15px; color: var(--grey); }

/* Mobile stacking */
@media (max-width: 860px) {
  .audit-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .audit-hero { padding: 56px 0 64px; }
  .audit-form-card { padding: 28px 22px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html    { scroll-behavior: auto; }
  /* disable every new animation added in this design system */
  .glow.a, .glow.b      { animation: none; }
  .dash                  { animation: none; }
  .hero h1 .grad-text    { animation: none; background-size: auto; }
  .livedot               { animation: none; }
  .pulse                 { animation: none; }
  .btn-primary           { background-position: left center; transition: box-shadow .2s ease; }
  .btn-primary:hover     { transform: translateY(-2px); }
  .btn-ghost:hover       { transform: translateY(-2px); }
  .service-card:hover,
  .work-card:hover       { transform: none; }
  .kpi:hover             { box-shadow: none; }
  @keyframes green-pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(34,197,94,.2); } }
  @keyframes grad-shimmer { 0%,100% { background-position: 0% center; } }
  @keyframes float        { 0%,100% { transform: translateY(0); } }
  @keyframes glow-drift-a { 0%,100% { transform: translate(0,0) scale(1); } }
  @keyframes glow-drift-b { 0%,100% { transform: translate(0,0) scale(1); } }
}
