:root {
    --cobalt: #1B3FFF;
    --electric: #00D4FF;
    --lime: #B8FF2E;
    --coral: #FF5A36;
    --violet: #7B2FFF;
    --ink: #060A1A;
    --white: #FFFFFF;
    --off: #F2F4FF;
    --muted: #8A91B0;
    --card-bg: #0D1230;
    --glass: rgba(255,255,255,0.06);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
  }

  h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

  /* ─── NAV ─────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 6%;
    background: rgba(6,10,26,0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.7rem; font-weight: 800;
    background: linear-gradient(90deg, var(--electric), var(--cobalt));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
  }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--cobalt);
    color: var(--white); border: none; padding: 10px 22px;
    border-radius: 50px; font-family: 'Syne', sans-serif;
    font-size: .85rem; font-weight: 700; cursor: pointer;
    transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--electric); color: var(--ink); transform: scale(1.04); }

  /* ─── HERO ────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 130px 6% 80px;
    position: relative; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(27,63,255,0.22) 0%, transparent 70%),
                radial-gradient(ellipse 50% 50% at 15% 80%, rgba(0,212,255,0.14) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 85% 80%, rgba(123,47,255,0.18) 0%, transparent 60%);
  }

  /* grid pattern */
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  .hero-content { position: relative; z-index: 1; max-width: 760px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.3);
    color: var(--electric); font-size: .8rem; font-weight: 600;
    padding: 7px 16px; border-radius: 50px; margin-bottom: 28px;
    letter-spacing: .5px; text-transform: uppercase;
    animation: fadeUp .8s ease both;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #fff 40%, var(--electric) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 22px;
    animation: fadeUp .8s .15s ease both;
  }

  .hero p {
    font-size: 1.15rem; color: #b0b9d8; max-width: 560px;
    margin-bottom: 40px; font-weight: 300;
    animation: fadeUp .8s .25s ease both;
  }

  .hero p strong { color: var(--electric); font-weight: 500; }

  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp .8s .35s ease both;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    background: linear-gradient(135deg, var(--cobalt), var(--violet));
    color: #fff; border: none; padding: 15px 30px;
    border-radius: 50px; font-family: 'Syne', sans-serif;
    font-size: .95rem; font-weight: 700; cursor: pointer;
    box-shadow: 0 8px 32px rgba(27,63,255,0.35);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(27,63,255,0.5); }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent;
    color: var(--electric); border: 1.5px solid var(--electric);
    padding: 15px 30px; border-radius: 50px;
    font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700;
    cursor: pointer; transition: background .2s, color .2s;
    text-decoration: none;
  }
  .btn-secondary:hover { background: var(--electric); color: var(--ink); }

  /* hero stats */
  .hero-stats {
    display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap;
    animation: fadeUp .8s .45s ease both;
  }
  .stat-item { }
  .stat-num {
    font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800;
    color: var(--lime); line-height: 1;
  }
  .stat-label { font-size: .8rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .8px; }

  /* floating visual */
  .hero-visual {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    width: clamp(280px, 35vw, 460px); aspect-ratio: 1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-52%) translateX(-8px)} }

  .hero-orb {
    width: 100%; height: 100%; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(0,212,255,0.3), rgba(27,63,255,0.15) 50%, transparent 70%);
    border: 1px solid rgba(0,212,255,0.18);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }

  .hero-orb::before {
    content: '';
    position: absolute; inset: 20px; border-radius: 50%;
    border: 1px dashed rgba(0,212,255,0.2);
    animation: spin 20s linear infinite;
  }

  .orb-icon { font-size: 5rem; filter: drop-shadow(0 0 20px rgba(0,212,255,0.5)); }

  @keyframes spin { to { transform: rotate(360deg); } }

  /* ─── SECTION WRAPPER ────────────────────────────── */
  section { padding: 100px 6%; position: relative; }

  .section-tag {
    display: inline-block;
    font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    padding: 6px 14px; border-radius: 4px;
    margin-bottom: 18px;
  }

  .tag-blue { background: rgba(27,63,255,0.15); color: var(--electric); }
  .tag-green { background: rgba(184,255,46,0.12); color: var(--lime); }
  .tag-coral { background: rgba(255,90,54,0.12); color: var(--coral); }
  .tag-violet { background: rgba(123,47,255,0.15); color: #c299ff; }

  .section-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -1px;
    margin-bottom: 14px;
  }

  .section-sub {
    font-size: 1.05rem; color: var(--muted); max-width: 540px;
    margin-bottom: 56px; font-weight: 300;
  }

  .section-sub strong { color: var(--electric); font-weight: 500; }

  /* ─── DIVIDER ─────────────────────────────────────── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    margin: 0 6%;
  }

  /* ─── PROBLEM CARDS ──────────────────────────────── */
  .problem-vs {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 24px; align-items: start; margin-bottom: 72px;
  }

  .problem-card, .solution-card {
    background: var(--card-bg);
    border-radius: 20px; padding: 32px;
    border: 1px solid rgba(255,255,255,0.06);
  }

  .problem-card {
    border-top: 3px solid var(--coral);
  }

  .solution-card {
    border-top: 3px solid var(--lime);
  }

  .card-label {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 18px;
  }

  .label-bad { color: var(--coral); }
  .label-good { color: var(--lime); }

  .problem-list, .solution-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

  .problem-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .95rem; color: #b0b9d8;
  }

  .problem-list li::before { content: '✗'; color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  .solution-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .95rem; color: #b0b9d8;
  }

  .solution-list li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  .vs-badge {
    align-self: center;
    background: linear-gradient(135deg, var(--cobalt), var(--violet));
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: .9rem;
    box-shadow: 0 0 0 8px rgba(27,63,255,0.1);
  }

  /* ─── FEATURE GRID ──────────────────────────────── */
  .feature-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px; margin-bottom: 64px;
  }

  .feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 30px 26px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative; overflow: hidden;
  }

  .feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--cobalt), var(--electric));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
  }

  .feature-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
  .feature-card:hover::before { transform: scaleX(1); }

  .feature-icon {
    font-size: 2.2rem; margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.3));
  }

  .feature-card h3 {
    font-size: 1.05rem; font-weight: 700; margin-bottom: 10px;
    color: var(--white);
  }

  .feature-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

  /* ─── WHO IS THIS FOR ───────────────────────────── */
  .who-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; margin-bottom: 56px;
  }

  .who-card {
    background: linear-gradient(135deg, rgba(27,63,255,0.1), rgba(123,47,255,0.08));
    border: 1px solid rgba(27,63,255,0.25);
    border-radius: 16px; padding: 22px 20px;
    display: flex; align-items: center; gap: 12px;
  }

  .who-icon { font-size: 1.6rem; }
  .who-card p { font-size: .9rem; color: var(--off); font-weight: 500; }

  /* ─── OUTCOME STRIP ─────────────────────────────── */
  .outcome-strip {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 56px;
  }

  .outcome-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(184,255,46,0.08); border: 1px solid rgba(184,255,46,0.2);
    color: var(--lime); padding: 10px 20px; border-radius: 50px;
    font-size: .88rem; font-weight: 600;
  }

  /* ─── DESTINATIONS ──────────────────────────────── */
  .dest-row {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin-bottom: 56px;
  }

  .dest-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.08);
    padding: 12px 22px; border-radius: 12px;
    font-size: 1rem; font-weight: 600;
    transition: border-color .2s, background .2s;
    cursor: default;
  }

  .dest-chip:hover { border-color: var(--electric); background: rgba(0,212,255,0.06); }

  /* ─── TRUST BAND ─────────────────────────────────── */
  .trust-section {
    background: linear-gradient(135deg, rgba(27,63,255,0.12), rgba(123,47,255,0.1));
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .trust-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
  }

  .trust-item {
    text-align: center;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
  }

  .trust-icon { font-size: 2.4rem; margin-bottom: 12px; }
  .trust-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--electric); }
  .trust-item p { font-size: .85rem; color: var(--muted); }

  /* ─── TESTIMONIALS ─────────────────────────────── */
  .testimonials-section { background: var(--ink); }

  .testimonial-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px; margin-bottom: 0;
  }

  .testi-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 30px 26px;
    position: relative;
  }

  .testi-card::before {
    content: '"'; position: absolute; top: 20px; right: 26px;
    font-size: 4rem; color: rgba(0,212,255,0.12);
    font-family: 'Syne', sans-serif; line-height: 1;
  }

  .stars { color: #FFD700; margin-bottom: 14px; font-size: .9rem; }
  .testi-text { font-size: .93rem; color: #b0b9d8; margin-bottom: 20px; font-style: italic; line-height: 1.7; }

  .testi-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem;
    font-family: 'Syne', sans-serif;
  }

  .av1 { background: linear-gradient(135deg, var(--cobalt), var(--violet)); }
  .av2 { background: linear-gradient(135deg, var(--coral), #ff8c00); }
  .av3 { background: linear-gradient(135deg, var(--lime), #00c853); color: var(--ink); }
  .av4 { background: linear-gradient(135deg, var(--electric), var(--cobalt)); }

  .author-name { font-weight: 700; font-size: .92rem; }
  .author-role { font-size: .78rem; color: var(--muted); }

  /* ─── CAREERS TEASER ─────────────────────────────── */
  .careers-teaser {
    background: linear-gradient(135deg, #0b0e24, var(--card-bg));
  }

  .careers-scroll {
    display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
  }

  .career-chip {
    flex-shrink: 0;
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px; border-radius: 12px;
    font-size: .9rem; font-weight: 600;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    cursor: default;
  }

  .career-chip:hover { background: rgba(27,63,255,0.18); border-color: var(--electric); }

  /* ─── FINAL CTA ──────────────────────────────────── */
  .final-cta {
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(27,63,255,0.18) 0%, transparent 70%);
    padding: 120px 6%;
  }

  .final-cta h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    letter-spacing: -1px; margin-bottom: 20px;
  }

  .final-cta p {
    font-size: 1.1rem; color: var(--muted); max-width: 520px;
    margin: 0 auto 48px; font-weight: 300;
  }

  .final-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* ─── WHATSAPP ───────────────────────────────────── */
  .whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; cursor: pointer;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
  }

  .whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    padding: 40px 6%;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }

  footer .logo { font-size: 1.3rem; }
  footer p { font-size: .82rem; color: var(--muted); }

  /* ─── ANIMATIONS ─────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* scroll reveal */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─────────────────────────────────── */
  @media (max-width: 900px) {
    .hero-visual { display: none; }
    .problem-vs { grid-template-columns: 1fr; }
    .vs-badge { display: none; }
    .nav-links { display: none; }
  }

  @media (max-width: 600px) {
    section { padding: 72px 5%; }
    .hero { padding: 110px 5% 60px; }
    .hero-stats { gap: 28px; }
  }