/* ===== Tokens ===== */
:root {
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-dark: #0a2540;
  --bg-dark-2: #061a30;
  --ink: #0b1220;
  --ink-2: #344558;
  --muted: #6b7785;
  --line: #e5eaf0;
  --line-dark: rgba(255,255,255,0.10);
  --brand: #00c2a8;
  --brand-dark: #00a48f;
  --brand-light: #5fe7d3;
  --accent: #1e5a8a;
  --warn: #f5b400;
  --danger: #ff5f57;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 24px 48px rgba(10, 37, 64, 0.12);
  --shadow-glow: 0 20px 40px rgba(0, 194, 168, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.1; margin: 0; color: var(--ink); letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Loader ===== */
.loader { position: fixed; inset: 0; z-index: 9999; background: var(--bg-dark); display: grid; place-items: center; transition: opacity 0.5s, visibility 0.5s; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader__inner svg { animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } }
.loader__bar { width: 120px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.loader__bar-fill { width: 0%; height: 100%; background: var(--brand); animation: loadBar 1.2s ease-out forwards; }
@keyframes loadBar { to { width: 100%; } }

/* ===== Cursor glow ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
  mix-blend-mode: screen;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow.active { opacity: 1; }
}

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--brand); color: #0a2540; box-shadow: 0 8px 20px rgba(0, 194, 168, 0.32); }
.btn--primary:hover { background: var(--brand-dark); box-shadow: 0 12px 28px rgba(0, 194, 168, 0.42); }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--ink); border-color: var(--line); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: var(--bg-alt); border-color: #cdd5de; }
.btn__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
  z-index: -1;
}
.btn--primary:hover .btn__shimmer { transform: translateX(100%); }

/* ===== Top bar ===== */
.topbar { background: var(--bg-dark); color: #cbd6e6; font-size: 13px; position: relative; z-index: 60; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; flex-wrap: wrap; gap: 8px; padding-top: 6px; padding-bottom: 6px; }
.topbar__left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }
.topbar__link, .rating a { display: inline-flex; align-items: center; gap: 6px; color: #cbd6e6; }
.topbar__link:hover, .rating a:hover { color: #fff; text-decoration: none; }
.topbar__link--static { cursor: default; }
.topbar__pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #28c840; box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7); animation: pulseDot 2s infinite; position: relative; }
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(40, 200, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0); }
}
.rating { display: inline-flex; align-items: center; gap: 6px; }
.rating strong { color: #fff; font-size: 14px; }
.rating__link { color: #5fe7d3 !important; font-weight: 500; }
.stars { color: #f5b400; letter-spacing: 1px; font-size: 12px; }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: box-shadow 0.2s, border-color 0.2s, background 0.2s; }
.header.scrolled { box-shadow: 0 4px 20px rgba(10,37,64,0.08); border-bottom-color: var(--line); background: rgba(255,255,255,0.95); }
.header__inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo:hover { text-decoration: none; }
.logo__mark { display: inline-flex; transition: transform 0.3s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; }
.logo__tag { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a { color: var(--ink-2); font-weight: 500; font-size: 15px; position: relative; padding: 4px 0; }
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--brand); transform: scaleX(0); transition: transform 0.25s var(--ease); transform-origin: left; border-radius: 2px; }
.nav a:hover::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.header__phone { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--accent); background: rgba(0, 194, 168, 0.08); transition: 0.2s; }
.header__phone:hover { background: var(--brand); color: #0a2540; text-decoration: none; transform: scale(1.05); }
.hamburger { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; width: 40px; height: 40px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px auto; transition: 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 24px; border-top: 1px solid var(--line); gap: 8px; background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--ink); font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a.btn { border: 1px solid transparent; padding: 14px 22px; border-bottom: 1px solid transparent; margin-top: 8px; }
.mobile-menu a.btn:first-of-type { margin-top: 12px; }

/* ===== Eyebrow ===== */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(0, 194, 168, 0.10); color: var(--brand-dark); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.eyebrow__dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
.eyebrow__badge { background: var(--brand); color: var(--bg-dark); padding: 2px 8px; border-radius: 6px; font-size: 11px; margin-left: 4px; letter-spacing: 0.06em; }
.eyebrow--center { display: inline-flex; }
.eyebrow--light { background: rgba(0, 194, 168, 0.18); color: var(--brand-light); }
.section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section__head--light .section__title, .section__head--light .section__sub { color: #fff; }
.section__head--light .section__sub { color: #9fb2c8; }
.section__title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; }
.section__sub { font-size: 17px; color: var(--muted); }
.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #cbd6e6; }
.section--dark .section__title { color: #fff; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 80px 0 110px; background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; animation: orbFloat 20s ease-in-out infinite; }
.hero__orb--1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--brand), transparent 70%); top: -200px; right: -100px; }
.hero__orb--2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--accent), transparent 70%); bottom: -200px; left: -100px; animation-delay: -10s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -30px) scale(1.1); } }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero__title { font-size: clamp(36px, 5.4vw, 64px); font-weight: 700; letter-spacing: -0.035em; margin: 14px 0 22px; }
.grad { background: linear-gradient(110deg, #00c2a8 0%, #1e5a8a 50%, #00c2a8 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmerText 6s linear infinite; }
@keyframes shimmerText { to { background-position: 200% center; } }
.hero__counter { display: inline-block; color: var(--accent); font-variant-numeric: tabular-nums; }
.hero__lede { font-size: 19px; color: var(--ink-2); max-width: 580px; margin-bottom: 32px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 580px; }
.trust { display: flex; flex-direction: column; padding: 16px 14px; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: 0.2s; }
.trust:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(0, 194, 168, 0.3); }
.trust strong { font-family: 'Space Grotesk', sans-serif; font-size: 26px; color: var(--ink); font-weight: 700; line-height: 1.1; font-variant-numeric: tabular-nums; }
.trust small { font-size: 14px; color: #f5b400; }
.trust--rating strong { color: var(--accent); }
.trust span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* Hero visual / device */
.hero__visual { position: relative; min-height: 480px; }
.orb-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(0, 194, 168, 0.2); animation: spin 40s linear infinite; }
.orb-ring--1 { width: 540px; height: 540px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.orb-ring--2 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 30s; animation-direction: reverse; border-color: rgba(30, 90, 138, 0.15); }
.orb-ring--3 { width: 640px; height: 640px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 60s; border-style: dotted; opacity: 0.5; }
@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.device { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 460px; z-index: 2; }
.device--laptop { display: flex; flex-direction: column; align-items: center; }
.device__screen { width: 100%; aspect-ratio: 16/10; background: linear-gradient(135deg, #0a2540, #1e5a8a); border-radius: 14px 14px 6px 6px; padding: 14px; position: relative; box-shadow: 0 30px 60px rgba(10, 37, 64, 0.4), 0 0 0 8px #1a2a3a, 0 0 0 9px rgba(0, 194, 168, 0.3); }
.screen__bar { display: flex; gap: 6px; margin-bottom: 14px; align-items: center; }
.screen__bar > span:not(.screen__title) { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.screen__bar > span:nth-child(1) { background: #ff5f57; }
.screen__bar > span:nth-child(2) { background: #febc2e; }
.screen__bar > span:nth-child(3) { background: #28c840; }
.screen__title { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.5); margin-left: 12px; }
.screen__body { display: flex; flex-direction: column; gap: 12px; }
.screen__row { display: flex; justify-content: space-between; align-items: center; }
.screen__label { font-size: 12px; color: rgba(255,255,255,0.6); font-family: 'JetBrains Mono', monospace; }
.screen__val { font-size: 12px; font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.screen__val--ok { color: #5fe7d3; }
.screen__bar-thin { height: 4px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.screen__bar-fill { width: 100%; height: 100%; background: linear-gradient(90deg, #00c2a8, #5fe7d3); border-radius: 4px; animation: loadFill 2.5s ease-out; }
@keyframes loadFill { from { width: 0; } }
.screen__checks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 4px; }
.screen__check { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.7); font-family: 'JetBrains Mono', monospace; background: rgba(255,255,255,0.05); padding: 8px; border-radius: 6px; }
.screen__check .dot { width: 6px; height: 6px; background: #5fe7d3; border-radius: 50%; box-shadow: 0 0 6px #5fe7d3; }
.screen__bigcheck { display: flex; align-items: center; gap: 12px; margin-top: 8px; padding: 14px; background: linear-gradient(135deg, rgba(0, 194, 168, 0.15), rgba(95, 231, 211, 0.05)); border-radius: 10px; color: #5fe7d3; font-weight: 600; font-size: 13px; }
.device__base { width: 110%; height: 14px; background: linear-gradient(180deg, #1a2a3a, #0a2540); border-radius: 0 0 18px 18px; margin-top: -2px; box-shadow: 0 8px 24px rgba(10, 37, 64, 0.3); }
.floating-card { position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 12px 16px; border-radius: 14px; box-shadow: 0 16px 40px rgba(10, 37, 64, 0.18); display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,0.6); z-index: 3; animation: float 4s ease-in-out infinite; }
.floating-card strong { display: block; font-size: 14px; color: var(--ink); font-family: 'Space Grotesk', sans-serif; }
.floating-card span { font-size: 11px; color: var(--muted); }
.fc__icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, rgba(0, 194, 168, 0.15), rgba(30, 90, 138, 0.1)); display: grid; place-items: center; font-size: 18px; }
.floating-card--1 { top: 8%; left: -10px; animation-delay: 0s; }
.floating-card--2 { top: 50%; right: -20px; animation-delay: 1.3s; }
.floating-card--3 { bottom: 6%; left: 10%; animation-delay: 2.6s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== Trust bar ===== */
.trustbar { background: #fff; padding: 36px 0; border-bottom: 1px solid var(--line); }
.trustbar__label { text-align: center; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; font-weight: 600; }
.trustbar__logos { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; opacity: 0.7; }
.trustbar__logo { display: flex; flex-direction: column; align-items: center; transition: 0.2s; }
.trustbar__logo:hover { opacity: 1; transform: scale(1.05); }
.trustbar__logo span { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); }
.trustbar__logo small { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ===== Marquee ===== */
.marquee { background: var(--bg-dark); color: #cbd6e6; padding: 14px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.marquee__track { display: inline-flex; gap: 40px; white-space: nowrap; animation: scroll 30s linear infinite; font-weight: 500; font-size: 14px; }
.marquee__track span { color: #cbd6e6; }
.marquee__track span:nth-child(odd) { color: #5fe7d3; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Grids ===== */
.grid { display: grid; gap: 20px; }
.services { grid-template-columns: repeat(3, 1fr); }

/* ===== Cards ===== */
.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); overflow: hidden; }
.card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 194, 168, 0.08), transparent 40%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0, 194, 168, 0.4); }
.card__num { position: absolute; top: 20px; right: 24px; font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--muted); font-weight: 600; opacity: 0.5; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(0, 194, 168, 0.15), rgba(30, 90, 138, 0.1)); color: var(--accent); display: grid; place-items: center; margin-bottom: 20px; transition: 0.3s var(--ease); }
.card:hover .card__icon { transform: scale(1.1) rotate(-6deg); background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; }
.card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--ink-2); margin-bottom: 16px; font-size: 15px; line-height: 1.6; }
.card__list li { position: relative; padding-left: 24px; color: var(--ink-2); font-size: 14px; margin-bottom: 6px; }
.card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; font-size: 14px; color: var(--accent); transition: gap 0.2s; }
.card__link:hover { gap: 10px; text-decoration: none; }
.card__pill { display: inline-block; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; text-transform: uppercase; }
.card--featured { background: linear-gradient(160deg, #0a2540 0%, #143a5c 100%); border-color: rgba(0, 194, 168, 0.3); }
.card--featured h3 { color: #fff; }
.card--featured p, .card--featured .card__list li { color: #cbd6e6; }
.card--featured .card__icon { background: rgba(0, 194, 168, 0.2); color: var(--brand-light); }
.card--featured .card__list li::before { color: var(--brand-light); }
.card--featured .card__link { color: var(--brand-light); }

/* ===== Pricing ===== */
.section--pricing { background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%); }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; transition: 0.2s var(--ease); position: relative; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card--featured { background: linear-gradient(160deg, #0a2540 0%, #1e5a8a 100%); border-color: transparent; box-shadow: var(--shadow-glow); transform: scale(1.03); }
.price-card--featured .price-card__head h3, .price-card--featured .price-card__price .amt { color: #fff; }
.price-card--featured .price-card__price .cur, .price-card--featured .price-card__price .per, .price-card--featured .price-card__list li { color: #cbd6e6; }
.price-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.price-card__head h3 { font-size: 18px; }
.price-card__tag { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: rgba(0, 194, 168, 0.1); color: var(--brand-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.price-card--featured .price-card__tag { background: rgba(0, 194, 168, 0.2); color: var(--brand-light); }
.price-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price-card__price .cur { font-family: 'Space Grotesk', sans-serif; font-size: 24px; color: var(--ink-2); font-weight: 600; }
.price-card__price .amt { font-family: 'Space Grotesk', sans-serif; font-size: 64px; font-weight: 700; color: var(--ink); letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.price-card__price .per { font-size: 14px; color: var(--muted); margin-left: 4px; }
.price-card__list { margin-bottom: 24px; }
.price-card__list li { padding: 8px 0 8px 24px; position: relative; font-size: 14px; color: var(--ink-2); border-top: 1px solid var(--line); }
.price-card__list li:first-child { border-top: 0; }
.price-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.pricing__note { text-align: center; margin-top: 28px; color: var(--muted); font-size: 14px; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; position: relative; }
.about__overlay { position: absolute; inset: 0; }
.about__photo { width: 100%; height: 100%; }
.about__badge { position: absolute; top: 20px; left: 20px; background: var(--brand); color: #0a2540; padding: 14px 18px; border-radius: 14px; font-family: 'Space Grotesk', sans-serif; text-align: center; box-shadow: var(--shadow); z-index: 2; }
.about__badge strong { display: block; font-size: 11px; letter-spacing: 0.1em; }
.about__badge span { display: block; font-size: 32px; font-weight: 700; line-height: 1; }
.about__tag { position: absolute; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow); }
.about__tag .dot { width: 8px; height: 8px; background: var(--brand); border-radius: 50%; box-shadow: 0 0 8px var(--brand); animation: pulseDot 2s infinite; }
.about__tag--1 { bottom: 24px; right: 24px; }
.about__tag--2 { top: 50%; right: -10px; }
.about p { color: var(--ink-2); font-size: 16px; margin-bottom: 14px; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.about__stats > div { padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; transition: 0.2s; }
.about__stats > div:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.about__stats strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 28px; color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }
.about__stats span { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ===== Why ===== */
.why { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why__item { padding: 32px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: 0.25s var(--ease); position: relative; overflow: hidden; }
.why__item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.why__item:hover::before { transform: scaleX(1); }
.why__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__num { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; background: linear-gradient(135deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 14px; }
.why__item h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.why__item p { color: var(--ink-2); font-size: 15px; }

/* ===== Process ===== */
.process { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; }
.process__step { padding: 28px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; transition: 0.2s; position: relative; }
.process__step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0, 194, 168, 0.3); }
.process__num { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; background: linear-gradient(135deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px; line-height: 1; }
.process__step h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.process__step p { color: var(--ink-2); font-size: 14px; }
.process__arrow { font-size: 24px; color: var(--brand); font-weight: 700; }

/* ===== Reviews ===== */
.reviews { grid-template-columns: repeat(3, 1fr); }
.review { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 28px; margin: 0; transition: 0.2s; position: relative; }
.review:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); border-color: rgba(0, 194, 168, 0.3); }
.review__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.review__stars { color: #f5b400; letter-spacing: 2px; font-size: 18px; }
.review__source { font-size: 11px; color: #9fb2c8; padding: 3px 10px; background: rgba(255,255,255,0.06); border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.review blockquote { margin: 0 0 22px; font-size: 16px; color: #e5edf6; line-height: 1.6; font-style: italic; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; font-family: 'Space Grotesk', sans-serif; flex-shrink: 0; }
.review figcaption strong { display: block; color: #fff; font-size: 15px; }
.review figcaption span { color: #8a9bb2; font-size: 13px; }
.reviews__cta { text-align: center; margin-top: 48px; }

/* ===== FAQ ===== */
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq__intro .section__title { font-size: clamp(28px, 3.6vw, 36px); text-align: left; margin-bottom: 16px; }
.faq__intro p { color: var(--ink-2); margin-bottom: 28px; }
.faq__callout { background: linear-gradient(160deg, var(--bg-alt), #fff); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; display: flex; gap: 16px; }
.faq__callout-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-glow); }
.faq__callout strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.faq__callout p { font-size: 14px; color: var(--ink-2); margin-bottom: 8px; }
.faq__callout-link { font-weight: 600; font-size: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; transition: 0.2s var(--ease); overflow: hidden; }
.faq__item[open] { box-shadow: var(--shadow); border-color: rgba(0, 194, 168, 0.4); }
.faq__item summary { padding: 20px 56px 20px 24px; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--ink); list-style: none; position: relative; transition: 0.15s; }
.faq__item summary:hover { background: var(--bg-alt); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--brand); font-weight: 400; transition: transform 0.25s var(--ease); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(0, 194, 168, 0.1); }
.faq__item[open] summary::after { content: '−'; background: var(--brand); color: #0a2540; }
.faq__item p { padding: 0 24px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }

/* ===== CTA Banner ===== */
.cta-banner { background: linear-gradient(135deg, #0a2540 0%, #1e5a8a 100%); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 50%, rgba(0, 194, 168, 0.18), transparent 60%), radial-gradient(400px 200px at 10% 80%, rgba(95, 231, 211, 0.1), transparent 60%); }
.cta-banner__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.cta-banner p { color: #cbd6e6; font-size: 17px; }
.cta-banner__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-banner .btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info .section__title { text-align: left; }
.contact__lede { color: var(--ink-2); font-size: 17px; margin-bottom: 28px; }
.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; align-items: flex-start; gap: 14px; }
.contact__icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(0, 194, 168, 0.12), rgba(30, 90, 138, 0.08)); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; transition: 0.2s; }
.contact__list li:hover .contact__icon { background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; transform: scale(1.05); }
.contact__list strong { display: block; color: var(--ink); font-size: 13px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact__list a, .contact__list span { color: var(--ink-2); font-size: 15px; }
.contact__list a:hover { color: var(--accent); }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); position: relative; }
.contact__form::before { content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--brand), var(--accent)); z-index: -1; opacity: 0; transition: opacity 0.3s; }
.contact__form:focus-within::before { opacity: 1; }
.contact__form h3 { font-size: 24px; margin-bottom: 4px; }
.contact__form-sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 15px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 10px; background: linear-gradient(135deg, rgba(0, 194, 168, 0.1), rgba(95, 231, 211, 0.05)); color: var(--brand-dark); font-size: 14px; font-weight: 500; text-align: center; border: 1px solid rgba(0, 194, 168, 0.2); animation: slideIn 0.3s var(--ease); }
.form-status.error { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05)); color: #b45309; border-color: rgba(245, 158, 11, 0.3); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-8px); } }

/* ===== Footer ===== */
.footer { background: var(--bg-dark-2); color: #9fb2c8; padding: 72px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { font-size: 14px; line-height: 1.6; margin-top: 16px; margin-bottom: 20px; }
.footer .logo__name { color: #fff; }
.footer .logo__tag { color: var(--brand-light); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); color: #cbd6e6; display: grid; place-items: center; transition: 0.2s; }
.footer__socials a:hover { background: var(--brand); color: #0a2540; transform: translateY(-2px); text-decoration: none; }
.footer__col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-family: 'Inter', sans-serif; font-weight: 700; }
.footer__col a, .footer__col span { display: block; color: #9fb2c8; font-size: 14px; padding: 6px 0; transition: 0.15s; }
.footer__col a:hover { color: var(--brand); text-decoration: none; padding-left: 4px; }
.footer__bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__bottom a { color: #9fb2c8; }
.footer__bottom a:hover { color: var(--brand); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process__arrow { display: none; }
}
@media (max-width: 960px) {
  .nav, .header__phone { display: none; }
  .hamburger { display: block; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { min-height: 380px; }
  .services, .reviews, .why { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .about, .contact, .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .topbar__right { display: none; }
}
@media (max-width: 600px) {
  .topbar__left { gap: 8px; }
  .topbar__divider { display: none; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 18px; }
  .about__stats { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .review__head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}