/* ==========================================================================
   ERLY WIN — Digital Growth Partner
   style.css  |  plain CSS, no framework
   Theme: violet growth. Dark by default, light on toggle.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */

:root {
  /* violet ramp sampled from the Erly Win logo */
  --v-300: #C9AEFF;
  --v-400: #A97DFF;
  --v-500: #9140F1;   /* tagline violet */
  --v-600: #7233F0;   /* tile gradient */
  --v-700: #5B21D6;
  --navy:  #1A0842;   /* wordmark ink */
  --accent:#5B5BF0;
  --green: #34D399;

  /* dark theme (default) */
  --bg:        #08031A;
  --bg-alt:    #0D0626;
  --surface:   #140A2E;
  --surface-2: #1C1040;
  --line:      rgba(169, 125, 255, 0.17);
  --line-soft: rgba(169, 125, 255, 0.08);
  --ink:       #F6F2FF;
  --ink-2:     #C7BAE4;
  --ink-3:     #8C7FAD;
  --brand:     #A97DFF;
  --brand-ink: #FFFFFF;
  --glow:      radial-gradient(60% 60% at 50% 0%, rgba(114, 51, 240, .40), transparent 70%);
  --card-grad: linear-gradient(160deg, rgba(169,125,255,.10), rgba(169,125,255,.02));
  --shadow:    0 24px 60px -28px rgba(0, 0, 0, .9);
  --shadow-lg: 0 40px 90px -40px rgba(88, 28, 200, .75);

  /* type */
  --display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* metrics */
  --wrap: 1200px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --sec: clamp(4.5rem, 9vw, 7.5rem);
}

html[data-theme="light"] {
  --bg:        #FBF9FF;
  --bg-alt:    #F3EEFE;
  --surface:   #FFFFFF;
  --surface-2: #F7F2FE;
  --line:      rgba(114, 51, 240, 0.16);
  --line-soft: rgba(114, 51, 240, 0.07);
  --ink:       #1A0842;
  --ink-2:     #453163;
  --ink-3:     #6E5F8C;
  --brand:     #7233F0;
  --brand-ink: #FFFFFF;
  --glow:      radial-gradient(60% 60% at 50% 0%, rgba(169, 125, 255, .32), transparent 70%);
  --card-grad: linear-gradient(160deg, rgba(114,51,240,.05), rgba(114,51,240,.01));
  --shadow:    0 18px 44px -26px rgba(58, 20, 120, .28);
  --shadow-lg: 0 36px 80px -40px rgba(88, 28, 200, .32);
}

/* ---------- 2. Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .35s ease, color .35s ease;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin: 0 0 .6rem;
}
h1 { font-size: clamp(2.35rem, 6.2vw, 4.15rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.95rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.32rem); letter-spacing: -0.018em; }
p  { margin: 0 0 1rem; color: var(--ink-2); }

::selection { background: var(--v-600); color: #fff; }

:focus-visible {
  outline: 2px solid var(--v-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.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;
}

/* ---------- 3. Shared pieces ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: .705rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--v-600), var(--accent));
  border-radius: 2px;
}
.eyebrow.is-centered { justify-content: center; }

.sec-head { max-width: 660px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.sec-head.is-centered { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 1.03rem; margin-bottom: 0; }

.section { padding-block: var(--sec); position: relative; }
.section--alt { background: var(--bg-alt); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .92rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -0.01em;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease,
              background-color .22s ease, border-color .22s ease, color .22s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(120deg, var(--v-700), var(--v-500) 55%, #B280FF);
  color: #fff;
  box-shadow: 0 12px 34px -14px rgba(114, 51, 240, .85);
}
.btn--primary:hover { box-shadow: 0 20px 44px -14px rgba(114, 51, 240, .95); }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--brand); background: var(--line-soft); }

.btn--block { width: 100%; }
.btn--sm { padding: .68rem 1.15rem; font-size: .875rem; }

.card {
  background: var(--surface);
  background-image: var(--card-grad);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 125, 255, .42);
  box-shadow: var(--shadow);
}

/* icon tile */
.tile {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(114,51,240,.24), rgba(34,211,238,.14));
  border: 1px solid var(--line);
  color: var(--brand);
  margin-bottom: 1rem;
  flex: none;
}
.tile svg { width: 21px; height: 21px; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 4. Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease;
}
.header.is-stuck { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  height: 74px;
}

.brand { display: flex; align-items: center; margin-right: auto; flex: none; }
.brand .logo { height: 38px; width: auto; }
html[data-theme="dark"]  .logo--light { display: none; }
html[data-theme="light"] .logo--dark  { display: none; }
.footer .brand .logo { height: 44px; }
@media (max-width: 420px) { .brand .logo { height: 32px; } }

.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a {
  padding: .5rem .78rem;
  border-radius: 8px;
  font-size: .91rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s ease, background-color .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); background: var(--line-soft); }

.nav-actions { display: flex; align-items: center; gap: .55rem; }

.theme-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  transition: color .2s ease, border-color .2s ease, transform .3s ease;
}
.theme-btn:hover { color: var(--brand); border-color: var(--brand); transform: rotate(18deg); }
.theme-btn svg { width: 18px; height: 18px; }
html[data-theme="dark"] .icon-sun { display: block; }
html[data-theme="dark"] .icon-moon { display: none; }
html[data-theme="light"] .icon-sun { display: none; }
html[data-theme="light"] .icon-moon { display: block; }

.burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  place-items: center;
}
.burger span {
  display: block; width: 17px; height: 2px; border-radius: 2px;
  background: var(--ink); position: relative;
  transition: transform .25s ease, background-color .25s ease;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px;
  border-radius: 2px; background: var(--ink); transition: transform .25s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */

.hero { position: relative; padding-block: clamp(3.4rem, 7vw, 6rem) clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: -180px 0 auto;
  height: 640px;
  background: var(--glow);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 55% at 50% 12%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 55% at 50% 12%, #000, transparent 78%);
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .85rem .4rem .45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: .795rem;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}
.pill b {
  background: linear-gradient(120deg, var(--v-600), var(--v-400));
  color: #fff;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.hero h1 .grad {
  background: linear-gradient(100deg, var(--v-400), #D8B4FE 45%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lede { font-size: 1.075rem; max-width: 40rem; margin-top: 1.35rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.9rem; }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 1.8rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.stat-n {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-l { font-family: var(--mono); font-size: .655rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin-top: .45rem; }

/* live dashboard panel — the hero's thesis */
.panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-lg);
}
.panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.15rem; }
.panel-title { font-family: var(--display); font-weight: 700; font-size: .98rem; }
.panel-live {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: ping 2s infinite; }
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.panel-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-bottom: 1.1rem; }
.metric { background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: .75rem .7rem; }
.metric-v { font-family: var(--display); font-weight: 700; font-size: 1.28rem; letter-spacing: -.03em; }
.metric-k { font-size: .665rem; color: var(--ink-3); margin-top: .2rem; }
.metric-d { font-size: .655rem; color: var(--green); font-family: var(--mono); margin-top: .3rem; }

.chart { display: flex; align-items: flex-end; gap: 7px; height: 128px; padding: .55rem .2rem 0; border-top: 1px dashed var(--line); }
.bar {
  flex: 1;
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(180deg, var(--v-400), var(--v-700));
  opacity: .42;
  transform-origin: bottom;
  animation: grow .9s cubic-bezier(.2,.8,.3,1) both;
}
.bar:nth-last-child(-n+3) { opacity: 1; box-shadow: 0 -6px 18px -6px var(--v-500); }
@keyframes grow { from { transform: scaleY(.04); } to { transform: scaleY(1); } }

.panel-foot { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: .7rem; }

.panel-badge {
  position: absolute; right: -14px; bottom: -18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .7rem .9rem;
  display: flex; align-items: center; gap: .6rem;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.panel-badge svg { width: 20px; height: 20px; color: var(--green); }
.panel-badge div { font-size: .72rem; line-height: 1.35; }
.panel-badge b { display: block; font-size: .8rem; }

/* ---------- 6. Marquee / trust ---------- */

.strip { border-block: 1px solid var(--line); background: var(--bg-alt); padding-block: 1rem; overflow: hidden; }
.strip-track { display: flex; gap: 3rem; width: max-content; animation: slide 34s linear infinite; }
.strip-track span {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
  display: flex; align-items: center; gap: 3rem;
}
.strip-track span::after { content: "◆"; color: var(--brand); font-size: .55rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 7. Grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }

.card h3 { margin-bottom: .45rem; }
.card p:last-child { margin-bottom: 0; font-size: .935rem; }

/* services */
.svc {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: transform .28s cubic-bezier(.2,.7,.3,1), border-color .28s ease, background-color .28s ease;
}
.svc:hover { transform: translateY(-4px); border-color: rgba(169,125,255,.45); }
.svc .tile { width: 38px; height: 38px; margin-bottom: 0; border-radius: 10px; }
.svc .tile svg { width: 18px; height: 18px; }
.svc h3 { font-size: 1rem; margin-bottom: .2rem; }
.svc p { font-size: .845rem; margin: 0; color: var(--ink-3); line-height: 1.5; }

/* ---------- 8. Pricing (signature) ---------- */

.price-toggle-note {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3); text-align: center; margin-top: 1.4rem;
}

.matrix-scroll { overflow-x: auto; padding-bottom: .5rem; }
.matrix {
  width: 100%;
  min-width: 940px;
  border-collapse: separate;
  border-spacing: 10px 0;
  table-layout: fixed;
}
.matrix th, .matrix td { text-align: left; vertical-align: middle; }

.matrix thead th { padding: 0 0 .6rem; }
.matrix .col-label { width: 232px; }

.plan-head {
  background: var(--surface);
  background-image: var(--card-grad);
  border: 1px solid var(--line);
  border-radius: var(--r) var(--r) 0 0;
  padding: 1.35rem 1.15rem 1.15rem;
  text-align: center;
  position: relative;
}
.plan-name {
  font-family: var(--mono);
  font-size: .715rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.plan-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: -.045em;
  line-height: 1;
  margin-top: .55rem;
  background: linear-gradient(120deg, var(--v-400), #D8B4FE);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
html[data-theme="light"] .plan-price { background: linear-gradient(120deg, var(--v-700), var(--v-500)); -webkit-background-clip: text; background-clip: text; }
.plan-per { font-size: .73rem; color: var(--ink-3); margin-top: .3rem; font-family: var(--mono); letter-spacing: .06em; }

.plan-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--v-600), #B280FF);
  color: #fff;
  font-family: var(--mono); font-size: .59rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .32rem .75rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 22px -10px rgba(114,51,240,.9);
}

.matrix tbody th {
  font-weight: 500;
  font-size: .875rem;
  color: var(--ink-2);
  padding: .82rem .2rem;
  border-bottom: 1px solid var(--line-soft);
}
.matrix tbody td {
  font-size: .855rem;
  color: var(--ink-2);
  text-align: center;
  padding: .82rem .9rem;
  background: var(--surface);
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
}
.matrix tbody tr:hover td { background: var(--surface-2); color: var(--ink); }
.matrix tbody tr:hover th { color: var(--ink); }
.matrix td.is-none { color: var(--ink-3); }

.matrix tfoot td {
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--r) var(--r);
}

.matrix .col-pro .plan-head,
.matrix td.col-pro { border-color: rgba(169,125,255,.55); }
.matrix .col-pro .plan-head {
  background-image: linear-gradient(160deg, rgba(169,125,255,.22), rgba(169,125,255,.05));
  box-shadow: 0 -14px 50px -22px rgba(114,51,240,.7);
}
.matrix td.col-pro { background: color-mix(in srgb, var(--surface-2) 72%, var(--surface)); }
.matrix tfoot td.col-pro { border-color: rgba(169,125,255,.55); }

/* mobile plan cards */
.plan-cards { display: none; gap: 1.1rem; grid-template-columns: 1fr; }
.plan-card {
  background: var(--surface);
  background-image: var(--card-grad);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.3rem;
  position: relative;
}
.plan-card.is-featured { border-color: rgba(169,125,255,.6); box-shadow: var(--shadow-lg); }
.plan-card .plan-price { font-size: 2.9rem; }
.plan-list { list-style: none; margin: 1.3rem 0; padding: 0; }
.plan-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .855rem;
}
.plan-list li:last-child { border-bottom: 0; }
.plan-list span:first-child { color: var(--ink-3); }
.plan-list span:last-child { text-align: right; font-weight: 500; }

/* ---------- 9. Mentorship ---------- */

.mentor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
  background: var(--surface);
  background-image: var(--card-grad);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 3rem);
}
.mentor-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .8rem; }
.mentor-list li { display: flex; gap: .7rem; font-size: .93rem; color: var(--ink-2); align-items: flex-start; }
.mentor-list svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 3px; }

.mentor-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
}
.mentor-logo {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em;
  display: flex; align-items: center; gap: .6rem; margin-bottom: .35rem;
}
.mentor-logo i {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--v-600), var(--accent)); color: #fff;
  font-style: normal; font-size: .85rem; letter-spacing: 0;
}
.mentor-quote { font-size: .93rem; border-left: 2px solid var(--brand); padding-left: 1rem; margin-top: 1.2rem; }

/* ---------- 10. Process ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: step; }
.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.3rem 1.3rem;
  background: var(--surface);
  overflow: hidden;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.6rem;
  letter-spacing: -.05em;
  position: absolute;
  top: -.35rem; right: .7rem;
  color: var(--line);
  line-height: 1;
}
.step h3 { font-size: 1.02rem; position: relative; }
.step p { font-size: .875rem; margin: 0; color: var(--ink-3); }
.step-time { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: .55rem; }

/* ---------- 11. Testimonials ---------- */

.quote { display: flex; flex-direction: column; height: 100%; }
.stars { display: flex; gap: 2px; margin-bottom: .9rem; color: #FBBF24; }
.stars svg { width: 15px; height: 15px; }
.quote p { font-size: .945rem; color: var(--ink-2); flex: 1; }
.who { display: flex; align-items: center; gap: .75rem; margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--v-600), var(--accent));
  color: #fff; font-weight: 600; font-size: .85rem; font-family: var(--display);
}
.who b { display: block; font-size: .88rem; }
.who small { color: var(--ink-3); font-size: .755rem; }

/* ---------- 12. FAQ ---------- */

.faq { max-width: 800px; margin-inline: auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  background: none; border: 0;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.015em;
  transition: color .2s ease;
}
.qa-q:hover { color: var(--brand); }
.qa-q i {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  font-style: normal; font-size: 1.05rem; line-height: 1; color: var(--brand);
  transition: transform .3s ease, background-color .3s ease;
}
.qa-q[aria-expanded="true"] i { transform: rotate(45deg); background: var(--line-soft); }
.qa-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s cubic-bezier(.2,.7,.3,1); }
.qa-a > div { overflow: hidden; }
.qa-a p { padding-bottom: 1.25rem; margin: 0; font-size: .935rem; max-width: 68ch; }
.qa.is-open .qa-a { grid-template-rows: 1fr; }

/* ---------- 13. Contact ---------- */

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }

.info-row { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.info-row .tile { margin-bottom: 0; width: 40px; height: 40px; }
.info-row b { display: block; font-size: .93rem; }
.info-row a, .info-row span { color: var(--ink-3); font-size: .88rem; }
.info-row a:hover { color: var(--brand); }

.form {
  background: var(--surface);
  background-image: var(--card-grad);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: .655rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .82rem .95rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--ink);
  font-family: var(--body);
  font-size: .93rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); opacity: .75; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--v-500);
  box-shadow: 0 0 0 3px rgba(145, 64, 241, .20);
}
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .78rem; color: var(--ink-3); margin: .9rem 0 0; text-align: center; }
.form-msg {
  display: none;
  margin-top: 1rem; padding: .8rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(52, 211, 153, .12);
  border: 1px solid rgba(52, 211, 153, .35);
  color: var(--green);
  font-size: .87rem;
}
.form-msg.is-on { display: block; }

/* ---------- 14. CTA band ---------- */

.band {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(130deg, var(--v-700), #3B0F8C 55%, #1A0842);
  border: 1px solid rgba(169,125,255,.35);
}
.band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 90% at 50% 0%, rgba(201,174,255,.42), transparent 70%);
  pointer-events: none;
}
.band > * { position: relative; z-index: 1; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.78); max-width: 52ch; margin-inline: auto; }
.band .btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.band .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.band .btn--primary { background: #fff; color: var(--navy); }

/* ---------- 15. Footer ---------- */

.footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding-block: clamp(2.8rem, 5vw, 4rem) 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer h4 {
  font-family: var(--mono); font-size: .655rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 1rem; font-weight: 500;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a { font-size: .89rem; color: var(--ink-2); transition: color .2s ease, padding-left .2s ease; }
.footer a:hover { color: var(--brand); padding-left: 3px; }
.footer-about p { font-size: .88rem; max-width: 34ch; margin-top: 1rem; }

.socials { display: flex; gap: .5rem; margin-top: 1.2rem; }
.socials a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.socials a:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-2px); padding-left: 0; }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem 1.4rem;
  justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--ink-3);
}
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* local page link highlight in footer */
.local-link {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem; font-size: .84rem; color: var(--ink-2);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.local-link:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); padding-left: .95rem; }
.local-link svg { width: 15px; height: 15px; }

/* ---------- 15b. Floating WhatsApp button ---------- */

.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1.15rem;
  border-radius: 999px;
  background: #25D366;
  color: #05300F;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 14px 34px -12px rgba(37, 211, 102, .7);
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(37, 211, 102, .85); }
.wa-fab svg { width: 20px; height: 20px; }
@media (max-width: 560px) {
  .wa-fab { padding: .85rem; border-radius: 50%; right: 14px; bottom: 14px; }
  .wa-fab span { display: none; }
}

/* ---------- 16. Local page bits ---------- */

.areas { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.chip {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: .45rem .95rem;
  font-size: .83rem;
  color: var(--ink-2);
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.chip:hover { border-color: var(--brand); color: var(--ink); transform: translateY(-2px); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }

.checklist { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .75rem; }
.checklist li { display: flex; gap: .7rem; font-size: .93rem; color: var(--ink-2); }
.checklist svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 3px; }

.pack { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 1.3rem; }
.pack-rank {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .6rem;
}
.pack-bar { height: 8px; border-radius: 4px; background: var(--surface-2); overflow: hidden; margin-top: .7rem; }
.pack-bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--v-600), var(--accent)); }

.industry {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); padding: 1.2rem;
  transition: transform .28s cubic-bezier(.2,.7,.3,1), border-color .28s ease;
}
.industry:hover { transform: translateY(-4px); border-color: rgba(169,125,255,.45); }
.industry h3 { font-size: .97rem; margin-bottom: .3rem; }
.industry p { font-size: .84rem; color: var(--ink-3); margin: 0; }

/* ---------- 17. Responsive ---------- */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .panel { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: .6rem var(--gut) 1.4rem;
    transform: translateY(-140%);
    transition: transform .34s cubic-bezier(.2,.7,.3,1);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { padding: .85rem .2rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .burger { display: grid; }
  .nav-actions .btn { display: none; }

  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .mentor, .split, .contact-grid { grid-template-columns: 1fr; }
  .matrix-scroll { display: none; }
  .plan-cards { display: grid; }
  .panel-badge { right: 8px; bottom: -14px; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .field-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 1.4rem 2rem; }
  .panel-metrics { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .band .btn { width: auto; }
}

/* ---------- 18. Motion preference ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .band, .strip { display: none; }
  body { background: #fff; color: #000; }
}
