@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=gambarino@400&display=swap');

:root {
  --bg: #FBFEF9;
  --surface: #FFFFFF;
  --surface-hover: #F8FAFC;
  --dark: #191923;
  --text: #191923;
  --gray: #6B7280;
  --gray-light: #4B5563;
  --border: #E5E7EB;
  --accent: #0E79B2;
  --accent-dim: rgba(14, 121, 178, 0.1);
  --accent-mid: rgba(14, 121, 178, 0.2);
  --accent-glow: rgba(14, 121, 178, 0.4);
  --accent-glow-strong: rgba(14, 121, 178, 0.8);
  --font: 'Inter', sans-serif;
  --font-heading: 'Gambarino', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: var(--font);
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .cta-headline, .nav-logo {
  font-family: var(--font-heading);
  font-weight: normal !important;
  letter-spacing: 0 !important;
}

/* CONTAINER */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px; font-weight: normal !important; border-radius: 8px;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--accent); color: #fff; padding: 12px 24px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
  background: #095F8E; box-shadow: 0 0 40px var(--accent-glow-strong); transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--text); padding: 12px 24px;
  border: 1px solid var(--accent);
}
.btn-ghost:hover {
  background: var(--accent-dim); border-color: var(--accent); transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-xl { padding: 20px 40px; font-size: 18px; border-radius: 12px; }
.btn-pill { border-radius: 100px !important; }

/* CURSOR GLOW */
#cursor-glow {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 121, 178, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  transition: left 0.1s linear, top 0.1s linear;
  display: none;
}

/* PAGE DROP LINE */
.page-drop-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(14, 121, 178, 0.2) 0,
    rgba(14, 121, 178, 0.2) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
  pointer-events: none;
}
.line-left { left: max(24px, calc(50% - 620px)); }
.line-right { right: max(24px, calc(50% - 620px)); }
.drop-particle {
  position: absolute;
  top: 0;
  left: 0; /* Align perfectly with the 1px line */
  width: 1px;
  height: 100px;
  background: var(--accent);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--accent-glow-strong), 0 0 20px var(--accent);
  animation: dropDown 30s linear infinite;
}
@keyframes dropDown {
  0% { top: 0; opacity: 0; }
  1% { opacity: 1; }
  99% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (min-width: 1024px) { #cursor-glow { display: block; } }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all var(--transition);
  padding: 24px 0;
  border-bottom: 1px solid rgba(14, 121, 178, 0.1);
}
.nav-crosshair {
  position: absolute;
  bottom: -4px; /* Center a 9x9 cross on a 1px border */
  width: 9px;
  height: 9px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.nav-crosshair.left { left: max(24px, calc(50% - 620px)); margin-left: -4px; }
.nav-crosshair.right { right: max(24px, calc(50% - 620px)); margin-right: -4px; }
.nav-crosshair::before, .nav-crosshair::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.nav-crosshair::before { top: 4px; left: 0; width: 9px; height: 1px; }
.nav-crosshair::after { left: 4px; top: 0; width: 1px; height: 9px; }

.nav.scrolled .nav-crosshair {
  opacity: 0;
  pointer-events: none;
}

.nav.scrolled {
  background: rgba(251, 254, 249, 0.85); backdrop-filter: blur(12px);
  padding: 16px 0;
}
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; justify-self: start; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.nav .logo-img { filter: invert(1) brightness(0.2); }
.footer .logo-img { filter: none; }
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 32px; justify-self: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-light); transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-cta { justify-self: end; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; justify-self: end; }
.hamburger span { width: 100%; height: 2px; background: var(--text); transition: var(--transition); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg);
  z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link { font-size: 24px; font-weight: 600; color: var(--text); }

@media (max-width: 900px) {
  .nav-inner { display: flex; justify-content: space-between; width: 100%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* HERO */
.hero {
  position: relative; padding: 180px 0 120px; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background-image: 
    linear-gradient(rgba(14, 121, 178, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 121, 178, 0.15) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  animation: gridMove 20s linear infinite;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg) 80%);
  pointer-events: none; z-index: 0;
}
@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.shape {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
  animation: float 10s infinite ease-in-out alternate;
}
.shape-1 { width: 300px; height: 300px; background: var(--accent); top: 10%; left: -100px; opacity: 0.1; }
.shape-2 { width: 400px; height: 400px; background: #0E79B2; bottom: -100px; right: -100px; animation-delay: -3s; opacity: 0.1; }
.shape-3 { width: 200px; height: 200px; background: var(--accent); top: 40%; right: 20%; animation-delay: -6s; opacity: 0.1; }

@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(30px, 50px); } }

.hero .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-tag-pill {
  display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600;
  color: #fff; background: #191923; padding: 8px 24px; border-radius: 100px;
  border: 1px solid var(--accent); margin-bottom: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.tag-avatars { display: flex; align-items: center; }
.tag-av { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid var(--surface); }
.tag-text { display: inline-block; }

.hero-title { font-size: clamp(36px, 5vw, 64px); line-height: 1.25; font-weight: 700; margin-bottom: 24px; max-width: 1100px; letter-spacing: -1px; color: var(--text); }
.hero-title em { font-style: normal; color: var(--accent); position: relative; }
.hero-sub { font-size: 18px; color: var(--gray-light); max-width: 760px; margin-bottom: 32px; line-height: 1.7; text-align: center; margin-left: auto; margin-right: auto; }
.hero-quote { font-style: italic; font-size: 17px; color: var(--gray); margin-bottom: 48px; max-width: 600px; text-align: center; margin-left: auto; margin-right: auto; }
.quote-mark { font-family: var(--font-heading); color: var(--accent); font-size: 24px; line-height: 0; position: relative; top: 5px; margin: 0 2px; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }

.hero-proof-tags { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.proof-tag { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text); }
.proof-tag svg {
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
}

.hero-video-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 48px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: var(--dark);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-tag-pill { font-size: 11px; padding: 10px 20px; border-radius: 24px !important; text-align: center; line-height: 1.4; height: auto; }
  .hero-video-wrapper { aspect-ratio: 16/9; border-radius: 12px; }
}

/* SECTIONS */
.section { padding: 80px 0; position: relative; border-top: 1px solid var(--border); }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.section-title { font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; letter-spacing: -1px; }
.section-sub { font-size: 18px; color: var(--gray-light); max-width: 700px; margin-bottom: 64px; line-height: 1.6; }

/* WHY US GRID */
.problem-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 0; 
  margin-bottom: 48px; 
  border-top: 1px dashed rgba(14, 121, 178, 0.3);
  border-bottom: 1px dashed rgba(14, 121, 178, 0.3);
}

.grid-cell {
  position: relative;
  padding: 32px;
  border-right: 1px dashed rgba(14, 121, 178, 0.3);
}
.grid-cell:first-child {
  border-left: 1px dashed rgba(14, 121, 178, 0.3);
}

.problem-card {
  display: flex;
  flex-direction: column;
  background: #191923; 
  border: 1px solid rgba(14, 121, 178, 0.1); 
  border-radius: var(--radius-lg); 
  padding: 48px 40px;
  height: 100%;
  transition: var(--transition);
}
.problem-card:hover { 
  transform: translateY(-4px); 
  border-color: var(--accent-mid); 
  box-shadow: 0 10px 40px rgba(14, 121, 178, 0.05); 
}

/* Photoshop Style Crosses on the Grid Cells */
.cross { position: absolute; width: 10px; height: 10px; z-index: 10; pointer-events: none; }
.cross::before, .cross::after { content: ''; position: absolute; background: var(--accent); }
.cross::before { width: 10px; height: 1px; top: 4px; left: 0; }
.cross::after { width: 1px; height: 10px; top: 0; left: 4px; }

.grid-cell .cross.tl { top: -5px; left: -5px; }
.grid-cell .cross.tr { top: -5px; right: -5px; }
.grid-cell .cross.bl { bottom: -5px; left: -5px; }
.grid-cell .cross.br { bottom: -5px; right: -5px; }

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; border: none; gap: 24px; }
  .grid-cell { border: none; padding: 0; }
  .grid-cell:first-child { border: none; }
  .cross { display: none; }
}
.problem-icon { 
  width: 48px; height: 48px; 
  background: transparent; 
  border: 1px solid rgba(14, 121, 178, 0.2); 
  color: var(--accent); 
  border-radius: 8px; 
  display: flex; align-items: center; justify-content: center; 
  margin-bottom: 24px; 
}
.problem-icon svg { width: 22px; height: 22px; }
.problem-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 400; margin-bottom: 12px; color: #fff; letter-spacing: -0.5px; }
.problem-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 32px; flex-grow: 1; }

.card-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 24px; }
.card-feature-list { display: flex; flex-direction: column; gap: 16px; list-style: none; padding: 0; margin: 0; }
.card-feature-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }
.card-feature-list li svg { width: 20px; height: 20px; background-color: var(--accent); color: #ffffff; border-radius: 50%; padding: 4px; box-sizing: border-box; }
.problem-bottom { font-size: 18px; font-weight: 500; color: var(--text); text-align: center; max-width: 800px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 48px; }

/* COMPARISON */
.comparison-section { background: #FBFEF9; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.compare-card { display: flex; flex-direction: column; border-radius: 12px; padding: 32px; }
.compare-without { background: #ffffff; }
.compare-with { background: #191923; color: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.compare-title { font-family: var(--font-heading); font-size: 26px; font-weight: 400; margin-bottom: 24px; letter-spacing: -0.5px; }
.compare-without .compare-title { color: var(--text); }
.compare-with .compare-title { color: #fff; }

.compare-list-wrapper { border-radius: 8px; overflow: hidden; }
.compare-without .compare-list-wrapper { background: rgba(0,0,0,0.03); }
.compare-with .compare-list-wrapper { background: transparent; }

.compare-list { display: flex; flex-direction: column; list-style: none; padding: 0; margin: 0; }
.compare-without .compare-list li { display: flex; align-items: center; gap: 16px; font-size: 16px; line-height: 1.5; padding: 20px 24px; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--gray); }
.compare-with .compare-list li { display: flex; align-items: center; gap: 16px; font-size: 16px; line-height: 1.5; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.9); }
.compare-list li:last-child { border-bottom: none; }

.x-icon { color: var(--gray-light); font-weight: normal; text-decoration: none; display: flex; }
.x-icon svg { width: 22px; height: 22px; stroke-width: 2px; background: #ffffff; border-radius: 50%; padding: 4px; box-sizing: border-box; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.check-icon { display: flex; color: #fff; }
.check-icon svg { width: 22px; height: 22px; stroke-width: 2px; background: var(--accent); border-radius: 50%; padding: 4px; box-sizing: border-box; }

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

/* THE SYSTEM */
.system-section { border-top: none; }
.system-section .container {
  background: #FBFEF9;
  border-radius: 0;
  padding: 80px 48px;
  color: var(--text);
  border-left: 1px dashed rgba(14, 121, 178, 0.3);
  border-right: 1px dashed rgba(14, 121, 178, 0.3);
}
.system-section .section-title { color: var(--text); }
.system-section .section-sub { color: var(--gray); }

.system-stages { display: flex; flex-direction: column; gap: 32px; }

.stage-item { 
  position: relative;
  overflow: hidden;
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 48px; 
  background: #191923; 
  padding: 48px; 
  border-radius: var(--radius-lg); 
  border: none; 
  transition: var(--transition); 
}
.stage-item::before,
.timeline-content::before,
.testimonial-card::before,
.about-stat::before,
.compare-with::before,
.final-cta .container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 256px 256px, 64px 64px, 64px 64px;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Crect x='64' y='64' width='64' height='64' fill='rgba(255,255,255,0.015)'/%3E%3Crect x='192' y='0' width='64' height='64' fill='rgba(255,255,255,0.02)'/%3E%3Crect x='0' y='192' width='64' height='64' fill='rgba(255,255,255,0.015)'/%3E%3Crect x='128' y='128' width='64' height='64' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E"),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}
.compare-with, .testimonial-card, .about-stat { position: relative; }
.stage-item:hover { box-shadow: 0 10px 40px rgba(14, 121, 178, 0.3); transform: translateY(-4px); }

.stage-text { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }

.stage-badge { 
  display: inline-block; 
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; 
  background: #0E79B2; 
  color: #FBFEF9; 
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.stage-title { font-family: var(--font-heading); font-size: 32px; font-weight: 400; margin-bottom: 16px; color: #fff; letter-spacing: -1px; }

.stage-item p { position: relative; z-index: 1; font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 32px; max-width: 500px; }

.stage-features { position: relative; z-index: 1; list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.stage-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }
.stage-features li .check-icon { display: flex; color: #FBFEF9; } 
.stage-features li .check-icon svg { width: 20px; height: 20px; stroke-width: 2.5px; background: #0E79B2; border-radius: 50%; padding: 3px; box-sizing: border-box; }

.stage-image-box { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; background: transparent; padding: 0; border: none; }
.stage-img { width: 100%; height: auto; display: block; border-radius: 8px; transform: scale(1.15); transform-origin: center; }

@media (max-width: 900px) {
  .stage-item { grid-template-columns: 1fr; padding: 32px; }
  .stage-img { transform: scale(1); }
}

/* Visual Mockups */
.stage-visual { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; justify-content: center; min-height: 120px; }
.flow-diagram { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.flow-node { background: rgba(255,255,255,0.05); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; border: 1px solid rgba(255,255,255,0.1); }
.flow-you { border-color: var(--accent); color: var(--accent); }
.flow-arrow { color: rgba(255,255,255,0.5); font-weight: bold; }

.sequence-diagram { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 400px; }
.seq-item { display: flex; align-items: center; justify-content: center; gap: 16px; background: rgba(255,255,255,0.05); color: #fff; padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.seq-day { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; }
.seq-msg { font-size: 14px; font-weight: 500; }
.seq-cta { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }

.calendar-mock { flex-direction: column; align-items: stretch; gap: 16px; max-width: 400px; color: #fff; }
.cal-header { display: flex; justify-content: space-between; font-weight: 600; font-size: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cal-live { color: #34D399; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.cal-booking { display: flex; flex-direction: column; gap: 8px; }
.cal-slot { display: flex; align-items: center; gap: 16px; padding: 12px; background: rgba(255,255,255,0.05); border-radius: 8px; font-size: 13px; }
.cal-slot.booked { border-left: 3px solid var(--accent); }
.slot-name { font-weight: 500; flex-grow: 1; }
.slot-badge { background: var(--accent); color: #fff; padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 700; text-transform: uppercase; }

@media (max-width: 768px) {
  .system-section .container { padding: 40px 24px; }
  .stage-item { grid-template-columns: 1fr; padding: 32px 24px; }
  .stage-left { display: none; }
}

/* PROOF */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-bottom: 48px; }
.video-card { display: flex; flex-direction: column; gap: 16px; }
.video-placeholder {
  aspect-ratio: 9/16; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  position: relative; overflow: hidden; cursor: pointer; transition: var(--transition);
}
.video-placeholder:hover { border-color: var(--accent); transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
.video-play svg { width: 24px; height: 24px; color: #fff; margin-left: 4px; }
.video-placeholder:hover .video-play { background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.1); }
.video-placeholder:hover .video-play svg { color: #fff; }
.video-scan { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); opacity: 0.5; animation: scan 3s infinite linear; }
@keyframes scan { 0% { top: 0; } 100% { top: 100%; } }
.video-corner { position: absolute; width: 20px; height: 20px; border: 2px solid var(--border); transition: var(--transition); }
.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }
.video-placeholder:hover .video-corner { border-color: var(--accent); }
.video-label { font-size: 14px; color: var(--gray-light); text-align: center; font-weight: 500; }
.proof-bottom { text-align: center; font-size: 16px; color: var(--gray); font-style: italic; }

/* HOW IT WORKS TIMELINE */
.timeline-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1000px;
  margin: 80px auto 48px auto;
}
.timeline-main-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(14, 121, 178, 0.15);
  z-index: 1;
}
.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--accent);
  height: 0%; /* updated via JS */
  box-shadow: 0 0 15px var(--accent-glow-strong);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}
.timeline-node {
  justify-self: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FBFEF9;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.node-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(14, 121, 178, 0.15);
  color: var(--accent);
  border-radius: 12px;
  margin-bottom: 24px;
}
.timeline-icon svg { width: 24px; height: 24px; }
.timeline-content {
  position: relative;
  background: #191923;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.timeline-content:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.2); }
.timeline-item.left { text-align: right; }
.timeline-item.right { text-align: left; }
.timeline-item.left .timeline-content { grid-column: 1; }
.timeline-item.left .timeline-node { grid-column: 2; }
.timeline-item.right .timeline-node { grid-column: 2; }
.timeline-item.right .timeline-content { grid-column: 3; }

.timeline-connector {
  position: absolute;
  top: 50%;
  width: 60px;
  border-bottom: 2px dotted rgba(14, 121, 178, 0.4);
}
.timeline-item.left .timeline-connector { right: -60px; transform-origin: left center; }
.timeline-item.right .timeline-connector { left: -60px; transform-origin: right center; }

/* Timeline Reveal Animation */
.timeline-content, .timeline-node, .timeline-connector {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.timeline-item.left .timeline-content { transform: translateX(-30px); }
.timeline-item.right .timeline-content { transform: translateX(30px); }
.timeline-node { transform: scale(0.5); }
.timeline-item.left .timeline-connector { transform: translateY(-50%) scaleX(0); }
.timeline-item.right .timeline-connector { transform: translateY(-50%) scaleX(0); }

.timeline-item.active .timeline-content,
.timeline-item.active .timeline-node {
  opacity: 1;
  transform: none;
}
.timeline-item.active .timeline-connector {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.timeline-content h3 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 12px; font-weight: 400; color: #fff; letter-spacing: -0.5px; }
.timeline-content p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

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

@media (max-width: 768px) {
  .timeline-wrapper { gap: 40px; margin: 40px auto; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 0; }
  .timeline-main-line { left: 30px; transform: translateX(-50%); }
  .timeline-item.left, .timeline-item.right { text-align: left; }
  .timeline-item.left .timeline-content, .timeline-item.right .timeline-content { grid-column: 2; padding: 24px; }
  .timeline-item.left .timeline-node, .timeline-item.right .timeline-node { grid-column: 1; justify-self: center; }
  .timeline-connector { width: 30px; }
  .timeline-item.left .timeline-connector, .timeline-item.right .timeline-connector { left: -30px; right: auto; transform-origin: left center; }
}

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { font-size: 17px; color: var(--gray-light); margin-bottom: 24px; line-height: 1.7; }
.founder-cards { display: flex; gap: 24px; margin-top: 40px; }
.founder-card { display: flex; align-items: center; gap: 16px; }
.founder-av { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; object-fit: cover; }
.av-gk { background: linear-gradient(135deg, var(--accent), #095F8E); }
.av-ds { background: linear-gradient(135deg, #34D399, #059669); }
.founder-name { font-weight: 600; font-size: 16px; color: var(--text); }
.founder-role { font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

.about-right { display: flex; flex-direction: column; gap: 32px; }
.testimonial-card { background: #191923; padding: 40px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.05); }
.testimonial-stars { color: var(--accent); font-size: 20px; margin-bottom: 16px; letter-spacing: 4px; }
.testimonial-quote { font-size: 18px; font-style: italic; color: #fff; line-height: 1.6; margin-bottom: 24px; }
.testimonial-author { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); }
.about-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-stat { background: #191923; padding: 24px 16px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.05); text-align: center; }
.about-stat-num { display: block; font-size: 32px; font-weight: 800; color: var(--accent); margin-bottom: 8px; line-height: 1; }
.about-stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

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

/* FAQ TIMELINE GRID */
.faq-grid { display: grid; grid-template-columns: 400px 1fr; gap: 64px; max-width: 1100px; margin: 0 auto; align-items: start; }
.faq-left .section-label { text-align: left; margin: 0 0 16px 0; justify-content: flex-start; }
.faq-left .section-title { font-family: var(--font-heading); font-size: 40px; margin-bottom: 16px; color: #191923; letter-spacing: -0.5px; }
.faq-left .section-sub { font-size: 16px; color: var(--gray); line-height: 1.6; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #F5F6F8; border-radius: 8px; overflow: hidden; transition: background 0.3s ease; border: 1px solid rgba(0,0,0,0.02); }
.faq-item:hover { background: #EDEDED; }
.faq-q { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); font-size: 19px; font-weight: 400; color: #191923; text-align: left; letter-spacing: -0.2px; }
.faq-icon { width: 28px; height: 28px; background: #191923; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; font-weight: 300; transition: transform 0.3s ease, background 0.3s ease; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 24px 24px 24px; color: var(--gray); font-size: 15px; line-height: 1.6; }

.faq-item.open { background: #EDEDED; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); }
.faq-item.open .faq-a { max-height: 300px; }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* FINAL CTA */
.final-cta { padding: 120px 0; position: relative; text-align: center; overflow: hidden; border-top: none; }
.final-cta .container {
  background: #191923;
  border-radius: 24px;
  padding: 80px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-orb-1 { position: absolute; width: 600px; height: 600px; background: var(--accent); border-radius: 50%; filter: blur(120px); opacity: 0.15; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-headline { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; color: #fff; }
.cta-headline em { font-style: normal; color: var(--accent); }
.cta-sub { font-size: 18px; color: rgba(255, 255, 255, 0.7); max-width: 600px; margin-bottom: 48px; line-height: 1.6; }
.cta-note { font-size: 14px; color: rgba(255, 255, 255, 0.5); margin-top: 16px; }

@media (max-width: 768px) {
  .final-cta .container { padding: 40px 24px; }
}

/* FOOTER */
.footer { border-top: none; padding: 80px 0 40px; background: var(--dark); color: #fff; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 64px; margin-bottom: 64px; }
.footer-brand { max-width: 320px; }
.footer-brand .nav-logo, .footer-brand .nav-logo span { color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 24px 0; line-height: 1.6; }
.footer-socials { display: flex; flex-direction: column; gap: 16px; }
.footer-socials a { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-socials a:hover { color: #fff; }
.footer-socials svg { width: 20px; height: 20px; color: var(--accent); }
.footer-links-grid { display: flex; gap: 80px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(255,255,255,0.5); }

/* ANIMATIONS */
.fade-up, .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible, .reveal.visible { opacity: 1; transform: translateY(0); }

video:fullscreen { object-fit: contain !important; }
video:-webkit-full-screen { object-fit: contain !important; }
