/* ----------  FONTS  ---------- */
@font-face {
  font-family: 'Meiro';
  src: url('assets/fonts/Meiro-Regular.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ----------  RESET & TOKENS  ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

:root {
  /* primary */
  --charcoal:   #1F282B;
  --charcoal-2: #161D1F;
  --navy:       #1A334F;
  --lime:       #ECF73D;
  --lime-2:     #ACD036;
  --sage:       #A4B9BC;
  --white:      #FFFFFF;

  /* secondary */
  --blue:   #9DCEFE;
  --indigo: #7087FA;
  --orange: #FF8341;
  --pink:   #F2B1B8;
  --red:    #FD5C5E;

  /* tokens */
  --ink:        #0E1416;
  --ink-soft:   #475259;
  --line:       rgba(15, 22, 24, 0.08);
  --line-dark:  rgba(255, 255, 255, 0.08);
  --bg-soft:    #F5F7F8;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 22, 24, 0.04), 0 2px 6px rgba(15, 22, 24, 0.04);
  --shadow:    0 4px 14px rgba(15, 22, 24, 0.08), 0 24px 48px -16px rgba(15, 22, 24, 0.12);
  --shadow-lg: 0 30px 60px -20px rgba(15, 22, 24, 0.35);

  --font-display: 'Meiro', 'Space Grotesk', system-ui, sans-serif;
  --font-ui:      'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mark:    'Meiro', 'Archivo Black', 'Space Grotesk', system-ui, sans-serif;

  --max: 1200px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle SVG-noise overlay across the whole page — gives a tactile,
   premium "grain" feel (Linear / Vercel / Stripe house style) without
   any layout impact. Fixed so it doesn't shift on scroll. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------  TYPE  ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.35rem; line-height: 1.2; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 640px;
}

.lime { color: var(--lime); }

/* FIXR wordmark — matches the in-app implementation: bold geometric type with lime X */
.fixr-wordmark {
  font-family: var(--font-mark);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  display: inline-block;
  user-select: none;
}
.fixr-wordmark i {
  font-style: normal;
  color: var(--lime);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 4px rgba(236, 247, 61, 0.18);
}
.eyebrow-light { color: var(--ink-soft); }
.eyebrow-light .dot { background: var(--ink); box-shadow: 0 0 0 4px rgba(15,22,24,0.08); }

/* ----------  BUTTONS  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-lime { background: var(--lime); color: var(--charcoal); }
.btn-lime:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(236,247,61,0.6); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { transform: translateY(-1px); background: var(--ink); }

/* App-store style buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease;
  min-width: 180px;
}
.store-btn:hover { transform: translateY(-2px); background: var(--ink); box-shadow: var(--shadow-lg); }
.store-btn svg { flex: 0 0 auto; }
.store-btn-meta { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn-small { font-size: 0.65rem; font-weight: 500; opacity: 0.75; letter-spacing: 0.04em; }
.store-btn-big { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }

/* ----------  NAV  ---------- */
/* Light nav matches the actual FIXR app's topbar treatment (light bg, dark wordmark with lime X). */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
}
.nav::after {
  content: '';
  position: absolute;
  left: 24px; right: 24px; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,22,24,0.10) 30%, rgba(15,22,24,0.10) 70%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--lime-2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  color: var(--charcoal);
  padding: 11px 22px;
  font-size: 0.92rem;
  box-shadow: 0 8px 18px -8px rgba(236,247,61,0.7);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(15,22,24,0.04);
  border: 1px solid rgba(15,22,24,0.08);
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ----------  HERO  ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--charcoal) 0%, #1A2123 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(236, 247, 61, 0.10), transparent 60%),
    radial-gradient(50% 50% at 0% 80%, rgba(112, 135, 250, 0.10), transparent 60%);
  z-index: -1;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  right: -150px; top: -150px;
  background: radial-gradient(circle at center, rgba(236,247,61,0.18), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 24px 120px;
}
.hero-copy { max-width: 580px; }
.hero-title {
  margin-top: 24px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.74);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ----------  HERO VISUAL — BRAND STACK  ---------- */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* The brand-stack is a centerpiece tile + floating concept chips.
   It's intentionally NOT a phone mockup — the FIXR app is still being built,
   so we communicate the brand value with type and chips rather than fake UI. */
.brand-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
}
/* The brand-tile wraps the official brand-kit wordmark PNG (alpha-cleaned
   so it blends seamlessly with the dark hero). Only a dark cast-shadow on
   the badge — the premium lime ambient lives BEHIND the stack as a diffuse
   radial glow (not a silhouette-tracing drop-shadow, which created a rim). */
.brand-stack { isolation: isolate; }
.brand-stack::before {
  content: '';
  position: absolute;
  inset: -8% -8% -8% -8%;
  background: radial-gradient(circle at center, rgba(236,247,61,0.16), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.brand-stack-tradies::before {
  background: radial-gradient(circle at center, rgba(112,135,250,0.18), transparent 65%);
}
.brand-tile {
  position: absolute;
  inset: 4% 4% 4% 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  transition: transform .4s ease;
}
.brand-tile:hover {
  transform: scale(1.02);
}
.brand-tile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.brand-tile-alt {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}


/* ----------  HOW IT WORKS  ---------- */
.how {
  padding: 120px 0;
  background: var(--white);
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 64px;
  max-width: 720px;
}
.section-head-dark { color: var(--white); }
.section-head-dark .lead { color: rgba(255,255,255,0.7); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--lime);
  transition: width .3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15,22,24,0.12);
}
.step:hover::before {
  width: 100%;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }

/* ----------  TRADIES  ---------- */
.tradies {
  background: var(--charcoal-2);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.tradies::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  right: -150px; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(236,247,61,0.10), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.tradies-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tradies-copy h2 { margin: 18px 0 18px; }
.tradies-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.tradies-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 1.02rem;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.78rem;
}
.brand-stack-tradies { margin-left: auto; }

/* ----------  FAQ  ---------- */
.faq {
  padding: 120px 0;
  background: var(--bg-soft);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: rgba(236, 247, 61, 0.5);
  box-shadow: 0 0 0 3px rgba(236, 247, 61, 0.08), var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex: 0 0 auto;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .2s ease;
}
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ----------  FINAL CTA  ---------- */
.final {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.final-glow {
  position: absolute;
  width: 800px; height: 800px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(236,247,61,0.10), transparent 60%);
  filter: blur(40px);
}
.final-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.final h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 16ch;
}
.final p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 520px;
}
.final .hero-cta { margin-top: 24px; justify-content: center; }

/* ----------  FOOTER  ---------- */
.footer {
  background: var(--charcoal-2);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-logo { display: inline-block; margin-bottom: 16px; font-size: 1.6rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 320px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  padding: 6px 0;
  transition: color .15s ease;
}
.footer-cols a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-tag { color: var(--lime); font-family: var(--font-display); font-weight: 500; }

/* ----------  RESPONSIVE  ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 72px 24px 80px; }
  .hero-visual { order: 2; }
  .hero-copy { order: 1; max-width: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tradies-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px -10px rgba(15,22,24,0.12);
  }
  .how, .tradies, .faq, .final { padding: 80px 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .brand-stack { max-width: 340px; }
}

/* ----------  HERO TRUST ICON ROW  ---------- */
.hero-trust-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding: 0;
}
.hero-trust-icons li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
}
.hero-trust-icons svg {
  color: var(--lime);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-trust-icons { gap: 16px; }
  .hero-trust-icons li { font-size: 0.85rem; }
}

/* ----------  HERO PHONE MOCKUPS  ---------- */
.phone-stage {
  position: relative;
  width: 100%;
  max-width: 510px;
  height: 620px;
  margin: 0 auto;
}
.phone {
  position: absolute;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  padding: 11px;
  background: linear-gradient(135deg,
    #4a5057 0%,
    #2a2e33 22%,
    #15181c 50%,
    #2a2e33 78%,
    #4a5057 100%);
  border-radius: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 50px 80px -25px rgba(0, 0, 0, 0.78),
    0 18px 30px -10px rgba(0, 0, 0, 0.55),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.04);
}
.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 33px;
  display: block;
}
/* Side buttons — small metallic ridges that protrude from the frame */
.phone::before,
.phone::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, #15181c 0%, #4a5057 50%, #15181c 100%);
  border-radius: 1px;
  z-index: 0;
}
.phone-ios::before  { left:  -1.5px; top: 30%; width: 3px; height: 18%; }
.phone-ios::after   { right: -1.5px; top: 25%; width: 3px; height: 12%; }
.phone-android::before { left:  -1.5px; top: 30%; width: 3px; height: 13%; }
.phone-android::after  { right: -1.5px; top: 22%; width: 3px; height: 9%;  }
.phone-island,
.phone-camera {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.05);
  z-index: 3;
}
.phone-island {
  top: 18px;
  width: 32%;
  height: 28px;
  border-radius: 999px;
}
.phone-camera {
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.phone-front {
  right: 0;
  bottom: 0;
  z-index: 2;
}
.phone-back {
  left: 0;
  top: 0;
  z-index: 1;
  transform: rotate(-9deg);
  transform-origin: 50% 50%;
}
@media (max-width: 980px) {
  .phone-stage {
    height: auto;
    max-width: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .phone {
    position: static;
    width: 220px;
  }
  .phone-back {
    transform: none;
  }
}
@media (max-width: 640px) {
  .phone-stage {
    max-width: 280px;
  }
  .phone-back {
    display: none;
  }
  .phone-front {
    width: 250px;
  }
}

/* ----------  SPLIT GRID (used by Problem, Pricing, Benefits)  ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.split-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.split-col-head {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.45;
}
.split-list-pain .pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(253, 92, 94, 0.15);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}
.section-head-center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ----------  PROBLEM SECTION  ---------- */
.problem {
  background: var(--charcoal);
  color: var(--white);
  padding: 120px 0;
}

@media (max-width: 980px) {
  .split-grid { grid-template-columns: 1fr; gap: 20px; }
  .split-col { padding: 24px; }
}
@media (max-width: 640px) {
  .problem { padding: 80px 0; }
}

/* ----------  SOLUTION SECTION  ---------- */
.solution {
  position: relative;
  background: var(--charcoal-2);
  color: var(--white);
  padding: 120px 0;
  overflow: hidden;
}
.solution-glow {
  position: absolute;
  width: 600px; height: 600px;
  left: 50%; top: 0;
  transform: translate(-50%, -30%);
  background: radial-gradient(circle, rgba(236, 247, 61, 0.10), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.solution .container { position: relative; z-index: 1; }
.solution .section-head { margin-bottom: 56px; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.solution-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: transform .25s ease, border-color .25s ease;
}
.solution-item:hover {
  transform: translateY(-3px);
  border-color: rgba(236, 247, 61, 0.35);
}
.solution-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1rem;
}
.solution-item h3 {
  font-size: 1.05rem;
  line-height: 1.3;
}
.solution-foot {
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-style: italic;
}
@media (max-width: 980px) {
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .solution { padding: 80px 0; }
  .solution-grid { grid-template-columns: 1fr; }
}

/* ----------  SHARED CHECK-ICON (Pricing + Benefits)  ---------- */
.split-list-good .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(236, 247, 61, 0.18);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 1px;
}
.split-list-good .check-icon-lime {
  background: var(--lime);
  color: var(--charcoal);
}

/* ----------  PRICING SECTION  ---------- */
.pricing {
  background: var(--charcoal-2);
  color: var(--white);
  padding: 120px 0;
}
.pricing-grid { grid-template-columns: 1.3fr 1fr; }
.pricing-highlight {
  background: rgba(236, 247, 61, 0.06);
  border: 1px solid rgba(236, 247, 61, 0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 6px 0;
}
.pricing-highlight strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--lime);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pricing-sub {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.pricing-anchor {
  display: inline-block;
  margin-top: 18px;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(236, 247, 61, 0.4);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.pricing-anchor:hover {
  color: var(--lime-2);
  border-color: var(--lime-2);
}
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pricing { padding: 80px 0; }
}

/* ----------  BENEFITS SECTION  ---------- */
.benefits {
  background: var(--white);
  padding: 120px 0;
}
.split-col-light {
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.split-col-light .split-col-head {
  color: var(--ink);
}
.split-col-light .split-list li {
  color: var(--ink);
}
@media (max-width: 640px) {
  .benefits { padding: 80px 0; }
}

/* ----------  SUPPORT BLOCK  ---------- */
.support {
  background: var(--charcoal-2);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0;
  border-top: 1px solid var(--line-dark);
}
.support-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.support-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
}
.support-meta {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}
.support-cta {
  font-size: 0.88rem;
}
@media (max-width: 640px) {
  .support-inner { flex-direction: column; gap: 14px; }
}
