/* ═══════════════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:    #08153a;
  --navy2:   #0c1d50;
  --navy3:   #101f4a;
  --blue:    #1847d6;
  --blue2:   #2558f0;
  --sky:     #4a8aff;
  --accent:  #3d7fff;
  --gold:    #f5c842;
  --white:   #ffffff;
  --off:     #f4f7ff;
  --border:  #e0e8f8;
  --text:    #0b163a;
  --muted:   #6272a0;
  --light:   #dce8fb;

  --ff-head: 'Bricolage Grotesque', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,138,255,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(74,138,255,0); }
}
@keyframes scroll-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up   { animation: fadeUp .7s ease both; }
.delay-1   { animation-delay: .1s; }
.delay-2   { animation-delay: .2s; }
.delay-3   { animation-delay: .3s; }
.delay-4   { animation-delay: .4s; }
.delay-5   { animation-delay: .5s; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(8,21,58,.08);
  animation: fadeIn .6s ease both;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 48px;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 22px;
  background: var(--blue2);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--sky); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
}

/* mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(24,71,214,.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(8,21,58,0) 0%, rgba(8,21,58,.8) 100%);
  pointer-events: none;
}
/* dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black 0%, transparent 70%);
}

.hero-left { position: relative; z-index: 2; }

.hero-h1 {
  font-family: var(--ff-head);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
  animation: fadeUp .7s .1s ease both;
}
.hero-h1 em {
  font-style: normal;
  color: var(--sky);
  position: relative;
}
/* underline squiggle */
.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--blue2));
  border-radius: 2px;
  opacity: .5;
}

.hero-sub {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  max-width: 460px;
  animation: fadeUp .7s .2s ease both;
}
.hero-sub strong { color: rgba(255,255,255,.85); font-weight: 500; }

.hero-tags {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  animation: fadeUp .7s .25s ease both;
}
.hero-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  letter-spacing: .04em;
}

.hero-btns {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  animation: fadeUp .7s .3s ease both;
}
.btn-primary {
  padding: 15px 30px;
  background: var(--blue2);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(37,88,240,.4);
}
.btn-primary:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,138,255,.45);
}
.btn-outline {
  padding: 15px 30px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

/* Hero right – strategy dashboard */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn .9s .2s ease both;
}
.growth-dashboard {
  position: relative;
  width: 430px;
  min-height: 500px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)),
    radial-gradient(circle at 82% 12%, rgba(74,138,255,.24), transparent 34%),
    rgba(12,29,80,.78);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.growth-dashboard::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  pointer-events: none;
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}
.dash-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 7px;
}
.dash-title {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
}
.dash-score {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    conic-gradient(var(--sky) 0 78%, rgba(255,255,255,.12) 78% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.dash-score::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--navy);
}
.dash-score span {
  position: relative;
  z-index: 1;
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 900;
  color: var(--white);
}
.dash-chart {
  position: relative;
  height: 170px;
  margin: 18px 0 24px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 100% 42px, 54px 100%;
  overflow: hidden;
}
.dash-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dash-chart path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dash-chart .chart-shadow { stroke: rgba(74,138,255,.18); stroke-width: 18; }
.dash-chart .chart-line { stroke: var(--sky); stroke-width: 5; }
.dash-points {
  position: absolute;
  inset: 0;
}
.dash-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 8px rgba(74,138,255,.16);
}
.dp-1 { left: 17%; top: 58%; }
.dp-2 { left: 44%; top: 41%; }
.dp-3 { right: 17%; top: 22%; }
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-metric {
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.dash-metric strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.dash-metric span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}
.channel-stack {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.channel-row {
  display: grid;
  grid-template-columns: 78px 1fr 42px;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.channel-bar {
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.channel-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue2), var(--sky));
}
.channel-value {
  text-align: right;
  color: var(--white);
}

/* Floating stat cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 12px 40px rgba(8,21,58,.35);
  animation: float 4s ease-in-out infinite;
}
.fc-1 { left: -50px; top: 80px; animation-delay: 0s; }
.fc-2 { right: -40px; top: 160px; animation-delay: 1.5s; }
.fc-3 { left: -20px; bottom: 80px; animation-delay: .8s; }

.fc-num {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.fc-num span { color: var(--blue2); }
.fc-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════ */
.ticker {
  background: var(--blue2);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: scroll-ticker 22s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════════ */
section { padding: 96px 60px; }

.sec-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 12px;
}
.sec-h2 {
  font-family: var(--ff-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--text);
}
.sec-h2 span { color: var(--blue2); }
.sec-sub {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about {
  background: var(--off);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #3a4a78;
  margin-bottom: 16px;
}
.about-text p strong { color: var(--text); font-weight: 600; }

.traits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trait {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--blue2);
  transition: box-shadow .2s, transform .2s;
}
.trait:nth-child(2) { border-left-color: var(--sky); }
.trait:nth-child(3) { border-left-color: #4ecdc4; }
.trait:nth-child(4) { border-left-color: var(--gold); }
.trait:hover {
  box-shadow: 0 8px 32px rgba(8,21,58,.1);
  transform: translateX(4px);
}
.trait-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.trait-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.trait-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.svc-card {
  padding: 32px 26px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue2), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(8,21,58,.12);
  border-color: var(--blue2);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background .2s;
}
.svc-card:hover .svc-icon-wrap { background: var(--blue2); }

.svc-title {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.svc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════ */
.stats-section {
  background: var(--navy);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 0% 50%, rgba(24,71,214,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(24,71,214,.15) 0%, transparent 60%);
  pointer-events: none;
}
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.stats-headline {
  text-align: center;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.stats-headline h2 {
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.stats-headline h2 span { color: var(--sky); }
.stats-headline p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.4);
}
.stats-rule {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--blue2), var(--sky));
  border-radius: 2px;
  margin: 14px auto 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  font-size: 28px;
  width: 44px;
  height: 34px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
  line-height: 1;
}
.stat-num {
  font-family: var(--ff-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-num.blue { color: var(--sky); }
.stat-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  min-height: 48px;
  max-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════ */
.industries { background: var(--off); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.ind-card {
  padding: 28px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: default;
}
.ind-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue2);
  box-shadow: 0 12px 40px rgba(8,21,58,.1);
}
.ind-icon { font-size: 28px; margin-bottom: 10px; }
.ind-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--blue) 60%, var(--navy2) 100%);
  padding: 72px 60px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(74,138,255,.2) 0%, transparent 65%);
}

.cta-band-left { position: relative; z-index: 1; }
.cta-band-h {
  font-family: var(--ff-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.cta-band-h span { color: var(--sky); }
.cta-band-sub {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}
.cta-tags {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.cta-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 6px;
}
.cta-tag::before { content: '·'; color: var(--sky); font-size: 16px; }

.cta-band-right {
  position: relative; z-index: 1;
  flex-shrink: 0;
}
.cta-band-btn {
  display: inline-block;
  padding: 18px 36px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
  white-space: nowrap;
}
.cta-band-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing { background: var(--white); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 36px 0 52px;
}
.toggle-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.toggle-label.active { color: var(--text); }
.toggle-switch {
  width: 48px; height: 26px;
  background: var(--blue2);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background .2s;
  border: none;
  outline: none;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .25s ease;
}
.toggle-switch.yearly::after { transform: translateX(22px); }
.save-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: #22c55e;
  padding: 3px 9px;
  border-radius: 100px;
}

.pricing-slider {
  position: relative;
  padding: 0 28px;
}

.pricing-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}
.pricing-grid::-webkit-scrollbar { display: none; }

.pricing-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--blue2);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(8,21,58,.15);
  transform: translateY(-50%);
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
}
.pricing-arrow:hover {
  background: var(--blue2);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 38px rgba(37,88,240,.25);
}
.pricing-arrow.left { left: 0; }
.pricing-arrow.right { right: 0; }

.pricing-arrow[disabled] {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.price-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 300px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  background: var(--white);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(8,21,58,.12);
}
.price-card-head {
  padding: 28px 28px 24px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.price-plan-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.price-plan-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.price-plan-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.price-amount {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-top: 20px;
}
.price-cur {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue2);
  line-height: 1.4;
}
.price-num {
  font-family: var(--ff-head);
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.03em;
  transition: all .3s ease;
}
.price-per {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  padding-bottom: 4px;
}

.price-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}
.feat-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: var(--blue2);
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.price-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid var(--blue2);
  color: var(--blue2);
  background: transparent;
  transition: background .2s, color .2s, transform .15s;
  letter-spacing: .02em;
}
.price-btn:hover {
  background: var(--blue2);
  color: var(--white);
  transform: translateY(-1px);
}
/* Add-ons */
.addons {
  margin-top: 48px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.addons-head {
  padding: 20px 32px;
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.addons-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.addons-title {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.addon-item {
  padding: 20px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.addon-item:nth-child(3n) { border-right: none; }
.addon-item:nth-last-child(-n+3) { border-bottom: none; }
.addon-emoji { font-size: 20px; flex-shrink: 0; }
.addon-info {}
.addon-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.addon-price {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--blue2);
}

.pricing-note {
  margin-top: 24px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing-note span { color: var(--blue2); font-size: 16px; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-section {
  background: var(--off);
  padding: 96px 60px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.contact-info {}
.contact-tagline {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
}
.contact-tagline strong { color: var(--text); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-detail:hover {
  border-color: var(--blue2);
  box-shadow: 0 4px 20px rgba(8,21,58,.08);
}
.cd-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.cd-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #166534;
}
.response-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(8,21,58,.07);
}
.form-head {
  margin-bottom: 28px;
}
.form-title {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 7px;
  opacity: .7;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue2);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,88,240,.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #b0bcd8; }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236272a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue2);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,88,240,.35);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,138,255,.4);
}
.form-submit.sent {
  background: #22c55e;
  box-shadow: 0 4px 20px rgba(34,197,94,.35);
}

.form-note {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 64px 60px 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo img {
  display: block;
  width: auto;
  height: 82px;
  object-fit: contain;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-contact-item span { font-size: 15px; }
.footer-contact-item:hover { color: var(--white); }
.footer-contact-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--sky);
}
.footer-contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.25);
}
.footer-copy strong { color: rgba(255,255,255,.45); font-weight: 500; }