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

:root {
  --accent: #2dd4a8;
  --accent-dim: rgba(45, 212, 168, 0.15);
  --accent-glow: rgba(45, 212, 168, 0.4);
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --text: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #6e6e73;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* ===== Typography ===== */
h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.accent {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.logo span {
  font-weight: 700;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

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

.btn-nav {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: opacity var(--transition) !important;
}

.btn-nav:hover {
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(45, 212, 168, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(45, 212, 168, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(45, 212, 168, 0.3);
  border-radius: 100px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.03);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--bg-elevated);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.text-center + .stats-grid,
.text-center + .services-grid,
.text-center + .process-grid {
  margin-top: 64px;
}

h2.text-center {
  margin-bottom: 0;
}

.section-label + h2.text-center {
  margin-top: -16px;
}

/* ===== Split Layout ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.split-right p {
  margin-bottom: 20px;
}

.split-right p:last-child {
  margin-bottom: 0;
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: inline;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 12px;
  font-weight: 500;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(45, 212, 168, 0.2);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 0.95rem;
}

/* ===== Value List ===== */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.value-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}

.value-item h4 {
  color: var(--text);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.95rem;
}

/* ===== Testimonial ===== */
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-company {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  padding: 40px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}

.process-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.process-step h3 {
  color: var(--text);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
}

/* ===== CTA / Contact ===== */
.section-cta {
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(45, 212, 168, 0.06) 0%, transparent 60%),
    var(--bg);
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content > p {
  margin-bottom: 48px;
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-single {
  grid-template-columns: 1fr;
}

.contact-form select {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e73' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.contact-form select option {
  background: var(--bg-card);
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.contact-form textarea {
  margin-bottom: 16px;
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  font-size: 1rem;
  padding: 18px;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 12px;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ===== Team Page ===== */
.team-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(45, 212, 168, 0.08) 0%, transparent 70%);
}

.team-hero h1 {
  margin-top: 0;
}

.nav-active {
  color: var(--accent) !important;
}

/* Founder Card */
.founder-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}

.founder-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info .section-label {
  margin-bottom: 16px;
}

.founder-info h2 {
  margin-bottom: 24px;
}

.founder-info p {
  margin-bottom: 16px;
}

.founder-info p:last-child {
  margin-bottom: 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--bg-card) 0%, rgba(45, 212, 168, 0.05) 100%);
}

.placeholder-photo::after {
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .founder-card {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-image {
    max-width: 320px;
  }

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

  .team-hero {
    padding: 120px 0 60px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Training Pipeline ===== */
.pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pipeline-stage {
  display: grid;
  grid-template-columns: 56px 3px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
}

.pipeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.6s ease;
  position: relative;
  z-index: 1;
}

.pipeline-icon svg {
  width: 24px;
  height: 24px;
}

.pipeline-stage.active .pipeline-icon {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(45, 212, 168, 0.3), 0 0 40px rgba(45, 212, 168, 0.1);
}

.pipeline-connector {
  width: 3px;
  height: 100%;
  min-height: 80px;
  background: var(--border);
  position: relative;
  overflow: hidden;
  justify-self: center;
}

.pipeline-connector.last {
  background: transparent;
  min-height: 0;
  height: 0;
}

.pipeline-pulse {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0;
  animation: pipelinePulse 2.5s ease-in-out infinite;
}

.pipeline-stage:nth-child(1) .pipeline-pulse { animation-delay: 0s; }
.pipeline-stage:nth-child(2) .pipeline-pulse { animation-delay: 0.5s; }
.pipeline-stage:nth-child(3) .pipeline-pulse { animation-delay: 1s; }
.pipeline-stage:nth-child(4) .pipeline-pulse { animation-delay: 1.5s; }

@keyframes pipelinePulse {
  0% { top: -20px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: calc(100% + 20px); opacity: 0; }
}

.pipeline-info {
  padding: 12px 0 32px;
}

.pipeline-info h4 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1.05rem;
  transition: color 0.4s ease;
}

.pipeline-stage.active .pipeline-info h4 {
  color: var(--accent);
}

.pipeline-info p {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pipeline-stage {
    grid-template-columns: 44px 3px 1fr;
    gap: 16px;
  }

  .pipeline-icon {
    width: 44px;
    height: 44px;
  }

  .pipeline-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Interactive Fiber Cable ===== */
.fiber-cable-section {
  padding: 100px 0;
  background: var(--bg-elevated);
  overflow: hidden;
}

.fiber-cable-content {
  margin-bottom: 48px;
}

.fiber-cable-sub {
  max-width: 480px;
  margin: 16px auto 0;
  font-size: 1rem;
}

.fiber-cable-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  cursor: none;
}

.fiber-cable-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== Fiber Dividers ===== */
.fiber-divider {
  position: relative;
  height: 2px;
  overflow: hidden;
}

.fiber-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.fiber-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -100%;
  width: 80px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(3px);
  animation: fiberPulse 3s ease-in-out infinite;
}

@keyframes fiberPulse {
  0% { left: -80px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% + 80px); opacity: 0; }
}

/* ===== Glow Card Effects ===== */
.service-card,
.process-step {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(45, 212, 168, 0.06),
    transparent 40%
  );
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::before,
.process-step:hover::before {
  opacity: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(45, 212, 168, 0.15),
    transparent 40%
  );
  z-index: -1;
  pointer-events: none;
}

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

.service-card > *,
.process-step > * {
  position: relative;
  z-index: 1;
}

/* ===== Market Map ===== */
.map-subtitle {
  max-width: 500px;
  margin: 16px auto 0;
  font-size: 1rem;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 48px auto 0;
  aspect-ratio: 1.6 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.map-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

.map-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(22, 22, 22, 0.95);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.map-tooltip .tooltip-city {
  font-weight: 600;
  color: var(--accent);
}

.map-tooltip .tooltip-status {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot-hq {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(45, 212, 168, 0.8);
  transform: rotate(45deg);
  border-radius: 2px;
}

.legend-dot-active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(45, 212, 168, 0.6);
}

.legend-dot-available {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .map-wrapper {
    aspect-ratio: 1.4 / 1;
  }

  .map-legend {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

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

  .section {
    padding: 80px 0;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 32px 16px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero {
    padding: 100px 24px 60px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
  }
}
