:root {
  --navy: #020A30;
  --navy-2: #0A1547;
  --navy-3: #14205F;
  --blue: #2A6BFF;
  --blue-2: #4E8CFF;
  --blue-glow: #6AA1FF;
  --ink: #0B1220;
  --ink-2: #1B2440;
  --mute: #5B6479;
  --line: #E6E9F2;
  --bg: #FFFFFF;
  --bg-alt: #F5F7FC;
  --grad: linear-gradient(120deg, #4E8CFF 0%, #6AA1FF 45%, #B7CBFF 100%);
  --grad-strong: linear-gradient(120deg, #2A6BFF 0%, #4E8CFF 60%, #6AA1FF 100%);
  --shadow-sm: 0 2px 8px rgba(2, 10, 48, 0.06);
  --shadow-md: 0 12px 40px rgba(2, 10, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(2, 10, 48, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .display, .brand-text {
  font-family: 'Sora', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}

::selection { background: var(--navy); color: #fff; }

.grad-text {
  background: linear-gradient(120deg, #2A6BFF, #6AA1FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text-light {
  background: linear-gradient(120deg, #B7CBFF, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark .section-title { color: #fff; }

.text-white-70 { color: rgba(255,255,255,0.72) !important; }

.eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--blue-glow); }

.section-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--mute);
  margin-bottom: 20px;
}
.muted { color: var(--mute); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav-blur {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(2, 10, 48, 0.06);
  padding: 14px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: inset 0 -8px 20px rgba(106, 161, 255, 0.25);
}
.brand-text {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}
.brand-dot { color: var(--blue); }

.navbar .nav-link {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 8px 14px !important;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.navbar .nav-link:hover { color: var(--navy); background: rgba(2, 10, 48, 0.04); }
.navbar-toggler { border: 1px solid var(--line); color: var(--navy); }
.navbar-toggler:focus { box-shadow: none; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn { font-family: 'Sora', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
.btn-primary-navy {
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  border: 1px solid var(--navy);
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(2, 10, 48, 0.18);
}
.btn-primary-navy:hover {
  background: #050f47;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(2, 10, 48, 0.28);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 12px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--navy); border-radius: 999px; padding: 14px 28px; border: 0; box-shadow: 0 14px 30px rgba(255,255,255,0.15); }
.btn-white:hover { background: #F5F7FC; color: var(--navy); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; padding: 14px 24px;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); color: #fff; }

.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  padding-top: 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(78, 140, 255, 0.35), transparent 55%),
    linear-gradient(120deg, rgba(2,10,48,0.94) 0%, rgba(2,10,48,0.82) 55%, rgba(20,32,95,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  color: #fff;
  margin: 20px 0;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 12px var(--blue-glow);
  animation: blink 1.8s ease-in-out infinite;
}
.pill-light { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); color: #fff; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 720px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 700; line-height: 1; display: inline; }
.stat-plus { display: inline; font-family: 'Sora', sans-serif; color: var(--blue-glow); font-weight: 700; font-size: 1.1rem; margin-left: 2px; }
.stat > .stat-num + .stat-plus { display: inline-block; margin-top: -6px; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* Floating icons */
.floating {
  position: absolute;
  border-radius: 50%;
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(12px);
  z-index: 1;
  font-size: 22px;
  animation: floatY 6s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.floating-1 { top: 18%; right: 8%; animation-delay: 0s; }
.floating-2 { top: 32%; right: 22%; animation-delay: 1s; width: 52px; height: 52px; font-size: 18px; }
.floating-3 { top: 55%; right: 12%; animation-delay: 2s; }
.floating-4 { top: 72%; right: 26%; animation-delay: 3s; width: 54px; height: 54px; font-size: 20px; }
.floating-5 { top: 24%; right: 40%; animation-delay: 1.5s; width: 48px; height: 48px; font-size: 18px; }
.floating-6 { top: 62%; right: 42%; animation-delay: 2.5s; width: 50px; height: 50px; font-size: 18px; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
}
.hero-scroll span {
  display: block;
  width: 2px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  margin: 0 auto 8px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%{transform:scaleY(0.3);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0.3);transform-origin:bottom} }

@media (max-width: 767px) {
  .floating-1, .floating-2, .floating-3, .floating-4, .floating-5, .floating-6 { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* =========================================================
   PLACEHOLDER BLOCK
   ========================================================= */
.ph-block {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(78, 140, 255, 0.08), rgba(2, 10, 48, 0.04)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(2,10,48,0.03) 12px 13px);
  border: 1px dashed rgba(2, 10, 48, 0.15);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.ph-label {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 10px;
}
.ph-label i { color: var(--blue); }
.ratio-4x3 { aspect-ratio: 4/3; }
.ratio-1x1 { aspect-ratio: 1/1; }
.ph-block.glass { background: rgba(255,255,255,0.6); backdrop-filter: blur(14px); border-color: rgba(255,255,255,0.5); }

/* =========================================================
   WHAT SECTION
   ========================================================= */
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--ink-2); font-weight: 500; }
.check-list i { color: var(--blue); font-size: 1.1rem; }

.what-visual { position: relative; }
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  min-width: 200px;
  animation: floatY 6s ease-in-out infinite;
}
.floating-card i {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.fc-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.fc-sub { font-size: 0.78rem; color: var(--mute); }
.f-card-1 { top: 10%; left: -20px; }
.f-card-2 { bottom: 10%; right: -20px; animation-delay: 1.5s; }
@media (max-width: 767px) { .floating-card { position: static; margin-top: 14px; } }

/* =========================================================
   FEATURE CARDS
   ========================================================= */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(78, 140, 255, 0.3);
}
.feature-card::after {
  content: \"\";
  position: absolute; inset: auto -30% -60% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(78, 140, 255, 0.14), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.feature-card:hover::after { opacity: 1; }
.fc-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(2, 10, 48, 0.25);
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { color: var(--mute); margin: 0; font-size: 0.95rem; }

/* =========================================================
   ALIGNMENT CARDS
   ========================================================= */
.align-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.align-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.align-card-featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}
.align-card-featured h3, .align-card-featured p, .align-card-featured ul { color: #fff; }
.align-card-featured p { color: rgba(255,255,255,0.75); }
.align-card-featured .align-badge { background: rgba(255,255,255,0.14); color: #fff; }
.align-card-featured ul li { color: rgba(255,255,255,0.85); }
.align-card-featured ul li::before { color: var(--blue-glow); }

.align-badge {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(78, 140, 255, 0.12); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.align-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.align-card p { color: var(--mute); margin-bottom: 18px; }
.align-card ul { list-style: none; padding: 0; margin: 0; }
.align-card ul li { padding: 6px 0 6px 22px; position: relative; font-size: 0.95rem; color: var(--ink-2); }
.align-card ul li::before { content: \"▸\"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* =========================================================
   LAB SETUP (dark)
   ========================================================= */
.section-dark .ph-block {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px dashed rgba(255,255,255,0.2);
}
.section-dark .ph-label { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.15); backdrop-filter: blur(10px); }
.section-dark .ph-label i { color: var(--blue-glow); }

.progress-list { margin-top: 24px; }
.pl-item { display: flex; justify-content: space-between; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 18px; font-size: 0.92rem; }
.pl-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; margin-top: 8px; }
.pl-fill {
  height: 100%;
  background: var(--grad-strong);
  width: 0;
  border-radius: 999px;
  animation: fillBar 1.4s ease-out forwards;
}
@keyframes fillBar { to { width: var(--w); } }

/* =========================================================
   EQUIPMENT TILES
   ========================================================= */
.eq-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.eq-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(78, 140, 255, 0.3); }
.eq-tile i {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s ease;
}
.eq-tile:hover i { transform: scale(1.15) rotate(-4deg); color: var(--navy); }
.eq-tile h4 { font-size: 1.05rem; margin-bottom: 8px; }
.eq-tile p { color: var(--mute); font-size: 0.86rem; margin: 0; }

/* =========================================================
   AI SECTION
   ========================================================= */
.section-ai {
  background:
    radial-gradient(circle at 90% 30%, rgba(78,140,255,0.08), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(2,10,48,0.05), transparent 60%),
    #FAFBFF;
}
.ai-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.ai-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.25s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.ai-chip i { color: var(--blue); }
.ai-chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-3px); }
.ai-chip:hover i { color: var(--blue-glow); }

.ai-visual { position: relative; padding: 30px; }
.ai-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78,140,255,0.28), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.ai-visual .ph-block { position: relative; z-index: 1; }
.orbit {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  animation: orbit 8s linear infinite;
  z-index: 2;
}
.orbit-1 { top: 8%; left: 6%; animation-delay: 0s; }
.orbit-2 { bottom: 12%; left: -10px; animation-delay: 2s; }
.orbit-3 { top: 40%; right: -10px; animation-delay: 4s; }
@keyframes orbit { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

/* =========================================================
   MASONRY GALLERY
   ========================================================= */
.masonry {
  columns: 3 320px;
  column-gap: 18px;
}
.mason-item {
  display: block;
  break-inside: avoid;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  text-decoration: none;
}
.mason-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.mason-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.mason-item:hover img { transform: scale(1.06); }
.mason-cap {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(2, 10, 48, 0.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; gap: 8px;
}
.mason-cap i { color: var(--blue-glow); }

/* =========================================================
   SAFETY
   ========================================================= */
.safety-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.safety-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.safety-tile i { color: var(--blue); font-size: 26px; margin-bottom: 14px; display: block; }
.safety-tile h4 { font-size: 1.1rem; margin-bottom: 8px; }
.safety-tile p { color: var(--mute); margin: 0; font-size: 0.92rem; }

/* =========================================================
   TRAINING LIST
   ========================================================= */
.training-list { margin-top: 24px; }
.tl-item {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  min-width: 44px;
}
.tl-item h5 { font-size: 1.05rem; margin-bottom: 4px; }
.tl-item p { color: var(--mute); margin: 0; font-size: 0.92rem; }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefit-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
}
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(106,161,255,0.5); background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)); }
.bc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.bc-head i {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(78,140,255,0.4);
}
.bc-head h3 { color: #fff; margin: 0; font-size: 1.4rem; }
.benefit-card ul { list-style: none; padding: 0; margin: 0; }
.benefit-card ul li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.benefit-card ul li:first-child { border-top: 0; }
.benefit-card ul li::before {
  content: \"✓\";
  position: absolute; left: 0;
  color: var(--blue-glow);
  font-weight: 700;
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
}
.tl-line {
  position: absolute;
  top: 60px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-2) 50%, transparent 100%);
  z-index: 0;
}
.tl-step { position: relative; z-index: 1; text-align: center; }
.tl-dot {
  width: 68px; height: 68px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  color: var(--blue);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(78,140,255,0.25);
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.tl-step:hover .tl-dot { background: var(--navy); color: #fff; border-color: var(--navy); transform: scale(1.08); }
.tl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.tl-step:hover .tl-card { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tl-step-num {
  font-family: 'Sora', sans-serif;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tl-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.tl-card p { color: var(--mute); font-size: 0.9rem; margin: 0; }

@media (max-width: 991px) {
  .timeline { grid-template-columns: 1fr; }
  .tl-line { display: none; }
  .tl-step { display: flex; align-items: flex-start; text-align: left; gap: 18px; }
  .tl-dot { margin: 0; flex-shrink: 0; width: 56px; height: 56px; font-size: 20px; }
  .tl-card { flex: 1; }
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  padding: 22px 26px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  background: #fff;
  box-shadow: none !important;
  border-radius: var(--radius) !important;
}
.faq-accordion .accordion-button:not(.collapsed) { background: #fff; color: var(--navy); }
.faq-accordion .accordion-button::after {
  background-image: none;
  content: \"+\";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue);
  width: 30px; height: 30px;
  border-radius: 50%;
  background-color: rgba(78,140,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: \"−\";
  background-color: var(--navy);
  color: #fff;
  transform: rotate(0);
}
.faq-accordion .accordion-body {
  padding: 0 26px 24px;
  color: var(--mute);
  font-size: 0.98rem;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #020A30 0%, #0A1547 45%, #14205F 100%);
  color: #fff;
  overflow: hidden;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(78,140,255,0.28), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(183,203,255,0.15), transparent 40%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 40px 40px;
  opacity: 0.7;
}
.cta-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  color: #fff;
  margin: 24px 0 16px;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 36px;
}
.cta-contact {
  margin-top: 42px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 26px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.cta-contact i { color: var(--blue-glow); margin-right: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #010720;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.site-footer .brand-mark { background: rgba(255,255,255,0.08); }
.site-footer .brand-text { color: #fff; }
.site-footer h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer-about { max-width: 380px; margin-bottom: 24px; font-size: 0.95rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}
.footer-links a:hover { color: #fff; }
.footer-contact li { padding: 6px 0; font-size: 0.92rem; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--blue-glow); margin-top: 4px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s ease;
  text-decoration: none;
}
.social-row a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.footer-hr { border-color: rgba(255,255,255,0.08); margin: 40px 0 20px; }
.copy, .legal { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.legal a { color: rgba(255,255,255,0.5); text-decoration: none; margin: 0 4px; }
.legal a:hover { color: #fff; }

/* =========================================================
   MODAL
   ========================================================= */
.consult-modal {
  border-radius: var(--radius-lg);
  border: 0;
  box-shadow: var(--shadow-lg);
}
.consult-modal .modal-header { padding: 26px 26px 0; }
.consult-modal .modal-body { padding: 20px 26px 30px; }
.consult-modal .modal-title { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.4rem; }
.modal-sub { color: var(--mute); font-size: 0.9rem; margin-top: 4px; }
.consult-modal .form-label { font-family: 'Sora', sans-serif; font-weight: 500; font-size: 0.88rem; color: var(--ink-2); }
.consult-modal .form-control {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.consult-modal .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(78,140,255,0.12);
}
.modal-fine { font-size: 0.78rem; color: var(--mute); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .section { padding: 80px 0; }
  .cta-section { padding: 90px 0; }
}
@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .hero-title { margin-top: 14px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .cta-title { font-size: 2rem; }
  .brand-text { font-size: 1rem; }
  .nav-blur { padding: 10px 0; }
  .navbar-collapse {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-top: 10px;
    box-shadow: var(--shadow-md);
  }
}
