/* ============================================
   101 CONNECT — Design System & Styles
   Light & Clean Minimal with Brand Accents
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --magenta: #EC008C;
  --magenta-dark: #C70075;
  --magenta-light: #FF4DB2;
  --cyan: #00AEEF;
  --cyan-dark: #0090C8;
  --cyan-light: #33C4FF;
  --yellow: #FDDC00;
  --yellow-dark: #D4B800;
  --yellow-light: #FFE94D;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-50: #F1F3F8;
  --gray-100: #E4E7EE;
  --gray-200: #C9CDD8;
  --gray-300: #A0A6B4;
  --gray-400: #6B7280;
  --gray-500: #4B5563;
  --gray-600: #374151;
  --gray-700: #1F2937;
  --dark: #1A1A2E;
  --darker: #12121F;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--magenta), var(--cyan));
  --gradient-brand-reverse: linear-gradient(135deg, var(--cyan), var(--magenta));
  --gradient-warm: linear-gradient(135deg, var(--magenta), var(--yellow));
  --gradient-cool: linear-gradient(135deg, var(--cyan), var(--magenta));
  --gradient-hero: linear-gradient(160deg, #f8f9fc 0%, #eef1f8 50%, #f0f4ff 100%);
  --gradient-cta: linear-gradient(135deg, var(--magenta) 0%, var(--cyan) 100%);

  /* Typography */
  --font-primary: 'Inter var', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter var', 'Inter', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: clamp(2.5rem, 5vw, 4rem);
  --fs-hero: clamp(2.75rem, 6vw, 5rem);

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;
  --space-4xl: 4.5rem;
  --space-5xl: 6rem;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-glow-magenta: 0 8px 30px rgba(236, 0, 140, 0.25);
  --shadow-glow-cyan: 0 8px 30px rgba(0, 174, 239, 0.25);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Layout */
  --container-max: 1340px;
  --container-wide: 1400px;
  --header-height: 90px;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--gray-600);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--gray-700);
  line-height: var(--lh-tight);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--gray {
  background-color: var(--off-white);
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, rgba(236, 0, 140, 0.08), rgba(0, 174, 239, 0.08));
  border: 1px solid rgba(236, 0, 140, 0.15);
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--magenta);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.section-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--magenta);
  animation: pulse 2s ease-in-out infinite;
}

.section-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-md);
  color: var(--gray-700);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--gray-400);
  max-width: 600px;
  line-height: var(--lh-relaxed);
  margin-left: auto;
  margin-right: auto;
}

.text-left .section-subtitle {
  margin-left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn--primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-glow-magenta);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(236, 0, 140, 0.35);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--white);
  color: var(--magenta);
  font-weight: var(--fw-bold);
}

.btn--white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.btn--sm {
  padding: 10px 22px;
  font-size: var(--fs-sm);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--fs-md);
}

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

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

/* ---------- HEADER / NAVBAR ---------- */
/* Top accent gradient bar */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--yellow));
  z-index: 10;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header--scrolled {
  height: 74px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.04);
}

.header .container {
  max-width: 1400px;
  height: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-xl);
  padding-top: 4px; /* offset for the top accent bar */
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition-base);
}

.header--scrolled .header__logo img {
  height: 42px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.header__nav-link {
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2.5px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transition: transform var(--transition-base);
}

.header__nav-link:hover {
  color: var(--magenta);
  background: rgba(236, 0, 140, 0.04);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  transform: translateX(-50%) scaleX(1);
}

.header__nav-link--active {
  color: var(--magenta);
  font-weight: var(--fw-semibold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

/* Mobile Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: right var(--transition-slow);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  padding: var(--space-3xl) var(--space-xl);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(4px);
}

.mobile-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: var(--fs-xl);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.mobile-menu__close:hover {
  background: var(--magenta);
  color: var(--white);
}

.mobile-menu__logo {
  margin-bottom: var(--space-3xl);
}

.mobile-menu__logo img {
  height: 40px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px 16px;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--gray-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  background: linear-gradient(135deg, rgba(236, 0, 140, 0.06), rgba(0, 174, 239, 0.06));
  color: var(--magenta);
  transform: translateX(4px);
}

.mobile-menu__link--active {
  font-weight: var(--fw-semibold);
}

.mobile-menu__cta {
  margin-top: var(--space-2xl);
}

/* ---------- HERO SECTION ---------- */
.hero {
  padding-top: var(--header-height);
  padding-bottom: 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-3xl) 0;
}

.hero__content {
  flex: 1;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--gray-500);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease-out;
}

.hero__badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: var(--radius-full);
  font-size: 10px;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--gray-400);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  max-width: 50%;
}

/* Hero Decorative Elements */
.hero__decoration {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.6;
  pointer-events: none;
}

.hero__deco-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.08) 0%, transparent 70%);
  top: 10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.hero__deco-circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.08) 0%, transparent 70%);
  bottom: 10%;
  right: 15%;
  animation: float 10s ease-in-out infinite 2s;
}

.hero__deco-circle-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(253, 220, 0, 0.1) 0%, transparent 70%);
  top: 20%;
  right: 25%;
  animation: float 7s ease-in-out infinite 1s;
}

/* Floating Dots */
.hero__dot {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero__dot--1 {
  width: 12px;
  height: 12px;
  background: var(--magenta);
  top: 25%;
  right: 10%;
  animation: floatDot 6s ease-in-out infinite;
}

.hero__dot--2 {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  top: 60%;
  right: 5%;
  animation: floatDot 8s ease-in-out infinite 1s;
}

.hero__dot--3 {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  bottom: 30%;
  right: 30%;
  animation: floatDot 7s ease-in-out infinite 0.5s;
}

.hero__dot--4 {
  width: 6px;
  height: 6px;
  background: var(--magenta-light);
  top: 40%;
  right: 35%;
  animation: floatDot 9s ease-in-out infinite 2s;
}

.hero__dot--5 {
  width: 14px;
  height: 14px;
  background: var(--cyan-light);
  opacity: 0.5;
  bottom: 20%;
  right: 15%;
  animation: floatDot 6.5s ease-in-out infinite 1.5s;
}

/* Hero Floating Lines */
.hero__line {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.3;
}

.hero__line--1 {
  width: 60px;
  background: var(--gradient-brand);
  top: 35%;
  right: 20%;
  transform: rotate(30deg);
  animation: floatLine 8s ease-in-out infinite;
}

.hero__line--2 {
  width: 40px;
  background: var(--cyan);
  bottom: 25%;
  right: 8%;
  transform: rotate(-15deg);
  animation: floatLine 10s ease-in-out infinite 2s;
}

.hero__line--3 {
  width: 50px;
  background: var(--yellow);
  top: 55%;
  right: 40%;
  transform: rotate(60deg);
  animation: floatLine 7s ease-in-out infinite 1s;
}

/* Hero Visual Card Stack */
.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

.hero__float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.8s ease-out both;
}

.hero__float-card--1 {
  top: 5%;
  left: 10%;
  width: 200px;
  animation-delay: 0.5s;
  z-index: 3;
}

.hero__float-card--2 {
  top: 30%;
  right: 5%;
  width: 220px;
  animation-delay: 0.7s;
  z-index: 2;
}

.hero__float-card--3 {
  bottom: 10%;
  left: 15%;
  width: 240px;
  animation-delay: 0.9s;
  z-index: 1;
}

.hero__float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-md);
}

.hero__float-card-icon--magenta {
  background: linear-gradient(135deg, rgba(236, 0, 140, 0.12), rgba(236, 0, 140, 0.05));
  color: var(--magenta);
}

.hero__float-card-icon--cyan {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.12), rgba(0, 174, 239, 0.05));
  color: var(--cyan);
}

.hero__float-card-icon--yellow {
  background: linear-gradient(135deg, rgba(253, 220, 0, 0.15), rgba(253, 220, 0, 0.05));
  color: var(--yellow-dark);
}

.hero__float-card-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gray-700);
  margin-bottom: 4px;
}

.hero__float-card-text {
  font-size: var(--fs-xs);
  color: var(--gray-400);
}

/* Orbiting ring behind cards */
.hero__orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius-full);
  animation: spin 40s linear infinite;
}

.hero__orbit-ring::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--magenta);
  border-radius: var(--radius-full);
}

/* ---------- STATS SECTION ---------- */
.stats {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

/* Decorative background dots */
.stats::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.stats__card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

/* Shimmer sweep on hover */
.stats__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.stats__card:hover::before {
  left: 100%;
}

/* Colored bottom glow line */
.stats__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats__card:nth-child(1)::after { background: var(--magenta); box-shadow: 0 0 20px var(--magenta); }
.stats__card:nth-child(2)::after { background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
.stats__card:nth-child(3)::after { background: var(--yellow); box-shadow: 0 0 20px var(--yellow); }
.stats__card:nth-child(4)::after { background: var(--gradient-brand); box-shadow: 0 0 20px var(--magenta); }

.stats__card:hover::after {
  width: 60%;
}

.stats__card:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Icon circle above number */
.stats__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 22px;
  transition: all var(--transition-spring);
}

.stats__card:nth-child(1) .stats__icon {
  background: rgba(236, 0, 140, 0.15);
  color: var(--magenta);
  box-shadow: 0 0 0 0 rgba(236, 0, 140, 0.2);
}

.stats__card:nth-child(2) .stats__icon {
  background: rgba(0, 174, 239, 0.15);
  color: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.2);
}

.stats__card:nth-child(3) .stats__icon {
  background: rgba(253, 220, 0, 0.15);
  color: var(--yellow);
  box-shadow: 0 0 0 0 rgba(253, 220, 0, 0.2);
}

.stats__card:nth-child(4) .stats__icon {
  background: linear-gradient(135deg, rgba(236, 0, 140, 0.15), rgba(0, 174, 239, 0.15));
  color: var(--magenta-light);
  box-shadow: 0 0 0 0 rgba(236, 0, 140, 0.2);
}

.stats__card:hover .stats__icon {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.05);
}

.stats__number {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: var(--fw-extrabold);
  font-family: var(--font-display);
  margin-bottom: 6px;
  color: var(--white);
  transition: all var(--transition-base);
}

.stats__card:hover .stats__number {
  letter-spacing: 2px;
}

.stats__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color var(--transition-base);
}

.stats__card:hover .stats__label {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- SERVICES SECTION ---------- */
.services {
  padding: var(--space-5xl) 0;
  background: var(--off-white);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

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

.services__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) calc(var(--space-2xl) + 4px);
  border: 1px solid var(--gray-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Animated left accent border */
.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 4px 4px 0;
}

.services__card:nth-child(1)::before { background: var(--magenta); }
.services__card:nth-child(2)::before { background: var(--cyan); }
.services__card:nth-child(3)::before { background: var(--yellow); }
.services__card:nth-child(4)::before { background: var(--cyan); }
.services__card:nth-child(5)::before { background: var(--magenta); }
.services__card:nth-child(6)::before { background: var(--yellow); }

.services__card:hover::before {
  height: 100%;
}

/* Background gradient sweep on hover */
.services__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.services__card:nth-child(1)::after { background: linear-gradient(135deg, rgba(236, 0, 140, 0.03) 0%, transparent 60%); }
.services__card:nth-child(2)::after { background: linear-gradient(135deg, rgba(0, 174, 239, 0.03) 0%, transparent 60%); }
.services__card:nth-child(3)::after { background: linear-gradient(135deg, rgba(253, 220, 0, 0.04) 0%, transparent 60%); }
.services__card:nth-child(4)::after { background: linear-gradient(135deg, rgba(0, 174, 239, 0.03) 0%, transparent 60%); }
.services__card:nth-child(5)::after { background: linear-gradient(135deg, rgba(236, 0, 140, 0.03) 0%, transparent 60%); }
.services__card:nth-child(6)::after { background: linear-gradient(135deg, rgba(253, 220, 0, 0.04) 0%, transparent 60%); }

.services__card:hover::after {
  opacity: 1;
}

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

.services__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.04);
  border-color: transparent;
}

/* Icon with bounce animation on hover */
.services__card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  font-size: 26px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services__card:hover .services__card-icon {
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.25) rotate(-10deg); }
  50% { transform: scale(0.9) rotate(5deg); }
  70% { transform: scale(1.1) rotate(-3deg); }
  100% { transform: scale(1.05) rotate(0deg); }
}

.services__card:nth-child(1) .services__card-icon {
  background: linear-gradient(135deg, rgba(236, 0, 140, 0.12), rgba(236, 0, 140, 0.04));
  color: var(--magenta);
}
.services__card:nth-child(1):hover .services__card-icon {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(236, 0, 140, 0.3);
}

.services__card:nth-child(2) .services__card-icon {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.12), rgba(0, 174, 239, 0.04));
  color: var(--cyan);
}
.services__card:nth-child(2):hover .services__card-icon {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.3);
}

.services__card:nth-child(3) .services__card-icon {
  background: linear-gradient(135deg, rgba(253, 220, 0, 0.15), rgba(253, 220, 0, 0.04));
  color: var(--yellow-dark);
}
.services__card:nth-child(3):hover .services__card-icon {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(253, 220, 0, 0.3);
}

.services__card:nth-child(4) .services__card-icon {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.12), rgba(236, 0, 140, 0.04));
  color: var(--cyan);
}
.services__card:nth-child(4):hover .services__card-icon {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.3);
}

.services__card:nth-child(5) .services__card-icon {
  background: linear-gradient(135deg, rgba(236, 0, 140, 0.12), rgba(0, 174, 239, 0.04));
  color: var(--magenta);
}
.services__card:nth-child(5):hover .services__card-icon {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(236, 0, 140, 0.3);
}

.services__card:nth-child(6) .services__card-icon {
  background: linear-gradient(135deg, rgba(253, 220, 0, 0.15), rgba(236, 0, 140, 0.04));
  color: var(--yellow-dark);
}
.services__card:nth-child(6):hover .services__card-icon {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(253, 220, 0, 0.3);
}

.services__card-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  color: var(--gray-700);
  transition: color var(--transition-fast);
}

.services__card:hover .services__card-title {
  color: var(--dark);
}

.services__card-text {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gray-400);
  transition: all var(--transition-base);
  position: relative;
}

.services__card:nth-child(1):hover .services__card-link { color: var(--magenta); }
.services__card:nth-child(2):hover .services__card-link { color: var(--cyan); }
.services__card:nth-child(3):hover .services__card-link { color: var(--yellow-dark); }
.services__card:nth-child(4):hover .services__card-link { color: var(--cyan); }
.services__card:nth-child(5):hover .services__card-link { color: var(--magenta); }
.services__card:nth-child(6):hover .services__card-link { color: var(--yellow-dark); }

.services__card:hover .services__card-link {
  gap: var(--space-md);
}

.services__card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.services__card:hover .services__card-link svg {
  transform: translateX(6px);
}

/* ---------- WHY US SECTION ---------- */
.why-us {
  padding: var(--space-5xl) 0;
  background: var(--white);
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.why-us__visual {
  position: relative;
  perspective: 1000px;
}

.why-us__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-us__image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.why-us__visual:hover .why-us__image-wrapper {
  transform: translateY(-10px) rotateY(2deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.why-us__visual:hover .why-us__image-wrapper img {
  transform: scale(1.05);
}

.why-us__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  opacity: 0.1;
  z-index: -1;
  transition: all 0.5s ease;
}

.why-us__visual:hover .why-us__image-accent {
  opacity: 0.2;
  transform: translate(-10px, -10px);
}

.why-us__experience-badge {
  position: absolute;
  bottom: -15px;
  left: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: float 5s ease-in-out infinite;
}

.why-us__experience-badge-number {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.why-us__experience-badge-text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--gray-500);
  line-height: var(--lh-snug);
}

.why-us__content {
  padding-left: var(--space-xl);
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.why-us__feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us__feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-us__feature:hover {
  background: var(--white);
  border-color: transparent;
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.why-us__feature:hover::before {
  opacity: 1;
}

.why-us__feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.why-us__feature:hover .why-us__feature-icon {
  transform: rotate(10deg) scale(1.1);
}

.why-us__feature:nth-child(1) .why-us__feature-icon {
  background: linear-gradient(135deg, rgba(236, 0, 140, 0.1), rgba(236, 0, 140, 0.03));
  color: var(--magenta);
}

.why-us__feature:nth-child(2) .why-us__feature-icon {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(0, 174, 239, 0.03));
  color: var(--cyan);
}

.why-us__feature:nth-child(3) .why-us__feature-icon {
  background: linear-gradient(135deg, rgba(253, 220, 0, 0.12), rgba(253, 220, 0, 0.03));
  color: var(--yellow-dark);
}

.why-us__feature:nth-child(4) .why-us__feature-icon {
  background: linear-gradient(135deg, rgba(236, 0, 140, 0.1), rgba(0, 174, 239, 0.05));
  color: var(--magenta);
}

.why-us__feature-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--gray-700);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.why-us__feature:hover .why-us__feature-title {
  color: var(--magenta);
}

.why-us__feature-text {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  line-height: var(--lh-relaxed);
}

/* ---------- CLIENTS / TRUSTED BY ---------- */
.clients {
  padding: var(--space-4xl) 0;
  background: var(--off-white);
  overflow: hidden;
}

.clients__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.clients__marquee-wrapper {
  position: relative;
}

.clients__marquee-wrapper::before,
.clients__marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.clients__marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.clients__marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.clients__marquee {
  display: flex;
  gap: var(--space-3xl);
  animation: marquee 40s linear infinite;
  width: max-content;
}

.clients__marquee:hover {
  animation-play-state: paused;
}

.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 80px;
  padding: var(--space-md) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--gray-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  filter: grayscale(100%) opacity(0.6);
  cursor: pointer;
}

.clients__logo:hover {
  border-color: transparent;
  color: var(--dark);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px) scale(1.05);
  filter: grayscale(0%) opacity(1);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.cta-banner__inner {
  position: relative;
  text-align: center;
  z-index: 2;
  background: var(--darker);
  padding: var(--space-5xl) var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.05);
}

/* Background animated gradients inside the card */
.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.15) 0%, transparent 60%);
  animation: float 10s ease-in-out infinite;
  z-index: -1;
}

.cta-banner__inner::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 60%);
  animation: float 12s ease-in-out infinite reverse;
  z-index: -1;
}

/* Top border glowing accent line */
.cta-banner__accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.cta-banner__title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--white);
  margin-bottom: var(--space-lg);
  position: relative;
}

.cta-banner__text {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto var(--space-3xl);
  line-height: var(--lh-relaxed);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner__actions .btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.cta-banner__actions .btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-5xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-4xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-lg);
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__logo {
  margin-bottom: var(--space-md);
}

.footer__logo img {
  height: 40px;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-base);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--magenta);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-magenta);
}

.footer__heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xl);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 0;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__link::before {
  content: '';
  width: 0;
  height: 1.5px;
  background: var(--magenta);
  transition: width var(--transition-base);
}

.footer__link:hover {
  color: var(--white);
  transform: translateX(6px);
}

.footer__link:hover::before {
  width: 12px;
}

.footer__contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
  align-items: flex-start;
}

.footer__contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  font-size: 14px;
}

.footer__contact-text {
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-normal);
}

.footer__contact-text a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__contact-text a:hover {
  color: var(--magenta);
}

.footer__bottom {
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--magenta);
}

/* ---------- Scroll-to-Top Button ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-glow-magenta);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(236, 0, 140, 0.4);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ---------- KEYFRAME ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatDot {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -15px); }
  50% { transform: translate(-5px, -25px); }
  75% { transform: translate(15px, -10px); }
}

@keyframes floatLine {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, 30deg)); opacity: 0.3; }
  50% { transform: translateY(-15px) rotate(var(--rotate, 30deg)); opacity: 0.6; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 992px) {
  .header__nav,
  .header__actions .btn {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    padding-top: var(--header-height);
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-2xl) 0;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    margin: 0 auto var(--space-2xl);
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    min-height: 320px;
  }

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

  .why-us__inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .why-us__content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --space-5xl: 5rem;
    --space-4xl: 3.5rem;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__inner {
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero__subtitle {
    font-size: var(--fs-base);
  }

  .hero__visual {
    min-height: 280px;
    max-width: 320px;
  }

  .hero__float-card {
    padding: var(--space-md) var(--space-lg);
  }

  .hero__float-card--1 { width: 170px; }
  .hero__float-card--2 { width: 185px; }
  .hero__float-card--3 { width: 200px; }

  .hero__orbit-ring {
    width: 260px;
    height: 260px;
  }

  .section-title {
    font-size: var(--fs-3xl);
  }

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

  .cta-banner__title {
    font-size: var(--fs-3xl);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    padding: var(--space-md) 0;
  }

  .hero__badge {
    font-size: var(--fs-xs);
    padding: 6px 14px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__visual {
    min-height: 240px;
    max-width: 280px;
  }

  .hero__float-card--1 { width: 150px; }
  .hero__float-card--2 { width: 160px; }
  .hero__float-card--3 { width: 175px; }

  .hero__orbit-ring {
    width: 210px;
    height: 210px;
  }

  .hero__card-stack {
    max-width: 280px;
  }

  .stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .stats__number {
    font-size: var(--fs-2xl);
  }

  .btn {
    padding: 12px 24px;
    font-size: var(--fs-sm);
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: var(--fs-base);
  }
}
