:root {
  --bg: #FFFFFF;
  --surface: #F5F5F7;
  --surface-2: #FFFFFF;
  --accent: #0071E3;
  --accent-dim: rgba(0,113,227,0.08);
  --accent-hover: rgba(0,113,227,0.12);
  --text-primary: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-muted: #86868B;
  --border: #D2D2D7;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLL ANIMATIONS ── */
[data-animate] { opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-fade-up    { opacity: 1; transform: translateY(24px); }
.animate-fade-left  { opacity: 1; transform: translateX(24px); }
.animate-fade-right { opacity: 1; transform: translateX(-24px); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #0077ED; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,113,227,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,113,227,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust > span {
  font-size: 13px;
  color: var(--text-muted);
}
.trust-badges {
  display: flex;
  gap: 8px;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-secondary);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #0077ED;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,113,227,0.25);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); }
.btn-large { font-size: 18px; padding: 18px 36px; border-radius: var(--radius); }

/* Hero image */
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.05);
  background: var(--surface);
}
.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.hero-image-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* ── SECTIONS SHARED ── */
section { padding: 100px 32px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.18;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  max-width: 700px;
  margin-bottom: 56px;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--surface); }
.how-it-works-inner { max-width: 1200px; margin: 0 auto; }
.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.step-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--card-shadow);
}
.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: -2px;
  margin-bottom: 12px;
  line-height: 1;
}
.step-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.steps-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  background: var(--surface);
}
.steps-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ── SERVICES ── */
.services { background: var(--bg); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--card-shadow);
}
.service-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.service-card-cta {
  background: linear-gradient(135deg, var(--surface) 0%, var(--accent-dim) 100%);
  border-color: rgba(0,113,227,0.2);
}

/* ── INDUSTRIES ── */
.industries { background: var(--surface); }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--card-shadow);
}
.industry-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.industry-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.industry-card strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.industry-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── RESULTS ── */
.results { background: var(--bg); }
.results-inner { max-width: 1200px; margin: 0 auto; }
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.results-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  background: var(--surface);
  position: relative;
}
.results-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.results-image-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.results-stats { display: grid; gap: 32px; }
.stat-item {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.stat-label strong { color: var(--text-primary); font-weight: 600; }

/* ── VIDEO ── */
.video-section { background: var(--surface); }
.video-inner { max-width: 1200px; margin: 0 auto; }
.video-container { margin-bottom: 20px; }
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  box-shadow: var(--card-shadow);
}
.video-placeholder:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.video-play-btn {
  width: 72px; height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0,113,227,0.25);
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0,113,227,0.35);
}
.video-placeholder-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-secondary);
}
.video-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text-primary);
}
.closing-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
}
.closing-footnote {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── FOOTER ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
}
.footer-tagline { font-size: 14px; color: var(--text-secondary); }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { order: -1; }
  .hero-img { height: 300px; }
  .steps-layout { grid-template-columns: 1fr; }
  .steps-image { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-layout { grid-template-columns: 1fr; gap: 48px; }
  .results-image { order: -1; }
  .results-image img { height: 300px; }
}
@media (max-width: 768px) {
  section { padding: 72px 24px; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-primary { text-align: center; }
  .stat-num { font-size: 36px; }
  .closing-headline { font-size: 28px; }
}
@media (max-width: 480px) {
  section { padding: 56px 20px; }
  .industry-grid { grid-template-columns: 1fr; }
  .step-num { font-size: 28px; }
  .footer-links { flex-direction: column; }
}