/* ============================================
   VELOCITYDD — Design System & Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --navy-950: #020617;
  --navy-900: #0A1628;
  --navy-800: #0F1D32;
  --navy-700: #172A45;
  --navy-600: #1E3A5F;
  --navy-100: #C8D6E5;
  --navy-50: #E8EEF5;

  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-100: #DBEAFE;
  --blue-50: #EFF6FF;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --red-500: #EF4444;
  --red-50: #FEF2F2;
  --green-500: #22C55E;
  --green-50: #F0FDF4;
  --amber-500: #F59E0B;
  --amber-50: #FFFBEB;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --tracking-tight: -0.03em;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1200px;
  --container-pad: clamp(20px, 4vw, 40px);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.15);
  --shadow-blue: 0 8px 30px rgba(37, 99, 235, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: var(--leading-normal);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gray-900);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-label--light {
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue-400);
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--gray-500);
  line-height: var(--leading-normal);
}

.text-accent {
  color: var(--blue-600);
}

.text-danger {
  color: var(--red-500);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
}

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}

.btn--primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn--outline {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: transparent;
}

.btn--ghost:hover {
  color: var(--blue-600);
}

.btn--white {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
}

.nav--scrolled .nav__logo {
  color: var(--gray-900);
}

.nav__logo-icon {
  flex-shrink: 0;
}

.logo-accent {
  color: var(--blue-600);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav--scrolled .nav__link {
  color: var(--gray-500);
}

.nav--scrolled .nav__link:hover {
  color: var(--gray-900);
}

.nav__cta {
  transition: all var(--transition);
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-right: 16px;
  margin-left: 16px;
}

.nav__lang a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
  opacity: 0.7;
}

.nav__lang a:hover,
.nav__lang a.active {
  opacity: 1;
}

.nav__lang-sep {
  opacity: 0.5;
}

.nav--scrolled .nav__lang {
  color: var(--gray-900);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav--scrolled .nav__hamburger span {
  background: var(--gray-900);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 40%, #0c2d5e 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(37, 99, 235, 0.4) 0%, transparent 45%),
    radial-gradient(circle at 75% 65%, rgba(14, 165, 233, 0.3) 0%, transparent 50%);
  z-index: 1;
  animation: ambient-drift 24s ease-in-out infinite;
}

@keyframes ambient-drift {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }

  50% {
    transform: rotate(3deg) translate(2%, 3%) scale(1.05);
  }

  100% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  z-index: 2;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}



.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-400);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero__title {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero__title-accent {
  color: var(--blue-400);
  position: relative;
}

.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__subtitle strong {
  color: var(--white);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.hero__trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual Card */
.hero__visual {
  position: relative;
  perspective: 1000px;
}

.hero__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}

.hero__card--main {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotateX(0);
  }

  50% {
    transform: translateY(-8px) rotateX(1deg);
  }
}

.hero__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hero__card-status {
  font-size: 12px;
  font-weight: 600;
}

.hero__card-status--complete {
  color: var(--green-500);
}

.hero__card-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.hero__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero__card-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.hero__metric {
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  align-items: center;
  gap: 12px;
}

.hero__metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.hero__metric-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.hero__metric-fill {
  height: 100%;
  width: var(--fill);
  background: var(--blue-500);
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__metric-fill--warning {
  background: var(--amber-500);
}

.hero__metric-fill--good {
  background: var(--green-500);
}

.hero__metric-value {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
}

.hero__card-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.flag--warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-500);
}

.flag--danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red-500);
}

.flag--success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green-500);
}

/* Floating cards */
.hero__card--float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  width: max-content;
}

.hero__card--float-1 {
  top: -20px;
  right: -10px;
  animation: floatSmall1 5s ease-in-out infinite;
}

.hero__card--float-2 {
  bottom: -10px;
  left: -20px;
  animation: floatSmall2 7s ease-in-out infinite;
}

@keyframes floatSmall1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSmall2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero__float-title {
  font-size: 13px;
  font-weight: 600;
}

.hero__float-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--blue-500);
  border-radius: var(--radius-full);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -50%;
  }

  100% {
    top: 150%;
  }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem__card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.problem__card--pain {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.problem__card--pain:hover {
  border-color: var(--red-500);
  background: var(--red-50);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.problem__card-icon {
  margin-bottom: 20px;
}

.problem__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.problem__card-text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  padding: var(--section-pad) 0;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

.solution__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.solution__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.solution__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.solution__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.solution__feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-sm);
  color: var(--blue-400);
  flex-shrink: 0;
}

.solution__feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.solution__feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Solution Graphic - Radial Visualization */
.solution__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution__graphic {
  position: relative;
  width: 380px;
  height: 380px;
}

.solution__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.solution__ring--outer {
  inset: 0;
  animation: rotateRing 30s linear infinite;
}

.solution__ring--middle {
  inset: 50px;
  border-color: rgba(37, 99, 235, 0.25);
  animation: rotateRing 20s linear infinite reverse;
}

.solution__ring--inner {
  inset: 100px;
  border-color: rgba(37, 99, 235, 0.35);
  animation: rotateRing 15s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.solution__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.solution__score {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue-400);
  line-height: 1;
}

.solution__score-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.solution__node {
  position: absolute;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-400);
}

.solution__node--1 {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.solution__node--2 {
  top: 25%;
  right: 0;
}

.solution__node--3 {
  bottom: 25%;
  right: 0;
}

.solution__node--4 {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.solution__node--5 {
  bottom: 25%;
  left: 0;
}

.solution__node--6 {
  top: 25%;
  left: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process__line {
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400), var(--blue-600));
  opacity: 0.3;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__step-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.process__step-content {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
}

.process__step-content:hover {
  border-color: var(--blue-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process__step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  color: var(--blue-600);
  margin: 0 auto 20px;
}

.process__step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process__step-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.comparison__table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.comparison__header,
.comparison__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.comparison__header {
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-100);
}

.comparison__header .comparison__label,
.comparison__header .comparison__col {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.comparison__row {
  border-bottom: 1px solid var(--gray-50);
  transition: background var(--transition);
}

.comparison__row:hover {
  background: var(--blue-50);
}

.comparison__row--last {
  border-bottom: none;
}

.comparison__label {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
}

.comparison__col {
  padding: 16px 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.comparison__col--old {
  color: var(--gray-400);
}

.comparison__col--new {
  color: var(--gray-900);
  font-weight: 600;
  position: relative;
}

.comparison__header .comparison__col--new {
  background: var(--blue-50);
  color: var(--blue-600);
}

.comparison__row .comparison__col--new {
  background: rgba(37, 99, 235, 0.03);
}

.comparison__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--blue-600);
  color: var(--white);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-left: 8px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing__card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.pricing__card:hover {
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing__card--featured {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}

.pricing__card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--blue-600);
}

.pricing__card-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 20px;
  border-radius: var(--radius-full);
}

.pricing__card-header {
  margin-bottom: 24px;
}

.pricing__card-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing__card-desc {
  font-size: 14px;
  color: var(--gray-500);
}

.pricing__card-price {
  margin-bottom: 8px;
}

.pricing__amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.pricing__period {
  font-size: 14px;
  color: var(--gray-400);
  margin-left: 4px;
}

.pricing__card-deal {
  font-size: 13px;
  color: var(--blue-600);
  font-weight: 600;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}

.pricing__features li svg {
  flex-shrink: 0;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.proof {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.proof__stat {
  text-align: center;
  padding: 32px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.proof__stat-number {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--blue-600);
  display: inline;
  letter-spacing: -0.02em;
}

.proof__stat-suffix {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: var(--blue-600);
  display: inline;
}

.proof__stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 8px;
  font-weight: 500;
}

.proof__testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.proof__testimonial {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.proof__testimonial:hover {
  border-color: var(--blue-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.proof__stars {
  color: var(--amber-500);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.proof__quote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.proof__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.proof__author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.proof__author-role {
  font-size: 12px;
  color: var(--gray-400);
}

.proof__logos {
  text-align: center;
}

.proof__logos-label {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 24px;
}

.proof__logos-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof__logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-300);
  padding: 12px 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.proof__logo:hover {
  color: var(--blue-600);
  border-color: var(--blue-600);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, #0c2d5e 50%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta__subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 0;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.5);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .nav__logo {
  margin-bottom: 16px;
}

.footer__brand-text {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .solution__wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .solution__graphic {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .solution__ring--middle {
    inset: 40px;
  }

  .solution__ring--inner {
    inset: 80px;
  }

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

  .process__line {
    display: none;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing__card--featured {
    transform: none;
  }

  .pricing__card--featured:hover {
    transform: translateY(-4px);
  }

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

  .proof__testimonials {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__links .nav__link {
    color: var(--gray-700);
    font-size: 16px;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero__card--float {
    display: none;
  }

  .problem__grid {
    grid-template-columns: 1fr;
  }

  .process__timeline {
    grid-template-columns: 1fr;
  }

  .comparison__table {
    overflow-x: auto;
  }

  .comparison__header,
  .comparison__row {
    min-width: 600px;
  }

  .proof__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero__trust-divider {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .proof__stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   INNER PAGES & LEGAL
   ============================================ */
.inner-hero {
  background: var(--navy-900);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 160px 0 80px;
  color: var(--white);
  text-align: center;
}

.inner-hero .inner-hero__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white) !important;
}

.inner-hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.inner-content {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  margin: 48px 0 24px;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
}

.prose h3 {
  margin: 32px 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
}

.prose p {
  margin-bottom: 24px;
  line-height: 1.8;
  color: var(--gray-600);
  font-size: 16px;
}

.prose ul,
.prose ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--gray-600);
  font-size: 16px;
}

.prose li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 16px;
  color: var(--gray-900);
  transition: all var(--transition);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-desc {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
}

.case-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.case-metrics {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}

.case-metric {
  flex: 1;
}

.case-metric-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-600);
}

.case-metric-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}