/* ================================================================
   RACKU AI — FUTURISTIC PHOTOCHROMIC THEME
   ================================================================ */

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

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

:root {
  /* Core palette */
  --indigo:  #6366f1;
  --violet:  #8b5cf6;
  --cyan:    #06b6d4;
  --emerald: #10b981;
  --gold:    #f59e0b;
  --pink:    #ec4899;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
  --grad-heading:  linear-gradient(135deg, #a5b4fc, #c4b5fd, #67e8f9);
  --grad-fire:     linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
  --grad-glitter:  linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4, #10b981, #f59e0b, #ec4899, #6366f1);

  /* Backgrounds */
  --bg-base:    #02030e;
  --bg-mid:     #070a1a;
  --bg-card:    rgba(255, 255, 255, 0.04);
  --bg-card-h:  rgba(255, 255, 255, 0.08);

  /* Text */
  --text-bright: #f1f5f9;
  --text-main:   #e2e8f0;
  --text-muted:  #94a3b8;
  --text-dim:    #475569;

  /* Borders */
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Glows */
  --glow-indigo: 0 0 40px rgba(99, 102, 241, 0.25);
  --glow-cyan:   0 0 40px rgba(6, 182, 212, 0.25);
  --glow-violet: 0 0 40px rgba(139, 92, 246, 0.25);

  /* Legacy aliases — keeps existing HTML classes working */
  --primary-color:   #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color:    #06b6d4;
  --dark-bg:         #02030e;
  --light-bg:        #070a1a;
  --text-dark:       #e2e8f0;
  --text-light:      #94a3b8;
  --border-color:    rgba(255, 255, 255, 0.08);
  --success-color:   #10b981;
  --gold-gradient:   linear-gradient(135deg, #f59e0b, #f97316);
  --blue-gradient:   linear-gradient(135deg, #6366f1, #06b6d4);
  --purple-gradient: linear-gradient(135deg, #8b5cf6, #ec4899);
  --black-gradient:  linear-gradient(135deg, #02030e, #0d1b4b);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================
   NAVIGATION
   ======================== */
.navbar {
  background: rgba(2, 3, 14, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--text-bright); }

.cta-btn {
  background: var(--grad-primary) !important;
  color: white !important;
  -webkit-text-fill-color: white !important;
  padding: 8px 20px !important;
  border-radius: 8px;
  box-shadow: var(--glow-indigo);
  transition: all 0.3s ease !important;
}

.cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.55) !important;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  padding: 13px 32px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--glow-indigo);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(99, 102, 241, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  background: var(--bg-base);
  color: white;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Aurora orbs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 15% 45%, rgba(99, 102, 241, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 85% 25%, rgba(139, 92, 246, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 50% 95%, rgba(6, 182, 212, 0.14) 0%, transparent 60%);
  animation: aurora-shift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Star field */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 8%  12%, rgba(255,255,255,0.65) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 38%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 38%  8%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 28%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 52%, rgba(255,255,255,0.50) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 14%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 14% 62%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 78%, rgba(255,255,255,0.40) 0%, transparent 100%),
    radial-gradient(2px 2px at 33% 72%, rgba(167, 139, 250, 0.65) 0%, transparent 100%),
    radial-gradient(2px 2px at 63% 82%, rgba(103, 232, 249, 0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 44%, rgba(196, 181, 253, 0.50) 0%, transparent 100%);
  pointer-events: none;
}

@keyframes aurora-shift {
  0%   { opacity: 0.7; transform: scale(1)    translateX(0); }
  50%  { opacity: 1;   transform: scale(1.08) translateX(-1.5%); }
  100% { opacity: 0.85; transform: scale(1.05) translateX(1.5%); }
}

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

.hero-content h1 {
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: var(--grad-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 17px;
  margin-bottom: 36px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 480px;
}

/* ====================================
   AI SOLUTIONS BANNER — GLITTER CARD
   ==================================== */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  position: relative;
  background: rgba(8, 6, 28, 0.92);
  border-radius: 26px;
  padding: 52px 44px;
  text-align: center;
  min-width: 290px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: float 4.5s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}

/* Animated rainbow border */
.floating-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: var(--grad-glitter);
  background-size: 300% 300%;
  animation: rainbow-spin 3s linear infinite;
  z-index: -1;
}

/* Shimmer sweep */
.floating-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 25%,
    rgba(255,255,255,0.06) 38%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.06) 62%,
    transparent 75%
  );
  animation: shimmer-sweep 2.8s ease-in-out infinite;
  border-radius: 26px;
  pointer-events: none;
}

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

@keyframes shimmer-sweep {
  0%   { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%)  skewX(-12deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px)  rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(0.5deg); }
  66%       { transform: translateY(-8px)  rotate(-0.5deg); }
}

/* Sparkle dots — positioned via nth-child */
.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkle-blink 1.8s ease-in-out infinite;
}
.sparkle:nth-child(1) { width:4px; height:4px; top:14%; left:18%; background:#a5b4fc; animation-delay:0s;    box-shadow:0 0 6px #a5b4fc; }
.sparkle:nth-child(2) { width:3px; height:3px; top:28%; right:14%; background:#67e8f9; animation-delay:0.4s; box-shadow:0 0 5px #67e8f9; }
.sparkle:nth-child(3) { width:5px; height:5px; bottom:22%; left:10%; background:#c4b5fd; animation-delay:0.9s; box-shadow:0 0 8px #c4b5fd; }
.sparkle:nth-child(4) { width:3px; height:3px; top:58%; right:18%; background:#f0abfc; animation-delay:1.3s; box-shadow:0 0 5px #f0abfc; }
.sparkle:nth-child(5) { width:4px; height:4px; bottom:14%; right:10%; background:#a5b4fc; animation-delay:0.6s; box-shadow:0 0 6px #a5b4fc; }
.sparkle:nth-child(6) { width:2px; height:2px; top:8%;  right:28%; background:#fde68a; animation-delay:1.6s; box-shadow:0 0 4px #fde68a; }

@keyframes sparkle-blink {
  0%, 100% { opacity: 0;   transform: scale(0.4); }
  50%       { opacity: 1;   transform: scale(1.6); }
}

.banner-icon {
  font-size: 54px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 14px rgba(99, 102, 241, 0.7));
  position: relative;
  z-index: 1;
}

.banner-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 22px;
  background: var(--grad-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.banner-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.banner-features span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.banner-features span:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
  color: var(--text-bright);
  transform: scale(1.03);
}

/* ========================
   SECTION SHARED
   ======================== */
section h2 {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 12px;
  background: var(--grad-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 60px;
  font-size: 15px;
}

/* ========================
   MISSION SECTION
   ======================== */
.mission {
  padding: 90px 0;
  background: var(--bg-mid);
  position: relative;
}

.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139,92,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.mission .section-subtitle { margin-bottom: 60px; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.mission-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
}

.mission-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99,102,241,0.35);
  box-shadow: var(--glow-indigo), 0 25px 60px rgba(0,0,0,0.45);
  background: var(--bg-card-h);
}

.mission-icon { font-size: 48px; margin-bottom: 20px; text-align: center; }

.mission-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-card p { color: var(--text-muted); line-height: 1.8; font-size: 14px; }

.values-list { display: grid; gap: 14px; }

.value-item {
  padding: 16px 18px;
  background: rgba(99,102,241,0.06);
  border-radius: 10px;
  border-left: 3px solid var(--indigo);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(99,102,241,0.12);
  transform: translateX(5px);
  border-left-color: var(--cyan);
}

.value-item strong {
  display: block;
  color: var(--text-bright);
  margin-bottom: 5px;
  font-size: 13px;
}

.value-item p { margin: 0; font-size: 12px; color: var(--text-muted) !important; }

/* ========================
   SERVICES SECTION
   ======================== */
.services {
  padding: 90px 0;
  background: var(--bg-base);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 10% 50%, rgba(6,182,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services h2 { margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99,102,241,0.35);
  box-shadow: var(--glow-indigo), 0 25px 60px rgba(0,0,0,0.5);
  background: var(--bg-card-h);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon { font-size: 44px; margin-bottom: 18px; }

.service-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-bright);
  letter-spacing: 0.04em;
}

.service-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 13px; line-height: 1.8; }

.service-features { list-style: none; }

.service-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.service-features li:last-child { border-bottom: none; }

/* ========================
   GUARDRAILS SECTION
   ======================== */
.guardrails {
  padding: 90px 0;
  background: var(--bg-mid);
  position: relative;
}

.guardrails::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 90% 30%, rgba(139,92,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.guardrails h2 { margin-bottom: 10px; }
.guardrails .section-subtitle { margin-bottom: 60px; }

.guardrails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.guardrail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-left: 3px solid var(--indigo);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.guardrail-card:hover {
  transform: translateY(-8px);
  border-left-color: var(--cyan);
  box-shadow: var(--glow-cyan), 0 20px 50px rgba(0,0,0,0.4);
  background: var(--bg-card-h);
}

.guardrail-icon { font-size: 36px; margin-bottom: 14px; }

.guardrail-card h3 {
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--text-bright);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.guardrail-features { list-style: none; }

.guardrail-features li {
  padding: 7px 0;
  color: var(--text-muted);
  font-size: 12px;
  padding-left: 16px;
  position: relative;
}

.guardrail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 700;
}

/* ========================
   CASE STUDIES
   ======================== */
.case-studies { padding: 90px 0; background: var(--bg-base); }
.case-studies h2 { margin-bottom: 60px; }

.case-study {
  margin-bottom: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--indigo);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.case-study:hover {
  border-left-color: var(--cyan);
  box-shadow: var(--glow-indigo);
  background: var(--bg-card-h);
}

.case-study h3 { font-size: 18px; margin-bottom: 28px; color: var(--text-bright); }

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 20px;
}

.before, .after { padding: 20px; border-radius: 12px; }

.before { background: rgba(244,63,94,0.08);  border: 1px solid rgba(244,63,94,0.2); }
.after  { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }

.before h4 { margin-bottom: 12px; color: #fca5a5; font-size: 13px; font-family: 'Orbitron', sans-serif; }
.after h4  { margin-bottom: 12px; color: #6ee7b7; font-size: 13px; font-family: 'Orbitron', sans-serif; }

.before ul, .after ul { list-style: none; }

.before li, .after li { padding: 6px 0; font-size: 13px; color: var(--text-muted); }

.case-metric {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 20px;
}

/* ========================
   BENEFITS SECTION
   ======================== */
.benefits {
  padding: 90px 0;
  background: var(--bg-mid);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(99,102,241,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 40%, rgba(6,182,212,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.benefits h2 { margin-bottom: 60px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.benefit-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: var(--bg-card-h);
  border-color: rgba(99,102,241,0.3);
  box-shadow: var(--glow-indigo);
}

.benefit-icon { font-size: 32px; margin-bottom: 14px; }

.benefit-item h3 {
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--text-bright);
  letter-spacing: 0.04em;
}

.benefit-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ========================
   ONBOARDING SECTION
   ======================== */
.onboarding { padding: 90px 0; background: var(--bg-base); }
.onboarding h2 { margin-bottom: 10px; }

.onboarding-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.timeline-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 38px 28px 28px;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-color: rgba(99,102,241,0.3);
  box-shadow: var(--glow-indigo);
  background: var(--bg-card-h);
}

.timeline-number {
  position: absolute;
  top: -16px;
  left: 22px;
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--glow-indigo);
}

.timeline-item h3 {
  margin-top: 4px;
  margin-bottom: 14px;
  color: var(--text-bright);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.timeline-item ul { list-style: none; }

.timeline-item li {
  padding: 7px 0;
  color: var(--text-muted);
  font-size: 13px;
  padding-left: 18px;
  position: relative;
}

.timeline-item li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* ========================
   PRICING SECTION
   ======================== */
.pricing {
  padding: 90px 0;
  background: var(--bg-mid);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(99,102,241,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing h2 { margin-bottom: 10px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--violet), var(--cyan));
}

.pricing-card:hover {
  border-color: rgba(99,102,241,0.45);
  box-shadow: var(--glow-violet), 0 25px 60px rgba(0,0,0,0.4);
  transform: translateY(-5px);
  background: var(--bg-card-h);
}

.pricing-card.featured {
  border-color: rgba(99,102,241,0.5);
  transform: scale(1.04);
  box-shadow: var(--glow-violet), var(--glow-indigo);
  background: rgba(99,102,241,0.07);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-5px); }

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: white;
  padding: 5px 22px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: var(--glow-indigo);
}

.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-bright);
  letter-spacing: 0.08em;
}

.price {
  font-size: 40px;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
}

.price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.plan-description { color: var(--text-muted); margin-bottom: 26px; font-size: 13px; }

.pricing-features { list-style: none; text-align: left; margin: 26px 0; }

.pricing-features li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 13px;
}

.pricing-features li:last-child { border-bottom: none; }

/* ========================
   ADDITIONAL SERVICES
   ======================== */
.additional-services { padding: 90px 0; background: var(--bg-base); }
.additional-services h2 { margin-bottom: 60px; }

.services-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.add-on-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 24px;
  border-radius: 14px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.add-on-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6,182,212,0.3);
  box-shadow: var(--glow-cyan);
  background: var(--bg-card-h);
}

.add-on-card h4 { font-size: 13px; margin-bottom: 8px; color: var(--text-bright); }
.add-on-card p  { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.65; }
.add-on-card .pricing { color: var(--cyan); font-weight: 700; font-size: 12px; }

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials { padding: 90px 0; background: var(--bg-mid); }
.testimonials h2 { margin-bottom: 60px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 18px;
  left: 26px;
  font-size: 64px;
  font-family: Georgia, serif;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.45;
}

.testimonial-card:hover {
  border-color: rgba(99,102,241,0.3);
  box-shadow: var(--glow-violet);
  transform: translateY(-6px);
  background: var(--bg-card-h);
}

.testimonial-card .stars { font-size: 15px; margin-bottom: 12px; }

.testimonial-card p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-style: italic;
  font-size: 13px;
  line-height: 1.8;
  padding-top: 8px;
}

.testimonial-author { font-weight: 600; color: var(--text-bright); font-style: normal; font-size: 13px; }

/* ========================
   CTA / CONTACT SECTION
   ======================== */
.cta-section {
  background: var(--bg-base);
  color: white;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(99,102,241,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 50%, rgba(139,92,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { margin-bottom: 10px; }

.cta-section > .container > p {
  text-align: center;
  font-size: 15px;
  margin-bottom: 50px;
  color: var(--text-muted);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.contact-form h3 {
  margin-bottom: 22px;
  font-size: 16px;
  color: var(--text-bright);
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 13px;
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
  background: rgba(99,102,241,0.07);
}

.contact-form select option { background: #0f0f25; color: var(--text-main); }
.contact-form button { width: 100%; margin-top: 6px; }

.contact-info h3 {
  margin-bottom: 26px;
  font-size: 16px;
  color: var(--text-bright);
  letter-spacing: 0.05em;
}

.info-item { margin-bottom: 22px; }

.info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-bright);
  font-size: 13px;
}

.info-item p { color: var(--text-muted); font-size: 13px; }

.social-links { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

.social-btn {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border-glass);
  font-size: 12px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(99,102,241,0.14);
  border-color: rgba(99,102,241,0.4);
  color: var(--text-bright);
  transform: translateY(-2px);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: #01020b;
  border-top: 1px solid var(--border-glass);
  color: white;
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p  { color: rgba(255,255,255,0.4); font-size: 13px; line-height: 1.7; }
.footer-section ul { list-style: none; }

.footer-section a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-section a:hover { color: var(--text-bright); }
.footer-section li { margin-bottom: 10px; }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
  .nav-links { gap: 14px; font-size: 12px; }
  .hero .container { grid-template-columns: 1fr; padding: 40px 0; gap: 40px; }
  .hero-content h1 { font-size: 30px; }
  .hero-content p  { font-size: 15px; }
  .services-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .before-after { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; gap: 30px; }
  .timeline-item { margin-top: 20px; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 24px; }
  .hero-content p  { font-size: 14px; }
  section h2       { font-size: 20px; }
  .nav-links { gap: 10px; flex-wrap: wrap; }
}

/* ========================
   FORM STATES (Formspree)
   ======================== */
[data-fs-success] { display: none; }

[data-fs-success].form-success {
  text-align: center;
  padding: 44px 20px;
}

.form-success-icon { font-size: 48px; margin-bottom: 14px; }

.form-success h3 {
  font-size: 18px;
  margin-bottom: 10px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-success p { font-size: 14px; color: var(--text-muted); }

.form-error-banner:not(:empty) {
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(244,63,94,0.1);
  color: #fca5a5;
  font-size: 13px;
  border-left: 3px solid #f43f5e;
}

.field-error:not(:empty) {
  display: block;
  margin-top: -8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #fca5a5;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #f43f5e !important;
  box-shadow: 0 0 0 3px rgba(244,63,94,0.15) !important;
}
