/* =========================================================================
   SkillPal × Digistratics — Brokerage Growth System
   Design system. Brand colors ONLY: orange #EC6A2B + teal #16A6AE + neutrals.
   ========================================================================= */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:ital,opsz,wght@1,9..144,400;1,9..144,500;0,9..144,600&display=swap');

/* ---- Tokens ---- */
:root {
  /* Brand */
  --orange:      #EC6A2B;
  --orange-600:  #d65a1f;
  --orange-700:  #b8481a;
  --orange-50:   #fdf0e8;
  --orange-100:  #fbdfce;

  --teal:        #16A6AE;
  --teal-600:    #128f96;
  --teal-700:    #0e767c;
  --teal-900:    #0a4d51;
  --teal-50:     #e7f6f7;
  --teal-100:    #cbecee;

  /* Neutrals */
  --ink:         #131a1c;
  --ink-2:       #2b363a;
  --muted:       #5c6b70;
  --muted-2:     #8a979b;
  --line:        #e6ecec;
  --line-2:      #eef2f2;
  --bg:          #ffffff;
  --bg-soft:     #f3f7f7;
  --bg-mint:     #eef6f6;
  --white:       #ffffff;

  /* Gradients */
  --grad-teal:   linear-gradient(135deg, #16A6AE 0%, #0e767c 100%);
  --grad-orange: linear-gradient(135deg, #f57e42 0%, #EC6A2B 100%);
  --grad-brand:  linear-gradient(120deg, #16A6AE 0%, #17b0a2 40%, #EC6A2B 120%);
  --grad-hero:   radial-gradient(1200px 600px at 85% -10%, #dff2f2 0%, rgba(223,242,242,0) 55%),
                 radial-gradient(900px 500px at -5% 110%, #fbe7db 0%, rgba(251,231,219,0) 50%),
                 linear-gradient(180deg, #f7fbfb 0%, #eef6f6 100%);

  /* Effects */
  --shadow-sm:   0 1px 2px rgba(19,26,28,.05), 0 2px 6px rgba(19,26,28,.04);
  --shadow-md:   0 6px 20px rgba(19,26,28,.07), 0 2px 6px rgba(19,26,28,.05);
  --shadow-lg:   0 24px 60px rgba(14,118,124,.14), 0 8px 24px rgba(19,26,28,.08);
  --shadow-brand:0 18px 40px rgba(236,106,43,.28);

  --radius:      18px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --radius-pill: 999px;

  --maxw:        1200px;
  --gutter:      clamp(20px, 5vw, 40px);
  --font:        'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif:       'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16.5px;
  -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; }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-700);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad-orange); }
.eyebrow.center::after { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad-orange); }
.eyebrow.center { justify-content: center; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); }
.text-orange { color: var(--orange); }
.text-teal   { color: var(--teal-700); }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 118px) 0; }
.section.tight { padding: clamp(48px, 6vw, 78px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section-head .lead { margin-top: 16px; }
.section-head.left { margin-inline: 0; text-align: left; }
.grid { display: grid; gap: 24px; }
.bg-soft { background: var(--bg-soft); }
.bg-mint { background: var(--bg-mint); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-pill); border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .2s ease; }
.btn:hover svg { transform: translate(2px, -2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 14px 30px rgba(22,166,174,.28); }
.btn-teal:hover { background: var(--teal-600); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-700); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---- Header / Nav ---- */
.site-header { position: sticky; top: 0; z-index: 60; padding: 16px 0; transition: padding .2s ease; }
.site-header.scrolled { padding: 10px 0; }
.nav {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 9px 9px 9px 22px; box-shadow: var(--shadow-md);
}
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  position: relative; padding: 9px 13px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: .95rem; color: var(--ink-2); white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--teal-700); background: var(--teal-50); }
.nav-links a.active { color: var(--teal-700); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  border-radius: 2px; background: var(--grad-orange);
}
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative;
  transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }

/* ---- Logo ---- */
.brand { display: inline-flex; align-items: center; gap: 0; flex-shrink: 0; }
.brand-word { font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em; line-height: 1; }
.brand-skill { color: var(--orange); }
.brand-pal {
  color: #fff; background: var(--teal); padding: 3px 9px 4px; border-radius: 9px; margin-left: 2px;
}
.brand-tag { font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); margin-left: 10px; padding-left: 10px; border-left: 1px solid var(--line); }

/* ---- Hero ---- */
.hero { position: relative; }
.hero-shell {
  position: relative; overflow: hidden;
  background: var(--grad-hero);
  border: 1px solid rgba(22,166,174,.14);
  border-radius: var(--radius-xl);
  padding: clamp(34px, 5vw, 72px);
  box-shadow: var(--shadow-lg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 30px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 500; color: var(--ink-2); }
.hero-badge svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.hero-dots {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(22,166,174,.18) 1.2px, transparent 1.2px);
  background-size: 22px 22px; -webkit-mask-image: radial-gradient(60% 60% at 70% 30%, #000, transparent);
          mask-image: radial-gradient(60% 60% at 70% 30%, #000, transparent);
}
.hero-grid > * { position: relative; z-index: 1; }

/* Hero orbit visual (the closed loop) */
.orbit { position: relative; width: 100%; aspect-ratio: 1/1; max-width: 460px; margin-inline: auto; }
.orbit-ring { position: absolute; inset: 8%; border-radius: 50%; border: 1.5px dashed rgba(22,166,174,.35); }
.orbit-ring.two { inset: 20%; border-color: rgba(236,106,43,.28); }
.orbit-core {
  position: absolute; inset: 34%; border-radius: 50%; background: #fff; box-shadow: var(--shadow-lg);
  display: grid; place-content: center; text-align: center; padding: 14px;
}
.orbit-core b { display: block; font-size: 1.05rem; color: var(--teal-700); }
.orbit-core span { font-size: .72rem; color: var(--muted); }
.orbit-node {
  position: absolute; width: 62px; height: 62px; border-radius: 16px; background: #fff;
  display: grid; place-content: center; box-shadow: var(--shadow-md); color: var(--teal-700);
}
.orbit-node svg { width: 26px; height: 26px; }
.orbit-node.n1 { top: -4%; left: 50%; transform: translateX(-50%); }
.orbit-node.n2 { top: 26%; right: -4%; color: var(--orange); }
.orbit-node.n3 { bottom: 6%; right: 10%; }
.orbit-node.n4 { bottom: -4%; left: 50%; transform: translateX(-50%); color: var(--orange); }
.orbit-node.n5 { bottom: 6%; left: 10%; }
.orbit-node.n6 { top: 26%; left: -4%; }

/* Hero loan-file card + single accent (no overlap) */
.hero-file { position: relative; max-width: 420px; margin-inline: auto; padding-bottom: 34px; }
.hero-accent {
  position: absolute; right: -6px; bottom: 0; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 16px; box-shadow: var(--shadow-lg);
}
.hero-accent svg { width: 22px; height: 22px; color: var(--teal); }
.hero-accent b { display: block; font-size: 1.05rem; letter-spacing: -.02em; color: var(--ink); }
.hero-accent span { display: block; font-size: .74rem; color: var(--muted); }

/* Floating stat card on hero */
.hero-stat {
  position: absolute; z-index: 2; background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-stat .num { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.hero-stat .lbl { font-size: .78rem; color: var(--muted); line-height: 1.25; }
.hero-stat.s1 { top: 6%; left: -3%; }
.hero-stat.s2 { bottom: 4%; right: -3%; }

/* ---- Marquee / trust ---- */
.trust { padding: 26px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.trust p { text-align: center; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; margin-top: 18px; }
.trust-row span { font-weight: 700; color: var(--muted); font-size: 1.05rem; letter-spacing: -.01em; opacity: .8; }

/* ---- Cards ---- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-100); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-content: center; margin-bottom: 18px;
  background: var(--teal-50); color: var(--teal-700);
}
.card-icon.orange { background: var(--orange-50); color: var(--orange); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

/* ---- Feature list ---- */
.flist { display: grid; gap: 12px; margin-top: 6px; }
.flist li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: .96rem; }
.flist li svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.flist.orange li svg { color: var(--orange); }

/* ---- Split (challenge) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card { padding: 34px; border-radius: var(--radius-lg); }
.split-card.grow { background: var(--orange-50); border: 1px solid var(--orange-100); }
.split-card.run  { background: var(--teal-50); border: 1px solid var(--teal-100); }
.split-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.split-card h3 .tag { width: 38px; height: 38px; border-radius: 11px; display: grid; place-content: center; color: #fff; }
.split-card.grow .tag { background: var(--orange); }
.split-card.run  .tag { background: var(--teal); }
.xlist li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; color: var(--ink-2); font-size: .97rem; border-bottom: 1px dashed rgba(0,0,0,.07); }
.xlist li:last-child { border-bottom: 0; }
.xlist li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.split-card.run .xlist li svg { color: var(--teal); }

/* ---- Two engines ---- */
.engine {
  border-radius: var(--radius-lg); padding: 36px; color: #fff; overflow: hidden; position: relative;
}
.engine.growth { background: var(--grad-orange); }
.engine.ops { background: var(--grad-teal); }
.engine .powered { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .82; }
.engine h3 { color: #fff; font-size: 1.7rem; margin: 6px 0 10px; }
.engine > p { color: rgba(255,255,255,.9); font-size: .98rem; max-width: 46ch; }
.engine-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 24px; margin-top: 26px; }
.engine-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.25); }
.engine-col ul { display: grid; gap: 9px; }
.engine-col li { display: flex; gap: 9px; align-items: flex-start; font-size: .93rem; color: rgba(255,255,255,.95); }
.engine-col li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; opacity: .9; }
.engine-blob { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.12); top: -120px; right: -90px; }

/* ---- Steps / journey ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; }
.step-num {
  width: 46px; height: 46px; border-radius: 13px; background: #fff; border: 1px solid var(--line);
  display: grid; place-content: center; font-weight: 800; font-size: 1.15rem; color: var(--teal-700);
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.step:nth-child(even) .step-num { color: var(--orange); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; }

/* Journey vertical timeline */
.journey { max-width: 820px; margin-inline: auto; position: relative; }
.journey::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--teal), var(--orange)); }
.jstep { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 14px 0; position: relative; }
.jstep .dot { width: 56px; height: 56px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-md); display: grid; place-content: center; font-weight: 800; color: var(--teal-700); z-index: 1; }
.jstep:nth-child(even) .dot { color: var(--orange); }
.jstep .jbody { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.jstep h3 { font-size: 1.12rem; margin-bottom: 6px; }
.jstep p { color: var(--muted); font-size: .95rem; }

/* ---- Pricing ---- */
.ptable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); background: #fff; }
.ptable { width: 100%; border-collapse: collapse; min-width: 720px; }
.ptable th, .ptable td { padding: 15px 16px; text-align: center; border-bottom: 1px solid var(--line-2); font-size: .94rem; }
.ptable thead th { background: var(--bg-soft); font-weight: 700; color: var(--ink); position: sticky; top: 0; }
.ptable thead th.feat { text-align: left; }
.ptable tbody td:first-child { text-align: left; font-weight: 600; color: var(--ink-2); }
.ptable tbody tr:hover { background: var(--teal-50); }
.ptable .tick { color: var(--teal); font-weight: 700; }
.ptable .dash { color: var(--muted-2); }
.ptable .col-featured { background: rgba(22,166,174,.06); }
.ptable .price-row td { font-weight: 800; font-size: 1.05rem; color: var(--ink); background: var(--bg-soft); }
.ptable .price-row td:first-child { color: var(--teal-700); }
.badge-best { display: inline-block; margin-top: 4px; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--orange); padding: 2px 8px; border-radius: 999px; }

/* Pricing cards (per-file) */
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.pcard.featured { border-color: var(--teal); box-shadow: var(--shadow-lg); position: relative; }
.pcard .kicker { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-700); }
.pcard .price { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; margin: 8px 0 2px; }
.pcard .price small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.pcard .flist { flex: 1; margin: 20px 0 26px; }

/* ---- Bundle band / CTA ---- */
.cta-band { background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 52ch; margin: 16px auto 30px; }
.cta-band .glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(40px); opacity: .35; }
.cta-band .glow.a { background: var(--teal); top: -160px; left: -80px; }
.cta-band .glow.b { background: var(--orange); bottom: -180px; right: -60px; }
.cta-band > * { position: relative; z-index: 1; }

/* ---- Stat strip ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -.03em;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* ---- Page hero (inner pages) ---- */
.page-hero { background: var(--grad-hero); border-bottom: 1px solid var(--line); padding: clamp(56px, 8vw, 96px) 0 clamp(48px,6vw,72px); text-align: center; }
.page-hero .lead { max-width: 60ch; margin: 18px auto 0; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.crumbs a:hover { color: var(--teal-700); }

/* ---- Forms ---- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 7px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: .96rem;
  background: #fbfdfd; transition: border-color .18s ease, box-shadow .18s ease; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,166,174,.15); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 10px; text-align: center; }
.form-ok { display: none; background: var(--teal-50); border: 1px solid var(--teal-100); color: var(--teal-700); padding: 14px 18px; border-radius: 12px; font-weight: 600; margin-bottom: 18px; }

/* ---- Footer ---- */
.site-footer { background: #0e1516; color: #cfdadb; padding: clamp(56px,7vw,80px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand-word { color: #fff; }
.site-footer .brand-skill { color: var(--orange); }
.footer-about { color: #93a3a4; font-size: .94rem; margin-top: 16px; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: #a7b5b6; font-size: .94rem; padding: 6px 0; transition: color .16s ease; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); color: #7d8d8e; font-size: .86rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-content: center; color: #cfdadb; }
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

/* ---- Brand relationship map (SkillPal parent → two arms) ---- */
.brandmap { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 900px; margin-inline: auto; }
.brandmap-top { display: grid; place-items: center; }
.brandmap-parent { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 18px 28px; text-align: center; box-shadow: var(--shadow-md); }
.brandmap-parent b { font-size: 1.15rem; letter-spacing: -.02em; }
.brandmap-parent span { display: block; font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.brandmap-arms { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: relative; }
.brandmap-arms::before { content: ""; position: absolute; top: -18px; left: 25%; right: 25%; height: 18px; border-top: 2px solid var(--line); }
.brandarm { border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.brandarm .tag { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.brandarm.credit { border-top: 4px solid var(--teal); }
.brandarm.credit .tag { color: var(--teal-700); }
.brandarm.mkt { border-top: 4px solid var(--orange); }
.brandarm.mkt .tag { color: var(--orange); }
.brandarm h3 { margin: 8px 0 6px; }
.brandarm p { color: var(--muted); font-size: .95rem; }

/* ---- Cost / no-brainer comparison ---- */
.vs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vs-col { border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); background: #fff; }
.vs-col.win { border: 2px solid var(--teal); box-shadow: var(--shadow-lg); position: relative; }
.vs-col h3 { font-size: 1.15rem; margin-bottom: 4px; }
.vs-col .sub { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.vs-col ul { display: grid; gap: 11px; }
.vs-col li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink-2); }
.vs-col li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.vs-col.win li svg { color: var(--teal); }
.vs-col.lose li svg { color: #c05a3a; }
.vs-tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--teal); padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; }
.vs-col.lose .vs-tag { background: #b9c2c3; }

/* ---- Objection / FAQ accordion ---- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--teal); transition: transform .2s ease; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: .97rem; }
.faq .faq-body strong { color: var(--ink-2); }

/* ---- Big number / math callout ---- */
.mathrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mathcard { text-align: center; padding: 30px 20px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.mathcard .big { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.03em; color: var(--teal-700); }
.mathcard .big.orange { color: var(--orange); }
.mathcard p { color: var(--muted); font-size: .92rem; margin-top: 6px; }

/* ---- Ribbon / offer strip ---- */
.ribbon { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-50); color: var(--orange-700); border: 1px solid var(--orange-100); border-radius: 999px; padding: 8px 16px; font-size: .86rem; font-weight: 600; }
.ribbon svg { width: 16px; height: 16px; }

/* ---- Platform chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-sm); }
.chip svg { width: 18px; height: 18px; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Utility ---- */
.center { text-align: center; }
.mt-s { margin-top: 12px; } .mt-m { margin-top: 24px; } .mt-l { margin-top: 40px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: .84rem; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.pill svg { width: 15px; height: 15px; color: var(--teal); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .engine-cols { grid-template-columns: repeat(2, 1fr); }
  .vs { grid-template-columns: 1fr; }
  .mathrow { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; position: absolute; left: 0; right: 0; top: calc(100% + 10px);
    background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 12px; box-shadow: var(--shadow-lg); gap: 4px; margin: 0;
  }
  .nav.open .nav-cta { display: flex; margin: 4px 0 0; }
  .nav.open .nav-links a { padding: 12px 14px; }
  .nav { position: relative; }
  .nav-toggle { display: flex; }
  .cards-3, .cards-4, .cards-2, .split, .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .engine-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stat { display: none; }
  .brand-tag { display: none; }
  .brandmap-arms { grid-template-columns: 1fr; }
  .brandmap-arms::before { display: none; }
}
