/* ============================================
   RELAUNCH DIGITAL — Premium Design System
   ============================================ */

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

/* ---------- CSS Custom Properties (Light Mode Default) ---------- */
:root {
  --brand-orange: #F97316;
  --brand-coral: #EF4444;
  --brand-gradient: linear-gradient(135deg, #F97316, #EF4444);
  --brand-gradient-soft: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.08));

  /* Accent colors for variety */
  --accent-purple: #8B5CF6;
  --accent-teal: #14B8A6;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;

  /* Light Mode */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-glass-strong: rgba(255, 255, 255, 0.9);

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;

  --border-color: rgba(15, 23, 42, 0.06);
  --border-color-strong: rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 0 60px rgba(249, 115, 22, 0.15);

  --section-padding: 100px;
  --container-max: 1200px;
  --nav-height: 72px;

  --transition-fast: 0.15s ease;
  --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-theme: 0.4s ease;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* ---------- Dark Mode ---------- */
[data-theme="dark"] {
  --bg-primary: #0B0F19;
  --bg-secondary: #111827;
  --bg-tertiary: #1E293B;
  --bg-card: rgba(30, 41, 59, 0.6);
  --bg-glass: rgba(17, 24, 39, 0.75);
  --bg-glass-strong: rgba(17, 24, 39, 0.92);

  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;

  --border-color: rgba(241, 245, 249, 0.06);
  --border-color-strong: rgba(241, 245, 249, 0.1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 80px rgba(249, 115, 22, 0.2);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition-theme), color var(--transition-theme);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding) 0; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--brand-gradient);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--brand-gradient);
  color: #FFF;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color-strong);
}
.btn-outline:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-base);
}
.navbar.scrolled {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.15rem;
}
.nav-logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-tertiary);
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 4px 0;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; z-index: 1001; }

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color-strong);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.theme-toggle:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: flex; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: floatBlob 20s ease-in-out infinite;
}
.hero-bg-gradient.g1 { background: var(--brand-orange); width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-bg-gradient.g2 { background: var(--brand-coral); width: 500px; height: 500px; bottom: -200px; left: -100px; animation-delay: -7s; }

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease forwards;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s forwards;
  opacity: 0;
}
.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 0.7s ease 0.2s forwards;
  opacity: 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s forwards;
  opacity: 0;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
  animation: fadeInUp 0.7s ease 0.4s forwards;
  opacity: 0;
}
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.82rem; color: var(--text-tertiary); margin-top: 2px; }

/* Hero Rocket */
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.rocket-container {
  position: relative;
  width: 380px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rocket-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--brand-gradient);
  opacity: 0.1;
  filter: blur(60px);
  animation: pulseGlow 4s ease-in-out infinite;
}
.rocket-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  border: 1px dashed var(--border-color-strong);
  border-radius: 50%;
  animation: rotateOrbit 30s linear infinite;
}
.rocket-orbit::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 8px var(--brand-orange);
}
.rocket-orbit-2 {
  width: 240px;
  height: 240px;
  animation-direction: reverse;
  animation-duration: 20s;
}
.rocket-orbit-2::before {
  background: var(--brand-coral);
  box-shadow: 0 0 8px var(--brand-coral);
  width: 6px;
  height: 6px;
  top: auto;
  bottom: -3px;
}
.rocket-svg-wrapper {
  position: relative;
  z-index: 2;
  animation: rocketFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(249, 115, 22, 0.2));
}
.rocket-svg-wrapper svg { width: 150px; height: 195px; }

.rocket-particles { position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%); width: 80px; height: 120px; z-index: 1; }
.particle {
  position: absolute;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  animation: particleRise 2s ease-out infinite;
}
.particle:nth-child(1) { width: 5px; height: 5px; background: var(--brand-orange); left: 40%; }
.particle:nth-child(2) { width: 4px; height: 4px; background: var(--brand-coral); left: 55%; animation-delay: 0.3s; }
.particle:nth-child(3) { width: 3px; height: 3px; background: #FCD34D; left: 45%; animation-delay: 0.6s; }
.particle:nth-child(4) { width: 5px; height: 5px; background: var(--brand-orange); left: 60%; animation-delay: 0.9s; }
.particle:nth-child(5) { width: 3px; height: 3px; background: var(--brand-coral); left: 35%; animation-delay: 1.2s; }
.particle:nth-child(6) { width: 4px; height: 4px; background: #FCD34D; left: 50%; animation-delay: 1.5s; }

/* ---------- About Section ---------- */
.about { background: var(--bg-secondary); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand-gradient);
}
.about-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.4rem;
}
.about-card-main h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.about-card-main p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }

.about-card-floating {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 5s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
.about-card-floating.card-1 { top: -16px; right: -16px; }
.about-card-floating.card-2 { bottom: -16px; left: -16px; animation-delay: -2.5s; }
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.card-icon.green { background: rgba(34, 197, 94, 0.12); color: #22C55E; }
.card-icon.blue { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
.card-metric { font-size: 1.2rem; font-weight: 800; }
.card-label { font-size: 0.72rem; color: var(--text-tertiary); }

.about-features { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: var(--radius-sm);
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 1.1rem;
}
.about-feature h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.about-feature p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* ---------- Mission Section ---------- */
.mission { background: var(--bg-primary); }
.mission-header { text-align: center; margin-bottom: 56px; }
.mission-header .section-subtitle { margin: 0 auto; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mission-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-orange);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

/* Color variants */
.mission-card-icon.accent-purple { background: rgba(139, 92, 246, 0.1); color: var(--accent-purple); }
.mission-card-icon.accent-teal { background: rgba(20, 184, 166, 0.1); color: var(--accent-teal); }
.mission-card-icon.accent-emerald { background: rgba(16, 185, 129, 0.1); color: var(--accent-emerald); }

.mission-card:hover .mission-card-icon {
  background: var(--brand-gradient);
  color: white;
  transform: scale(1.08);
}
.mission-card:hover .mission-card-icon.accent-purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.mission-card:hover .mission-card-icon.accent-teal { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.mission-card:hover .mission-card-icon.accent-emerald { background: linear-gradient(135deg, #10B981, #059669); }

.mission-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.mission-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.mission-card-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Process Section (Horizontal Steps) ---------- */
.process { background: var(--bg-secondary); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-subtitle { margin: 0 auto; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}

.process-step:last-child { padding-bottom: 0; }

.process-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 72px;
  line-height: 1;
  padding-top: 8px;
  opacity: 0.35;
  transition: opacity var(--transition-base);
}

.process-step:hover .process-step-num { opacity: 1; }

.process-step-body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

.process-step:hover .process-step-body {
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.15);
}

.process-step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.process-step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.process-step-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

.process-step-connector {
  position: absolute;
  left: 35px;
  bottom: 0;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 0.05));
}

.process-step:last-child .process-step-connector { display: none; }

/* ---------- Services Section ---------- */
.services { background: var(--bg-primary); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--brand-gradient);
  opacity: 0.03;
  transition: height var(--transition-slow);
}
.service-card:hover::after { height: 100%; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.15);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-orange);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}
.service-card-icon.accent-purple { background: rgba(139, 92, 246, 0.1); color: var(--accent-purple); }
.service-card-icon.accent-teal { background: rgba(20, 184, 166, 0.1); color: var(--accent-teal); }
.service-card-icon.accent-emerald { background: rgba(16, 185, 129, 0.1); color: var(--accent-emerald); }
.service-card-icon.accent-amber { background: rgba(245, 158, 11, 0.1); color: var(--accent-amber); }

.service-card:hover .service-card-icon { background: var(--brand-gradient); color: white; }
.service-card:hover .service-card-icon.accent-purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); color: white; }
.service-card:hover .service-card-icon.accent-teal { background: linear-gradient(135deg, #14B8A6, #0D9488); color: white; }
.service-card:hover .service-card-icon.accent-emerald { background: linear-gradient(135deg, #10B981, #059669); color: white; }
.service-card:hover .service-card-icon.accent-amber { background: linear-gradient(135deg, #F59E0B, #D97706); color: white; }

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
.service-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; position: relative; z-index: 1; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-orange);
  position: relative;
  z-index: 1;
  transition: gap var(--transition-base);
}
.service-card:hover .service-link { gap: 8px; }

/* Wide service card */
.service-card-wide {
  grid-column: 1 / -1;
  background: var(--brand-gradient-soft);
  border-color: rgba(249, 115, 22, 0.12);
}
.service-card-wide .service-card-wide-content {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.service-card-wide h3 { font-size: 1.15rem; }
.service-card-wide .btn-primary { white-space: nowrap; }

/* ---------- Vision ---------- */
.vision {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.vision-bg { position: absolute; inset: 0; }
.vision-bg-gradient {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--brand-gradient);
  opacity: 0.05;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vision .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}
.vision-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: var(--shadow-glow);
}
.vision .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.vision .section-subtitle { max-width: 650px; margin: 0 auto; }

/* ---------- CTA ---------- */
.cta { background: var(--bg-primary); }
.cta-card {
  background: var(--brand-gradient);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-card > * { position: relative; z-index: 1; }
.cta-icon {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: rocketFloat 3s ease-in-out infinite;
}
.cta-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: #FFF; margin-bottom: 14px; }
.cta-description { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn-white {
  background: #FFF;
  color: #0F172A;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

.btn-ghost {
  background: transparent;
  color: #FFF;
  padding: 13px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: 'Inter', sans-serif;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
}
.footer-logo-text { font-weight: 800; font-size: 1.05rem; letter-spacing: 0.5px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.65; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--brand-orange); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--text-tertiary); font-size: 0.82rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-base);
}
.footer-social-link:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-2px);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.18; transform: scale(1.1); }
}
@keyframes rotateOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes rocketFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes particleRise {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(100px) scale(0.2); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 1.4rem; font-weight: 600; transition: color var(--transition-fast); }
.mobile-menu a:hover { color: var(--brand-orange); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-description { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .about .container { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: 2; max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card-wide .service-card-wide-content { flex-direction: column; gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .mission-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; gap: 12px; }
  .process-step-num { min-width: auto; }
  .process-step-connector { display: none; }

  .cta-card { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-padding: 56px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-value { font-size: 1.5rem; }
  .btn { padding: 11px 22px; font-size: 0.85rem; }
}
