/* ============================================================
   ShopEx Digital — Stylesheet
   Palette: steel-blue / warm-white / amber
   Typography: Barlow Condensed (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500&display=swap');

:root {
  /* surfaces */
  --bg:       #F3F1EC;
  --bg-2:     #FFFFFF;
  --bg-3:     #F3F1EC;
  --bg-card:  #FFFFFF;
  --ink:      #F3F1EC;

  /* text */
  --white:    #F3F1EC;
  --body-text: #2E3D49;
  --muted:    #4A5C68;
  --subtle:   #5C6E7A;          /* darkened from #6B7E8A for legibility */
  --light-muted: #C2D0DA;
  --faint:    #6B7E8A;

  /* accent */
  --accent:        #E8820C;
  --accent-dark:   #CC6F08;     /* hover state */
  --accent-dim:    rgba(232,130,12,0.10);
  --accent-glow:   rgba(232,130,12,0.28);

  /* blue */
  --blue: #31465B;

  /* lines */
  --rule:      rgba(49,70,91,0.14);
  --line:      rgba(49,70,91,0.14);
  --line-mid:  rgba(49,70,91,0.08);

  /* type */
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Inter', system-ui, sans-serif;

  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 60px);
  --radius: 2px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 84px; }
body {
  background: var(--bg);
  color: var(--body-text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;                /* ↑ from 15px */
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Layout ─── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
section { position: relative; }
.section-pad { padding-block: clamp(56px, 5.5vw, 82px); }
.divider { border-top: 1px solid var(--line); }


/* ─── Type ─── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #31465B;
}
h1 { font-size: clamp(42px, 6vw, 80px); }
h2 { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.12; }
h3 { font-size: clamp(19px, 1.8vw, 22px); line-height: 1.2; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

.lead {
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 54ch;
}

/* Constrained max-width for long paragraph copy */
.copy-narrow { max-width: 68ch; }

.kicker {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;            /* ↑ from 10px */
  font-weight: 500;             /* added */
  letter-spacing: 0.18em;       /* ↑ from 0.16em */
  text-transform: uppercase;
  color: #D96A1B;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-content .kicker { margin-bottom: 20px; }
.kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: #D96A1B;
}
.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }
.kicker--left::before { display: block; }

.kicker--large {
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

/* Decorative large number behind section headings */
.section-eyebrow {
  position: relative;
  display: inline-block;
}
/* Section heads always stack: kicker on top, headline below, regardless of headline width */
.problem-head .section-eyebrow,
.svc-head .section-eyebrow,
.auto-head .section-eyebrow,
.pricing-intro .section-eyebrow,
.why-left .section-eyebrow { display: block; }
.section-eyebrow::before {
  content: attr(data-num);
  position: absolute;
  right: calc(100% + 24px);
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 800;
  color: rgba(49,70,91,0.04);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.how-bg .section-eyebrow::before,
.why-bg .section-eyebrow::before {
  color: rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .section-eyebrow::before { display: none; }
}

.amber { color: var(--accent); }

/* ─── Shared feature list ─── */
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-list li {
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.45;
}
.feat-list li::before {
  content: '→';
  color: var(--accent);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  flex-shrink: 0;
}
.feat-list li.everything {
  color: #31465B;
  font-weight: 600;
}
.feat-list li.everything::before { content: '✦'; font-size: 9px; }

/* ─── Buttons ─── */
.btn {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease, filter .18s ease;
  line-height: 1;
  white-space: nowrap;
  border-radius: 2px;
  background: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-color: var(--accent);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-dark);          /* slightly darker on hover */
  border-color: var(--accent-dark);
  box-shadow: 0 6px 22px -4px var(--accent-glow);
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.97);
}
.btn--primary .arrow {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--primary:hover .arrow { transform: translateX(5px); }

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: rgba(49,70,91,0.3);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--lg { font-size: 16px; padding: 15px 26px; }

/* Ghost on dark backgrounds */
.hero .btn--ghost,
.how-bg .btn--ghost,
.why-bg .btn--ghost {
  color: #F3F1EC;
  border-color: rgba(255,255,255,0.4);
}
.hero .btn--ghost:hover,
.how-bg .btn--ghost:hover,
.why-bg .btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero .btn--primary {
  padding: 17px 38px;
  font-size: 15.5px;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 30px -8px rgba(232,130,12,0.45);
}
.hero .btn--ghost {
  padding: 16px 24px;
  font-size: 13.5px;
  opacity: 0.6;
}
.hero .btn--ghost:hover { opacity: 1; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 44, 61, 0.75);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(26, 44, 61, 0.92);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #F3F1EC;
  line-height: 1;
}
.logo-mark { display: block; flex-shrink: 0; height: 36px; width: 36px; }
.logo-word {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: none;
  color: #F3F1EC;
}
.logo-ex { color: var(--accent); }
.logo-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(243,241,236,0.55);
  padding-left: 1px;
}
.site-footer .logo-mark { height: 34px; width: 34px; }
.site-footer .logo-name { font-size: 22px; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navlink {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243,241,236,0.7);
  transition: color .15s;
  position: relative;
  padding-bottom: 4px;
}
.navlink::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.navlink:hover { color: #F3F1EC; }
.navlink:hover::after { width: 100%; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: #F3F1EC;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.mobile-menu.open { max-height: 480px; }
.mobile-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243,241,236,0.7);
  padding: 15px var(--pad);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color .15s, background .15s;
}
.mobile-link:hover { color: #F3F1EC; background: rgba(255,255,255,0.05); }
.mobile-cta { margin: 14px var(--pad); }

@media (max-width: 820px) {
  .nav .navlink, .nav .btn--primary { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* ─── Trust Bar (replaces animated ticker) ─── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 36px;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.tb-item {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.tb-dot {
  color: var(--accent);
  font-size: 7px;
  line-height: 1;
  flex-shrink: 0;
}

/* ─── Hero ─── */
.hero {
  min-height: calc(100dvh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #1A2C3D;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 18, 28, 0.92) 0%,
      rgba(10, 18, 28, 0.62) 42%,
      rgba(10, 18, 28, 0.20) 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 18, 28, 0.55) 0%,
      rgba(10, 18, 28, 0) 45%
    );
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 20% 40%, #000 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(24px, 3vw, 48px);
  max-width: 940px;
  text-align: left;
}
.hero-content h1 { font-size: clamp(2.3rem, 3.8vw, 3.9rem); line-height: 1.02; max-width: 22ch; margin-bottom: 28px; color: #F3F1EC; text-align: left; }
.hero-content h1 br { display: block; content: ""; margin-bottom: 0.12em; }
.hero-sub {
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  opacity: 0.95;
  display: block;
  margin-top: 0.08em;
  line-height: 1.12;
  padding-bottom: 0.18em;
}
.hero-content .lead { margin-top: 0; margin-bottom: 0; font-family: 'Inter', system-ui, sans-serif; font-weight: 400; font-size: clamp(15px, 1.2vw, 16.5px); letter-spacing: 0.012em; color: rgba(243,241,236,0.78); max-width: 500px; line-height: 1.62; margin-left: 0; margin-right: auto; text-align: left; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.hero-trust {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  color: #8FA8BC;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.trust-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.audit-copy .hero-trust { color: var(--muted); }
.audit-copy .hero-trust .trust-dot { background: var(--accent); }

/* Hero CTAs go full-width on small screens */
@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .trust-bar-inner { justify-content: flex-start; gap: 8px 20px; }
}

/* ─── Problem ─── */
#problem,
#how,
#services {
  position: relative;
  overflow: hidden;
}
.problem-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.problem-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.13;
  filter: grayscale(80%);
}
#how .problem-bg-img img,
#services .problem-bg-img img {
  opacity: 0.24;
}
.problem-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(243,241,236,0.82) 0%,
    rgba(243,241,236,0.44) 50%,
    rgba(243,241,236,0.82) 100%
  );
}
#how .problem-bg-img::after {
  background: linear-gradient(
    to bottom,
    rgba(243,241,236,0.74) 0%,
    rgba(243,241,236,0.34) 50%,
    rgba(243,241,236,0.74) 100%
  );
}
#services .problem-bg-img::after {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.74) 0%,
    rgba(255,255,255,0.34) 50%,
    rgba(255,255,255,0.74) 100%
  );
}
#problem .wrap,
#how .wrap,
#services .wrap { position: relative; z-index: 1; }

.problem-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 780px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.problem-head .lead { max-width: 62ch; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(49,70,91,0.04);
  border: 1px solid rgba(49,70,91,0.10);
}
@media (max-width: 720px) {
  .problem-grid { grid-template-columns: 1fr; }
}

.problem-cell {
  background: var(--bg-card);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  border-right: 1px solid rgba(49,70,91,0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.problem-cell:last-child { border-right: none; }
.problem-cell:hover {
  background: var(--bg-3);
  transform: translateY(-3px);
  box-shadow:
    inset 4px 0 0 var(--accent),
    0 10px 28px rgba(49,70,91,0.14);
}
.p-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.p-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  line-height: 1;
}
.p-tag {
  font-weight: 500;
  opacity: 0.9;
}
.problem-cell h3 { margin: 0; }
.problem-cell p  { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.7; max-width: 58ch; }

/* ─── How It Works ─── */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(49,70,91,0.04);
  border: 1px solid rgba(49,70,91,0.10);
}
@media (max-width: 700px) {
  .step-grid { grid-template-columns: 1fr; }
}
.step-cell {
  background: var(--bg-card);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  border-right: 1px solid rgba(49,70,91,0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.step-cell:last-child { border-right: none; }
.step-cell:hover {
  background: var(--bg-3);
  transform: translateY(-3px);
  box-shadow:
    inset 4px 0 0 var(--accent),
    0 10px 28px rgba(49,70,91,0.14);
}
.step-cell h3 { margin: 0; color: #31465B; }
.step-cell p  { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.7; max-width: 58ch; }

/* ─── Services ─── */
.svc-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 780px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.svc-head .lead { max-width: 62ch; }
.svc-head h2 { max-width: 24ch; line-height: 1.04; }

#services { background: #FFFFFF; border-top: 1px solid var(--line); }
.svc-head .lead { color: #737069; max-width: 560px; }

.svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 1.6vw, 28px);
}
.svc-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(49,70,91,0.10);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.svc-row--full { grid-column: 1 / -1; }
.svc-row:hover {
  transform: translateY(-3px);
  border-color: rgba(232,130,12,0.35);
  box-shadow:
    inset 4px 0 0 var(--accent),
    0 10px 28px rgba(49,70,91,0.14);
}

.svc-idx {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #e05c12;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.svc-row h3 { font-size: 1.1rem; font-weight: 700; color: #0d1b2a; margin: 0; }
.svc-row p  { color: #374151; font-size: 0.9rem; line-height: 1.65; margin: 0; max-width: 60ch; }
.svc-tag {
  margin-top: auto;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s ease;
}
.svc-tag:hover { background: var(--accent-dark); }
@media (max-width: 660px) {
  .svc-list { grid-template-columns: 1fr; }
  .svc-row--full { grid-column: auto; }
}

/* ─── Why Us ─── */
.why-bg { background: #31465B; }

/* 2-column layout: left = heading+intro, right = points list */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
}
@media (max-width: 860px) {
  .why-inner { grid-template-columns: 1fr; }
}

.why-bg h1, .why-bg h2, .why-bg h3 { color: #F3F1EC; }
.why-bg .lead { color: rgba(243,241,236,0.75); max-width: 44ch; }

.why-left h2 { margin-bottom: 20px; }
.why-left .lead { margin-bottom: 0; }

.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  padding-block: 18px;
  padding-left: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left 0.15s ease;
}
.why-point:hover { padding-left: 4px; }
.why-point:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.why-check {
  width: 26px; height: 26px;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-check svg { width: 13px; height: 13px; }
.why-point h3 { margin-bottom: 8px; color: #F3F1EC; }
.why-point p  { color: rgba(243,241,236,0.88); font-size: 15px; }

/* ─── Automation Section ─── */
.auto-bg { background: var(--bg); border-top: 1px solid var(--line); }

.auto-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 780px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.auto-head .lead { max-width: 62ch; }

.auto-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 860px) {
  .auto-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .auto-timeline { grid-template-columns: 1fr; }
}

.auto-step {
  background: var(--bg-card);
  padding: 24px 20px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Orange accent bar on every card */
.auto-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
/* Connector arrow between cards */
.auto-step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -10px;
  top: 20px;
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
  z-index: 2;
  background: var(--bg-card);
  padding: 2px 1px;
}
@media (max-width: 860px) {
  .auto-step:not(:last-child)::after { display: none; }
}

.auto-dot { display: none; }
.auto-step-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.auto-step h3 { font-size: clamp(14px, 1.2vw, 17px); margin-bottom: 8px; line-height: 1.2; }
.auto-step p  { color: var(--muted); font-size: 13.5px; line-height: 1.65; flex: 1; }

/* ─── Pricing ─── */
.pricing-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 780px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.pricing-intro .lead { max-width: 62ch; }

.pricing-group {
  margin-bottom: clamp(28px, 3vw, 40px);
}
.pricing-group-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--subtle);
  padding-block: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-group-label .gl-num { color: var(--accent); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-items: stretch;
}
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.p-card {
  background: var(--bg-card);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-card:hover {
  background: var(--bg-3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(49, 70, 91, 0.13);
}
.p-card.popular {
  background: #31465B;
  outline: 1.5px solid var(--accent);
  outline-offset: -1.5px;
  z-index: 1;
}
.p-card.popular:hover { background: #31465B; transform: translateY(-4px); box-shadow: 0 8px 32px rgba(217, 106, 27, 0.2); }
.p-card.popular h3,
.p-card.popular .p-name,
.p-card.popular .p-price,
.p-card.popular .p-tier,
.p-card.popular .p-desc,
.p-card.popular .p-feats li,
.p-card.popular .p-per { color: #F3F1EC; }
.p-card.popular .p-price-row { border-bottom-color: rgba(255,255,255,0.12); }
.p-card.popular .p-feats li.everything { color: #F3F1EC; }

.p-badge {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 9px;
  position: absolute;
  top: -1px; right: -1px;
}
.p-tier {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 14px;
  display: block;
}
.p-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: none;
  font-size: clamp(19px, 1.8vw, 22px);
  margin-bottom: 6px;
  color: #31465B;
}
.p-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: auto;
}
.p-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.p-monthly {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .01em;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.p-monthly strong { color: #31465B; font-weight: 700; }
.p-card.popular .p-monthly { color: rgba(243,241,236,0.8); border-bottom-color: rgba(255,255,255,0.12); }
.p-card.popular .p-monthly strong { color: #F3F1EC; }
.p-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1;
  color: #31465B;
}
.p-price .cur {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 600;
}
.p-per { font-family: 'Inter', system-ui, sans-serif; font-size: 12px; color: var(--muted); letter-spacing: .08em; }

/* Pricing feature lists — inherit shared .feat-list style */
.p-feats {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-feats li {
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.45;
}
.p-feats li::before {
  content: '→';
  color: var(--accent);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.p-feats li.everything {
  color: #31465B;
  font-weight: 600;
}
.p-feats li.everything::before { content: '✦'; font-size: 9px; }

/* Monthly retainer grid (3 col) */
.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) {
  .pricing-grid--3 { grid-template-columns: 1fr; }
}

/* Pricing disclaimer note — soft callout, not warning banner */
.p-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.p-note p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.p-note strong { color: #31465B; }

/* ─── Audit CTA ─── */
.audit-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
  padding-block: clamp(56px, 5.5vw, 82px);
}
@media (max-width: 780px) {
  .audit-inner { grid-template-columns: 1fr; }
}
.audit-copy h2 { margin-bottom: 20px; }
.audit-copy .lead { margin-bottom: 28px; }

/* Form */
.af-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.af-field--full { grid-column: 1 / -1; }

.af-field label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.af-field .req { color: var(--accent); }

.af-field input,
.af-field select,
.af-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--body-text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s;
  appearance: none;
  border-radius: 2px;
}
.af-field textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.5;
}
.af-field input:focus,
.af-field select:focus,
.af-field textarea:focus {
  border-color: var(--accent);
}
.af-select { position: relative; }
.af-caret {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

@media (max-width: 520px) {
  .af-grid { grid-template-columns: 1fr; }
}

.audit-success {
  background: var(--bg-3);
  border: 1px solid var(--accent);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.audit-success.success-visible { opacity: 1; transform: translateY(0); }
.as-check {
  width: 36px; height: 36px;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.as-check svg { width: 16px; height: 16px; }
.audit-success p { font-size: 16px; font-weight: 500; color: #31465B; }

/* ─── Footer ─── */
.site-footer {
  background: #31465B;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: clamp(56px, 5.5vw, 82px) 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(36px, 4vw, 56px);
}
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.foot-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243,241,236,0.55);
  max-width: 36ch;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-head {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.foot-col a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: rgba(243,241,236,0.65);
  transition: color .15s;
  width: fit-content;
}
.foot-col a:hover { color: #F3F1EC; }
.foot-loc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: rgba(243,241,236,0.45);
}
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot-copy {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(243,241,236,0.45);
}

.p-selector { font-size: 12px; color: var(--accent); font-family: 'Inter', sans-serif; letter-spacing: .04em; margin-bottom: 16px; margin-top: -10px; }
.p-card.popular .p-selector { color: rgba(243,241,236,0.7); }

.btn--full { width: 100%; justify-content: center; margin-top: auto; }

@media (max-width: 860px) {
  .auto-timeline--connected .auto-step { position: relative; padding-left: 32px; }
  .auto-timeline--connected .auto-step::before { content: ''; position: absolute; left: 12px; top: 0; bottom: -1px; width: 2px; background: var(--accent); opacity: 0.35; }
  .auto-timeline--connected .auto-step:last-child::before { display: none; }
  .auto-timeline--connected .auto-step .auto-step-label { margin-left: 0; }
}

@media (max-width: 700px) {
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance */
.hero-content {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-content.hero-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.problem-grid .problem-cell:nth-child(2).reveal { transition-delay: 0.09s; }
.problem-grid .problem-cell:nth-child(3).reveal { transition-delay: 0.18s; }
.step-grid .step-cell:nth-child(2).reveal       { transition-delay: 0.09s; }
.step-grid .step-cell:nth-child(3).reveal       { transition-delay: 0.18s; }
.auto-timeline .auto-step:nth-child(2).reveal   { transition-delay: 0.07s; }
.auto-timeline .auto-step:nth-child(3).reveal   { transition-delay: 0.14s; }
.auto-timeline .auto-step:nth-child(4).reveal   { transition-delay: 0.21s; }
.auto-timeline .auto-step:nth-child(5).reveal   { transition-delay: 0.28s; }
.pricing-grid .p-card:nth-child(2).reveal       { transition-delay: 0.08s; }
.pricing-grid .p-card:nth-child(3).reveal       { transition-delay: 0.16s; }
.pricing-grid .p-card:nth-child(4).reveal       { transition-delay: 0.24s; }

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 36px; }

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .reveal,
  .btn--primary .arrow,
  .p-card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
