/* =========================================================
   SMART TRADESMAN SOLUTIONS — Global Stylesheet
   Single source of truth. No inline styles anywhere.
   ========================================================= */

:root {
  --navy: #1B2B4B;
  --navy-dark: #142036;
  --navy-card: #223352;
  --orange: #F5820A;
  --orange-dark: #D9700A;
  --white: #FFFFFF;
  --light-bg: #F7F8FA;
  --text-dark: #111827;
  --text-muted: #4B5563;
  --green-tick: #22C55E;
  --border: #E5E7EB;
  --yellow: #FFC73A;

  --container: 1200px;
  --radius: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 4px rgba(0,0,0,.07);
  --shadow-card-hover: 0 10px 30px rgba(17,24,39,.12);
  --shadow-nav: 0 1px 0 rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.05);
  --ff: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 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; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--ff);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.18; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }
p { color: var(--text-muted); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--orange); color: #fff; padding: 12px 20px; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.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; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 80px; }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: #c4ccdc; }

.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.eyebrow--muted { color: var(--text-muted); }
/* darker orange on light backgrounds for WCAG AA (~4.8:1); bright orange stays on navy */
.section--white .eyebrow, .section--light .eyebrow { color: #B45309; }
.section-title { font-size: clamp(1.6rem, 3.2vw, 2.1rem); }
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; max-width: 820px; margin-inline: auto; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid transparent; transition: background .2s, transform .15s var(--ease), color .2s, border-color .2s;
  line-height: 1.2; text-align: center;
}
/* navy text on orange = ~5.2:1 (WCAG AA), keeps the exact brand orange fill */
.btn--orange { background: var(--orange); color: var(--navy); }
.btn--orange:hover { background: var(--orange-dark); transform: scale(1.02); }
.btn--orange-dark { background: var(--orange-dark); color: var(--navy); }
.btn--orange-dark:hover { background: #c0630a; transform: scale(1.02); }
.btn--outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: #fff; transform: scale(1.02); }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-ic { width: 18px; height: 18px; flex: none; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 1000; background: #fff;
  box-shadow: var(--shadow-nav); transition: padding .25s var(--ease), box-shadow .25s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 84px; transition: height .25s var(--ease); }
.site-nav.shrink .nav-inner { height: 66px; }

.nav-logo { display: flex; align-items: center; gap: 11px; flex: none; }
.nav-logo__icon { width: 46px; height: 46px; flex: none; }
.nav-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo__title { font-size: .92rem; font-weight: 800; color: var(--navy); letter-spacing: .01em; }
.nav-logo__sub { font-size: .6rem; font-weight: 600; color: var(--orange); letter-spacing: .04em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-dark); padding: 8px 12px; position: relative;
}
.nav-links a.nav-link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease);
}
.nav-links a.nav-link:hover { color: var(--orange); }
.nav-links a.nav-link:hover::after, .nav-links a.nav-link.active::after { transform: scaleX(1); }
.nav-links a.nav-link.active { color: var(--orange); }

.nav-cta { display: flex; flex-direction: column; gap: 7px; flex: none; }
.btn-pill { display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: var(--radius-pill); font-weight: 700; font-size: 13px; padding: 9px 18px; transition: background .2s, transform .15s, color .2s; white-space: nowrap; }
.btn-pill--orange { background: var(--orange); color: var(--navy); }
.btn-pill--orange:hover { background: var(--orange-dark); transform: scale(1.02); }
.btn-pill--outline { background: #fff; border: 2px solid var(--orange); color: var(--orange); }
.btn-pill--outline:hover { background: var(--orange); color: #fff; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 10px; background: var(--light-bg); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; margin-inline: auto; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; left: 0; }
.nav-toggle span::after { position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px 24px 24px; box-shadow: var(--shadow-nav);
    transform: translateY(-130%); transition: transform .35s var(--ease); border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a.nav-link { padding: 13px 8px; font-size: 16px; border-bottom: 1px solid var(--light-bg); }
  .nav-links a.nav-link::after { display: none; }
  .nav-cta { flex-direction: row; }
}
@media (max-width: 520px) {
  .nav-logo__title { font-size: .8rem; }
  .nav-cta .btn-pill { font-size: 12px; padding: 8px 12px; }
}

/* =========================================================
   IMAGE PLACEHOLDERS
   ========================================================= */
.img-placeholder {
  background: repeating-linear-gradient(45deg, #e9ecf2, #e9ecf2 12px, #eef1f6 12px, #eef1f6 24px);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: grid; place-items: center; text-align: center; color: #8a93a6;
  font-size: .8rem; font-weight: 600; padding: 16px; min-height: 120px;
}
.img-placeholder span { max-width: 80%; }
.img-placeholder--16x9 { aspect-ratio: 16/9; }
.img-placeholder--4x3 { aspect-ratio: 4/3; }
.img-placeholder--1x1 { aspect-ratio: 1/1; }
.img-placeholder--3x2 { aspect-ratio: 3/2; }
.img-placeholder--hero { aspect-ratio: 5/4; min-height: 360px; }
.img-placeholder--tall { aspect-ratio: 3/4; }
.img-placeholder--round { border-radius: 50%; aspect-ratio: 1/1; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy); color: #c4ccdc; padding-block: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr; gap: 40px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo__title, .footer-brand .nav-logo__sub { color: #fff; }
.footer-tag { color: var(--orange); font-weight: 700; font-size: .92rem; margin-bottom: 14px; }
.footer-brand p { color: #9aa6bd; font-size: .9rem; margin-bottom: 12px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a, .footer-col p { color: #9aa6bd; font-size: .9rem; display: block; padding: 5px 0; }
.footer-col a:hover { color: var(--orange); }
.footer-contact a, .footer-contact p { display: flex; gap: 10px; align-items: flex-start; color: #fff; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 4px; }
.footer-bottom {
  margin-top: 52px; background: var(--navy-dark); padding-block: 18px;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: #8b94a7; }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom .links { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom .container { justify-content: center; text-align: center; } }

/* =========================================================
   INNER PAGE HERO PATTERN
   ========================================================= */
.page-hero { background: var(--navy); position: relative; overflow: hidden; }
.page-hero .container { position: relative; padding-block: 72px; }
.page-hero__grid { display: grid; grid-template-columns: 1fr 200px; gap: 30px; align-items: start; }
.page-hero .eyebrow { color: #c4ccdc; }
.page-hero__title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 720px; }
.page-hero__sub { color: #c4ccdc; margin-top: 16px; max-width: 620px; font-size: 1.05rem; }
.crumbs { color: #8ea0c0; font-size: .82rem; margin-bottom: 16px; }
.crumbs a:hover { color: var(--orange); }

.accent-box {
  background: var(--orange); color: #fff; padding: 24px 22px; border-radius: 4px;
  font-weight: 800; font-size: 1.25rem; line-height: 1.35; align-self: start;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.accent-box__icon { width: 46px; height: 46px; margin-bottom: 14px; }
.accent-box p { color: #fff; font-weight: 800; }
@media (max-width: 760px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .accent-box { max-width: 240px; }
}

/* =========================================================
   HOME — HERO
   ========================================================= */
.hero { background: #fff; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-block: 70px; }
.hero__title { font-size: clamp(2rem, 4.4vw, 2.55rem); }
.hero__text > p { margin-top: 18px; font-size: 1.05rem; }
.hero__note { font-style: italic; color: var(--text-muted); font-size: .92rem; margin-top: 14px; }
.hero__cta { margin-top: 26px; }
.hero__cta .btn { width: 100%; }
.hero__fineprint { font-size: .82rem; color: var(--text-muted); margin-top: 10px; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; gap: 30px; } .hero__media { order: -1; } }

/* =========================================================
   FEATURE SPLIT (navy panel + white content)
   ========================================================= */
.feature-split { display: grid; grid-template-columns: 320px 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.feature-split__panel { background: var(--navy); color: #fff; padding: 48px 34px; }
.feature-split__panel .panel-icon { width: 56px; height: 56px; margin-bottom: 22px; }
.feature-split__panel .panel-label { color: var(--orange); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.feature-split__panel .panel-stack { font-size: 2rem; font-weight: 800; line-height: 1.25; color: #fff; }
.feature-split__content { background: #fff; padding: 48px 40px; }
.feature-split__content h2 { font-size: 1.5rem; margin-bottom: 14px; }
.feature-split__content > p { margin-bottom: 22px; }
.feature-split__content .btn { margin-bottom: 26px; }
.feature-block { margin-top: 20px; }
.feature-block h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
@media (max-width: 820px) { .feature-split { grid-template-columns: 1fr; } }

/* =========================================================
   SPLIT IMAGE + TEXT
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__stack { display: grid; gap: 18px; }
.split__text h2 { margin-bottom: 16px; }
.split__text h3 { color: var(--orange); font-size: 1.15rem; margin: 18px 0 6px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* =========================================================
   STATS BAR (navy)
   ========================================================= */
.stats__head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.stats__head h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.stats__head p { color: #c4ccdc; font-style: italic; margin-top: 12px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat { padding: 14px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,.14); }
.stat__icon { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--orange); }
.stat__num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1; }
.stat__label { color: #c4ccdc; font-size: .85rem; margin-top: 8px; }
@media (max-width: 620px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 0; } .stat:nth-child(odd)::before { display: none; } }

/* =========================================================
   TESTIMONIALS (navy)
   ========================================================= */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: var(--navy-card); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.stars { display: flex; gap: 2px; color: var(--orange); }
.stars svg { width: 18px; height: 18px; }
.tcard blockquote { color: #e6ebf4; font-size: .98rem; line-height: 1.6; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard__avatar { width: 46px; height: 46px; flex: none; }
.tcard__who b { color: #fff; display: block; font-size: .95rem; }
.tcard__who span { color: #9aa6bd; font-size: .82rem; }
@media (max-width: 860px) { .tcards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* =========================================================
   CARD GRIDS (3-col)
   ========================================================= */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.card__icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--navy); color: var(--orange); margin-bottom: 18px; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { font-size: .95rem; margin-bottom: 20px; }
.card .btn { margin-top: auto; align-self: flex-start; }
/* service card with media on top */
.service-card { padding: 0; overflow: hidden; }
.service-card .img-placeholder { border: 0; border-radius: 0; border-bottom: 1px solid var(--border); }
.service-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card__body p { font-size: .92rem; margin-bottom: 18px; }
.service-card__body .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 860px) { .cards-3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* =========================================================
   PRICING
   ========================================================= */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; position: relative; transition: transform .25s var(--ease), box-shadow .25s; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.plan--featured { border: 2px solid var(--orange); box-shadow: 0 20px 50px rgba(245,130,10,.22); transform: translateY(-8px); }
.plan--featured:hover { transform: translateY(-12px); }
.plan__badge { position: absolute; top: 14px; right: -2px; background: var(--orange); color: #fff; font-weight: 800; font-size: .68rem; letter-spacing: .06em; padding: 6px 14px; border-radius: 4px 0 0 4px; }
.plan__trophy { width: 40px; height: 40px; color: var(--orange); margin-bottom: 12px; }
.plan__name { font-size: 1.4rem; color: var(--navy); }
.plan__name small { display: block; font-size: .72rem; font-weight: 700; color: var(--orange); letter-spacing: .08em; margin-top: 2px; }
.plan__setup { font-size: .92rem; color: var(--text-muted); margin: 8px 0 4px; font-weight: 600; }
.plan__tagline { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }
.plan__features { display: grid; gap: 10px; margin: 16px 0 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.plan__features li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--text-dark); }
.plan__features li svg { width: 18px; height: 18px; color: var(--green-tick); flex: none; margin-top: 2px; }
.plan__features li.plus { font-weight: 700; color: var(--navy); }
.plan__price { margin: auto 0 4px; }
.plan__price .amt { font-size: 2.2rem; font-weight: 800; color: var(--navy); }
.plan__price .per { font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.plan__cta { margin-top: 18px; }
.plan__note { font-size: .78rem; color: var(--text-muted); font-style: italic; margin-top: 10px; text-align: center; }
.pricing__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
@media (max-width: 920px) { .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } .plan--featured { transform: none; } }

/* =========================================================
   PRICING TEASER (Home)
   ========================================================= */
.pricing-teaser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin-inline: auto; }
.pricing-teaser__card { position: relative; background: var(--navy-card); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 26px 22px; text-align: center; transition: transform .25s var(--ease), box-shadow .25s; }
.pricing-teaser__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.pricing-teaser__card--featured { border-color: var(--orange); }
.pricing-teaser__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--navy); font-weight: 800; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.pricing-teaser__name { display: block; font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.pricing-teaser__price { display: block; font-weight: 800; color: var(--orange); font-size: 2rem; margin-bottom: 8px; }
.pricing-teaser__price span { font-size: .85rem; font-weight: 600; color: #c4ccdc; }
.pricing-teaser__card p { color: #c4ccdc; font-size: .88rem; margin: 0; }
@media (max-width: 700px) { .pricing-teaser__grid { grid-template-columns: 1fr; max-width: 360px; } }

/* =========================================================
   BONUS BUNDLE
   ========================================================= */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-card); }
.bonus-card .badge-ic { width: 60px; height: 60px; margin: 0 auto 14px; }
.bonus-card h3 { font-size: 1rem; margin-bottom: 6px; }
.bonus-card .val { color: var(--orange); font-weight: 800; font-size: .9rem; margin-top: 8px; }
.bonus-total { text-align: center; margin-top: 34px; }
.bonus-total b { display: block; font-size: 1.3rem; color: var(--navy); margin-bottom: 18px; }
@media (max-width: 820px) { .bonus-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .bonus-grid { grid-template-columns: 1fr; } }

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee { text-align: center; max-width: 760px; margin-inline: auto; }
.guarantee__badge { width: 70px; height: 70px; margin: 0 auto 18px; color: var(--green-tick); }
.guarantee h2 { margin-bottom: 14px; }
.guarantee .win { font-weight: 800; color: var(--orange); margin-top: 16px; font-size: 1.1rem; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-size: 1.02rem; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__chev { width: 22px; height: 22px; flex: none; color: var(--orange); transition: transform .3s var(--ease); }
.faq__item.open .faq__chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 22px 20px; color: var(--text-muted); font-size: .96rem; }

/* =========================================================
   PROCESS DIAGRAM (7 steps)
   ========================================================= */
.process__diagram { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; align-items: start; }
.process__diagram--5 { grid-template-columns: repeat(5, 1fr); }
.pstep { text-align: center; position: relative; padding: 8px; }
.pstep__num { width: 30px; height: 30px; margin: 0 auto 10px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: .85rem; display: grid; place-items: center; }
.pstep__num span { line-height: 1; }
.pstep__icon { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--orange); }
.pstep__label { font-size: .8rem; font-weight: 600; color: var(--navy); line-height: 1.25; }
.pstep:not(:last-child)::after { content: "→"; position: absolute; top: 30px; right: -8px; color: var(--orange); font-weight: 800; font-size: 1.1rem; }
.process__note { text-align: center; max-width: 760px; margin: 36px auto 0; color: var(--text-muted); }
@media (max-width: 920px) {
  .process__diagram { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; gap: 26px; }
  .pstep { display: grid; grid-template-columns: 44px 44px 1fr; align-items: center; gap: 16px; text-align: left; }
  .pstep__num, .pstep__icon { margin: 0; }
  .pstep:not(:last-child)::after { content: "↓"; top: auto; bottom: -22px; left: 14px; right: auto; }
}

/* =========================================================
   STEP BOXES (navy + orange)
   ========================================================= */
.stepboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.stepbox { border-radius: var(--radius); padding: 32px 30px; }
.stepbox--navy { background: var(--navy); color: #fff; }
.stepbox--navy h3 { color: #fff; margin-bottom: 16px; }
.stepbox--navy ol { padding-left: 0; counter-reset: s; display: grid; gap: 10px; }
.stepbox--navy li { color: #d6deec; font-size: .95rem; }
.stepbox--orange { background: var(--orange); color: #fff; }
.stepbox--orange p { color: #fff; }
.stepbox--orange .big { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }
.stepbox--orange .list { margin-top: 14px; font-weight: 700; }
@media (max-width: 820px) { .stepboxes { grid-template-columns: 1fr; } }

/* =========================================================
   FEATURE 6-GRID (2 x 3)
   ========================================================= */
.features-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature6 { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 26px 24px; }
.feature6 h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.feature6 p { color: #c4ccdc; font-size: .92rem; }
.features-6--light .feature6 { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.features-6--light .feature6 h3 { color: var(--navy); }
.features-6--light .feature6 p { color: var(--text-muted); }
.features-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.features-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
@media (max-width: 860px) { .features-6 { grid-template-columns: 1fr; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 14px; }
.info-list { margin-top: 26px; display: grid; gap: 20px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--light-bg); color: var(--orange); border: 1px solid var(--border); }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item b { display: block; color: var(--navy); font-size: 1.02rem; }
.info-item a, .info-item span { color: var(--text-muted); font-size: .95rem; }
.info-item a:hover { color: var(--orange); }

.social-links { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.social-links__label { display: block; font-weight: 700; color: var(--navy); font-size: .92rem; margin-bottom: 12px; }
.social-links__row { display: flex; gap: 10px; }
.social-ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--light-bg); color: var(--orange); border: 1px solid var(--border); transition: background .2s, color .2s, transform .15s var(--ease); }
.social-ic svg { width: 20px; height: 20px; }
.social-ic:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

.contact-form { background: var(--light-bg); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--text-dark); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea { width: 100%; font-family: inherit; font-size: .98rem; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); background: #fff; color: var(--text-dark); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(245,130,10,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--orange); }
.consent label { font-size: .78rem; color: var(--text-muted); font-weight: 400; line-height: 1.5; }
.consent label a { color: var(--orange); }
.field.invalid input, .field.invalid textarea { border-color: #d8482f; background: #fff7f6; }
.field-error { color: #d8482f; font-size: .8rem; margin-top: 5px; display: none; }
.field.invalid .field-error { display: block; }
.form-success { display: none; background: #e6f8ee; border: 1px solid #a8e2c2; color: #15703f; border-radius: var(--radius); padding: 16px 18px; font-weight: 600; margin-bottom: 18px; gap: 10px; align-items: center; }
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }
.form-error-banner { display: none; background: #fdeceb; border: 1px solid #f5c2bd; color: #b42318; border-radius: var(--radius); padding: 16px 18px; font-weight: 600; margin-bottom: 18px; gap: 10px; align-items: center; }
.form-error-banner.show { display: flex; }
.form-error-banner svg { width: 22px; height: 22px; flex: none; }
.form-error-banner a { color: #b42318; text-decoration: underline; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* =========================================================
   TILES (contact — 2x2 navy)
   ========================================================= */
.tiles-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tile { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px 26px; }
.tile h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.tile p { color: #c4ccdc; font-size: .92rem; }
.tile a { color: var(--orange); }
@media (max-width: 700px) { .tiles-4 { grid-template-columns: 1fr; } }

/* =========================================================
   GREEN CHECK LIST (about page)
   ========================================================= */
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.check-list li svg { width: 22px; height: 22px; color: var(--green-tick); flex: none; margin-top: 2px; }
.check-list--light li { color: var(--text-dark); }
.check-list--dark li { color: #e6ebf4; }
.dark-quote-card { background: var(--navy); color: #e6ebf4; border-radius: var(--radius); padding: 32px 30px; }
.dark-quote-card p { color: #d6deec; margin-bottom: 12px; }

/* =========================================================
   BEFORE / AFTER COMPARISON (service pages)
   ========================================================= */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin-inline: auto; }
.compare-card { border-radius: var(--radius-lg, 22px); padding: 32px 28px; }
.compare-card--before { background: var(--light-bg); border: 1px solid var(--border); }
.compare-card--after { background: var(--navy); box-shadow: var(--shadow-card-hover); }
.compare-card__tag { display: inline-block; font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.compare-card--before .compare-card__tag { background: #E5E7EB; color: var(--navy); }
.compare-card--after .compare-card__tag { background: var(--orange); color: var(--navy); }
.compare-list { display: grid; gap: 12px; }
.compare-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--text-muted); }
.compare-list li svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.compare-card--after .check-list li { color: #e6ebf4; }
@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: .78rem; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.blog-card p { font-size: .92rem; margin-bottom: 16px; }
.blog-card .read { margin-top: auto; color: var(--orange); font-weight: 700; font-size: .9rem; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* =========================================================
   LEGAL / PROSE
   ========================================================= */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.prose h3 { font-size: 1.1rem; margin: 22px 0 8px; color: var(--navy); }
.prose p, .prose li { color: var(--text-muted); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ul li { margin-bottom: 6px; }
.prose .updated { font-size: .85rem; color: var(--text-muted); font-style: italic; margin-bottom: 24px; }
.prose a { color: var(--orange); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.thankyou a { color: var(--orange); font-weight: 700; }
.thankyou a:hover { text-decoration: underline; }

/* =========================================================
   LINK IN BIO
   ========================================================= */
.linkbio { max-width: 460px; margin-inline: auto; text-align: center; padding-block: 60px; }
.linkbio .img-placeholder--round { width: 110px; margin: 0 auto 18px; }
.linkbio h1 { font-size: 1.5rem; }
.linkbio p { margin: 8px 0 28px; }
.linkbio .links { display: grid; gap: 14px; }
.linkbio .links a { display: flex; align-items: center; justify-content: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 16px; font-weight: 700; color: var(--navy); box-shadow: var(--shadow-card); transition: transform .15s, border-color .2s, color .2s; }
.linkbio .links a svg { width: 20px; height: 20px; flex: none; }
.linkbio .links a:hover { transform: scale(1.02); border-color: var(--orange); color: var(--orange); }

/* =========================================================
   THANK YOU
   ========================================================= */
.thankyou { text-align: center; max-width: 640px; margin-inline: auto; padding-block: 80px; }
.thankyou .tick { width: 84px; height: 84px; margin: 0 auto 22px; color: var(--green-tick); }
.thankyou h1 { font-size: 2rem; margin-bottom: 14px; }
.thankyou p { font-size: 1.05rem; margin-bottom: 28px; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.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; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Utilities */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

/* =========================================================
   REFERENCE-MATCH OVERRIDES
   ========================================================= */
.section-title--italic { font-style: italic; }

/* navy copy cards used on service pages */
.dark-quote-card .ul { display: block; text-decoration: underline; font-weight: 700; margin: 16px 0 10px; color: #fff; }
.dark-quote-card .copy-list { display: grid; gap: 9px; margin-top: 4px; }
.dark-quote-card .copy-list li { position: relative; padding-left: 18px; color: #d6deec; font-size: .97rem; }
.dark-quote-card .copy-list li::before { content: "•"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.dark-quote-card .lovebold { display: block; font-weight: 700; color: #fff; margin: 4px 0 10px; }

/* white demo CTA with yellow swoosh behind image */
.demo-white { align-items: center; }
.demo-white .split__text h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--navy); margin-bottom: 12px; }
.demo-white .split__text .note { margin-top: 14px; }
.demo-white__media { position: relative; display: grid; place-items: center; min-height: 320px; }
.demo-white__media::before { content: ""; position: absolute; right: 4%; top: 6%; bottom: 6%; left: 32%; background: var(--yellow); border-radius: 46% 54% 50% 50% / 60% 60% 40% 40%; transform: rotate(-8deg); }
.demo-white__media .img-placeholder { position: relative; width: 100%; max-width: 300px; }
@media (max-width: 820px) { .demo-white__media::before { left: 16%; } }

/* footer rounded orange CTA bar */
.footer-cta { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; background: var(--orange); border-radius: 16px; padding: 26px 28px; margin-top: 48px; transition: background .2s, transform .15s; }
.footer-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }
.footer-cta__title { color: var(--navy); font-weight: 800; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.footer-cta__sub { color: rgba(27,43,75,.72); font-weight: 600; font-size: .85rem; }
.site-footer .footer-bottom { margin-top: 40px; }
.site-footer .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.site-footer .footer-bottom .links { justify-content: center; }

/* =========================================================
   REAL <img> ELEMENTS (replacing photo placeholders)
   width/height attrs reserve space → no CLS
   ========================================================= */
.ph { display: block; width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--light-bg); object-fit: cover; }
.ph--hero { border: 0; box-shadow: 0 24px 60px rgba(17,24,39,.16); }
/* seamless inside cards */
.service-card .ph, .blog-card .ph { border: 0; border-radius: 0; border-bottom: 1px solid var(--border); }
/* demo CTA image sits above the yellow swoosh */
.demo-white__media .ph { position: relative; max-width: 300px; margin-inline: auto; }
/* link-in-bio round logo */
.ph--round { width: 110px; height: 110px; border-radius: 50%; border: 0; object-fit: cover; margin: 0 auto 18px; }

/* avatars + bonus badges are typographic, not photos — give them a clean branded look */
.tcard__avatar.img-placeholder { background: var(--navy); border: 0; color: #fff; }
.tcard__avatar.img-placeholder span { color: #fff; font-weight: 800; }
.badge-ic.img-placeholder { background: #FFF1E0; border: 1px solid #F7D8B0; color: var(--orange); }
.badge-ic.img-placeholder span { font-weight: 800; }

/* honesty / positioning block (Home + About) */
.honesty { max-width: 900px; margin-inline: auto; text-align: center; padding: clamp(30px, 5vw, 50px); }
.honesty .eyebrow { color: var(--orange); }
.honesty__lead { color: #eaeef6; font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.55; font-weight: 500; margin-bottom: 18px; }
.honesty__tag { color: var(--orange); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .9rem; margin: 0; }

/* free reactivation campaign — secondary/fallback offer (Home + Review Booster) */
.reactivation { max-width: 820px; margin-inline: auto; text-align: center; background: #fff; border: 1.5px dashed var(--orange); border-radius: 22px; padding: clamp(28px, 5vw, 44px); }
.reactivation__tag { display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--orange-dark); background: #FFF4E6; border: 1px solid #F7D8B0; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.reactivation__title { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin-bottom: 12px; }
.reactivation__text { color: var(--text-muted); max-width: 620px; margin: 0 auto 20px; }

/* offer banner (Home + Pricing) */
.offer-banner { max-width: 900px; margin: 0 auto 30px; background: #FFF4E6; border: 1px solid #F7D8B0; border-left: 4px solid var(--orange); border-radius: 10px; padding: 15px 22px; color: var(--navy); text-align: center; font-size: 1rem; line-height: 1.5; }
.offer-banner strong { color: var(--orange-dark); font-weight: 800; }
.offer-strip { padding-block: 30px; }
.offer-strip .offer-banner { margin-bottom: 0; }
.plan__perday { text-align: center; font-size: .82rem; font-weight: 700; color: var(--orange-dark); margin: -4px 0 10px; }

/* service-page FAQ — adapted from 21.dev shadcn/Radix accordion to vanilla + brand
   (border-b rows, chevron-down rotates 180deg on open, single-collapsible via main.js) */
.svc-faq { max-width: 760px; margin-inline: auto; display: grid; }
.svc-faq .faq__item { background: transparent; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; }
.svc-faq .faq__q { padding: 20px 4px; font-size: 1.05rem; transition: color .2s; }
.svc-faq .faq__q:hover { color: var(--orange-dark); }
.svc-faq .faq__a p { padding: 0 4px 20px; }
