:root {
  --bg: #07121f;
  --bg-soft: #0c1c2e;
  --card: #10233a;
  --card-2: #0e1f33;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eaf2fb;
  --muted: #93a4b8;
  --accent: #22d389;
  --accent-2: #2fb6ff;
  --grad: linear-gradient(100deg, #22d389 0%, #2fb6ff 100%);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section { padding: 92px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #06222e; box-shadow: 0 12px 30px rgba(34, 211, 137, 0.28); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(34, 211, 137, 0.4); }
.btn-ghost { background: rgba(255, 255, 255, 0.05); border-color: var(--line); color: var(--text); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-accent { background: var(--grad); color: #06222e; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(7, 18, 31, 0.8); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--grad); color: #06222e; }
.brand-text b { color: var(--accent); font-weight: 800; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s ease; }

/* Hero */
.hero { position: relative; padding: 76px 0 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; }
.orb-1 { width: 460px; height: 460px; background: #0f6b58; top: -120px; left: -100px; }
.orb-2 { width: 420px; height: 420px; background: #15548a; bottom: -140px; right: -80px; }
.orb-3 { width: 260px; height: 260px; background: #1b8f6a; top: 40%; left: 45%; opacity: 0.18; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-bottom: 40px; }
.hero-copy h1 { font-size: clamp(34px, 5.2vw, 58px); line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 22px; }
.lede { color: var(--muted); font-size: 18px; line-height: 1.65; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.trust { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 0; }
.trust li { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 14px; }
.trust svg { color: var(--accent); }

.hero-media { position: relative; }
.hero-card { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero-card img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.float-chip { position: absolute; display: flex; align-items: center; gap: 11px; background: rgba(9, 22, 38, 0.92); border: 1px solid var(--line); border-radius: 14px; padding: 11px 15px; backdrop-filter: blur(8px); box-shadow: 0 14px 34px rgba(0,0,0,0.4); animation: bob 5s ease-in-out infinite; }
.float-chip b { display: block; font-size: 15px; }
.float-chip small { color: var(--muted); font-size: 12px; }
.float-chip-top { top: 22px; left: -26px; }
.float-chip-bot { bottom: 26px; right: -20px; animation-delay: 2.4s; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.dot-green { background: var(--accent); box-shadow: 0 0 0 0 rgba(34, 211, 137, 0.6); animation: pulse 2.2s ease-out infinite; }
.chip-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(34, 211, 137, 0.14); color: var(--accent); flex: none; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34, 211, 137, 0.6); } 70% { box-shadow: 0 0 0 12px rgba(34, 211, 137, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 211, 137, 0); } }

/* Stats */
.stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; border-top: 1px solid var(--line); }
.stat { text-align: center; }
.stat b { display: block; font-size: 34px; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 14px; }

/* Finance cards */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.fin-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.fin-card:hover { transform: translateY(-6px); border-color: rgba(34, 211, 137, 0.4); }
.fin-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.fin-body { padding: 26px 26px 30px; }
.tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: rgba(34, 211, 137, 0.12); border: 1px solid rgba(34, 211, 137, 0.25); padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; }
.fin-body h3 { font-size: 22px; margin-bottom: 10px; }
.fin-body p { color: var(--muted); font-size: 15px; margin: 0; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 60px; }
.service { display: flex; gap: 16px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform 0.2s ease, border-color 0.2s ease; }
.service:hover { transform: translateY(-4px); border-color: rgba(47, 182, 255, 0.4); }
.service-icon { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(47, 182, 255, 0.12); color: var(--accent-2); }
.service h3 { font-size: 18px; margin-bottom: 7px; }
.service p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* Chart card */
.chart-card { background: var(--card-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.chart-head { margin-bottom: 30px; }
.chart-head h3 { font-size: 22px; margin-bottom: 8px; }
.chart-head p { color: var(--muted); margin: 0; }
.chart-bars { display: flex; flex-direction: column; gap: 24px; margin-bottom: 34px; }
.bar-row { display: grid; grid-template-columns: 170px 1fr; align-items: center; gap: 16px; }
.bar-label { color: var(--muted); font-size: 14px; font-weight: 500; }
.bar-track { height: 34px; background: rgba(255, 255, 255, 0.05); border-radius: 8px; overflow: hidden; }
.bar-fill { display: flex; align-items: center; justify-content: flex-end; gap: 8px; height: 100%; padding: 0 12px; background: var(--grad); border-radius: 8px; width: 0; transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1); color: #06222e; font-weight: 700; font-size: 14px; min-width: 0; white-space: nowrap; }
.bar-fill small { font-weight: 600; font-size: 11px; opacity: 0.75; }
.chart-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; border-top: 1px solid var(--line); padding-top: 26px; }
.chart-metrics b { display: block; font-size: 24px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.chart-metrics span { color: var(--muted); font-size: 13.5px; }

/* Video */
.video-wrap { display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: center; }
.video-copy h2 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.15; margin-bottom: 14px; }
.video-copy > p { color: var(--muted); font-size: 17px; max-width: 480px; }
.video-steps { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 15px; }
.video-steps li { display: flex; align-items: center; gap: 13px; font-weight: 500; }
.video-steps span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(34, 211, 137, 0.14); color: var(--accent); font-weight: 700; font-size: 14px; flex: none; }
.video-player { position: relative; aspect-ratio: 9 / 16; width: 100%; max-width: 480px; margin: 0 auto; border-radius: 24px; overflow: hidden; background: #000; border: 1px solid var(--line); box-shadow: var(--shadow); }
.player-loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted); }
.spinner { width: 38px; height: 38px; border: 3px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.video-player iframe, .video-player ._player, .video-player > div:not(.player-loading) { border: 0; width: 100%; height: 100%; }

/* Offices */
.office-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.office { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.office-pin { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(34, 211, 137, 0.12); color: var(--accent); margin-bottom: 15px; }
.office h3 { font-size: 18px; margin-bottom: 7px; }
.office p { color: var(--text); font-size: 14.5px; margin-bottom: 5px; }
.office small { color: var(--muted); font-size: 13px; }
.muted-note { text-align: center; color: var(--muted); margin-top: 32px; font-size: 14.5px; }

/* Contact */
.contact { position: relative; padding: 92px 0; }
.contact-inner { position: relative; display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: center; }
.contact-info h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.12; margin-bottom: 16px; }
.contact-info > p { color: var(--muted); font-size: 17px; max-width: 460px; }
.phone-big { display: inline-flex; align-items: center; gap: 16px; margin: 26px 0 18px; color: var(--accent); }
.phone-big svg { width: 52px; height: 52px; padding: 13px; border-radius: 15px; background: rgba(34, 211, 137, 0.14); }
.phone-big span { display: flex; flex-direction: column; color: var(--text); font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.phone-big small { color: var(--muted); font-size: 13px; font-weight: 500; letter-spacing: 0; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.channel { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 15px; width: fit-content; }
.channel:hover { color: var(--text); }
.channel svg { color: var(--accent-2); }
.hours { color: var(--muted); font-size: 14px; }

.contact-form { background: var(--card-2); border: 1px solid var(--line); border-radius: 22px; padding: 32px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; margin-bottom: 22px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label span { display: block; font-size: 13px; color: var(--muted); margin-bottom: 7px; }
.contact-form input, .contact-form select {
  width: 100%; padding: 13px 15px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  border-radius: 11px; color: var(--text); font-size: 15px; font-family: inherit; appearance: none;
}
.contact-form input:focus, .contact-form select:focus { outline: none; border-color: var(--accent); }
.form-note { text-align: center; color: var(--muted); font-size: 13px; margin: 14px 0 0; }

/* Footer */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-top: 60px; padding-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 320px; margin: 18px 0 0; }
.footer-col h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 14.5px; width: fit-content; }
.footer-col a:hover { color: var(--text); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 26px; display: flex; flex-direction: column; gap: 8px; }
.footer-legal p { color: var(--muted); font-size: 12.5px; margin: 0; line-height: 1.5; }

/* FAB */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #22c55e; color: #fff; box-shadow: 0 14px 34px rgba(34, 197, 94, 0.4); transition: transform 0.15s ease; }
.fab:hover { transform: translateY(-3px) scale(1.05); }

/* Mobile menu */
@media (max-width: 920px) {
  .hero-inner, .video-wrap, .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: repeat(3, 1fr); }
  .float-chip-top { left: 10px; }
  .float-chip-bot { right: 10px; }
  .video-player { width: min(100%, 400px); }
  .contact { padding: 64px 0; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 10px 0; transform: translateY(-130%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 26px; font-size: 17px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .card-grid, .services, .office-grid, .chart-metrics { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 1fr; gap: 8px; }
  .contact-inner, .video-wrap { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding-top: 50px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}