/* =====================================================================
   Ashburn SEO - Design System
   Built from the official brand guidelines.
   Palette: signal red + navy indigo. Type: Nunito + DM Sans. Base-8 spacing.
   Theme is light-locked (the brand identity is white-background, navy on white).
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  --c-red:        #E8000B;   /* signal red - CTAs, icon, accents */
  --c-red-dark:   #C00008;   /* hover / pin shadow */
  --c-navy:       #1E1B6E;   /* wordmark, headings */
  --c-navy-mid:   #2E2A9A;   /* links, hover */
  --c-navy-deep:  #15124F;   /* hero depth */
  --c-navy-tint:  #EEEDF8;   /* card backgrounds */
  --c-body:       #475569;   /* body text */
  --c-muted:      #94A3B8;   /* captions, labels */
  --c-white:      #FFFFFF;
  --c-border:     #E8E9F0;   /* dividers, card borders */
  --c-surface:    #F8F8FC;   /* off-white sections */

  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 8px;    /* buttons, inputs */
  --r-md: 12px;   /* cards */
  --r-lg: 20px;   /* large containers, images */
  --r-pill: 999px;

  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 64px;
  --sp-xl: 96px;

  --max-w: 1160px;

  --shadow-sm: 0 2px 8px rgba(30, 27, 110, .06);
  --shadow-md: 0 12px 32px -12px rgba(30, 27, 110, .18);
  --shadow-lg: 0 28px 64px -24px rgba(30, 27, 110, .30);
  --shadow-red: 0 14px 30px -12px rgba(232, 0, 11, .45);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --nav-h: 74px;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-body);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-navy-mid); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-red); }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--c-red); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--c-red); color: #fff; }

/* --------------------------- Typography --------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-navy);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); font-weight: 700; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0; }
p { text-wrap: pretty; }

.display {
  font-size: clamp(2.5rem, 6.4vw, 3.6rem);
  letter-spacing: -.03em;
  line-height: 1.04;
}
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.6;
  color: var(--c-body);
  max-width: 56ch;
}
.text-accent { color: var(--c-red); }
.muted { color: var(--c-muted); }
.balance { text-wrap: balance; }
.measure { max-width: 65ch; }

/* eyebrow label - red, uppercase, tracked (used sparingly per brand) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .69rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: var(--sp-sm);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--c-red);
  border-radius: 2px;
}
.eyebrow.on-dark { color: #FF7A82; }
.eyebrow.on-dark::before { background: #FF7A82; }
.eyebrow.center { justify-content: center; }

/* --------------------------- Layout ------------------------------- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.container-wide { max-width: 1280px; }
section { position: relative; }
.section { padding-block: clamp(56px, 9vw, var(--sp-xl)); }
.section-sm { padding-block: clamp(40px, 6vw, var(--sp-lg)); }
.section.surface { background: var(--c-surface); }
.section.tint { background: var(--c-navy-tint); }

.section-head { max-width: 60ch; margin-bottom: clamp(32px, 5vw, var(--sp-lg)); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: var(--sp-sm); }
.section-head.center .lead { margin-inline: auto; }

.grid { display: grid; gap: var(--sp-md); }
.divider { height: 1px; background: var(--c-border); border: 0; }

/* ---------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--c-red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--c-red-dark); color: #fff; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-navy { background: var(--c-navy); color: #fff; }
.btn-navy:hover { background: var(--c-navy-mid); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--c-navy); border-color: var(--c-border); }
.btn-outline:hover { border-color: var(--c-navy); color: var(--c-navy); background: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-arrow { transition: transform .2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; color: var(--c-red);
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--c-red-dark); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--c-border); box-shadow: var(--shadow-sm); }
.nav {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md);
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand:hover { color: inherit; }
.brand-pin { height: 42px; width: auto; flex: none; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.34rem; color: var(--c-navy); letter-spacing: -.02em; }
.brand-tag { font-family: var(--font-body); font-weight: 500; font-size: .595rem; letter-spacing: .17em; text-transform: uppercase; color: var(--c-red); margin-top: 3px; }
.brand-text.on-dark .brand-name { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 700; font-size: .94rem; white-space: nowrap;
  color: var(--c-navy); padding: 9px 12px; border-radius: var(--r-sm);
  position: relative; transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--c-red); background: var(--c-navy-tint); }
.nav-links a.active { color: var(--c-red); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--c-red); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.nav-phone { font-family: var(--font-display); font-weight: 700; color: var(--c-navy); white-space: nowrap; }
.nav-phone:hover { color: var(--c-red); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--c-border);
  background: #fff; border-radius: var(--r-sm); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--c-navy); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1199px) { .nav-phone { display: none; } } /* phone is secondary on smaller desktops */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav.open { display: block; }
}
.mobile-nav {
  display: none; border-top: 1px solid var(--c-border); background: #fff;
  padding: var(--sp-sm) 24px var(--sp-md);
}
.mobile-nav a {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--c-navy); padding: 13px 8px; border-bottom: 1px solid var(--c-border);
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav a.active { color: var(--c-red); }
.mobile-nav .btn { margin-top: var(--sp-sm); }
.mobile-nav .nav-phone { display: inline-flex; margin-top: var(--sp-sm); }

/* ------------------------------ Hero ------------------------------ */
.hero { position: relative; overflow: hidden; }
.hero-navy {
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(232,0,11,.20), transparent 60%),
    radial-gradient(820px 620px at 8% 110%, rgba(46,42,154,.55), transparent 55%),
    linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  color: #fff;
}
.hero-navy h1, .hero-navy h2 { color: #fff; }
.hero-grid {
  display: grid; grid-template-columns: 1.16fr .84fr; gap: clamp(32px, 4.5vw, 60px);
  align-items: center;
  padding-block: clamp(44px, 6vw, 76px);
}
.hero-copy { max-width: 40rem; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 2.9rem); }
.hero h1 .text-accent { display: block; }
.hero-navy .hero-copy p { color: rgba(255,255,255,.82); }
.hero h1 { margin-bottom: var(--sp-sm); }
.hero .hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.2rem); line-height: 1.6; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--sp-md); }

/* trust row under hero copy */
.trust-row { display: flex; flex-wrap: wrap; gap: 22px 32px; margin-top: var(--sp-lg); }
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-item .ti-num { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; line-height: 1; color: #fff; }
.hero-navy .trust-item .ti-label { color: rgba(255,255,255,.66); font-size: .82rem; line-height: 1.25; }
.trust-item .ti-label { color: var(--c-muted); font-size: .82rem; line-height: 1.25; }

/* hero badge stars */
.stars { display: inline-flex; gap: 2px; color: #FFB400; }
.stars svg { width: 16px; height: 16px; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.85); }

/* page hero (light, for inner pages) */
.page-hero { background: var(--c-surface); border-bottom: 1px solid var(--c-border); }
.page-hero .hero-grid { align-items: center; }
.breadcrumbs { font-size: .82rem; color: var(--c-muted); margin-bottom: var(--sp-sm); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--c-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--c-red); }
.breadcrumbs span[aria-current] { color: var(--c-navy); font-weight: 600; }

/* ------------------------------ Form ------------------------------ */
.form-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: clamp(24px, 3.4vw, 38px); box-shadow: var(--shadow-lg);
}
.form-card .fc-eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: .7rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--c-red);
}
.form-card h2, .form-card h3 { color: var(--c-navy); margin-top: 8px; }
.form-card .fc-sub { font-size: .95rem; margin-top: 8px; margin-bottom: var(--sp-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--c-navy);
}
.field label .opt { color: var(--c-muted); font-weight: 500; font-family: var(--font-body); }
.field input {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--c-border); border-radius: var(--r-sm);
  background: #fff; color: var(--c-navy); font-size: 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder { color: #737D92; }
.field input:focus { outline: none; border-color: var(--c-navy-mid); box-shadow: 0 0 0 3px rgba(46,42,154,.14); }
.field input:user-invalid { border-color: var(--c-red); }
.field .err { display: none; color: var(--c-red-dark); font-size: .8rem; font-weight: 500; }
.field.invalid .err { display: block; }
.field.invalid input { border-color: var(--c-red); }
.form-card .btn { margin-top: var(--sp-xs); }
.form-foot { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: .8rem; color: var(--c-muted); text-align: center; }
.form-foot svg { width: 15px; height: 15px; color: #34A853; flex: none; }

/* form success state */
.form-success { display: none; text-align: center; padding: var(--sp-md) var(--sp-xs); }
.form-success .fs-check {
  width: 64px; height: 64px; margin: 0 auto var(--sp-sm); border-radius: 50%;
  background: rgba(52,168,83,.12); color: #2E8B4F; display: grid; place-items: center;
}
.form-success .fs-check svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--c-navy); }
.form-success p { margin-top: 8px; }
form.submitted .form-fields { display: none; }
form.submitted .form-success { display: block; }

/* dedicated form page layout */
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.form-aside .checklist { margin-top: var(--sp-md); }
@media (min-width: 881px) { .form-main-col { position: sticky; top: calc(var(--nav-h) + 16px); } }
@media (max-width: 880px) { .form-split { grid-template-columns: 1fr; } .form-main-col { order: -1; } }

/* contact info list */
.info-list { display: grid; gap: 18px; margin-top: var(--sp-md); }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-ic { width: 46px; height: 46px; flex: none; border-radius: var(--r-sm); background: var(--c-navy-tint); color: var(--c-navy); display: grid; place-items: center; }
.info-ic svg { width: 20px; height: 20px; }
.info-list .info-label { display: block; font-size: .74rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-body); font-weight: 500; }
.info-list a, .info-list .info-val { display: block; font-family: var(--font-display); font-weight: 700; color: var(--c-navy); font-size: 1.04rem; }
.info-list a:hover { color: var(--c-red); }

/* centered utility pages (thank-you, 404) */
.center-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding-block: clamp(56px, 10vw, var(--sp-xl)); }
.center-page .cp-inner { max-width: 560px; }
.center-page .cp-badge { width: 84px; height: 84px; margin: 0 auto var(--sp-md); border-radius: 50%; display: grid; place-items: center; background: rgba(52,168,83,.12); color: #2E8B4F; }
.center-page .cp-badge svg { width: 42px; height: 42px; }
.center-page h1 { margin-bottom: var(--sp-sm); }
.center-page .flex-actions { justify-content: center; margin-top: var(--sp-md); }
.error-code { font-family: var(--font-display); font-weight: 800; font-size: clamp(4.5rem, 14vw, 8rem); color: rgba(30,27,110,.13); line-height: .9; letter-spacing: -.04em; margin-bottom: var(--sp-xs); }

/* ------------------------------ Cards ----------------------------- */
.card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: var(--sp-md); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #DADCEA; }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--c-navy-tint); color: var(--c-navy); margin-bottom: var(--sp-sm);
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.red { background: rgba(232,0,11,.10); color: var(--c-red); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; }

/* feature bento */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
.bento .feature-lg { grid-column: span 2; }
.feature {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  border: 1px solid var(--c-border); background: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-lg { display: grid; grid-template-columns: 1.1fr 1fr; }
.feature-lg .feature-body { padding: clamp(28px, 3.5vw, 44px); align-self: center; }
.feature-lg .feature-media { min-height: 260px; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-sm { padding: var(--sp-md); }
.feature h3 { margin-bottom: 8px; }
.feature .link-arrow { margin-top: var(--sp-sm); }

/* chips / pills */
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--c-navy-tint); color: var(--c-navy); font-family: var(--font-display);
  font-weight: 700; font-size: .82rem;
}
.chip svg { width: 15px; height: 15px; color: var(--c-red); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* check list */
.checklist li { position: relative; padding-left: 34px; margin-bottom: 14px; line-height: 1.5; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(232,0,11,.10);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3C/svg%3E");
}
.checklist li .ck {
  position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(232,0,11,.10); color: var(--c-red); display: grid; place-items: center;
}
.checklist li .ck svg { width: 13px; height: 13px; }
.checklist strong { color: var(--c-navy); font-family: var(--font-display); }
.checklist.on-dark li { color: rgba(255,255,255,.85); }
.checklist.on-dark strong { color: #fff; }
.checklist.on-dark .ck { background: rgba(255,255,255,.14); color: #FF8A91; }

/* --------------------------- Stats band --------------------------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); text-align: center; }
.stat .stat-num {
  font-family: var(--font-display); font-weight: 800; color: var(--c-navy);
  font-size: clamp(2.1rem, 4.4vw, 3rem); line-height: 1; letter-spacing: -.02em;
}
.stat .stat-num .u { color: var(--c-red); }
.stat .stat-label { margin-top: 10px; font-size: .92rem; color: var(--c-body); }
.on-dark .stat .stat-num { color: #fff; }
.on-dark .stat .stat-label { color: rgba(255,255,255,.7); }

/* --------------------------- Split media -------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, var(--sp-lg)); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.split-copy h2 { margin-bottom: var(--sp-sm); }
.media-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--c-border); }
.media-frame img { border-radius: 0; box-shadow: none; }

/* floating stat badge over image */
.media-badge {
  position: absolute; bottom: -18px; left: -18px; background: #fff; border-radius: var(--r-md);
  padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--c-border);
}
.media-badge .mb-ic { width: 42px; height: 42px; border-radius: var(--r-sm); background: rgba(232,0,11,.10); color: var(--c-red); display: grid; place-items: center; }
.media-badge .mb-ic svg { width: 22px; height: 22px; }
.media-badge .mb-num { font-family: var(--font-display); font-weight: 800; color: var(--c-navy); font-size: 1.3rem; line-height: 1; }
.media-badge .mb-label { font-size: .76rem; color: var(--c-muted); }

/* ------------------------- Who we help ---------------------------- */
.owner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-sm); }
.owner-card {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-border);
}
.owner-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.owner-card:hover img { transform: scale(1.05); }
.owner-card .owner-cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: 36px 16px 14px;
  background: linear-gradient(to top, rgba(21,18,79,.88), transparent);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .95rem;
}

/* trades / industries grid (label below image, distinct from owner-grid) */
.trade-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-sm); }
.trade-card { display: block; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-border); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.trade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trade-card .t-img { aspect-ratio: 1 / 1; overflow: hidden; }
.trade-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.trade-card:hover img { transform: scale(1.06); }
.trade-card .t-label { display: flex; align-items: center; gap: 7px; padding: 13px 14px; font-family: var(--font-display); font-weight: 700; color: var(--c-navy); font-size: .9rem; line-height: 1.2; }
.trade-card .t-label svg { width: 15px; height: 15px; color: var(--c-red); flex: none; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.team-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center; }
.team-card figcaption { padding: var(--sp-sm) var(--sp-md) var(--sp-md); }
.team-name { display: block; font-family: var(--font-display); font-weight: 800; color: var(--c-navy); font-size: 1.2rem; }
.team-role { display: block; color: var(--c-red); font-weight: 500; font-size: .86rem; margin-top: 4px; }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* --------------------------- Process ------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); counter-reset: step; }
.step { position: relative; padding-top: var(--sp-md); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--c-red);
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(232,0,11,.08); border: 1.5px solid rgba(232,0,11,.22); margin-bottom: var(--sp-sm);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .95rem; }
.steps.connected .step:not(:last-child)::after {
  content: ""; position: absolute; top: 22px; left: 56px; right: -16px; height: 2px;
  background: linear-gradient(90deg, rgba(232,0,11,.28), transparent);
}

/* ------------------------- Testimonials --------------------------- */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.tm {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); padding: var(--sp-md);
  display: flex; flex-direction: column; gap: var(--sp-sm);
}
.tm .stars { color: #FFB400; }
.tm blockquote { font-size: 1.02rem; line-height: 1.55; color: var(--c-navy); font-weight: 500; }
.tm .tm-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tm .tm-who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.tm .tm-who > span { display: flex; flex-direction: column; gap: 2px; }
.tm .tm-name { display: block; font-family: var(--font-display); font-weight: 700; color: var(--c-navy); font-size: .92rem; line-height: 1.2; }
.tm .tm-role { display: block; font-size: .8rem; color: var(--c-muted); line-height: 1.3; }

/* ------------------------------ FAQ ------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--c-border); padding: 6px 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 44px 18px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; color: var(--c-navy); font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--c-red); border-bottom: 2px solid var(--c-red);
  transform: translateY(-65%) rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq details p { padding: 0 44px 18px 0; font-size: .98rem; }

/* ---------------------------- CTA band ---------------------------- */
.cta-band { background:
    radial-gradient(700px 400px at 90% 0%, rgba(232,0,11,.18), transparent 60%),
    linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-deep) 100%); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.82); }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--c-navy-deep); color: rgba(255,255,255,.7); padding-top: var(--sp-xl); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-md); padding-bottom: var(--sp-lg); }
.footer-brand .brand { margin-bottom: var(--sp-sm); }
.footer-brand .brand-pin { height: 44px; }
.footer-brand p { font-size: .92rem; max-width: 32ch; color: rgba(255,255,255,.62); }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--sp-sm); font-family: var(--font-body); font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.72); font-size: .94rem; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-contact a { font-weight: 600; }
.social-row { display: flex; gap: 10px; margin-top: var(--sp-sm); }
.social-row a { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(255,255,255,.08); display: grid; place-items: center; padding: 0; }
.social-row a:hover { background: var(--c-red); }
.social-row svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: var(--sp-md);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom .fb-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* --------------------------- Scroll reveal ------------------------ */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card, .feature, .btn, .owner-card img { transition: none !important; }
}

/* ----------------------------- Utilities -------------------------- */
.center { text-align: center; }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.flex-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.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; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--c-red); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); transition: top .2s var(--ease); font-family: var(--font-display); font-weight: 700; }
.skip-link:focus { top: 12px; color: #fff; }

/* ------------------------- Responsive ----------------------------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-lg) var(--sp-md); }
  .footer-brand { grid-column: 1 / -1; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg) var(--sp-md); }
  .owner-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-lg); padding-block: var(--sp-lg); }
  .hero-copy { max-width: 100%; order: 1; }
  .hero-form-col { order: 2; }
  .cta-grid, .form-split, .feature-lg, .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .tm-grid, .steps { grid-template-columns: 1fr; }
  .steps.connected .step:not(:last-child)::after { display: none; }
  .bento, .bento .feature-lg { grid-template-columns: 1fr; }
  .bento .feature-lg { grid-column: span 1; }
  .feature-lg .feature-media { min-height: 220px; order: -1; }
}
@media (max-width: 640px) {
  .nav { gap: 12px; }
  .nav-cta { gap: 8px; }
  .site-header .nav-cta .btn { padding: 11px 15px; font-size: .9rem; }
}
@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .owner-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trade-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-row { gap: 16px 24px; }
  .hero-actions .btn, .flex-actions .btn { width: 100%; }
  .media-badge { left: 12px; bottom: 12px; }
  .brand-name { font-size: 1.2rem; }
  .brand-tag { font-size: .55rem; letter-spacing: .14em; }
  .brand-pin { height: 38px; }
}
@media (max-width: 400px) {
  /* keep the full logo lockup (incl. "Local SEO Service") visible; shrink to fit */
  .nav { gap: 10px; }
  .nav-cta { gap: 6px; }
  .site-header .nav-cta .btn { padding: 9px 12px; font-size: .8rem; }
  .brand { gap: 8px; }
  .brand-name { font-size: 1.04rem; }
  .brand-tag { font-size: .48rem; letter-spacing: .1em; }
  .brand-pin { height: 33px; }
}
