/* ============================================================
   SURGE OUTSOURCING: Design System
   ============================================================ */

:root {
  /* Brand */
  --navy-950: #060A18;
  --navy-900: #0A1129;
  --navy-800: #111A3D;
  --navy-700: #1A2450;
  --ink: #14142B;
  --blue-600: #1574EF;
  --blue-500: #2B87FF;
  --cyan-400: #1BBAFF;
  --cyan-300: #5CD2FF;
  --violet-500: #6A35FF;
  --coral-500: #FF3951;
  --amber-400: #FFC226;

  /* Neutrals */
  --bg: #F6F9FF;
  --bg-soft: #EDF3FF;
  --surface: #FFFFFF;
  --text: #46506B;
  --text-light: #6B7590;
  --line: rgba(20, 20, 43, 0.08);

  /* Gradients */
  --grad-primary: linear-gradient(120deg, #1574EF 0%, #1BBAFF 100%);
  --grad-vivid: linear-gradient(120deg, #6A35FF 0%, #1574EF 45%, #1BBAFF 100%);
  --grad-text: linear-gradient(100deg, #5CD2FF 0%, #1BBAFF 35%, #2B87FF 70%, #6A9BFF 100%);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20, 20, 43, 0.05), 0 4px 12px rgba(20, 20, 43, 0.05);
  --shadow-md: 0 2px 4px rgba(20, 20, 43, 0.04), 0 12px 32px rgba(20, 20, 43, 0.10);
  --shadow-lg: 0 4px 8px rgba(20, 20, 43, 0.05), 0 24px 64px rgba(20, 20, 43, 0.16);
  --glow-blue: 0 8px 32px rgba(21, 116, 239, 0.35);
  --glow-blue-lg: 0 12px 48px rgba(21, 116, 239, 0.45);

  --radius: 20px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.015em; }

::selection { background: rgba(27, 186, 255, 0.3); }

/* ---------- Layout ---------- */
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-head { max-width: 680px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 18px; font-size: 1.1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(21, 116, 239, 0.08);
  border: 1px solid rgba(21, 116, 239, 0.18);
  color: var(--blue-600);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 10px rgba(27, 186, 255, 0.9);
}
.on-dark .eyebrow {
  background: rgba(27, 186, 255, 0.10);
  border-color: rgba(27, 186, 255, 0.25);
  color: var(--cyan-300);
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-text-light {
  background: linear-gradient(100deg, #1574EF, #1BBAFF 60%, #6A35FF 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Dark sections */
.on-dark { background: var(--navy-900); color: #A9B4D8; }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 700; font-size: 1rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease-spring); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--glow-blue); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-blue-lg); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-110%);
  transition: transform 0.7s ease;
}
.btn-primary:hover::after { transform: translateX(110%); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.12); border-color: rgba(255,255,255,0.32); }

.btn-outline {
  border: 2px solid rgba(21, 116, 239, 0.35);
  color: var(--blue-600);
  background: var(--surface);
}
.btn-outline:hover { transform: translateY(-3px); border-color: var(--blue-600); box-shadow: var(--shadow-md); }

.btn-lg { padding: 19px 38px; font-size: 1.08rem; border-radius: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 10, 24, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(6, 10, 24, 0.35);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo .mark { width: 44px; height: auto; }
.nav-logo .word { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .word b {
  color: #fff; font-size: 1.28rem; font-weight: 800; letter-spacing: 0.02em;
}
.nav-logo .word span {
  color: var(--cyan-300); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a:not(.btn) {
  padding: 10px 16px; border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600; font-size: 0.96rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:not(.btn):hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav-links a.active { color: #fff; }
.nav-links a.active:not(.btn) { background: rgba(27, 186, 255, 0.12); color: var(--cyan-300); }
.nav-links .btn { margin-left: 14px; padding: 12px 24px; font-size: 0.94rem; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; padding: 10px;
}
.nav-burger span {
  width: 24px; height: 2.5px; border-radius: 2px; background: #fff;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #A9B4D8;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 20%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.orb-1 {
  width: 560px; height: 560px; top: -180px; left: -140px;
  background: radial-gradient(circle, rgba(21, 116, 239, 0.55), transparent 65%);
  animation: drift 14s ease-in-out infinite alternate;
}
.orb-2 {
  width: 480px; height: 480px; top: 10%; right: -160px;
  background: radial-gradient(circle, rgba(106, 53, 255, 0.42), transparent 65%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  width: 420px; height: 420px; bottom: -200px; left: 35%;
  background: radial-gradient(circle, rgba(27, 186, 255, 0.34), transparent 65%);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, 40px) scale(1.12); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: 170px 0 110px;
}
.hero h1 { color: #fff; margin-bottom: 26px; }
.hero-sub { font-size: 1.18rem; max-width: 540px; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 52px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: #C4CDEA; }
.hero-badge svg { flex-shrink: 0; }

/* Hero visual: floating glass cards */
.hero-visual { position: relative; height: 540px; }
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(4, 8, 20, 0.5);
  padding: 20px 22px;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.gc-main { top: 60px; left: 8%; width: 320px; z-index: 3; }
.gc-main .gc-row { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem; color: #fff;
  background: var(--grad-vivid);
  box-shadow: 0 0 0 3px rgba(27, 186, 255, 0.25);
  flex-shrink: 0;
}
.gc-main .gc-name { color: #fff; font-weight: 700; font-size: 1.02rem; }
.gc-main .gc-role { font-size: 0.83rem; color: #8FA0CC; }
.gc-status {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; color: #4ADE80;
}
.gc-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 8px #4ADE80; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }
.gc-tasks { margin-top: 18px; display: grid; gap: 10px; }
.gc-task { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #C4CDEA; }
.gc-task .tick {
  width: 20px; height: 20px; border-radius: 7px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-primary);
}
.gc-task .tick svg { width: 11px; height: 11px; }
.gc-task.pending .tick { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }

.gc-stat { top: 0; right: 4%; z-index: 2; animation-delay: 1.2s; text-align: left; }
.gc-stat .big { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.gc-stat .small { font-size: 0.82rem; color: #8FA0CC; margin-top: 2px; }
.gc-stat .spark { display: flex; align-items: flex-end; gap: 4px; height: 34px; margin-top: 12px; }
.gc-stat .spark i {
  width: 9px; border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #1BBAFF, #1574EF);
  animation: grow 1.2s var(--ease-out) both;
}
@keyframes grow { from { height: 4px !important; opacity: 0; } }

.gc-chat { bottom: 78px; right: 10%; width: 290px; z-index: 3; animation-delay: 2.1s; }
.gc-chat .bubble {
  background: rgba(21, 116, 239, 0.18);
  border: 1px solid rgba(27, 186, 255, 0.25);
  border-radius: 12px 12px 12px 4px;
  padding: 12px 15px; font-size: 0.87rem; color: #DCE5FF;
}
.gc-chat .bubble + .bubble { margin-top: 10px; border-radius: 12px 12px 4px 12px; background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.gc-chat .gc-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.78rem; color: #8FA0CC; font-weight: 600; }

.gc-pill {
  bottom: 0; left: 16%; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; animation-delay: 0.6s;
}
.gc-pill .ic {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-vivid); box-shadow: var(--glow-blue);
}
.gc-pill b { color: #fff; font-size: 0.94rem; display: block; }
.gc-pill span { font-size: 0.78rem; color: #8FA0CC; }

/* ---------- Logo marquee ---------- */
.clients { background: var(--navy-900); padding: 10px 0 84px; position: relative; }
.clients p {
  text-align: center; color: #7E8DBB; font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 38px;
}
.marquee {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 76px; width: max-content;
  animation: scroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee-track img {
  height: 44px; width: auto; max-width: 150px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.55;
  transition: opacity 0.3s, transform 0.3s;
}
.marquee-track img:hover { opacity: 1; transform: scale(1.08); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto;
  height: 4px; background: var(--grad-vivid);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 20px 48px rgba(21, 116, 239, 0.14); border-color: rgba(21, 116, 239, 0.25); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 58px; height: 58px; border-radius: 17px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  box-shadow: var(--glow-blue);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-spring);
}
.card:hover .card-icon { transform: scale(1.1) rotate(-6deg); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.98rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px; font-weight: 700; font-size: 0.95rem;
  color: var(--blue-600);
}
.card .card-link svg { transition: transform 0.3s var(--ease-spring); }
.card:hover .card-link svg { transform: translateX(5px); }

/* Icon color variants */
.card:nth-child(2) .card-icon { background: linear-gradient(120deg, #6A35FF, #A855F7); box-shadow: 0 8px 32px rgba(106, 53, 255, 0.35); }
.card:nth-child(3) .card-icon { background: linear-gradient(120deg, #1BBAFF, #4ADE80); box-shadow: 0 8px 32px rgba(27, 186, 255, 0.35); }
.card:nth-child(4) .card-icon { background: linear-gradient(120deg, #FF3951, #FF7A45); box-shadow: 0 8px 32px rgba(255, 57, 81, 0.3); }
.card:nth-child(5) .card-icon { background: linear-gradient(120deg, #FFC226, #FF7A45); box-shadow: 0 8px 32px rgba(255, 194, 38, 0.3); }
.card:nth-child(6) .card-icon { background: linear-gradient(120deg, #1574EF, #6A35FF); box-shadow: 0 8px 32px rgba(21, 116, 239, 0.35); }

/* ---------- Why us / feature band ---------- */
.why { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.why-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 74px; height: 74px; margin: 0 auto 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-vivid);
  box-shadow: var(--glow-blue);
  position: relative;
}
.why-icon::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px dashed rgba(21, 116, 239, 0.3);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.why-card h3 { margin-bottom: 12px; font-size: 1.22rem; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 90px); align-items: center; }
.split .section-head { margin-bottom: 24px; }
.split-copy p + p { margin-top: 16px; }
.split-copy .btn { margin-top: 32px; }

.blob-frame { position: relative; }
.blob-frame::before {
  content: ""; position: absolute; inset: -12%;
  background: var(--grad-vivid); opacity: 0.16;
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  animation: blob 12s ease-in-out infinite alternate;
}
@keyframes blob {
  from { border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%; transform: rotate(0deg); }
  to { border-radius: 45% 55% 48% 52% / 55% 45% 58% 42%; transform: rotate(6deg); }
}
.blob-frame img {
  position: relative; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------- Process (dark) ---------- */
.process { background: var(--navy-900); position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; width: 700px; height: 700px; top: -300px; right: -250px;
  background: radial-gradient(circle, rgba(106, 53, 255, 0.25), transparent 65%);
  filter: blur(80px); pointer-events: none;
}
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}
.step:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.07); border-color: rgba(27, 186, 255, 0.35); }
.step-num {
  font-size: 4.2rem; font-weight: 800; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.step h3 { color: #fff; margin-bottom: 12px; }
.step p { font-size: 0.97rem; }
.step ul { margin-top: 20px; display: grid; gap: 10px; }
.step li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: #C4CDEA; font-weight: 600; }
.step li svg { flex-shrink: 0; }
.step-arrow {
  position: absolute; top: 50%; right: -22px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary); box-shadow: var(--glow-blue);
  transform: translateY(-50%);
}

/* ---------- Stats ---------- */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat {
  text-align: center; padding: 34px 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat .num {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em;
  background: var(--grad-text) ; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  background: linear-gradient(100deg, #1574EF, #1BBAFF); -webkit-background-clip: text; background-clip: text;
}
.stat .lbl { font-size: 0.9rem; font-weight: 600; color: var(--text-light); margin-top: 6px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card .plan-kicker {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 8px;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.price-card .plan-tag { font-size: 0.92rem; color: var(--text-light); margin-bottom: 26px; }
.price {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.price .amount { font-size: 3.1rem; font-weight: 800; color: var(--ink); letter-spacing: -0.035em; }
.price .per { font-size: 0.95rem; color: var(--text-light); font-weight: 600; }
.price-card ul { display: grid; gap: 13px; margin-bottom: 34px; }
.price-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; }
.price-card li svg { flex-shrink: 0; margin-top: 4px; }
.price-card .btn { margin-top: auto; width: 100%; }

.price-card.featured {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 70%);
  border: 1px solid rgba(27, 186, 255, 0.35);
  box-shadow: 0 24px 70px rgba(21, 116, 239, 0.3);
  transform: scale(1.04);
  color: #A9B4D8;
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.price-card.featured h3, .price-card.featured .price .amount { color: #fff; }
.price-card.featured .plan-kicker { color: var(--cyan-300); }
.price-card.featured .price { border-bottom-color: rgba(255,255,255,0.12); }
.price-card.featured li { color: #C4CDEA; }
.popular-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  padding: 7px 20px; border-radius: 999px;
  background: var(--grad-vivid);
  color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: var(--glow-blue);
  white-space: nowrap;
}
.pricing-note {
  margin-top: 40px; text-align: center; font-size: 0.92rem; color: var(--text-light);
  max-width: 640px; margin-inline: auto;
}

/* Mini pricing strip (home) */
.mini-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mini-price {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.mini-price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(21, 116, 239, 0.3); }
.mini-price b { display: block; color: var(--ink); font-size: 1.05rem; }
.mini-price span { font-size: 0.85rem; color: var(--text-light); }
.mini-price .mp-price { font-weight: 800; font-size: 1.3rem; color: var(--blue-600); white-space: nowrap; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.testi:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testi .quote-mark { font-size: 3.4rem; line-height: 0.6; font-weight: 800; margin-bottom: 20px; font-family: Georgia, serif; }
.testi blockquote { font-size: 1.02rem; color: var(--ink); font-weight: 600; line-height: 1.6; }
.testi .who { margin-top: 26px; display: flex; align-items: center; gap: 13px; }
.testi .who .avatar { box-shadow: none; width: 46px; height: 46px; font-size: 0.92rem; }
.testi .who b { display: block; color: var(--ink); font-size: 0.96rem; }
.testi .who span { font-size: 0.84rem; color: var(--text-light); }
.testi .stars { display: flex; gap: 3px; margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin-inline: auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: rgba(21, 116, 239, 0.35); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 28px; text-align: left;
  font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.faq-q .chev {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-soft);
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--grad-primary); }
.faq-item.open .faq-q .chev svg { stroke: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.faq-a-inner { padding: 0 28px 26px; font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 6vw, 90px);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: -2px;
  background:
    radial-gradient(ellipse 60% 90% at 20% 110%, rgba(21, 116, 239, 0.5), transparent 60%),
    radial-gradient(ellipse 60% 90% at 80% -10%, rgba(106, 53, 255, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 60% at 60% 120%, rgba(27, 186, 255, 0.4), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p { color: #B9C3E4; max-width: 560px; margin: 0 auto 36px; font-size: 1.12rem; }
.cta-band .btn-ghost { margin-left: 4px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--navy-900); color: #A9B4D8;
  padding: 170px 0 96px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero p { max-width: 640px; margin-inline: auto; font-size: 1.14rem; }
.page-hero .hero-ctas { justify-content: center; margin-top: 36px; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .card-icon { margin: 0 auto 18px; }
.value-card h3 { font-size: 1.12rem; }
.value-card p { font-size: 0.9rem; margin-top: 8px; }
.value-card:nth-child(2) .card-icon { background: linear-gradient(120deg, #6A35FF, #A855F7); box-shadow: 0 8px 32px rgba(106, 53, 255, 0.35); }
.value-card:nth-child(3) .card-icon { background: linear-gradient(120deg, #1BBAFF, #4ADE80); box-shadow: 0 8px 32px rgba(27, 186, 255, 0.35); }
.value-card:nth-child(4) .card-icon { background: linear-gradient(120deg, #FF3951, #FF7A45); box-shadow: 0 8px 32px rgba(255, 57, 81, 0.3); }

/* ---------- Founder ---------- */
.founder { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); }
.founder-photo { position: relative; }
.founder-photo img.photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.founder-photo::before {
  content: ""; position: absolute; inset: -10%;
  background: var(--grad-vivid); opacity: 0.14;
  border-radius: 55% 45% 52% 48% / 46% 54% 46% 54%;
  animation: blob 12s ease-in-out infinite alternate;
}
.founder-card {
  position: absolute; bottom: -24px; right: -18px; z-index: 3;
  background: var(--surface); border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
}
.founder-card .ic {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-primary); box-shadow: var(--glow-blue); flex-shrink: 0;
}
.founder-card b { color: var(--ink); font-size: 0.96rem; display: block; }
.founder-card span { font-size: 0.8rem; color: var(--text-light); }
.signature { max-width: 190px; margin-top: 28px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 70px); align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(21, 116, 239, 0.3); }
.contact-card .ic {
  width: 52px; height: 52px; border-radius: 15px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grad-primary); box-shadow: var(--glow-blue);
}
.contact-card:nth-child(2) .ic { background: linear-gradient(120deg, #6A35FF, #A855F7); box-shadow: 0 8px 32px rgba(106,53,255,0.35); }
.contact-card:nth-child(3) .ic { background: linear-gradient(120deg, #1BBAFF, #4ADE80); box-shadow: 0 8px 32px rgba(27,186,255,0.35); }
.contact-card b { display: block; color: var(--ink); font-size: 1.02rem; }
.contact-card span { font-size: 0.9rem; color: var(--text-light); }

.form-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit; font-size: 0.98rem; color: var(--ink);
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-600); background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 116, 239, 0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-panel .btn { width: 100%; margin-top: 24px; }
.form-note { margin-top: 16px; font-size: 0.85rem; color: var(--text-light); text-align: center; }

.calendly-panel {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  background: var(--surface);
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #8FA0CC; padding: 80px 0 36px; position: relative; overflow: hidden; }
.footer::before {
  content: ""; position: absolute; top: -240px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(21, 116, 239, 0.16), transparent 65%);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.footer .nav-logo { margin-bottom: 18px; }
.footer-tagline { max-width: 320px; font-size: 0.95rem; }
.footer h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { font-size: 0.96rem; transition: color 0.2s, transform 0.2s; display: inline-block; }
.footer-links a:hover { color: var(--cyan-300); transform: translateX(3px); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 32px; font-size: 0.88rem; position: relative;
}
.social-btn {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.3s var(--ease-spring), background 0.3s, box-shadow 0.3s;
}
.social-btn:hover { transform: translateY(-4px); background: var(--grad-primary); box-shadow: var(--glow-blue); }

/* ---------- Savings calculator ---------- */
.calc { background: var(--navy-900); position: relative; overflow: hidden; }
.calc::before {
  content: ""; position: absolute; width: 640px; height: 640px; top: -260px; left: -220px;
  background: radial-gradient(circle, rgba(21, 116, 239, 0.28), transparent 65%);
  filter: blur(80px); pointer-events: none;
}
.calc::after {
  content: ""; position: absolute; width: 560px; height: 560px; bottom: -260px; right: -180px;
  background: radial-gradient(circle, rgba(106, 53, 255, 0.22), transparent 65%);
  filter: blur(80px); pointer-events: none;
}
.calc .container { position: relative; z-index: 2; }
.calc-panel {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 32px 80px rgba(4, 8, 20, 0.5);
}
.calc-label {
  display: block; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #8FA0CC; margin: 26px 0 12px;
}
.calc-label:first-child { margin-top: 0; }

.role-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.role-pill {
  padding: 10px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #C4CDEA; font-size: 0.88rem; font-weight: 600;
  transition: all 0.25s var(--ease-out);
}
.role-pill:hover { border-color: rgba(27, 186, 255, 0.5); color: #fff; transform: translateY(-2px); }
.role-pill.active {
  background: var(--grad-primary); border-color: transparent; color: #fff;
  box-shadow: var(--glow-blue); font-weight: 700;
}

.plan-toggle {
  display: flex; gap: 5px; padding: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
}
.plan-btn {
  flex: 1; padding: 13px 10px; border-radius: 10px;
  color: #C4CDEA; font-size: 0.92rem; font-weight: 700; text-align: center;
  transition: all 0.25s var(--ease-out);
}
.plan-btn small { display: block; font-size: 0.76rem; font-weight: 600; opacity: 0.75; margin-top: 2px; }
.plan-btn.active { background: var(--grad-primary); color: #fff; box-shadow: var(--glow-blue); }

.salary-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.salary-value { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.salary-value small { font-size: 0.85rem; font-weight: 600; color: #8FA0CC; }
input[type="range"].salary-slider {
  width: 100%; margin-top: 14px; appearance: none; -webkit-appearance: none;
  height: 8px; border-radius: 999px; outline: none; cursor: pointer;
  background: linear-gradient(90deg, #1574EF, #1BBAFF) 0/var(--fill, 50%) 100% no-repeat, rgba(255,255,255,0.12);
}
input[type="range"].salary-slider::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid #1BBAFF;
  box-shadow: 0 0 0 5px rgba(27, 186, 255, 0.25), 0 4px 12px rgba(4, 8, 20, 0.5);
  transition: transform 0.2s var(--ease-spring);
}
input[type="range"].salary-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"].salary-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid #1BBAFF;
  box-shadow: 0 0 0 5px rgba(27, 186, 255, 0.25), 0 4px 12px rgba(4, 8, 20, 0.5);
}
.calc-hint { font-size: 0.8rem; color: #7E8DBB; margin-top: 10px; }

.calc-results { display: flex; flex-direction: column; justify-content: center; }
.bar-row { margin-bottom: 22px; }
.bar-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 9px; }
.bar-head .bar-name { font-size: 0.92rem; font-weight: 700; color: #C4CDEA; display: flex; align-items: center; gap: 8px; }
.bar-head .bar-name .dot { width: 10px; height: 10px; border-radius: 50%; }
.bar-head .bar-amount { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.bar-head .bar-amount small { font-size: 0.78rem; font-weight: 600; color: #8FA0CC; }
.bar-track {
  height: 26px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.bar-fill {
  height: 100%; width: 0; border-radius: 999px;
  transition: width 1s var(--ease-out);
  position: relative;
}
.bar-fill.local { background: linear-gradient(90deg, #FF3951, #FF7A45); box-shadow: 0 0 24px rgba(255, 57, 81, 0.4); }
.bar-fill.surge { background: var(--grad-primary); box-shadow: 0 0 24px rgba(27, 186, 255, 0.45); }

.savings-box {
  margin-top: 12px; padding: 26px 28px;
  background: rgba(27, 186, 255, 0.07);
  border: 1px solid rgba(27, 186, 255, 0.25);
  border-radius: var(--radius);
  text-align: center;
}
.savings-box .sv-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8FA0CC; }
.savings-amount {
  font-size: clamp(2.3rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin: 6px 0 4px;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.savings-pct {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(74, 222, 128, 0.12); border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ADE80; font-size: 0.9rem; font-weight: 700;
}
.calc-foot { font-size: 0.78rem; color: #7E8DBB; margin-top: 18px; text-align: center; line-height: 1.6; }
.calc-cta { text-align: center; margin-top: 34px; }

@media (max-width: 900px) {
  .calc-panel { grid-template-columns: 1fr; }
}

/* ---------- Guarantee band ---------- */
.guarantee-card {
  position: relative;
  max-width: 860px; margin-inline: auto;
  background: var(--surface);
  border: 1px solid rgba(21, 116, 239, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-lg), 0 24px 70px rgba(21, 116, 239, 0.12);
  overflow: hidden;
}
.guarantee-card::before {
  content: ""; position: absolute; inset: 0 0 auto;
  height: 5px; background: var(--grad-vivid);
}
.g-icon {
  width: 88px; height: 88px; margin: 0 auto 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-vivid);
  box-shadow: var(--glow-blue-lg);
  position: relative;
}
.g-icon::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px dashed rgba(21, 116, 239, 0.3);
  animation: spin 16s linear infinite;
}
.g-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.g-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid rgba(21, 116, 239, 0.25);
  font-size: 0.93rem;
}
.g-chip svg { flex-shrink: 0; }
.g-chip b { color: var(--ink); }
.g-foot { margin-top: 26px; font-size: 0.9rem; color: var(--text-light); font-style: italic; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90;
    padding: 17px;
    border-radius: 15px;
    background: var(--grad-primary);
    color: #fff; font-weight: 700; font-size: 1.02rem;
    box-shadow: var(--glow-blue-lg), 0 10px 30px rgba(4, 8, 20, 0.4);
    transform: translateY(130%); opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    pointer-events: none;
  }
  .mobile-cta.show { transform: none; opacity: 1; pointer-events: auto; }
}

/* ---------- Keyboard focus ---------- */
:focus-visible {
  outline: 3px solid rgba(27, 186, 255, 0.6);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 150px; gap: 70px; }
  .hero-visual { height: 480px; max-width: 560px; margin-inline: auto; width: 100%; }
  .card-grid, .why-grid, .process-grid, .pricing-grid, .testi-grid, .mini-price-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 20px 48px rgba(21, 116, 239, 0.12); border-color: rgba(21, 116, 239, 0.25); }
.post-cover { height: 190px; position: relative; overflow: hidden; }
.post-cover .cover-art { position: absolute; inset: 0; }
.post-cover svg { width: 100%; height: 100%; }
.post-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.82rem; color: var(--text-light); font-weight: 600; }
.chip {
  padding: 5px 13px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(21, 116, 239, 0.1); color: var(--blue-600);
}
.chip.violet { background: rgba(106, 53, 255, 0.1); color: var(--violet-500); }
.chip.coral { background: rgba(255, 57, 81, 0.1); color: var(--coral-500); }
.post-body h3 { font-size: 1.22rem; margin-bottom: 10px; line-height: 1.3; }
.post-body p { font-size: 0.95rem; flex: 1; }
.post-body .card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-weight: 700; font-size: 0.95rem; color: var(--blue-600); }
.post-card:hover .card-link svg { transform: translateX(5px); }
.post-body .card-link svg { transition: transform 0.3s var(--ease-spring); }

/* ---------- Article ---------- */
.article-hero { padding: 170px 0 70px; text-align: center; }
.article-hero .post-meta { justify-content: center; margin-bottom: 22px; }
.article-hero .post-meta { color: #8FA0CC; }
.article-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); max-width: 860px; margin-inline: auto; }
.article {
  max-width: 720px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: clamp(32px, 5vw, 64px);
  margin-top: -46px; position: relative; z-index: 3;
}
.article h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.article p { margin-bottom: 18px; }
.article ul { margin: 0 0 18px 4px; display: grid; gap: 10px; }
.article li { display: flex; gap: 12px; align-items: flex-start; }
.article li svg { flex-shrink: 0; margin-top: 5px; }
.article li b { color: var(--ink); }
.pull-quote {
  margin: 36px 0; padding: 26px 30px;
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, #1574EF, #1BBAFF) 1;
  background: var(--bg-soft);
  border-radius: 0 16px 16px 0;
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  line-height: 1.5; letter-spacing: -0.01em;
}
.article-cta {
  margin-top: 44px; padding: 30px 32px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.article-cta b { color: #fff; font-size: 1.12rem; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue-600); margin-top: 36px; }
.back-link svg { transform: rotate(180deg); }

@media (max-width: 960px) {
  .nav-links {
    position: fixed; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(6, 10, 24, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-16px); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.3s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { padding: 14px 16px; font-size: 1.05rem; }
  .nav-links .btn { margin: 12px 0 0; }
  .nav-burger { display: flex; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .card-grid, .why-grid, .process-grid, .pricing-grid, .testi-grid, .mini-price-grid, .values-grid, .post-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 430px; }
  .gc-main { width: 280px; left: 0; }
  .gc-stat { right: 0; }
  .gc-chat { width: 250px; right: 0; bottom: 60px; }
  .gc-pill { left: 4%; }
  .founder-card { right: 8px; bottom: -18px; padding: 14px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
