/* ===========================
   VDP CORPORATE - STYLES
   =========================== */

/* ── COOKIE BANNER ────────────────────────────────────────── */
#vdp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d1b2e;
  border-top: 1px solid rgba(59,130,246,.3);
  padding: 16px 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  transform: translateY(100%);
  transition: transform .35s ease;
}
#vdp-cookie-banner.visible {
  transform: translateY(0);
}
#vdp-cookie-banner p {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.55;
}
#vdp-cookie-banner p a {
  color: #3b82f6;
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#vdp-cookie-accept {
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
#vdp-cookie-accept:hover { background: #2563eb; }
#vdp-cookie-decline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(148,163,184,.3);
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
#vdp-cookie-decline:hover { color: #cbd5e1; border-color: rgba(148,163,184,.6); }

/* ── LANGUAGE SWITCHER ────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 8px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-accent);
  letter-spacing: .08em;
  padding: 4px 7px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  line-height: 1;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--blue-light);
  background: rgba(59,130,246,.15);
}
.lang-divider {
  color: rgba(255,255,255,.15);
  font-size: 10px;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 480px) {
  .lang-switcher { margin-right: 4px; }
  .lang-btn { padding: 3px 5px; font-size: 10px; }
}

:root {
  --navy-darkest: #060e1f;
  --navy-dark: #0a1628;
  --navy: #0d1b3e;
  --navy-mid: #1a2e5a;
  --blue-dark: #1e3a8a;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-pale: #dbeafe;
  --red: #dc2626;
  --red-light: #ef4444;
  --gold: #d97706;
  --gold-light: #f59e0b;
  --gold-pale: #fef3c7;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Poppins', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --shadow-glow: 0 0 40px rgba(37,99,235,.3);
  --shadow-gold: 0 0 40px rgba(245,158,11,.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-darkest);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   PRELOADER
   =========================== */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy-darkest);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.preloader-logo {
  width: 160px; border-radius: var(--radius-md);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: .7; transform: scale(.95); }
  50% { opacity: 1; transform: scale(1); }
}
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 999px; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0; background: var(--blue-light);
  border-radius: 999px;
  animation: preloaderFill 2s ease-in-out forwards;
}
@keyframes preloaderFill { to { width: 100%; } }
.preloader-text {
  font-family: var(--font-accent);
  font-size: 13px; color: var(--gray-400);
  letter-spacing: .1em;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--blue-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 2px solid var(--blue-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s, transform .08s;
  opacity: .7;
}
.cursor-hover .cursor-dot { width: 12px; height: 12px; background: var(--gold-light); }
.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--gold-light); opacity: .5; }
.cursor-click .cursor-ring { width: 20px; height: 20px; opacity: 1; }

.sparkle {
  position: fixed; width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%; pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
}

/* ===========================
   HEADER
   =========================== */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(10, 22, 40, .95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.header-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo-link { display: flex; align-items: center; }
.header-logo {
  height: 52px; width: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header-logo:hover { transform: scale(1.05); }
#header.scrolled .header-logo { height: 44px; }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-accent);
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px; background: var(--blue-light);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform .3s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }
.nav-link.active::after { transform: scaleX(1); }
.nav-link.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--blue-light); transform: translateY(-2px); }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link i { font-size: 11px; transition: transform .3s; }
.nav-dropdown:hover > .nav-link i { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(10,22,40,.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 12px;
  min-width: 240px;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  font-size: 14px; color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: var(--font-body);
}
.dropdown-menu a i { color: var(--blue-light); width: 16px; }
.dropdown-menu a:hover {
  background: rgba(37,99,235,.15);
  color: var(--white);
  transform: translateX(4px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: none; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 999px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   SECTION UTILITIES
   =========================== */
.section-padding { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  color: var(--blue-light);
  font-family: var(--font-accent);
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px; color: var(--gray-400);
  max-width: 640px; margin: 0 auto;
  line-height: 1.7;
}
.highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-accent);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: none; border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.1);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s ease;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,99,235,.4);
}
.btn-primary:hover { background: var(--blue-light); box-shadow: 0 8px 32px rgba(37,99,235,.5); }

.btn-outline {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-darkest);
  box-shadow: 0 4px 24px rgba(217,119,6,.4);
}
.btn-gold:hover { box-shadow: 0 8px 32px rgba(217,119,6,.5); }

.btn-outline-white {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 50%, #0f2448 100%);
  overflow: hidden;
}

#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px; margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  color: var(--blue-light);
  font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 999px;
  margin-bottom: 28px;
  font-family: var(--font-accent);
  letter-spacing: .05em;
}
.hero-badge i { color: var(--gold-light); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 720px; margin: 0 auto 40px;
}

.hero-buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex; align-items: center;
  justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  font-size: 13px; color: var(--gray-400);
  font-family: var(--font-accent);
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
}

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: var(--gray-400);
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--blue-light), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .15;
}
.shape-1 {
  width: 500px; height: 500px;
  background: var(--blue);
  top: -100px; right: -100px;
  animation: shapeDrift 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--red);
  bottom: -80px; left: -80px;
  animation: shapeDrift 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--gold);
  top: 50%; left: 50%;
  animation: shapeDrift 12s ease-in-out infinite;
}
@keyframes shapeDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(.95); }
}

/* ===========================
   STATS TICKER
   =========================== */
.stats-ticker {
  background: var(--blue-dark);
  padding: 16px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ticker-track {
  display: flex; gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-accent);
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.8);
  padding: 0 40px;
  white-space: nowrap;
}
.ticker-item i { color: var(--gold-light); }
.ticker-item:not(:last-child)::after {
  content: '●'; margin-left: 40px;
  color: rgba(255,255,255,.3);
  font-size: 6px;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.stats-ticker:hover .ticker-track { animation-play-state: paused; }

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--navy-dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-visual { position: relative; }
.about-img-wrapper { position: relative; padding: 30px; }
.about-img-bg {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, var(--blue-dark), var(--navy-mid));
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.about-img-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(37,99,235,.4) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(220,38,38,.2) 0%, transparent 50%);
}
.about-img-bg::after {
  content: '\f201';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px; color: rgba(255,255,255,.05);
}

.about-card-float {
  position: absolute;
  background: rgba(10,22,40,.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}
.card-float-1 { top: 40px; right: -10px; animation-delay: 0s; }
.card-float-2 { bottom: 60px; left: -10px; animation-delay: 2s; }
.about-card-float i {
  font-size: 24px; color: var(--gold-light);
  background: rgba(217,119,6,.15);
  padding: 10px; border-radius: var(--radius-sm);
}
.about-card-float strong { display: block; font-size: 14px; font-weight: 600; }
.about-card-float span { font-size: 12px; color: var(--gray-400); }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-experience-badge {
  position: absolute; bottom: 30px; right: 30px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-md);
  padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-glow);
}
.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 52px; font-weight: 900; line-height: 1;
}
.exp-text { font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.4; }

.about-content {}
.about-content .section-tag { display: inline-block; }
.about-text {
  color: var(--gray-400); line-height: 1.8;
  margin-bottom: 20px;
}
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.about-feature:hover { background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.2); }
.feature-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); font-size: 18px;
}
.about-feature strong { display: block; font-weight: 600; margin-bottom: 4px; }
.about-feature p { font-size: 13px; color: var(--gray-400); }

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0; overflow: hidden;
}
.stats-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(220,38,38,.1) 0%, transparent 50%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.stat-card {
  text-align: center; padding: 40px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--gold-light));
  transform: scaleX(0); transition: transform .5s ease;
}
.stat-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-icon { font-size: 32px; color: var(--gold-light); margin-bottom: 16px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 56px; font-weight: 900;
  line-height: 1; color: var(--white);
  display: inline;
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 800;
  color: var(--blue-light);
  display: inline;
}
.stat-label {
  display: block; margin-top: 12px;
  font-size: 14px; color: rgba(255,255,255,.7);
  font-family: var(--font-accent);
}

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--navy-darkest); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  overflow: hidden;
  cursor: none;
  transform-style: preserve-3d;
}
.service-card:hover {
  border-color: rgba(37,99,235,.3);
  background: rgba(37,99,235,.07);
  transform: translateY(-8px);
}
.service-card-wide { grid-column: span 3; }
.service-card-wide .service-features {
  display: grid; grid-template-columns: repeat(4, auto);
  width: fit-content; gap: 8px 24px;
}

.service-card-glow {
  position: absolute; top: -100px; right: -100px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: var(--transition-slow);
  opacity: 0;
}
.service-card:hover .service-card-glow { opacity: 1; }

.service-icon-wrap { margin-bottom: 20px; }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(37,99,235,.05));
  border: 1px solid rgba(37,99,235,.3);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--blue-light);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}
.service-number {
  font-family: var(--font-heading);
  font-size: 72px; font-weight: 900;
  color: rgba(255,255,255,.04);
  position: absolute; top: 16px; right: 24px;
  line-height: 1; user-select: none;
}
.service-title {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.service-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; }
.service-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 13px; color: var(--gray-400);
  display: flex; align-items: center; gap: 8px;
}
.service-features li i { color: var(--blue-light); font-size: 11px; }

.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-accent);
  font-size: 14px; font-weight: 600;
  color: var(--blue-light);
  transition: var(--transition);
}
.service-link i { transition: transform .3s; }
.service-link:hover { color: var(--white); }
.service-link:hover i { transform: translateX(4px); }

/* ===========================
   PROCESS
   =========================== */
.process {
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.process-bg { position: absolute; inset: 0; pointer-events: none; }
.process-bg-circle {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .08;
}
.process-bg-circle.c1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; left: -200px;
}
.process-bg-circle.c2 {
  width: 400px; height: 400px;
  background: var(--red);
  bottom: -100px; right: -100px;
}

.process-timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
}
.process-line {
  display: none;
}
.process-step {
  text-align: center; position: relative;
  padding: 40px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.process-step:hover { background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.2); transform: translateY(-6px); }
.process-step-num {
  font-family: var(--font-heading);
  font-size: 64px; font-weight: 900;
  color: rgba(255,255,255,.04);
  position: absolute; top: 12px; right: 16px;
  line-height: 1; user-select: none;
}
.process-step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(37,99,235,.3);
  transition: var(--transition);
}
.process-step:hover .process-step-icon { transform: scale(1.1) rotate(-5deg); }
.process-step-content h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
}
.process-step-content p { font-size: 14px; color: var(--gray-400); line-height: 1.7; }

/* ===========================
   RESULTS
   =========================== */
.results { background: var(--navy-darkest); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.result-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.result-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold-light));
}
.result-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,.2); }
.result-tag {
  display: inline-block;
  background: rgba(37,99,235,.15);
  color: var(--blue-light);
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.result-title {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  margin-bottom: 12px;
}
.result-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-bottom: 24px; }
.result-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.result-metric { text-align: center; }
.metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 800;
  color: var(--blue-light);
}
.metric-label { font-size: 11px; color: var(--gray-400); }
.result-services { display: flex; flex-wrap: wrap; gap: 8px; }
.result-services span {
  background: rgba(255,255,255,.06);
  font-size: 12px; padding: 4px 12px;
  border-radius: 999px; color: var(--gray-400);
}

/* ===========================
   WHY US
   =========================== */
.why-us { background: var(--navy-dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text { color: var(--gray-400); line-height: 1.8; margin-bottom: 40px; }
.why-items { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.why-item:hover { background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.2); }
.why-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(37,99,235,.05));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); font-size: 18px;
}
.why-item-content h4 { font-weight: 600; margin-bottom: 6px; }
.why-item-content p { font-size: 13px; color: var(--gray-400); line-height: 1.6; }

.why-visual { display: flex; justify-content: center; }
.why-visual-inner { position: relative; width: 400px; height: 400px; display: flex; align-items: center; justify-content: center; }
.why-circle-bg {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(37,99,235,.15), rgba(220,38,38,.1), rgba(217,119,6,.15), rgba(37,99,235,.15));
  animation: rotate 20s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.why-features-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-feature-box {
  background: rgba(10,22,40,.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.why-feature-box:hover { transform: scale(1.05); border-color: rgba(37,99,235,.3); }
.why-feature-box i { font-size: 28px; color: var(--gold-light); display: block; margin-bottom: 12px; }
.why-feature-box span { font-size: 13px; font-weight: 600; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { position: relative; background: var(--navy-darkest); overflow: hidden; }
.testimonials-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37,99,235,.08) 0%, transparent 60%);
}
.testimonials-slider { position: relative; overflow: hidden; margin-top: 24px; }
.testimonials-track {
  display: flex; gap: 28px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  min-width: calc(50% - 14px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.07); }
.testimonial-quote {
  font-size: 36px; color: var(--blue-light);
  opacity: .4; margin-bottom: 20px;
}
.testimonial-text { font-size: 16px; color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.author-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-weight: 600; }
.testimonial-author span { font-size: 13px; color: var(--gray-400); }
.testimonial-stars { margin-left: auto; color: var(--gold-light); font-size: 14px; }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white); font-size: 14px;
  cursor: none; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--blue); border-color: var(--blue); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.2);
  cursor: none; transition: var(--transition);
}
.dot.active { width: 24px; background: var(--blue-light); }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0f2448 100%);
  padding: 120px 0; overflow: hidden; text-align: center;
}
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,119,6,.15);
  border: 1px solid rgba(217,119,6,.3);
  color: var(--gold-light);
  font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 999px;
  margin-bottom: 28px; font-family: var(--font-accent);
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; line-height: 1.2;
  max-width: 800px; margin: 0 auto 24px;
}
.cta-subtitle {
  font-size: 17px; color: var(--gray-400);
  max-width: 600px; margin: 0 auto 48px;
  line-height: 1.75;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--gray-400); font-size: 13px;
}
.cta-guarantee i { color: var(--blue-light); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--navy-darkest); }
.footer-main {
  padding: 80px 0 60px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 2fr;
  gap: 60px;
}
.footer-logo {
  height: 60px; width: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px; color: var(--gray-400);
  line-height: 1.7; margin-bottom: 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gray-400);
  transition: var(--transition);
}
.social-link:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-3px); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--gray-400);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '→'; opacity: 0; margin-left: -16px; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 8px; }
.footer-links a:hover::before { opacity: 1; margin-left: 0; }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--gray-400);
}
.footer-contact-item i { color: var(--blue-light); margin-top: 2px; flex-shrink: 0; }

.footer-newsletter p { font-size: 13px; color: var(--gray-400); margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px; color: var(--white);
  outline: none; transition: var(--transition);
}
.newsletter-input::placeholder { color: var(--gray-400); }
.newsletter-input:focus { border-color: var(--blue-light); }
.newsletter-btn {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blue);
  border: none; border-radius: var(--radius-sm);
  color: var(--white); font-size: 14px;
  cursor: none; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.newsletter-btn:hover { background: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}
.footer-bottom-content {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--gray-400);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue);
  border: none; color: var(--white);
  font-size: 16px; cursor: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,99,235,.4);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); background: var(--blue-light); }

/* ===========================
   AOS ANIMATIONS
   =========================== */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"] { transform: scale(.85); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===========================
   SERVICE PAGES BASE
   =========================== */
.page-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 60%, #0f2448 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.page-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(37,99,235,.15) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--white);
  margin-bottom: 24px;
  box-shadow: var(--shadow-glow);
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero-desc {
  font-size: 18px; color: rgba(255,255,255,.75);
  line-height: 1.75; margin-bottom: 36px;
  max-width: 580px;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-400);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--blue-light); }
.page-breadcrumb span { color: var(--gray-400); }

/* Feature Cards for Service Pages */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover { transform: translateY(-6px); background: rgba(37,99,235,.07); border-color: rgba(37,99,235,.2); }
.feature-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(37,99,235,.05));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--blue-light);
  margin: 0 auto 20px;
}
.feature-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--gray-400); line-height: 1.7; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(37,99,235,.05));
  border-color: var(--blue);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.06) translateY(-4px); }
.pricing-card:not(.featured):hover { transform: translateY(-6px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 4px 20px; border-radius: 999px;
}
.pricing-plan { font-family: var(--font-accent); font-size: 13px; font-weight: 600; color: var(--blue-light); margin-bottom: 8px; letter-spacing: .1em; text-transform: uppercase; }
.pricing-price { font-family: var(--font-heading); font-size: 48px; font-weight: 900; margin-bottom: 24px; }
.pricing-price span { font-size: 18px; color: var(--gray-400); }
.pricing-features { text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { font-size: 14px; color: var(--gray-400); display: flex; align-items: center; gap: 10px; }
.pricing-features li i { color: var(--blue-light); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: none; border: none; color: var(--white);
  font-family: var(--font-heading); font-size: 16px; font-weight: 600;
  text-align: left; cursor: none; gap: 16px;
}
.faq-question i { flex-shrink: 0; transition: transform .3s; color: var(--blue-light); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--gray-400); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }
  .service-card-wide .service-features { grid-template-columns: repeat(2, auto); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: rgba(6,14,31,.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,.08);
    padding: 80px 24px 40px;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    z-index: 999; overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-list { flex-direction: column; gap: 0; align-items: stretch; }
  .nav-link { padding: 14px 16px; font-size: 16px; }
  .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: rgba(255,255,255,.04); margin-top: 4px;
    box-shadow: none;
  }
  .hamburger { display: flex; z-index: 1001; }

  .section-padding { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }
  .service-card-wide .service-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .result-metrics { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: 1fr; }

  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-stat-num { font-size: 24px; }
  .stat-number { font-size: 42px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
