/* =========================================================
   ProAnswerGhana — Master Stylesheet v1.0
   Built: April 2026 · Mobile-first · Accessible · Fast
   Brand: Confident, warm, modern Ghanaian professionalism
   ========================================================= */

:root {
  /* Palette */
  --navy: #0B2545;
  --navy-deep: #061633;
  --navy-soft: #13325C;
  --gold: #E6A817;
  --gold-soft: #F2C94C;
  --gold-pale: #FFF4D6;
  --ink: #0F172A;
  --graphite: #334155;
  --muted: #64748B;
  --hairline: #E2E8F0;
  --hairline-2: #F1F5F9;
  --bg: #FBFBF9;
  --bg-alt: #F5F3EE;
  --white: #FFFFFF;
  --success: #0F8F5F;
  --success-soft: #E7F5EE;
  --error: #B3261E;
  --error-soft: #FDECEA;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Scale */
  --max: 1200px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11,37,69,.06);
  --shadow-sm: 0 2px 8px rgba(11,37,69,.08);
  --shadow-md: 0 10px 30px rgba(11,37,69,.10);
  --shadow-lg: 0 24px 60px rgba(11,37,69,.14);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--graphite); }
.lead { font-size: 1.15rem; color: var(--graphite); }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-sm { padding: 48px 0; }

/* Discount ribbon */
.ribbon {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .02em;
}
.ribbon a { color: var(--navy-deep); text-decoration: underline; text-underline-offset: 2px; }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.nav-logo-mark::after {
  content: "";
  position: absolute; inset: 4px;
  border: 2px solid var(--gold);
  border-radius: 7px;
  border-right-color: transparent; border-bottom-color: transparent;
  transform: rotate(-45deg);
}
.nav-logo-mark span { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; z-index: 1; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--graphite); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-tel {
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  color: var(--navy); padding: 8px 12px; border-radius: 8px;
  border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-tel svg { width: 14px; height: 14px; color: var(--gold); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--hairline); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); margin: 4px auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; font-size: 15px; font-weight: 600;
  border-radius: 10px; letter-spacing: .01em;
  transition: all .2s var(--ease); text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-soft); color: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--hairline-2); color: var(--navy); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(60px, 9vw, 120px) 0 clamp(64px, 10vw, 130px);
  background:
    radial-gradient(ellipse 1000px 500px at 85% -10%, rgba(230,168,23,.14), transparent 60%),
    radial-gradient(ellipse 800px 600px at -10% 100%, rgba(11,37,69,.05), transparent 60%),
    var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 75%);
  opacity: .4;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--gold-pale); color: var(--navy-deep);
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.hero-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { margin: 22px 0 20px; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero-sub { font-size: 1.15rem; color: var(--graphite); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--success); }

/* Hero visual */
.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,37,69,.5) 100%);
}
.hero-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  padding: 18px 20px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--success); position: relative;
}
.hero-badge-dot::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--success); opacity: .4;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.6); opacity: 0; }
}
.hero-badge-text { font-size: 13.5px; line-height: 1.4; color: var(--navy); font-weight: 500; }
.hero-badge-text strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; }

/* Floating cards on hero visual */
.hero-float {
  position: absolute;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  z-index: 2;
}
.hero-float-top { top: 28px; right: -24px; display: flex; align-items: center; gap: 10px; }
.hero-float-top strong { font-family: var(--font-display); font-size: 22px; color: var(--navy); display: block; line-height: 1; }
.hero-float-top span { font-size: 12px; color: var(--muted); }
.hero-float-mid {
  top: 45%; left: -26px;
  display: flex; align-items: center; gap: 10px;
  max-width: 220px;
}
.hero-float-mid-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  display: grid; place-items: center;
  color: var(--navy-deep); font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.hero-float-mid-text { font-size: 12.5px; line-height: 1.35; color: var(--graphite); }
.hero-float-mid-text strong { color: var(--navy); font-weight: 600; }

/* Section headers */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* How It Works — timeline */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  color: var(--navy);
  position: relative;
}
.step-num::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid var(--hairline);
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* Benefits grid */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: #fff; padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.benefit::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.benefit:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gold-pale);
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit h4 { margin-bottom: 8px; color: var(--navy); }
.benefit p { font-size: 14.5px; margin: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all .3s var(--ease);
}
.plan:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.plan-featured {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff; transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.plan-featured h3, .plan-featured .plan-price, .plan-featured .plan-price-num { color: #fff; }
.plan-featured .plan-desc, .plan-featured .plan-feat { color: rgba(255,255,255,.82); }
.plan-featured .plan-feat svg { color: var(--gold); }
.plan-featured .plan-meta { color: rgba(255,255,255,.65); }
.plan-featured .plan-old { color: rgba(255,255,255,.5); }
.plan-featured::before {
  content: "MOST POPULAR";
  position: absolute; top: 0; right: 28px;
  background: var(--gold); color: var(--navy-deep);
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  padding: 6px 14px; border-radius: 0 0 8px 8px;
}
.plan-name { font-size: 14px; font-weight: 600; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.plan h3 { font-size: 1.6rem; margin-bottom: 12px; }
.plan-desc { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; min-height: 44px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.plan-price-currency { font-size: 20px; font-weight: 500; color: var(--navy); }
.plan-price-num { font-family: var(--font-display); font-size: 48px; font-weight: 600; color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.plan-price-period { font-size: 14px; color: var(--muted); }
.plan-old { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-bottom: 18px; }
.plan-meta { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; }
.plan .btn { margin-bottom: 28px; }
.plan-featured .btn-primary { background: var(--gold); color: var(--navy-deep); }
.plan-featured .btn-primary:hover { background: var(--gold-soft); }
.plan-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.plan-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--graphite); }
.plan-feat svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff; padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 60px; color: var(--gold);
  line-height: 1; font-weight: 600;
  position: absolute; top: 18px; right: 28px;
}
.testimonial-text { font-size: 15.5px; line-height: 1.65; color: var(--graphite); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff; display: grid; place-items: center;
  font-weight: 600; font-size: 16px;
}
.testimonial-meta strong { display: block; color: var(--navy); font-weight: 600; font-size: 14.5px; }
.testimonial-meta span { font-size: 13px; color: var(--muted); }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

/* Clients marquee */
.clients { padding: 48px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: #fff; }
.clients-head { text-align: center; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.clients-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 56px; align-items: center; }
.client-name { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--graphite); opacity: .7; transition: opacity .2s; }
.client-name:hover { opacity: 1; color: var(--navy); }

/* CTA Banner */
.cta-banner {
  background:
    radial-gradient(ellipse 700px 400px at 80% 30%, rgba(230,168,23,.22), transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 84px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .5;
}
.cta-banner .container { position: relative; text-align: center; max-width: 720px; }
.cta-banner h2 { color: #fff; margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 32px; }
.cta-banner .btn-primary { background: var(--gold); color: var(--navy-deep); }
.cta-banner .btn-primary:hover { background: var(--gold-soft); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.3); color: #fff; }
.cta-banner .btn-outline:hover { background: #fff; color: var(--navy); }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer {
  background: var(--navy-deep); color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer h5 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 18px; letter-spacing: .01em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; }
.footer-tel {
  font-family: var(--font-mono); font-size: 15px; color: #fff;
  display: block; margin-bottom: 6px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-badge {
  font-size: 11px; letter-spacing: .05em;
  padding: 5px 10px; border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 13px;
}
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* Sticky call CTA */
.sticky-call {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.sticky-call a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: transform .2s var(--ease);
}
.sticky-call a:hover { transform: scale(1.03); }
.sticky-wa { background: #25D366; color: #fff; }
.sticky-tel { background: var(--navy); color: #fff; }
.sticky-call svg { width: 18px; height: 18px; }

/* ==== Inner pages ==== */
.page-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
  background:
    radial-gradient(ellipse 800px 400px at 50% -20%, rgba(230,168,23,.12), transparent 60%),
    var(--bg);
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.page-hero .container { text-align: center; max-width: 820px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 1.15rem; color: var(--graphite); }
.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 22px; letter-spacing: .01em; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span { margin: 0 8px; opacity: .5; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
  transition: all .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.service-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { font-size: 14.5px; color: var(--muted); flex-grow: 1; margin-bottom: 20px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.service-card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* Feature split */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.split-reverse .split-visual { order: -1; }
.split h2 { margin-bottom: 20px; }
.split-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--graphite); }
.split-list svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.split-visual {
  aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: var(--shadow-md);
  position: relative;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry {
  background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
  transition: all .25s var(--ease);
}
.industry:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); }
.industry:hover h4, .industry:hover p { color: #fff; }
.industry:hover .industry-icon { background: var(--gold); color: var(--navy-deep); }
.industry-icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  border-radius: 12px; background: var(--gold-pale);
  color: var(--navy); display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.industry-icon svg { width: 22px; height: 22px; }
.industry h4 { margin-bottom: 4px; font-size: 1rem; transition: color .25s; }
.industry p { font-size: 13px; color: var(--muted); margin: 0; transition: color .25s; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 8px 0; text-align: left;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  color: var(--navy); cursor: pointer;
}
.faq-q-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--hairline);
  display: grid; place-items: center; flex-shrink: 0;
  transition: all .2s;
}
.faq-q-icon svg { width: 14px; height: 14px; color: var(--navy); transition: transform .2s; }
.faq-item[open] .faq-q-icon { background: var(--gold); border-color: var(--gold); }
.faq-item[open] .faq-q-icon svg { transform: rotate(45deg); }
.faq-a { padding: 10px 0 4px; color: var(--graphite); font-size: 15px; line-height: 1.7; }
.faq-a p:last-child { margin: 0; }

/* Form */
.form-wrapper { max-width: 720px; margin: 0 auto; background: #fff; padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
.form-step { border-bottom: 1px solid var(--hairline-2); padding-bottom: 28px; margin-bottom: 28px; }
.form-step:last-of-type { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.form-step-head {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 18px;
}
.form-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
  font-family: var(--font-body);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-row .form-field { margin-bottom: 0; }
.form-row + .form-field { margin-top: 16px; }
.form-field label {
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px; letter-spacing: .01em;
}
.form-error { color: var(--error); font-size: 12px; }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--hairline);
  background: var(--bg); color: var(--ink);
  transition: all .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--navy);
  background: #fff; box-shadow: 0 0 0 3px rgba(11,37,69,.08);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-status {
  padding: 14px 18px; border-radius: 8px; margin-bottom: 20px;
  font-size: 14.5px;
}
.form-success-msg { background: var(--success-soft); color: var(--success); border-left: 3px solid var(--success); }
.form-error-msg { background: var(--error-soft); color: var(--error); border-left: 3px solid var(--error); }
.form-legal { font-size: 12.5px; color: var(--muted); margin-top: 16px; line-height: 1.5; }

/* Blog cards */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.resource-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  position: relative; overflow: hidden;
}
.resource-card-image img { width: 100%; height: 100%; object-fit: cover; }
.resource-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  padding: 5px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--navy); text-transform: uppercase;
}
.resource-card-body { padding: 24px; }
.resource-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.resource-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.resource-card-meta { font-size: 12.5px; color: var(--muted); display: flex; gap: 14px; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.stat-num-accent { color: var(--gold); }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* Prose (legal pages) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.5rem; }
.prose h3 { margin-top: 28px; margin-bottom: 10px; font-size: 1.2rem; }
.prose p, .prose li { color: var(--graphite); font-size: 15.5px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 1em; }
.prose li { margin-bottom: 8px; }

/* Guarantee badge */
.guarantee-hero {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: center; max-width: 780px; margin: 0 auto;
  background: #fff; padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
}
.guarantee-seal {
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold));
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.guarantee-seal::before {
  content: ""; position: absolute; inset: 6px; border-radius: 50%;
  border: 2px dashed rgba(11,37,69,.3);
}
.guarantee-seal-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--navy-deep); line-height: 1; }
.guarantee-seal-day { font-size: 11px; font-weight: 700; color: var(--navy-deep); letter-spacing: .15em; text-transform: uppercase; margin-top: 4px; }

/* Responsive */
@media (max-width: 960px) {
  .nav-links, .nav-tel { display: none; }
  .nav-toggle { display: block; }
  .hero-inner, .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-visual { order: 0; }
  .hero-visual { aspect-ratio: 5/4; max-width: 560px; margin: 0 auto; }
  .hero-float-top, .hero-float-mid { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .steps::before { display: none; }
  .benefits, .services-grid, .testimonials, .pricing-grid, .resources-grid { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .industries-grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 22px; }
  .guarantee-hero { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .guarantee-seal { margin: 0 auto; }
}
@media (max-width: 560px) {
  .industries-grid, .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 12px 16px; }
  .container { padding: 0 18px; }
  .sticky-call { bottom: 14px; right: 14px; }
  .sticky-call a { padding: 10px 14px; font-size: 13px; }
}

/* Animations on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Print */
@media print { .nav, .sticky-call, .footer { display: none; } }
