/* ============================================
   MEESHU — Ultra-Premium Design System v3
   Inspired by clutch.security + meeshu.manus.space
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;450;500;600;700;800&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Color System — Warm Cream Base */
  --white: #ffffff;
  --black: #0a0a0a;
  --cream: #FDFCFA;
  --gray-50: #F7F6F3;
  --gray-100: #EEEDEA;
  --gray-200: #E2E1DE;
  --gray-300: #C8C7C4;
  --gray-400: #8E8D8A;
  --gray-500: #6E6D6A;
  --gray-600: #545350;
  --gray-700: #3A3937;
  --gray-800: #1F1E1C;
  --gray-900: #141311;
  --gray-1000: #0a0a08;

  --accent: #FF8C42;
  --accent-hover: #E67E2F;
  --accent-deep: #D4691A;
  --accent-light: rgba(255, 140, 66, 0.08);
  --accent-glow: rgba(255, 140, 66, 0.2);
  --accent-glow-md: rgba(255, 140, 66, 0.35);

  --blue: #004DFF;
  --blue-light: rgba(0, 77, 255, 0.06);

  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.08);

  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);
  --border-section: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;

  /* Sizes */
  --text-11: 0.6875rem;
  --text-12: 0.75rem;
  --text-13: 0.8125rem;
  --text-14: 0.875rem;
  --text-15: 0.9375rem;
  --text-16: 1rem;
  --text-18: 1.125rem;
  --text-20: 1.25rem;
  --text-24: 1.5rem;
  --text-28: 1.75rem;
  --text-32: 2rem;
  --text-36: 2.25rem;
  --text-40: 2.5rem;
  --text-48: 3rem;
  --text-56: 3.5rem;
  --text-64: 4rem;
  --text-72: 4.5rem;
  --text-80: 5rem;

  /* Spacing */
  --space-2: 0.125rem;
  --space-4: 0.25rem;
  --space-6: 0.375rem;
  --space-8: 0.5rem;
  --space-10: 0.625rem;
  --space-12: 0.75rem;
  --space-14: 0.875rem;
  --space-16: 1rem;
  --space-20: 1.25rem;
  --space-24: 1.5rem;
  --space-28: 1.75rem;
  --space-32: 2rem;
  --space-40: 2.5rem;
  --space-48: 3rem;
  --space-56: 3.5rem;
  --space-64: 4rem;
  --space-72: 4.5rem;
  --space-80: 5rem;
  --space-88: 5.5rem;
  --space-96: 6rem;
  --space-120: 7.5rem;

  /* Radius */
  --radius-4: 4px;
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-20: 20px;
  --radius-24: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.03), 0 1px 1px rgba(0,0,0,0.02);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.04), 0 16px 48px rgba(0,0,0,0.06);
  --shadow-xl: 0 16px 32px rgba(0,0,0,0.06), 0 32px 80px rgba(0,0,0,0.08);
  --shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
  --shadow-card-hover: 0 24px 80px -16px rgba(255,140,66,0.18), 0 8px 24px rgba(0,0,0,0.06);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Durations */
  --dur-fast: 150ms;
  --dur-base: 300ms;
  --dur-slow: 500ms;
  --dur-slower: 700ms;

  /* Layout */
  --container: 1124px;
  --container-wide: 1400px;
  --container-narrow: 640px;
  --nav-height: 64px;
  --section-px: clamp(1rem, 4vw, 5rem);
}


/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-primary);
  background: var(--cream);
  color: var(--gray-1000);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; background: transparent; border: none; outline: none; }

::selection {
  background: rgba(255, 140, 66, 0.15);
  color: var(--gray-1000);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }


/* ===== TYPOGRAPHY ===== */
.display-2xl {
  font-size: clamp(var(--text-48), 6vw, var(--text-80));
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-xl {
  font-size: clamp(var(--text-40), 5vw, var(--text-72));
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.display-lg {
  font-size: clamp(var(--text-32), 4vw, var(--text-48));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(var(--text-28), 3vw, var(--text-36));
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.display-sm {
  font-size: clamp(var(--text-24), 2.5vw, var(--text-28));
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.body-xl {
  font-size: var(--text-20);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.body-lg {
  font-size: var(--text-18);
  line-height: 1.65;
  letter-spacing: -0.008em;
}

.body-md {
  font-size: var(--text-16);
  line-height: 1.65;
  letter-spacing: -0.005em;
}

.body-sm {
  font-size: var(--text-14);
  line-height: 1.6;
}

.body-xs {
  font-size: var(--text-12);
  line-height: 1.5;
}

.label {
  font-size: var(--text-13);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-sm {
  font-size: var(--text-11);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mono {
  font-family: var(--font-mono);
}

.text-secondary { color: var(--gray-500); }
.text-tertiary { color: var(--gray-400); }
.text-muted { color: var(--gray-300); }
.text-accent { color: var(--accent); }

.gradient-text {
  background: linear-gradient(90deg, var(--accent) 18.5%, var(--black));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overline {
  font-size: var(--text-13);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  line-height: 1.4;
}


/* ===== LAYOUT ===== */
.global-wrapper {
  overflow: hidden;
}

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

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

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

/* Clutch-style bordered sections */
.section {
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  margin-left: var(--section-px);
  margin-right: var(--section-px);
  padding: var(--space-120) var(--space-80);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.section:last-of-type {
  border-bottom: 1px solid var(--gray-200);
}

.section--flush {
  padding: 0;
}

.section--compact {
  padding: var(--space-64) var(--space-80);
}

.section-header {
  text-align: center;
  max-width: 690px;
  margin: 0 auto var(--space-64);
}

.section-header .overline {
  margin-bottom: var(--space-16);
}

.section-header .display-lg,
.section-header .display-md {
  margin-bottom: var(--space-20);
}

.section-header .body-lg {
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
}


/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--text-14);
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  padding: 14px 32px;
  background: var(--gray-1000);
  color: var(--white);
  border: 1px solid var(--gray-1000);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
}

.btn--primary:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.1);
}

.btn--primary.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255,140,66,0.3), 0 1px 2px rgba(0,0,0,0.08);
}

.btn--primary.btn--accent:hover {
  box-shadow: 0 12px 40px rgba(255,140,66,0.4), 0 0 80px rgba(255,140,66,0.12);
  transform: translateY(-2px);
}

.btn--secondary {
  padding: 14px 32px;
  background: var(--white);
  color: var(--gray-1000);
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.btn--secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.btn--ghost {
  padding: 10px 20px;
  color: var(--gray-600);
}

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

.btn--lg {
  padding: 16px 40px;
  font-size: var(--text-15);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--text-13);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast);
}

.btn:hover svg {
  transform: translateX(2px);
}

.btn-group {
  display: flex;
  gap: var(--space-16);
  align-items: center;
}

.btn-arrow::after {
  content: '\2192';
  margin-left: var(--space-8);
  transition: transform var(--dur-fast);
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}


/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--dur-base) var(--ease-out);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0.5px solid var(--border-section);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.header.scrolled::before {
  opacity: 1;
}

.header__navbar {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.header__logo {
  display: flex;
  align-items: center;
  z-index: 110;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.header__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
  font-size: 0; /* hide text fallback when img loads */
}

.header__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__logo-link:hover .header__logo-mark {
  box-shadow: 0 0 28px var(--accent-glow-md);
  transform: scale(1.05);
}

.header__logo-text {
  font-weight: 700;
  font-size: var(--text-18);
  letter-spacing: -0.02em;
}

.header__menu {
  display: flex;
  align-items: center;
}

.header__menu-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__menu-list-item {
  position: relative;
  cursor: pointer;
}

.header__menu-list-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-10) var(--space-16);
  font-size: var(--text-14);
  font-weight: 450;
  color: var(--gray-600);
  border-radius: var(--radius-12);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.header__menu-list-link:hover {
  color: var(--gray-1000);
}

.header__menu-list-link.active {
  color: var(--gray-1000);
  font-weight: 500;
}

.header__menu-list-link svg {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform var(--dur-fast);
}

.header__menu-list-item:hover .header__menu-list-link svg {
  transform: rotate(180deg);
}

/* Dropdown submenu */
.header__submenu-wrapper {
  position: absolute;
  top: calc(100% + 4px);
  left: -1rem;
  min-width: 300px;
  padding-top: var(--space-12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--dur-fast) var(--ease-out);
  z-index: 999;
}

.header__menu-list-item:hover .header__submenu-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.header__submenu {
  background: var(--white);
  border: 0.5px solid var(--border-section);
  border-radius: var(--radius-16);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.header__submenu-item {
  position: relative;
}

.header__submenu-link {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  padding: var(--space-12) var(--space-14);
  border-radius: var(--radius-12);
  transition: background var(--dur-fast);
}

.header__submenu-link:hover {
  background: var(--gray-50);
}

.header__submenu-link-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-8);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-700);
}

.header__submenu-link-icon svg {
  width: 18px;
  height: 18px;
}

.header__submenu-link-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.header__submenu-link-title {
  font-size: var(--text-14);
  font-weight: 500;
  color: var(--gray-1000);
}

.header__submenu-link-text {
  font-size: var(--text-12);
  color: var(--gray-400);
  line-height: 1.4;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

/* Burger */
.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 0.5px solid var(--border-strong);
  background: var(--black);
  z-index: 110;
}

.header__burger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--white);
  position: relative;
  transition: all var(--dur-fast);
}

.header__burger span::before,
.header__burger span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: all var(--dur-fast);
}

.header__burger span::before { top: -4px; }
.header__burger span::after { top: 4px; }

.header__burger.active span { background: transparent; }
.header__burger.active span::before { top: 0; transform: rotate(45deg); background: var(--white); }
.header__burger.active span::after { top: 0; transform: rotate(-45deg); background: var(--white); }

/* Mobile menu */
.mobile-menu__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: calc(var(--nav-height) + var(--space-40)) var(--space-24) var(--space-32);
  z-index: 100;
  overflow-y: auto;
  animation: mobileMenuIn 0.3s var(--ease-out);
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu__wrapper.open { display: flex; flex-direction: column; }

.mobile-menu__wrapper .menu-link-wrapper {
  display: flex;
  align-items: center;
  padding: var(--space-20) 0;
  font-size: var(--text-20);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-1000);
  transition: color var(--dur-fast);
}

.mobile-menu__wrapper .menu-link-wrapper:hover {
  color: var(--accent);
}

.mobile-menu__wrapper .btn {
  width: 100%;
  margin-top: auto;
  padding: var(--space-16);
  font-size: var(--text-16);
}


/* ===== HERO ===== */
.section-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  margin-left: var(--section-px);
  margin-right: var(--section-px);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  min-height: 100vh;
}

.section-hero__wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: var(--space-32);
  background: transparent;
}

.section-hero__heading {
  position: relative;
  z-index: 5;
  max-width: 734px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  padding: 0 var(--section-px);
  text-align: center;
}

.section-hero__title {
  font-size: clamp(var(--text-40), 6vw, var(--text-72));
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-hero__subtitle {
  font-size: var(--text-20);
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 560px;
}

.section-hero__cta {
  display: flex;
  gap: var(--space-16);
  align-items: center;
  margin-top: var(--space-8);
}

/* Hero decorative grid */
.section-hero__grid {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1124px;
  z-index: 0;
  pointer-events: none;
}

.section-hero-light {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 2600px;
  height: 120%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(255,140,66,0.08), transparent),
    radial-gradient(ellipse 40% 30% at 25% 70%, rgba(0,77,255,0.04), transparent),
    radial-gradient(ellipse 35% 35% at 75% 60%, rgba(255,140,66,0.04), transparent);
}

/* Hero borders (Clutch-style) */
.section-hero__bottom-borders {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1124px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  border-left: 0.5px solid var(--border-section);
  border-right: 0.5px solid var(--border-section);
}

/* Floating icons in hero */
.section-hero__icons {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1496px;
  height: 800px;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-icons__item {
  position: absolute;
  width: var(--space-48);
  height: var(--space-48);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-12);
  background: var(--white);
  border: 0.5px solid var(--border-section);
  box-shadow: var(--shadow-sm);
  opacity: 0.7;
  transition: opacity var(--dur-slow);
}

.hero-icons__item:hover {
  opacity: 1;
}

.hero-icons__item svg {
  width: 22px;
  height: 22px;
  color: var(--gray-500);
}

/* Hero illustration */
.section-hero-illustration {
  position: relative;
  pointer-events: none;
  user-select: none;
  margin-top: var(--space-64);
}

.section-hero-illustration__space {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 1124px;
  aspect-ratio: 1126 / 456;
  user-select: none;
}

/* Product Visual / Dashboard */
.product-visual {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-24);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow:
    0 32px 80px -16px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,140,66,0.06),
    0 0 120px rgba(255,140,66,0.04);
  background: var(--white);
  position: relative;
}

.product-visual__toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: linear-gradient(180deg, var(--gray-50), var(--cream));
  border-bottom: 1px solid var(--gray-200);
}

.product-visual__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.product-visual__dot--r { background: #ff5f57; }
.product-visual__dot--y { background: #ffbd2e; }
.product-visual__dot--g { background: #28c840; }

.product-visual__url {
  flex: 1;
  text-align: center;
  font-size: var(--text-12);
  color: var(--gray-400);
  font-family: var(--font-mono);
}

.product-visual__body {
  padding: var(--space-24);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-20);
  min-height: 360px;
}

.product-visual__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 0.5px solid var(--border-section);
  padding-right: var(--space-20);
}

.product-visual__sidebar-item {
  padding: 8px 12px;
  border-radius: var(--radius-8);
  font-size: var(--text-13);
  color: var(--gray-400);
  font-weight: 450;
  cursor: default;
  transition: all var(--dur-fast);
}

.product-visual__sidebar-item:first-child {
  background: var(--gray-50);
  color: var(--gray-1000);
  font-weight: 500;
}

.product-visual__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.pv-metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-12);
}

.pv-card {
  background: var(--gray-50);
  border-radius: var(--radius-12);
  padding: var(--space-16);
  border: 0.5px solid transparent;
  transition: border-color var(--dur-fast);
}

.pv-card:hover {
  border-color: var(--border-section);
}

.pv-card__label {
  font-size: var(--text-11);
  color: var(--gray-400);
  margin-bottom: var(--space-6);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pv-card__value {
  font-size: var(--text-24);
  font-weight: 700;
  color: var(--gray-1000);
  letter-spacing: -0.02em;
}

.pv-card__change {
  font-size: var(--text-11);
  font-weight: 600;
  margin-top: var(--space-4);
}

.pv-card__change--up { color: var(--success); }

.pv-chart {
  flex: 1;
  background: var(--gray-50);
  border-radius: var(--radius-12);
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
}

.pv-chart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-16);
}

.pv-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  flex: 1;
  min-height: 100px;
}

.pv-chart__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent-hover));
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  opacity: 0;
  transition: opacity 0.4s ease, height 0.6s var(--ease-out);
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-32) 0;
  opacity: 0.4;
  animation: scroll-hint 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: var(--text-11);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.scroll-indicator svg {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
}

@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.7; }
}


/* ===== LOGOS / TRUST BAR ===== */
.section-logos {
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  margin-left: var(--section-px);
  margin-right: var(--section-px);
  padding: var(--space-64) var(--space-80);
  overflow: hidden;
  background: var(--white);
}

.section-logos__heading {
  text-align: center;
  max-width: 512px;
  margin: 0 auto var(--space-40);
}

.section-logos__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-48);
  align-items: center;
}

.section-logos__item {
  font-family: var(--font-primary);
  font-size: var(--text-15);
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  user-select: none;
  transition: all 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-10) var(--space-20);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
}

.section-logos__icon {
  display: flex;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.section-logos__item:hover {
  color: var(--gray-600);
  border-color: var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.section-logos__item:hover .section-logos__icon {
  opacity: 0.6;
}


/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}

.features-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  position: relative;
  padding: var(--space-40);
  border-radius: var(--radius-20);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.4s var(--ease-out);
  will-change: transform;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-16);
  background: linear-gradient(135deg, var(--gray-50), var(--cream));
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-24);
  color: var(--gray-600);
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, rgba(255,140,66,0.12), rgba(255,140,66,0.04));
  border-color: rgba(255,140,66,0.2);
  color: var(--accent);
  box-shadow: 0 0 32px rgba(255,140,66,0.12);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card__title {
  font-size: var(--text-18);
  font-weight: 600;
  margin-bottom: var(--space-12);
  letter-spacing: -0.01em;
}

.feature-card__text {
  font-size: var(--text-14);
  color: var(--gray-500);
  line-height: 1.65;
}

.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-20);
  font-size: var(--text-14);
  font-weight: 500;
  color: var(--gray-1000);
  transition: gap var(--dur-fast);
}

.feature-card__link:hover {
  gap: var(--space-10);
  color: var(--accent);
}


/* ===== SPLIT LAYOUTS ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-80);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__content .overline {
  margin-bottom: var(--space-16);
}

.split__content .display-lg,
.split__content .display-md {
  margin-bottom: var(--space-20);
}

.split__content .body-lg {
  color: var(--gray-500);
  margin-bottom: var(--space-32);
}

.split__visual {
  border-radius: var(--radius-20);
  overflow: hidden;
  border: 0.5px solid var(--border-section);
  background: var(--gray-50);
  aspect-ratio: 16 / 12;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ===== APPROACH / NUMBERED CARDS (Clutch-style) ===== */
.section-approach__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}

.section-approach__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.section-approach__card-visual {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-16);
  border: 0.5px solid var(--border-section);
  background: var(--gray-50);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-approach__card:hover .section-approach__card-visual {
  transform: translateY(-4px);
}

.section-approach__card-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.section-approach__card-info .label {
  color: var(--gray-400);
}


/* ===== YOUGEE SECTION ===== */
.section-yougee {
  background: #080808;
  color: var(--white);
  border-color: rgba(255,255,255,0.06) !important;
}

.section-yougee .overline {
  color: var(--accent);
}

.section-yougee .body-lg {
  color: rgba(255, 255, 255, 0.6);
}

.section-yougee .section-header {
  max-width: 734px;
}

.yougee-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-13);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-24);
}

.yougee-badge__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.yougee-badge__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* YouGee logo display */
.yougee-logo {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.yougee-logo img {
  height: 32px;
  width: auto;
}

.yougee-logo--lg img {
  height: 48px;
}

.yougee-logo--xl img {
  height: 64px;
}

/* YouGee nav icon */
.yougee-nav-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
}

.yougee-nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yougee-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}

.yougee-feature {
  padding: var(--space-40);
  border-radius: var(--radius-20);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(8px);
}

.yougee-feature:hover {
  border-color: rgba(255,140,66,0.2);
  background: rgba(255,140,66,0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -12px rgba(255,140,66,0.15);
}

.yougee-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-12);
  background: rgba(255, 140, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-20);
  color: var(--accent);
}

.yougee-feature__icon svg {
  width: 22px;
  height: 22px;
}

.yougee-feature__title {
  font-size: var(--text-16);
  font-weight: 600;
  margin-bottom: var(--space-8);
  color: var(--white);
}

.yougee-feature__text {
  font-size: var(--text-14);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}


/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-200);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-48) var(--space-32);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.step-card:hover {
  background: linear-gradient(180deg, rgba(255,140,66,0.02), transparent);
}

.step-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-16);
  background: linear-gradient(135deg, var(--cream), var(--white));
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.step-card:hover .step-card__icon-wrap {
  background: linear-gradient(135deg, rgba(255,140,66,0.08), var(--white));
  border-color: rgba(255,140,66,0.2);
  box-shadow: 0 0 32px rgba(255,140,66,0.1);
  transform: translateY(-4px);
}

.step-card:last-child {
  border-right: none;
}

.step-card__number {
  font-family: var(--font-mono);
  font-size: var(--text-13);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.step-card__title {
  font-size: var(--text-18);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.step-card__text {
  font-size: var(--text-14);
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}


/* ===== SECURITY SECTION ===== */
.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-24);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: 10px 18px;
  background: var(--white);
  border: 0.5px solid var(--border-section);
  border-radius: var(--radius-full);
  font-size: var(--text-13);
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--dur-fast);
}

.security-badge:hover {
  border-color: var(--success);
}

.security-badge svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.security-card {
  padding: var(--space-24);
  background: var(--white);
  border: 0.5px solid var(--border-section);
  border-radius: var(--radius-12);
  transition: all var(--dur-base) var(--ease-out);
}

.security-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
}


/* ===== TESTIMONIALS ===== */
.section-testimonials {
  overflow: hidden;
}

.section-testimonials__content {
  min-height: 296px;
  display: flex;
  align-items: center;
  gap: var(--space-64);
  padding: var(--space-48) var(--space-80);
  border-left: 0.5px solid var(--border-section);
  border-right: 0.5px solid var(--border-section);
  border-top: 0.5px solid var(--border-section);
  margin-left: var(--section-px);
  margin-right: var(--section-px);
}

.section-testimonials__text {
  font-size: var(--text-20);
  line-height: 1.6;
  color: var(--gray-700);
  font-weight: 400;
  letter-spacing: -0.01em;
  flex: 1;
}

.section-testimonials__text em {
  font-style: normal;
  color: var(--gray-1000);
  font-weight: 500;
}

.section-testimonials__author {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  flex-shrink: 0;
  min-width: 200px;
}

.section-testimonials__author-image {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  overflow: hidden;
}

.section-testimonials__author-name {
  font-size: var(--text-14);
  font-weight: 600;
}

.section-testimonials__author-role {
  font-size: var(--text-13);
  color: var(--gray-500);
}

.section-testimonials__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: var(--section-px);
  margin-right: var(--section-px);
}

.section-testimonials__nav-item {
  padding: var(--space-16) var(--space-24);
  border: 0.5px solid var(--border-section);
  border-right: none;
  cursor: pointer;
  transition: background var(--dur-fast);
  display: flex;
  align-items: center;
  gap: var(--space-12);
  font-size: var(--text-14);
  font-weight: 500;
  color: var(--gray-400);
}

.section-testimonials__nav-item:last-child {
  border-right: 0.5px solid var(--border-section);
}

.section-testimonials__nav-item.active,
.section-testimonials__nav-item:hover {
  background: var(--gray-50);
  color: var(--gray-1000);
}


/* ===== LANDSCAPE / STATS ===== */
.landscape-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.landscape-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-bottom: var(--space-24);
  border-bottom: 0.5px solid var(--border-section);
}

.landscape-item__stat {
  font-size: var(--text-36);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.landscape-item__label {
  font-size: var(--text-14);
  color: var(--gray-500);
  line-height: 1.5;
}


/* ===== STATS RIBBON ===== */
.stats-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-48);
  padding: var(--space-56) var(--space-80);
  margin-left: var(--section-px);
  margin-right: var(--section-px);
  border: 1px solid var(--gray-200);
  border-top: none;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, rgba(255,140,66,0.02) 100%);
  position: relative;
  overflow: hidden;
}

.stats-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.stats-ribbon__item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stats-ribbon__value {
  display: block;
  font-size: var(--text-48);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-8);
}

.stats-ribbon__label {
  font-size: var(--text-13);
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

.stats-ribbon__divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--gray-200), transparent);
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-64);
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: var(--text-40);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: var(--text-14);
  color: var(--gray-400);
  margin-top: var(--space-4);
}


/* ===== SETUP / ONBOARDING ===== */
.setup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}

.setup-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.setup-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-12);
  background: var(--gray-50);
  border: 0.5px solid var(--border-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}

.setup-card__icon svg {
  width: 22px;
  height: 22px;
}

.setup-card__title {
  font-size: var(--text-16);
  font-weight: 600;
}

.setup-card__text {
  font-size: var(--text-14);
  color: var(--gray-500);
  line-height: 1.6;
}


/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-24);
}

.team-card {
  text-align: center;
  padding: var(--space-32);
  border-radius: var(--radius-16);
  border: 0.5px solid var(--border-section);
  background: var(--white);
  transition: all var(--dur-base) var(--ease-out);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gray-50);
  margin: 0 auto var(--space-16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-18);
  font-weight: 700;
  color: var(--gray-400);
  border: 0.5px solid var(--border-section);
}

.team-card__name {
  font-size: var(--text-16);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.team-card__role {
  font-size: var(--text-13);
  color: var(--gray-500);
}

.team-card__link {
  display: inline-block;
  margin-top: var(--space-12);
  font-size: var(--text-12);
  color: var(--accent);
  font-weight: 500;
}


/* ===== CTA SECTION ===== */
.section-cta {
  text-align: center;
  background: #080808;
  color: var(--white);
  border-color: rgba(255,255,255,0.06) !important;
}

.section-cta .body-lg {
  color: rgba(255, 255, 255, 0.5);
}

.section-cta .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.section-cta .btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 32px var(--accent-glow);
}

.section-cta .btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-cta .btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}


/* ===== FORMS ===== */
.form-card {
  background: var(--white);
  border: 0.5px solid var(--border-section);
  border-radius: var(--radius-20);
  padding: var(--space-40);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-20);
}

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

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 0.5px solid var(--border-section);
  border-radius: var(--radius-12);
  color: var(--gray-1000);
  font-size: var(--text-14);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.08);
  outline: none;
}

.form-input::placeholder { color: var(--gray-400); }
textarea.form-input { resize: vertical; min-height: 120px; }

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23878787' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}


/* ===== FOOTER ===== */
.footer {
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  margin-left: var(--section-px);
  margin-right: var(--section-px);
  background: var(--white);
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-48);
  padding: var(--space-64) var(--space-80);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-64);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  max-width: 348px;
}

.footer__brand-name {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  font-size: var(--text-18);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer__brand-name .header__logo-mark {
  width: 28px;
  height: 28px;
}

.footer__brand-desc {
  font-size: var(--text-14);
  color: var(--gray-500);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: var(--space-8);
}

.footer__social-link {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-8);
  background: var(--gray-50);
  border: 0.5px solid var(--border-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--dur-fast);
}

.footer__social-link:hover {
  background: var(--gray-100);
  color: var(--gray-1000);
  border-color: var(--gray-300);
}

.footer__social-link svg {
  width: 14px;
  height: 14px;
}

.footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-16);
}

/* Footer menu */
.footer__menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-24);
  padding: var(--space-64) var(--space-80);
  border-top: 0.5px solid var(--border-section);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.footer__list-title {
  font-size: var(--text-13);
  font-weight: 600;
  color: var(--gray-1000);
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}

.footer__list-link {
  font-size: var(--text-14);
  color: var(--gray-400);
  transition: color var(--dur-fast);
}

.footer__list-link:hover {
  color: var(--gray-1000);
}

/* Footer bottom */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding: var(--space-16) var(--space-80);
  border-top: 0.5px solid var(--border-section);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-24);
}

.footer__copyright {
  font-size: var(--text-12);
  color: var(--gray-400);
}

.footer__terms {
  display: flex;
  gap: var(--space-16);
}

.footer__terms a {
  font-size: var(--text-12);
  color: var(--gray-400);
  transition: color var(--dur-fast);
}

.footer__terms a:hover {
  color: var(--gray-1000);
}

/* Big footer logo — premium masked treatment */
.footer__big-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  user-select: none;
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.footer__big-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.012) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.footer__big-logo span {
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    var(--gray-200) 0%,
    var(--gray-100) 40%,
    var(--gray-200) 60%,
    var(--gray-100) 100%
  );
  background-size: 100% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: bigLogoShimmer 6s ease-in-out infinite;
  transition: all 0.6s var(--ease-out);
}

@keyframes bigLogoShimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
}

.footer__big-logo:hover span {
  background: linear-gradient(
    180deg,
    var(--gray-300) 0%,
    var(--accent) 50%,
    var(--accent-deep) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.02);
  filter: drop-shadow(0 0 60px rgba(255,140,66,0.15));
}


/* ===== PROGRESS BARS ===== */
.progress-bar {
  margin-bottom: var(--space-16);
}

.progress-bar__header {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-14);
  margin-bottom: var(--space-8);
}

.progress-bar__label { color: var(--gray-600); font-weight: 450; }
.progress-bar__value { font-family: var(--font-mono); font-weight: 500; font-size: var(--text-13); }

.progress-bar__track {
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  transition: width 1.2s var(--ease-out);
}


/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: calc(var(--nav-height) + var(--space-80));
  padding-bottom: var(--space-80);
}

.legal-section {
  margin-bottom: var(--space-40);
}

.legal-section h2 {
  font-size: var(--text-24);
  font-weight: 600;
  margin-bottom: var(--space-16);
  letter-spacing: -0.015em;
}

.legal-section h3 {
  font-size: var(--text-18);
  font-weight: 600;
  margin-bottom: var(--space-12);
}

.legal-section p {
  font-size: var(--text-15);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-16);
}

.legal-section ul {
  margin: var(--space-12) 0 var(--space-16) var(--space-24);
}

.legal-section ul li {
  font-size: var(--text-15);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  list-style: disc;
}


/* ===== CASE STUDIES ===== */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-24);
}

.case-study {
  padding: var(--space-40);
  border-radius: var(--radius-16);
  border: 0.5px solid var(--border-section);
  background: var(--white);
  transition: all var(--dur-base) var(--ease-out);
}

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

.case-study__overline {
  font-size: var(--text-11);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-16);
}

.case-study__title {
  font-size: var(--text-24);
  font-weight: 600;
  margin-bottom: var(--space-12);
  letter-spacing: -0.015em;
}

.case-study__text {
  font-size: var(--text-14);
  color: var(--gray-500);
  margin-bottom: var(--space-24);
  line-height: 1.6;
}

.case-study__metrics {
  display: flex;
  gap: var(--space-32);
}

.case-study__metric-value {
  font-size: var(--text-28);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.case-study__metric-label {
  font-size: var(--text-12);
  color: var(--gray-400);
  margin-top: var(--space-4);
}


/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }
.reveal.delay-4 { transition-delay: 400ms; }
.reveal.delay-5 { transition-delay: 500ms; }

/* Fade in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Draw line animation */
.light-line {
  position: absolute;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 1s var(--ease-out);
  pointer-events: none;
}

.light-line.visible {
  opacity: 0.3;
  animation: drawLine 2s var(--ease-out) forwards;
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 100%; }
}

/* Floating animation */
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float {
  animation: floating 4s ease-in-out infinite;
}

.float-delay-1 { animation-delay: 0.5s; }
.float-delay-2 { animation-delay: 1s; }
.float-delay-3 { animation-delay: 1.5s; }

/* Pulse animation */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}


/* ===== RESPONSIVE ===== */

/* --- TABLET (1024px) --- */
@media (max-width: 1024px) {
  .section {
    padding: var(--space-80) var(--space-32);
    margin-left: var(--space-16);
    margin-right: var(--space-16);
  }

  .section--flush { padding: 0; }
  .section--flush > div[style] { padding-left: var(--space-32) !important; padding-right: var(--space-32) !important; }

  .section-hero {
    margin-left: var(--space-16);
    margin-right: var(--space-16);
    min-height: auto;
  }

  .section-hero__wrapper { padding-top: 120px; }

  .section-logos {
    margin-left: var(--space-16);
    margin-right: var(--space-16);
    padding: var(--space-40) var(--space-32);
  }

  .section-logos__items { gap: var(--space-16); }

  .footer {
    margin-left: var(--space-16);
    margin-right: var(--space-16);
  }

  .footer__wrapper { padding: var(--space-40) var(--space-32); }
  .footer__menu { padding: var(--space-40) var(--space-32); }
  .footer__bottom { padding: var(--space-16) var(--space-32); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .yougee-features { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--space-48); }
  .split--reverse { direction: ltr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .section-approach__cards { grid-template-columns: repeat(2, 1fr); }
  .setup-cards { grid-template-columns: repeat(2, 1fr); }
  .section-hero__icons { display: none; }

  .product-visual__body { grid-template-columns: 1fr; }
  .product-visual__sidebar { display: none; }
  .pv-metric-row { grid-template-columns: repeat(2, 1fr); }
  .product-visual { max-width: 100%; border-radius: var(--radius-16); }

  .stats-row { gap: var(--space-40); }
  .stats-ribbon {
    gap: var(--space-24);
    padding: var(--space-40) var(--space-32);
    margin-left: var(--space-16);
    margin-right: var(--space-16);
  }
  .stats-ribbon__value { font-size: var(--text-36); }

  .section-testimonials__content {
    margin-left: var(--space-16);
    margin-right: var(--space-16);
    padding: var(--space-40);
    flex-direction: column;
  }

  .section-testimonials__nav {
    margin-left: var(--space-16);
    margin-right: var(--space-16);
  }
}


/* --- MOBILE (768px) --- */
@media (max-width: 768px) {
  :root {
    --section-px: 0.75rem;
  }

  /* Remove all side borders + margins on mobile */
  .section,
  .section-hero,
  .section-logos,
  .footer,
  .stats-ribbon {
    margin-left: 0;
    margin-right: 0;
    border-left: none;
    border-right: none;
  }

  .section {
    padding: var(--space-56) var(--space-20);
  }

  .section--flush { padding: 0; }
  .section--flush > div[style] { padding-left: var(--space-20) !important; padding-right: var(--space-20) !important; }

  /* Hero */
  .section-hero { min-height: auto; }
  .section-hero__wrapper { padding-top: 100px; padding-bottom: var(--space-16); }
  .section-hero__heading { padding: 0 var(--space-16); gap: var(--space-20); }
  .section-hero__title { font-size: clamp(var(--text-32), 8vw, var(--text-48)); line-height: 1.05; }
  .section-hero__subtitle { font-size: var(--text-16); max-width: 100%; }
  .section-hero__cta { flex-direction: column; width: 100%; gap: var(--space-12); }
  .section-hero__cta .btn { width: 100%; }

  /* Product visual */
  .product-visual { border-radius: var(--radius-12); margin: 0 var(--space-16); }
  .product-visual__body { padding: var(--space-16); gap: var(--space-12); }
  .pv-metric-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
  .pv-card { padding: var(--space-12); }
  .pv-card__value { font-size: var(--text-20); }
  .pv-card__label { font-size: 0.6rem; }
  .pv-chart { padding: var(--space-12); }
  .pv-chart__bars { min-height: 80px; }

  /* Logos */
  .section-logos { padding: var(--space-24) var(--space-16); }
  .section-logos__items { gap: var(--space-8); justify-content: center; }
  .section-logos__item { font-size: var(--text-12); padding: var(--space-6) var(--space-12); }
  .section-logos__icon { display: none; }

  /* Nav */
  .header__menu { display: none; }
  .header__buttons .btn--ghost { display: none; }
  .header__burger { display: flex; }
  .header__navbar { padding: 0 var(--space-16); }

  /* Grids -> single column */
  .features-grid,
  .steps-grid,
  .security-grid,
  .section-approach__cards,
  .setup-cards { grid-template-columns: 1fr; }

  .yougee-features { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Feature cards */
  .feature-card { padding: var(--space-28); }
  .feature-card__icon { width: 48px; height: 48px; }

  /* Stats */
  .stats-row { flex-direction: column; gap: var(--space-24); }
  .stats-ribbon {
    flex-wrap: wrap;
    gap: var(--space-20);
    padding: var(--space-32) var(--space-20);
  }
  .stats-ribbon__divider { display: none; }
  .stats-ribbon__item { flex: 1 1 42%; text-align: center; }
  .stats-ribbon__value { font-size: var(--text-28); }
  .stats-ribbon__label { font-size: var(--text-11); }

  /* Buttons */
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; }
  .btn--lg { padding: 14px 32px; font-size: var(--text-14); }

  /* Steps */
  .step-card { border-right: none; padding: var(--space-32) var(--space-20); }
  .step-card__icon-wrap { width: 52px; height: 52px; }

  /* Setup cards */
  .setup-card__icon { width: 44px; height: 44px; }

  /* Section headers */
  .section-header { margin-bottom: var(--space-40); }
  .display-lg { font-size: clamp(var(--text-28), 6vw, var(--text-36)); }
  .display-md { font-size: clamp(var(--text-24), 5vw, var(--text-28)); }

  /* Split layouts */
  .split { gap: var(--space-40); }
  .split__content .body-lg { font-size: var(--text-16); }

  /* YouGee section */
  .section-yougee .section-header { padding: 0 var(--space-8); }
  .yougee-feature { padding: var(--space-24); }

  /* Security badges */
  .security-badges { gap: var(--space-8); }
  .security-badge { padding: 8px 14px; font-size: var(--text-12); }

  /* Progress bars in splits */
  .progress-bar__header { font-size: var(--text-13); }

  /* Footer */
  .footer__wrapper { padding: var(--space-32) var(--space-20); }
  .footer__menu { padding: var(--space-32) var(--space-20); flex-wrap: wrap; gap: var(--space-32); }
  .footer__list { flex: 1 1 42%; }
  .footer__top { flex-direction: column; gap: var(--space-24); }
  .footer__bottom { padding: var(--space-16) var(--space-20); }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: var(--space-12); }
  .footer__copyright { font-size: var(--text-11); line-height: 1.5; }
  .footer__terms { justify-content: center; }
  .footer__big-logo { height: 120px; }
  .footer__big-logo span { font-size: clamp(60px, 16vw, 120px); }

  /* Testimonials */
  .section-testimonials__content {
    margin-left: 0;
    margin-right: 0;
    border-left: none;
    border-right: none;
    padding: var(--space-32) var(--space-20);
  }

  .section-testimonials__nav {
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-card { padding: var(--space-24); }
  .form-input, .form-select { padding: 10px 14px; }

  /* Legal pages */
  .legal-page { padding-top: calc(var(--nav-height) + var(--space-40)); padding-bottom: var(--space-40); }

  /* Case studies */
  .case-study { padding: var(--space-24); }
  .case-study-grid { grid-template-columns: 1fr; }

  /* Overline */
  .overline { font-size: var(--text-11); }

  /* Scroll indicator */
  .scroll-indicator { padding: var(--space-20) 0; }
}


/* --- SMALL MOBILE (480px) --- */
@media (max-width: 480px) {
  .section { padding: var(--space-40) var(--space-16); }
  .section--flush > div[style] { padding-left: var(--space-16) !important; padding-right: var(--space-16) !important; }

  .section-hero__heading { padding: 0 var(--space-8); }
  .section-hero__title { font-size: clamp(var(--text-28), 7.5vw, var(--text-36)); }

  .team-grid { grid-template-columns: 1fr; }
  .pv-metric-row { grid-template-columns: 1fr 1fr; }
  .pv-card__value { font-size: var(--text-18); }

  .case-study__metrics { flex-direction: column; gap: var(--space-16); }
  .case-study__metric-value { font-size: var(--text-24); }

  .footer__menu { flex-direction: column; gap: var(--space-24); }
  .footer__list { flex: 1 1 100%; }
  .footer__big-logo { height: 100px; }

  .stats-ribbon { padding: var(--space-24) var(--space-16); gap: var(--space-16); }
  .stats-ribbon__value { font-size: var(--text-24); }
  .stats-ribbon__item { flex: 1 1 42%; }

  .feature-card { padding: var(--space-24); }
  .yougee-feature { padding: var(--space-20); }
  .step-card { padding: var(--space-24) var(--space-16); }
  .step-card__icon-wrap { width: 48px; height: 48px; }
  .step-card__icon-wrap svg { width: 22px; height: 22px; }

  .product-visual { margin: 0 var(--space-8); }
  .product-visual__toolbar { padding: 10px 12px; }
  .product-visual__url { font-size: 0.6rem; }

  .security-badge { padding: 6px 10px; font-size: var(--text-11); }
  .security-badge svg { width: 12px; height: 12px; }

  .section-logos__item { font-size: var(--text-11); padding: var(--space-4) var(--space-10); }

  .btn { font-size: var(--text-13); }
  .btn--lg { padding: 12px 24px; }
  .btn--sm { padding: 8px 18px; }

  .display-lg { font-size: clamp(var(--text-24), 6vw, var(--text-32)); }
  .display-md { font-size: clamp(var(--text-20), 5vw, var(--text-24)); }

  .body-lg { font-size: var(--text-15); }
  .body-xl { font-size: var(--text-16); }
}


/* --- PREVENT HORIZONTAL OVERFLOW GLOBALLY --- */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .global-wrapper { overflow-x: hidden; }
  .section-hero-light { display: none; }
  .section-hero__bottom-borders { display: none; }
  .product-visual::after { display: none; }
  canvas { max-width: 100% !important; }
}

/* ============================================
   PREMIUM VISUAL LAYER — Enterprise Elite v4
   Government-grade depth, atmosphere, rich contrast
   ============================================ */

/* --- Animated Gradient Mesh Hero Background --- */
.section-hero {
  background: var(--cream) !important;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,140,66,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(0,77,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 60%, rgba(255,140,66,0.03) 0%, transparent 50%) !important;
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

/* Floating ambient orb */
.section-hero-light {
  background:
    radial-gradient(ellipse 60% 50% at 50% 10%, rgba(255,140,66,0.06), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,77,255,0.03), transparent);
}

/* Hero title gradient text */
.section-hero__title {
  background: linear-gradient(135deg, var(--gray-1000) 0%, var(--gray-800) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Noise texture overlay for depth */
.section-hero__wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.02'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}


/* --- Section depth: subtle alternating backgrounds --- */
.section:nth-child(even):not(.section-yougee):not(.section-cta) {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

/* Subtle dot grid only on light sections */
.section:not(.section-yougee):not(.section-cta)::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}


/* --- Feature card GLOW border on hover --- */
.feature-card {
  background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, var(--accent) 70%, rgba(255,140,66,0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 20px 60px -12px rgba(255,140,66,0.15), 0 4px 20px rgba(0,0,0,0.06);
  border-color: transparent;
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, rgba(255,140,66,0.15), rgba(255,140,66,0.05));
  color: var(--accent);
  box-shadow: 0 0 24px rgba(255,140,66,0.12);
}


/* --- Button shimmer effect --- */
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none;
  z-index: 1;
}

.btn--primary:hover::before {
  animation: btnShimmer 0.6s ease forwards;
}

@keyframes btnShimmer {
  to { left: 100%; }
}

.btn:active {
  transform: scale(0.97);
}

/* Accent button enhanced */
.btn--primary.btn--accent {
  background: linear-gradient(135deg, var(--accent), #E67E2F);
  border: none;
  box-shadow: 0 4px 16px rgba(255,140,66,0.25);
}

.btn--primary.btn--accent:hover {
  box-shadow: 0 8px 32px rgba(255,140,66,0.35), 0 0 60px rgba(255,140,66,0.15);
  transform: translateY(-2px);
}


/* --- DARK SECTIONS: YouGee & CTA — rich gradient mesh --- */
.section-yougee {
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(255,140,66,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0,77,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,140,66,0.03) 0%, transparent 70%),
    #080808 !important;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.06) !important;
}

.section-yougee::after {
  background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1px) !important;
  background-size: 28px 28px;
}

/* Force all text white in YouGee section */
.section-yougee h1, .section-yougee h2, .section-yougee h3,
.section-yougee .display-lg,
.section-yougee .display-md,
.section-yougee .display-sm {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  background: none !important;
}

.section-yougee .body-lg,
.section-yougee .body-md {
  color: rgba(255,255,255,0.6) !important;
}

.section-yougee .overline {
  color: var(--accent) !important;
}

.section-cta {
  background:
    radial-gradient(ellipse 60% 60% at 50% 120%, rgba(255,140,66,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 0%, rgba(0,77,255,0.04) 0%, transparent 50%),
    #080808 !important;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.06) !important;
}

.section-cta::after {
  background-image: radial-gradient(circle, rgba(255,255,255,0.012) 1px, transparent 1px) !important;
  background-size: 28px 28px;
}

/* Force all text white in CTA section */
.section-cta h1, .section-cta h2, .section-cta h3,
.section-cta .display-lg,
.section-cta .display-md,
.section-cta .display-sm {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  background: none !important;
}

.section-cta .body-lg,
.section-cta .body-md {
  color: rgba(255,255,255,0.5) !important;
}

.section-cta .overline {
  color: var(--accent) !important;
}


/* --- Product visual dramatic glow --- */
.product-visual {
  animation: visualPulse 4s ease-in-out infinite;
  border: 0.5px solid rgba(255,140,66,0.12);
}

@keyframes visualPulse {
  0%, 100% { box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 0 60px rgba(255,140,66,0.05); }
  50% { box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 100px rgba(255,140,66,0.1); }
}

.pv-card__value { transition: color var(--dur-fast); }
.pv-card:hover .pv-card__value { color: var(--accent); }
.pv-card:hover {
  background: linear-gradient(135deg, var(--gray-50), rgba(255,140,66,0.03));
  border-color: rgba(255,140,66,0.12);
}


/* --- Section header gradient line --- */
.section-header::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(255,140,66,0.2));
  margin: var(--space-24) auto 0;
  border-radius: 1px;
}

/* --- Stats with gradient shimmer --- */
.stat__value {
  background: linear-gradient(90deg, var(--gray-1000) 0%, var(--accent) 50%, var(--gray-1000) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: statShimmer 3s ease-in-out infinite;
}

@keyframes statShimmer {
  0% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

/* --- Landscape stat accent gradient --- */
.landscape-item__stat {
  background: linear-gradient(135deg, var(--accent), #E67E2F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* --- Enhanced security badges --- */
.security-badge { background: linear-gradient(135deg, var(--white), var(--gray-50)); }
.security-badge:hover {
  border-color: var(--success);
  box-shadow: 0 0 24px rgba(16,185,129,0.12), 0 4px 12px rgba(16,185,129,0.06);
  background: linear-gradient(135deg, rgba(16,185,129,0.03), var(--white));
}

/* Enhanced security cards */
.security-card { background: linear-gradient(180deg, var(--white), var(--gray-50)); }
.security-card:hover {
  border-color: rgba(255,140,66,0.2);
  box-shadow: 0 8px 32px rgba(255,140,66,0.06);
}

/* YouGee feature cards glow */
.yougee-feature:hover {
  border-color: rgba(255,140,66,0.25);
  background: linear-gradient(135deg, rgba(255,140,66,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 0 40px rgba(255,140,66,0.08);
  transform: translateY(-6px);
}

/* Step cards with hover accent */
.step-card { transition: all var(--dur-base) var(--ease-out); }
.step-card:hover { background: linear-gradient(180deg, rgba(255,140,66,0.03), transparent); }
.step-card:hover .step-card__number { text-shadow: 0 0 20px rgba(255,140,66,0.3); }

/* Setup cards with icon glow */
.setup-card__icon { transition: all var(--dur-base); }
.setup-card:hover .setup-card__icon {
  background: linear-gradient(135deg, rgba(255,140,66,0.08), var(--gray-50));
  border-color: rgba(255,140,66,0.2);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(255,140,66,0.08);
}

/* Team card premium hover */
.team-card { background: linear-gradient(180deg, var(--white), var(--gray-50)); }
.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px -12px rgba(0,0,0,0.1), 0 0 40px rgba(255,140,66,0.06);
  border-color: rgba(255,140,66,0.15);
}
.team-card:hover .team-card__avatar {
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow-md);
  background: linear-gradient(135deg, rgba(255,140,66,0.1), var(--gray-50));
}

/* Progress bar glow */
.progress-bar__fill { box-shadow: 0 0 12px rgba(255,140,66,0.3); }


/* --- Footer premium treatment --- */
.footer { background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%); }

/* footer big-logo styles are in the main footer section above */

.footer__social-link:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: rgba(255,140,66,0.2);
  box-shadow: 0 0 16px rgba(255,140,66,0.1);
}


/* --- Form enhanced focus --- */
.form-input:focus, .form-select:focus {
  box-shadow: 0 0 0 3px rgba(255,140,66,0.1), 0 0 30px rgba(255,140,66,0.06);
  border-color: var(--accent);
}
.form-card {
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}


/* --- Feature card link underline --- */
.feature-card__link { position: relative; }
.feature-card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width var(--dur-base);
}
.feature-card__link:hover::after { width: 100%; }


/* --- Case study accent stripe --- */
.case-study {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), var(--gray-50));
}
.case-study::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--accent), rgba(255,140,66,0.3));
  transition: height var(--dur-base) var(--ease-out);
}
.case-study:hover {
  box-shadow: 0 12px 40px rgba(255,140,66,0.08);
  border-color: rgba(255,140,66,0.15);
}
.case-study:hover::after { height: 100%; }


/* --- Nav logo glow on scroll --- */
.header.scrolled .header__logo-mark {
  box-shadow: 0 0 20px rgba(255,140,66,0.2);
}


/* --- Smooth page transition --- */
.global-wrapper { animation: pageIn 0.8s var(--ease-out) both; }

@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Selection, focus, scrollbar */
::selection { background: rgba(255, 140, 66, 0.2); color: var(--gray-1000); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-4); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gray-300), var(--accent-hover)); }


/* --- Security section shield glow --- */
.section--security::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.04) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Logo trust bar hover --- */
.section-logos__item { transition: all var(--dur-base); }
.section-logos__item:hover {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255,140,66,0.2);
}


/* ============================================
   ULTRA-PREMIUM FINAL LAYER — v5 Government Elite
   ============================================ */

/* --- Accent top-border on sections (Clutch signature) --- */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,140,66,0.3) 50%, transparent 100%);
  z-index: 2;
}

/* --- Light section display headings: subtle gradient --- */
.section:not(.section-yougee):not(.section-cta) .display-lg {
  background: linear-gradient(135deg, var(--gray-1000) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section:not(.section-yougee):not(.section-cta) .display-md {
  color: var(--gray-1000);
}

/* --- Overline pulsing accent dot --- */
.overline::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,140,66,0.5);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255,140,66,0.4); transform: scale(1); }
  50% { box-shadow: 0 0 16px rgba(255,140,66,0.7); transform: scale(1.2); }
}

/* --- Nav glass quality boost --- */
.header::before {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
}

/* --- Richer shadows on cards --- */
.feature-card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.03);
}

.feature-card:hover {
  box-shadow: 0 24px 80px -16px rgba(255,140,66,0.2), 0 8px 24px rgba(0,0,0,0.08), 3px 3.5px 0 0 var(--black);
}

/* --- Security card inner glow on hover --- */
.security-card:hover {
  background: linear-gradient(135deg, var(--white), rgba(255,140,66,0.02));
  box-shadow: 0 12px 40px rgba(255,140,66,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* --- Logo trust bar vibrant --- */
.section-logos {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.section-logos__item {
  font-size: var(--text-18);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* --- Product visual richer depth --- */
.product-visual {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,140,66,0.08), 0 0 80px rgba(255,140,66,0.04);
}

.pv-chart__bar {
  background: linear-gradient(180deg, var(--accent), #E67E2F 60%, rgba(255,140,66,0.6));
  border-radius: 3px 3px 0 0;
}

.pv-card {
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  border: 0.5px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

/* --- Step cards richer treatment --- */
.step-card__number {
  font-size: var(--text-24);
  background: linear-gradient(135deg, var(--accent), #E67E2F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Setup cards glass effect --- */
.setup-card__icon {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 2px 8px rgba(0,0,0,0.04);
}

/* --- CTA section enhanced glow --- */
.section-cta .btn--secondary {
  border-color: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
}
.section-cta .btn--secondary:hover {
  border-color: rgba(255,255,255,0.3) !important;
  background: rgba(255,255,255,0.05) !important;
}

/* --- YouGee section animated glow orb --- */
.section-yougee::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 700px !important;
  height: 700px !important;
  background: radial-gradient(circle, rgba(255,140,66,0.1) 0%, rgba(255,140,66,0.03) 40%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 0 !important;
  animation: yougeeOrb 6s ease-in-out infinite !important;
}

@keyframes yougeeOrb {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* --- Progress bar animated shimmer --- */
.progress-bar__fill {
  background: linear-gradient(90deg, var(--accent), #E67E2F, var(--accent));
  background-size: 200% 100%;
  animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- YG badge vibrant --- */
.yougee-badge {
  border-color: rgba(255,140,66,0.3) !important;
  background: rgba(255,140,66,0.1) !important;
  box-shadow: 0 0 20px rgba(255,140,66,0.1);
}

/* footer big-logo hover handled in main footer block */

/* --- Scroll indicator accent --- */
.scroll-indicator span { color: var(--accent); opacity: 0.6; }
.scroll-indicator svg { color: var(--accent); opacity: 0.6; }

/* --- Section flush borders --- */
.section--flush {
  border-top: 1px solid linear-gradient(90deg, transparent, rgba(255,140,66,0.2), transparent);
}

/* --- Team card avatar gradient ring --- */
.team-card__avatar {
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  border: 2px solid var(--gray-200);
  transition: all var(--dur-base) var(--ease-out);
}

/* --- Form card elevated --- */
.form-card {
  box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.03);
}

/* --- Premium split section visual depth --- */
.split__content .overline {
  margin-bottom: var(--space-20);
}

/* --- Enhanced submenu dropdown --- */
.header__submenu {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  border: none;
}

.header__submenu-link:hover {
  background: linear-gradient(135deg, var(--gray-50), rgba(255,140,66,0.03));
}

.header__submenu-link-icon {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
  border: 0.5px solid rgba(0,0,0,0.04);
}

/* --- Chart bars richer --- */
.pv-chart {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  border: 0.5px solid rgba(0,0,0,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* --- Mobile menu premium --- */
.mobile-menu__wrapper {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============================================
   v6 REVOLUTION — SpaceX-grade Visual System
   Every section breathes, every pixel has purpose
   ============================================ */

/* --- Section visual connective tissue --- */
/* Accent gradient top-line animates wider on scroll */
.section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,140,66,0.4), transparent);
  z-index: 3;
  transition: left 0.8s var(--ease-out), right 0.8s var(--ease-out);
}

.section:hover::before {
  left: 0%;
  right: 0%;
}

/* --- Section corner accents (architectural detail) --- */
.section:not(.section-yougee):not(.section-cta):not(.section--flush)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-left: 1.5px solid rgba(255,140,66,0.2);
  border-top: 1.5px solid rgba(255,140,66,0.2);
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* --- Empty space filler: subtle floating accent shapes --- */
.section#solutions::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255,140,66,0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: floatCircle 8s ease-in-out infinite;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-10px, -15px) rotate(120deg); }
  66% { transform: translate(8px, -8px) rotate(240deg); }
}

/* --- Section security: shield icon watermark --- */
.section--security {
  background:
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(16,185,129,0.03), transparent),
    var(--white) !important;
}

/* --- Steps grid: numbered gradient circles --- */
.step-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,140,66,0.08), rgba(255,140,66,0.02));
  border: 1px solid rgba(255,140,66,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-16);
  transition: all var(--dur-base) var(--ease-out);
  color: var(--accent);
}

.step-card:hover .step-card__icon-wrap {
  background: linear-gradient(135deg, rgba(255,140,66,0.15), rgba(255,140,66,0.05));
  box-shadow: 0 0 32px rgba(255,140,66,0.12);
  transform: scale(1.08);
}

/* --- Stats ribbon: richer visual treatment --- */
.stats-ribbon {
  background: linear-gradient(90deg, var(--white) 0%, var(--gray-50) 25%, var(--gray-50) 75%, var(--white) 100%) !important;
  border-top: 1px solid var(--gray-200) !important;
  border-bottom: 1px solid var(--gray-200) !important;
  position: relative;
}

.stats-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 80% at 20% 50%, rgba(255,140,66,0.04), transparent),
    radial-gradient(ellipse 30% 80% at 80% 50%, rgba(0,77,255,0.02), transparent);
  pointer-events: none;
}

.stats-ribbon__value {
  background: linear-gradient(135deg, var(--gray-1000) 0%, var(--accent) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* --- Feature card inner light stripe --- */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,140,66,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 2;
  border-radius: var(--radius-16) var(--radius-16) 0 0;
}

.feature-card:hover::after {
  opacity: 1;
}

/* --- YouGee feature cards: glassmorphism --- */
.yougee-feature {
  background: rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08) !important;
}

.yougee-feature:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,140,66,0.3) !important;
  box-shadow: 0 16px 48px rgba(255,140,66,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* --- Footer: premium elevation --- */
.footer {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255,140,66,0.02), transparent),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%) !important;
}

.footer__big-logo {
  height: 320px !important;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,140,66,0.04), transparent),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%) !important;
}

.footer__big-logo span {
  font-size: clamp(100px, 20vw, 280px) !important;
  background: linear-gradient(
    180deg,
    var(--gray-200) 0%,
    rgba(255,140,66,0.15) 30%,
    var(--gray-200) 50%,
    rgba(255,140,66,0.1) 70%,
    var(--gray-100) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 100% 300% !important;
  animation: bigLogoBreath 8s ease-in-out infinite !important;
}

@keyframes bigLogoBreath {
  0%, 100% { background-position: 0% 0%; filter: drop-shadow(0 0 0 transparent); }
  50% { background-position: 0% 100%; filter: drop-shadow(0 0 40px rgba(255,140,66,0.08)); }
}

.footer__big-logo:hover span {
  background: linear-gradient(
    180deg,
    var(--gray-400) 0%,
    var(--accent) 30%,
    var(--accent-deep) 60%,
    var(--gray-300) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 100% 100% !important;
  animation: none !important;
  filter: drop-shadow(0 0 80px rgba(255,140,66,0.2)) !important;
  transform: scale(1.03);
}

/* --- Product visual: floating label --- */
.product-visual__toolbar {
  background: linear-gradient(135deg, var(--gray-50), var(--white)) !important;
  position: relative;
}

.product-visual__toolbar::after {
  content: 'Meeshu Enterprise Dashboard';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
}

/* --- Scroll indicator premium --- */
.scroll-indicator {
  opacity: 0.5;
}

.scroll-indicator span {
  color: var(--accent) !important;
  font-weight: 600;
  letter-spacing: 0.15em;
}

/* --- Logo trust items: pill style with border --- */
.section-logos__item {
  padding: var(--space-8) var(--space-20) !important;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: var(--white);
  transition: all var(--dur-base) var(--ease-out) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.section-logos__item:hover {
  border-color: rgba(255,140,66,0.3) !important;
  background: rgba(255,140,66,0.03);
  box-shadow: 0 4px 16px rgba(255,140,66,0.08);
  transform: translateY(-2px);
}

.section-logos__icon {
  display: inline-flex;
  color: var(--accent);
  opacity: 0.5;
}

.section-logos__item:hover .section-logos__icon {
  opacity: 1;
}

.section-logos__logo {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
  transition: all var(--dur-base);
}

.section-logos__item:hover .section-logos__logo {
  opacity: 1;
  transform: scale(1.1);
}

/* --- Setup cards: numbered accent --- */
.setup-card {
  padding: var(--space-24);
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-16);
  transition: all var(--dur-base) var(--ease-out);
}

.setup-card:hover {
  border-color: rgba(255,140,66,0.2);
  box-shadow: 0 12px 40px rgba(255,140,66,0.06);
  transform: translateY(-4px);
}

/* --- Section header: larger accent line with glow --- */
.section-header::after {
  width: 80px !important;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent) !important;
  box-shadow: 0 0 20px rgba(255,140,66,0.2);
}

/* --- CTA section: more dramatic atmosphere --- */
.section-cta::before {
  content: '' !important;
  position: absolute !important;
  bottom: -20% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 800px !important;
  height: 800px !important;
  background: radial-gradient(circle, rgba(255,140,66,0.1), transparent 60%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* ============================================
   v7 FINAL — ZENITH LAYER
   60fps, every blank filled, every edge polished
   ============================================ */

/* --- GPU-accelerated transforms for 60fps --- */
.feature-card, .yougee-feature, .security-card, .setup-card, .team-card,
.step-card, .case-study, .btn, .header__logo-mark, .section-logos__item,
.footer__big-logo span, .pv-card, .security-badge {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* --- Hero: cinematic entrance --- */
.section-hero__title {
  font-size: clamp(var(--text-40), 6vw, var(--text-72)) !important;
  font-weight: 800 !important;
  line-height: 1.0 !important;
  letter-spacing: -0.04em !important;
}

.section-hero__subtitle {
  font-size: var(--text-20) !important;
  max-width: 560px;
  line-height: 1.7 !important;
}

/* --- Hero product visual: floating shadow depth --- */
.product-visual {
  border-radius: var(--radius-24) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.02),
    0 12px 24px rgba(0,0,0,0.04),
    0 32px 64px rgba(0,0,0,0.06),
    0 0 0 1px rgba(255,140,66,0.04),
    0 0 120px rgba(255,140,66,0.03) !important;
}

/* --- Rich section backgrounds --- */
.section#solutions {
  background:
    radial-gradient(ellipse 30% 40% at 90% 20%, rgba(255,140,66,0.03), transparent),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(0,77,255,0.02), transparent),
    var(--white) !important;
}

.section--flush {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255,140,66,0.02), transparent),
    var(--white) !important;
}

.section--security {
  background:
    radial-gradient(ellipse 35% 50% at 85% 50%, rgba(16,185,129,0.04), transparent),
    radial-gradient(ellipse 30% 30% at 15% 20%, rgba(255,140,66,0.02), transparent),
    var(--white) !important;
}

/* --- Feature cards: premium glass --- */
.feature-card {
  border: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 4px 12px rgba(0,0,0,0.02),
    inset 0 1px 0 rgba(255,255,255,0.8) !important;
  transition: all 0.5s var(--ease-out) !important;
}

.feature-card:hover {
  border-color: transparent !important;
  box-shadow:
    0 32px 80px -16px rgba(255,140,66,0.2),
    0 8px 24px rgba(0,0,0,0.06),
    3px 4px 0 0 var(--black),
    inset 0 1px 0 rgba(255,255,255,0.4) !important;
  transform: translateY(-20px) !important;
}

/* --- Security cards: inner glow --- */
.security-card {
  border: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 8px rgba(0,0,0,0.02) !important;
  transition: all 0.4s var(--ease-out) !important;
}

.security-card:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 16px 48px rgba(16,185,129,0.08),
    0 0 0 1px rgba(16,185,129,0.1) !important;
}

/* --- Step cards: hover line accent --- */
.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 0.6s var(--ease-out);
}

.step-card:hover::after {
  width: 80%;
}

/* --- Stats ribbon: vibrant number treatment --- */
.stats-ribbon__value {
  font-size: var(--text-48) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
}

.stats-ribbon__label {
  font-size: var(--text-12) !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  margin-top: var(--space-8);
}

.stats-ribbon__divider {
  width: 1px !important;
  height: 48px !important;
  background: linear-gradient(180deg, transparent, var(--gray-300), transparent) !important;
}

/* --- YouGee section: dramatic dark depth --- */
.section-yougee {
  padding: var(--space-120) var(--space-80) !important;
}

.section-yougee .yougee-badge {
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,140,66,0.08); }
  50% { box-shadow: 0 0 40px rgba(255,140,66,0.2); }
}

.yougee-feature__icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: rgba(255,140,66,0.12) !important;
  border: 1px solid rgba(255,140,66,0.15);
}

/* --- CTA section: massive presence --- */
.section-cta {
  padding: var(--space-120) var(--space-80) !important;
}

.section-cta .display-lg {
  font-size: clamp(var(--text-36), 5vw, var(--text-56)) !important;
}

/* --- Footer: rich treatment --- */
.footer__list-title {
  font-size: var(--text-11) !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: var(--gray-400) !important;
  font-weight: 600;
  margin-bottom: var(--space-12) !important;
}

.footer__list-link {
  font-size: var(--text-14);
  padding: var(--space-4) 0;
  position: relative;
  display: inline-block;
}

.footer__list-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.footer__list-link:hover::after {
  width: 100%;
}

.footer__brand-desc {
  font-size: var(--text-15) !important;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Section headers: bolder --- */
.section-header .body-lg {
  font-size: var(--text-18) !important;
  color: var(--gray-500) !important;
  line-height: 1.7 !important;
}

/* --- Overline: refined --- */
.overline {
  font-size: var(--text-12) !important;
  letter-spacing: 0.2em !important;
  font-weight: 700 !important;
}

/* --- Progress bars: thicker, richer --- */
.progress-bar__track {
  height: 6px !important;
  border-radius: 3px !important;
  background: var(--gray-100) !important;
}

.progress-bar__fill {
  height: 100%;
  border-radius: 3px !important;
}

/* --- Trust bar: richer layout --- */
.section-logos {
  padding: var(--space-40) var(--space-80) !important;
}

.section-logos__items {
  gap: var(--space-16) !important;
}

.section-logos__item {
  font-size: var(--text-14) !important;
  font-weight: 600 !important;
  gap: var(--space-10) !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* --- Scroll indicator: refined --- */
.scroll-indicator {
  animation: scrollHint 2.5s ease-in-out infinite !important;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(8px); opacity: 0.7; }
}

/* --- Smooth 60fps scroll for all animated elements --- */
@supports (scroll-behavior: smooth) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-duration: 0.9s !important;
  }
}

/* --- Mobile final polish --- */
@media (max-width: 768px) {
  .section-hero__title {
    font-size: clamp(var(--text-32), 9vw, var(--text-48)) !important;
    line-height: 1.05 !important;
  }

  .section-hero__subtitle {
    font-size: var(--text-16) !important;
  }

  .section-yougee {
    padding: var(--space-64) var(--space-20) !important;
  }

  .section-cta {
    padding: var(--space-64) var(--space-20) !important;
  }

  .stats-ribbon__value {
    font-size: var(--text-32) !important;
  }

  .section-logos {
    padding: var(--space-24) var(--space-16) !important;
  }

  .section-logos__items {
    gap: var(--space-10) !important;
  }

  .section-logos__item {
    font-size: var(--text-12) !important;
    padding: var(--space-6) var(--space-14) !important;
  }

  .section-logos__logo {
    width: 20px !important;
    height: 20px !important;
  }

  .feature-card:hover {
    transform: translateY(-8px) !important;
  }

  .product-visual {
    border-radius: var(--radius-16) !important;
  }

  .overline {
    font-size: var(--text-11) !important;
  }

  .yougee-feature__icon {
    width: 44px !important;
    height: 44px !important;
  }

  .progress-bar__track {
    height: 4px !important;
  }

  .footer__big-logo {
    height: 100px !important;
  }

  .footer__big-logo span {
    font-size: clamp(48px, 14vw, 100px) !important;
  }
}

@media (max-width: 480px) {
  .section-hero__title {
    font-size: clamp(var(--text-28), 8vw, var(--text-36)) !important;
  }

  .stats-ribbon__value {
    font-size: var(--text-24) !important;
  }

  .section-logos__item {
    font-size: var(--text-11) !important;
    padding: var(--space-4) var(--space-10) !important;
  }
}

/* ===== 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;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
