/* ─── FONTS ──────────────────────────────────────────────────────────────────*/
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&family=Noto+Sans+Devanagari:wght@300;400;500;600;700&display=swap');

/* ─── VARIABLES ──────────────────────────────────────────────────────────────*/
:root {
  --navy-900: #071527;
  --navy-800: #0B1F3A;
  --navy-700: #112848;
  --navy-600: #1A3A6B;
  --navy-400: #2E5FA3;
  --navy-200: #7BA3D4;
  --gold:     #F26419;
  --gold-light: #F58549;
  --white:    #FFFFFF;
  --off-white: #F4F7FF;
  --grey-100: #E8EDF6;
  --grey-400: #8A9BBD;
  --grey-600: #4A5878;
  --success:  #2ECC71;

  --font-head: 'Sora', 'Noto Sans Devanagari', sans-serif;
  --font-body: 'DM Sans', 'Noto Sans Devanagari', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 12px rgba(7,21,39,0.10);
  --shadow-md: 0 8px 32px rgba(7,21,39,0.16);
  --shadow-lg: 0 20px 60px rgba(7,21,39,0.22);

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1180px;
}

/* ─── RESET ──────────────────────────────────────────────────────────────────*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy-800);
  line-height: 1.65;
  overflow-x: hidden;
}
body.hindi { font-family: 'Noto Sans Devanagari', 'DM Sans', sans-serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITIES ──────────────────────────────────────────────────────────────*/
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--navy-800); color: var(--white); }
.section-muted { background: var(--off-white); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,160,32,0.12); color: var(--gold);
  border: 1px solid rgba(232,160,32,0.3);
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-dark .badge { background: rgba(232,160,32,0.15); }

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px; color: var(--grey-600);
  max-width: 560px; line-height: 1.7;
  margin-bottom: 40px;
}
.section-dark .section-sub { color: var(--navy-200); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────────*/
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────────*/
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold); color: var(--navy-900);
  box-shadow: 0 4px 20px rgba(232,160,32,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(232,160,32,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline-navy {
  border: 2px solid var(--navy-600); color: var(--navy-700);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); transform: translateY(-2px); }

/* ─── HEADER ─────────────────────────────────────────────────────────────────*/
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(7,21,39,0.96);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition), padding var(--transition), background var(--transition);
}
header.scrolled {
  background: rgba(7,21,39,0.99);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
  transition: color var(--transition); letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.1); border-radius: 100px; padding: 3px;
}
.lang-btn {
  padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.lang-btn.active { background: var(--gold); color: var(--navy-900); }
/* Mobile menu hidden by default on all screen sizes */
#nav-menu { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.3s ease;
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ───────────────────────────────────────────────────────────────────*/
.hero {
  position: relative;
  background: var(--navy-900);
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
}
.hero-bg-circle.c1 { width: 700px; height: 700px; right: -100px; top: -200px; }
.hero-bg-circle.c2 { width: 400px; height: 400px; left: -100px; bottom: -100px; background: radial-gradient(circle, rgba(46,95,163,0.15) 0%, transparent 70%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text .badge { font-size: 11px; }
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-heading .line2 { color: var(--gold); display: block; }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.7);
  max-width: 480px; line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.app-mockup {
  position: relative; width: 280px; height: 520px;
  background: var(--navy-700);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
.app-mockup::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-400));
}
.mockup-inner { padding: 24px 20px; height: 100%; display: flex; flex-direction: column; gap: 14px; }
.mockup-topbar { display: flex; justify-content: space-between; align-items: center; }
.mockup-logo { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--white); }
.mockup-logo span { color: var(--gold); }
.mockup-balance {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md); padding: 16px;
  color: var(--navy-900);
}
.mockup-balance-label { font-size: 11px; font-weight: 600; opacity: 0.8; }
.mockup-balance-amount { font-family: var(--font-head); font-size: 26px; font-weight: 800; }
.mockup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mockup-icon {
  background: rgba(255,255,255,0.07); border-radius: var(--radius-sm);
  padding: 10px 6px; text-align: center;
}
.mockup-icon .icon { font-size: 20px; margin-bottom: 4px; }
.mockup-icon .label { font-size: 9px; color: rgba(255,255,255,0.6); }
.mockup-txn { background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 12px; }
.mockup-txn-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.txn-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.txn-item:last-child { border-bottom: none; }
.txn-name { font-size: 11px; color: rgba(255,255,255,0.7); }
.txn-amount { font-size: 12px; font-weight: 600; color: var(--success); }
.mockup-glow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,160,32,0.2) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* ─── STATS BAR ──────────────────────────────────────────────────────────────*/
.stats-bar {
  background: var(--navy-700); padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head); font-size: 40px; font-weight: 800;
  color: var(--gold); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── SERVICES ───────────────────────────────────────────────────────────────*/
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1.5px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy-600), var(--navy-400));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--navy-800); }
.cs-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--navy-900);
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.04em;
}
.service-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin-bottom: 10px; color: var(--navy-800);
}
.service-desc { font-size: 14px; color: var(--grey-600); line-height: 1.65; }
.services-cta { text-align: center; }

/* ─── DISTRIBUTOR ────────────────────────────────────────────────────────────*/
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.benefit-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.benefit-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(232,160,32,0.3); transform: translateY(-4px); }
.benefit-icon { font-size: 32px; margin-bottom: 14px; }
.benefit-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.benefit-desc { font-size: 14px; color: var(--navy-200); line-height: 1.65; }
.distributor-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.distributor-text .section-sub { margin-bottom: 32px; }

/* ─── APP SECTION ────────────────────────────────────────────────────────────*/
.app-section {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  position: relative; overflow: hidden;
}
.app-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.app-text .section-sub { margin-bottom: 32px; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md); padding: 10px 18px;
  color: var(--white); font-size: 14px; font-weight: 500;
  opacity: 0.7; cursor: not-allowed;
  transition: all var(--transition);
}
.store-badge:hover { opacity: 0.85; }
.store-badge-icon { font-size: 22px; }
.app-preview {
  display: flex; justify-content: center; align-items: flex-end; gap: 20px;
}
.phone-small {
  width: 160px; height: 300px;
  background: var(--navy-800);
  border-radius: 24px; border: 2px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
  transform: rotate(-6deg) translateY(20px);
  transition: transform var(--transition);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.phone-large {
  width: 200px; height: 370px;
  background: var(--navy-700);
  border-radius: 28px; border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: rotate(2deg);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.phone-placeholder {
  font-size: 48px; opacity: 0.4; text-align: center;
}
.app-preview:hover .phone-small { transform: rotate(-2deg) translateY(10px); }

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────────*/
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 40px; left: 20%; right: 20%;
  height: 2px; background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.3;
}
.step-card { text-align: center; padding: 24px; }
.step-num {
  font-family: var(--font-head); font-size: 52px; font-weight: 800;
  color: var(--grey-100); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 12px; position: relative; display: inline-block;
}
.step-num::after {
  content: '';
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px; background: var(--gold); border-radius: 2px;
}
.step-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin: 16px 0 10px; }
.step-desc { font-size: 15px; color: var(--grey-600); line-height: 1.65; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────*/
footer {
  background: var(--navy-900); color: var(--white);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-head); font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 14px; color: var(--navy-200); line-height: 1.65; max-width: 260px; }
.footer-col-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-400); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--navy-200); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--navy-200); margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 13px; color: var(--grey-400); }
.footer-bottom-lang { display: flex; align-items: center; gap: 8px; }

/* ─── POPUP ──────────────────────────────────────────────────────────────────*/
.popup-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,21,39,0.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: auto; }
.popup-box {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 480px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.95); transition: transform 0.3s ease;
}
.popup-overlay.active .popup-box { transform: scale(1); }
.popup-header {
  background: var(--navy-800); padding: 28px 32px 24px;
  position: relative;
}
.popup-close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.popup-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.popup-sub { font-size: 14px; color: var(--navy-200); }
.popup-body { padding: 28px 32px 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1/-1; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy-700); margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-100); font-family: var(--font-body); font-size: 15px;
  color: var(--navy-800); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(26,58,107,0.1); }
.form-input.error { border-color: #e74c3c; }
.field-error { font-size: 12px; color: #e74c3c; margin-top: 4px; display: block; }
.submit-btn {
  width: 100%; margin-top: 20px; padding: 15px;
  background: var(--navy-800); color: var(--white);
  border-radius: var(--radius-md); font-family: var(--font-head); font-size: 16px; font-weight: 700;
  transition: all var(--transition);
}
.submit-btn:hover:not(:disabled) { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.popup-success-view {
  padding: 48px 32px; text-align: center;
  flex-direction: column; align-items: center; gap: 16px;
  display: none;
}
.success-icon { font-size: 56px; margin-bottom: 8px; }
.success-heading {
  font-family: var(--font-head); font-size: 24px; font-weight: 700;
  color: var(--navy-800);
}
.success-sub { font-size: 15px; color: var(--grey-600); line-height: 1.65; max-width: 320px; }
.success-close {
  margin-top: 8px; padding: 12px 28px;
  background: var(--gold); color: var(--navy-900);
  border-radius: var(--radius-md); font-weight: 700;
  transition: all var(--transition);
}
.success-close:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── SERVICES PAGE ──────────────────────────────────────────────────────────*/
.services-hero {
  background: var(--navy-800); padding: 160px 0 80px;
  text-align: center; color: var(--white);
}
.services-hero .section-heading { color: var(--white); }
.services-hero .section-sub { color: var(--navy-200); margin: 0 auto 0; }
.services-cat-section { padding: 64px 0; }
.services-cat-section:nth-child(odd) { background: var(--off-white); }
.cat-heading {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  margin-bottom: 28px; color: var(--navy-800);
}
.cat-heading .cat-icon { font-size: 28px; }
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.services-cta-banner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--white); padding: 72px 0; text-align: center;
}
.services-cta-banner .section-heading { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.services-cta-banner .section-sub { max-width: 500px; margin: 0 auto 32px; }
.services-cta-banner .section-sub,
.services-cta-banner .section-heading { text-align: center; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────*/
@media (max-width: 1024px) {
  .hero-content, .distributor-inner, .app-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .services-grid, .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-right .nav-contact-link { display: none; }
  .nav-toggle { display: flex; }
  #nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: var(--navy-900);
    z-index: 9999;
    flex-direction: column; align-items: center; justify-content: center;
    padding: 24px 24px 40px;
    gap: 20px;
    display: none;
  }
  #nav-menu.open { display: flex; }
  #nav-menu a { font-size: 20px; color: var(--white); font-weight: 600; text-align: center; }
  .nav-close-btn {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 300; line-height: 1;
    cursor: pointer; transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 10;
  }
  .nav-close-btn:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
  .nav-right { gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .app-preview { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .services-full-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-heading { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .app-mockup { width: 220px; height: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── SERVICE DETAIL PAGES ───────────────────────────────────────────────────*/
.sd-hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 148px 0 72px; text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.sd-hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,100,25,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sd-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,95,163,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.sd-hero .container { position: relative; z-index: 1; }
.sd-hero .badge { margin: 0 auto 18px; display: inline-flex; }
.sd-icon { font-size: 52px; display: block; margin-bottom: 14px; line-height: 1; }
.sd-hero-title { font-family: var(--font-head); font-size: clamp(32px,5vw,56px); font-weight: 800; color: var(--white); margin-bottom: 18px; letter-spacing: -0.03em; line-height: 1.1; }
.sd-hero-sub { font-size: 17px; color: var(--navy-200); max-width: 580px; margin: 0 auto; line-height: 1.75; }

.sd-meta { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 40px; }
.sd-meta-item {
  text-align: center; padding: 20px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.sd-meta-item:last-child { border-right: none; }
.sd-meta-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.sd-meta-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; }

/* Why + Docs section */
.sd-section { padding: 64px 0; }
.sd-section-alt { background: var(--off-white); }
.sd-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.sd-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 10px; }
.sd-section-title { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--navy-800); margin-bottom: 16px; line-height: 1.25; }
.sd-section-body { font-size: 15px; color: var(--grey-600); line-height: 1.8; }

.sd-docs { list-style: none; padding: 0; margin-top: 4px; }
.sd-docs li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--grey-100);
  font-size: 14.5px; color: var(--navy-700); line-height: 1.5;
}
.sd-docs li:last-child { border-bottom: none; }
.sd-docs li::before {
  content: '✓'; color: var(--white); background: var(--gold);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

/* Process section — steps left, info cards right */
.sd-process-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.sd-process-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 10px; }
.sd-process-heading { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--navy-800); margin-bottom: 28px; }

.sd-steps { display: flex; flex-direction: column; }
.sd-step { display: flex; gap: 18px; padding-bottom: 24px; position: relative; }
.sd-step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--navy-600), var(--grey-100)); }
.sd-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-800); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1; border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--navy-800);
}
.sd-step-content { padding-top: 7px; }
.sd-step-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy-800); margin-bottom: 5px; }
.sd-step-desc { font-size: 13.5px; color: var(--grey-600); line-height: 1.65; }

/* Info sidebar */
.sd-info-sidebar { display: flex; flex-direction: column; gap: 14px; }
.sd-info-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px 22px; border: 1.5px solid var(--grey-100);
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm);
}
.sd-info-card-icon { font-size: 26px; flex-shrink: 0; }
.sd-info-card-label { font-size: 11px; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.sd-info-card-value { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy-800); line-height: 1.3; }

/* CTA section */
.sd-cta-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.sd-cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,100,25,0.1) 0%, transparent 70%);
}
.sd-cta-section .container { position: relative; z-index: 1; }
.sd-cta-title { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
.sd-cta-sub { font-size: 16px; color: var(--navy-200); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.sd-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-whatsapp {
  background: #25D366; color: var(--white);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--radius-md);
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  transition: all var(--transition); box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.btn-call {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--radius-md);
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  transition: all var(--transition);
}
.btn-call:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.sd-note {
  background: rgba(242,100,25,0.07); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; font-size: 13.5px; color: var(--navy-700);
  line-height: 1.65; margin-top: 20px;
}

@media (max-width: 1024px) {
  .sd-process-grid { grid-template-columns: 1fr; gap: 40px; }
  .sd-info-sidebar { flex-direction: row; flex-wrap: wrap; }
  .sd-info-card { flex: 1 1 200px; }
}
@media (max-width: 768px) {
  .sd-two-col, .sd-process-grid { grid-template-columns: 1fr; gap: 36px; }
  .sd-meta-item { padding: 16px 24px; }
  .sd-info-sidebar { flex-direction: column; }
  .sd-cta-buttons { flex-direction: column; align-items: center; }
  .btn-whatsapp, .btn-call { width: 100%; justify-content: center; max-width: 320px; }
}

/* ─── BECOME OPERATOR PAGE ───────────────────────────────────────────────────*/
.op-hero { background: var(--navy-800); padding: 140px 0 64px; color: var(--white); }
.op-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.op-job-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(242,100,25,0.15); border: 1px solid rgba(242,100,25,0.3); color: var(--gold); padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.op-hero-title { font-family: var(--font-head); font-size: clamp(30px,4.5vw,50px); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.op-hero-sub { font-size: 16px; color: var(--navy-200); line-height: 1.7; margin-bottom: 28px; }
.op-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.op-badge-pill { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; }
.op-details-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; }
.op-detail-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.op-detail-row:last-child { border-bottom: none; }
.op-detail-label { color: var(--navy-200); font-weight: 500; }
.op-detail-value { color: var(--white); font-weight: 600; text-align: right; }

.op-section { padding: 60px 0; }
.op-section:nth-child(even) { background: var(--off-white); }
.op-section-title { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--navy-800); margin-bottom: 28px; }

.op-req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.op-req-card { background: var(--white); border-radius: var(--radius-md); padding: 20px; border: 1.5px solid var(--grey-100); display: flex; gap: 14px; align-items: flex-start; }
.op-req-icon { font-size: 24px; flex-shrink: 0; }
.op-req-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy-800); margin-bottom: 4px; }
.op-req-desc { font-size: 13px; color: var(--grey-600); line-height: 1.55; }

.op-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 0; }
.op-benefit { text-align: center; padding: 28px 20px; background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--grey-100); }
.op-benefit-icon { font-size: 36px; margin-bottom: 12px; }
.op-benefit-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy-800); margin-bottom: 6px; }
.op-benefit-desc { font-size: 13px; color: var(--grey-600); line-height: 1.55; }

.op-form-section { padding: 64px 0; background: var(--off-white); }
.op-form-box { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); max-width: 720px; margin: 0 auto; }
.op-form-title { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--navy-800); margin-bottom: 6px; }
.op-form-sub { font-size: 14px; color: var(--grey-600); margin-bottom: 32px; }
.op-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.op-form-group { display: flex; flex-direction: column; gap: 6px; }
.op-form-group.full { grid-column: 1/-1; }
.op-form-label { font-size: 13px; font-weight: 600; color: var(--navy-700); }
.op-form-input, .op-form-select, .op-form-textarea { padding: 11px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--grey-100); font-family: var(--font-body); font-size: 15px; color: var(--navy-800); background: var(--white); outline: none; transition: border-color var(--transition), box-shadow var(--transition); width: 100%; }
.op-form-input:focus, .op-form-select:focus, .op-form-textarea:focus { border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(26,58,107,0.1); }
.op-form-textarea { resize: vertical; min-height: 110px; }
.op-submit-btn { width: 100%; padding: 16px; background: var(--navy-800); color: var(--white); border-radius: var(--radius-md); font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-top: 8px; transition: all var(--transition); }
.op-submit-btn:hover:not(:disabled) { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.op-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.op-success { text-align: center; padding: 48px 24px; display: none; }
.op-success-icon { font-size: 56px; margin-bottom: 16px; }
.op-success-title { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--navy-800); margin-bottom: 10px; }
.op-success-sub { font-size: 15px; color: var(--grey-600); max-width: 380px; margin: 0 auto; }

@media (max-width: 768px) {
  .op-hero-inner { grid-template-columns: 1fr; }
  .op-req-grid { grid-template-columns: 1fr; }
  .op-benefits-grid { grid-template-columns: 1fr; }
  .op-form-grid { grid-template-columns: 1fr; }
  .op-form-box { padding: 24px; }
}

/* ─── LEGAL PAGES ────────────────────────────────────────────────────────────*/
.legal-hero { background: var(--navy-800); padding: 140px 0 56px; color: var(--white); text-align: center; }
.legal-hero-title { font-family: var(--font-head); font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.legal-hero-sub { font-size: 14px; color: var(--navy-200); }
.legal-content { max-width: 760px; margin: 0 auto; padding: 64px 24px 80px; }
.legal-content h2 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy-800); margin: 40px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--grey-600); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: 15px; color: var(--grey-600); line-height: 1.8; margin-bottom: 6px; }
.legal-content .legal-updated { font-size: 13px; color: var(--grey-400); margin-bottom: 40px; }

/* ─── BACK LINK ──────────────────────────────────────────────────────────────*/
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--navy-200); margin-bottom: 20px; transition: color var(--transition); }
.back-link:hover { color: var(--white); }

/* ─── NAV CONTACT LINK ───────────────────────────────────────────────────────*/
/* Styled as a plain nav link (not a button) */
.nav-contact-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-contact-link:hover { color: var(--gold); }
#nav-menu .nav-contact-link {
  font-size: 22px; color: var(--white); font-weight: 600;
}

/* ─── HERO IMAGE ─────────────────────────────────────────────────────────────*/
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 440px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(1.35);
  transform-origin: top center;
  width: 90%;
  max-width: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(242,100,25,0.15));
}

/* ─── STATS BAR — 3 ITEMS ────────────────────────────────────────────────────*/
.stats-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  /* Force single horizontal row on mobile */
  .stats-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .stats-grid-3 .stat-num { font-size: 24px; }
  .stats-grid-3 .stat-label { font-size: 10px; }
  .stats-grid-3 .stat-item { padding: 0 4px; }
}

/* ─── SD-HERO CTA BUTTONS ────────────────────────────────────────────────────*/
/* WhatsApp + Call buttons placed directly in the hero */
.sd-hero-cta {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 480px) {
  .sd-hero-cta { flex-direction: column; align-items: center; }
  .sd-hero-cta .btn-whatsapp,
  .sd-hero-cta .btn-call { width: 100%; max-width: 300px; justify-content: center; }
}

/* ─── FILE UPLOAD STYLING ────────────────────────────────────────────────────*/
.file-upload-wrap { display: flex; flex-direction: column; gap: 6px; }
.op-form-input.file-input {
  padding: 9px 14px;
  cursor: pointer;
}
.op-form-input.file-input::-webkit-file-upload-button {
  background: var(--navy-800); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  padding: 6px 14px; font-family: var(--font-head);
  font-size: 13px; font-weight: 600; cursor: pointer;
  margin-right: 12px;
  transition: background var(--transition);
}
.op-form-input.file-input::-webkit-file-upload-button:hover { background: var(--navy-600); }
.file-hint { font-size: 12px; color: var(--grey-400); }

/* ─── HERO MOBILE — image below text ────────────────────────────────────────*/
@media (max-width: 768px) {
  .hero-content { display: flex; flex-direction: column; }
  .hero-visual { order: 2; margin-top: 32px; }
  .hero-text   { order: 1; }
  .hero-img-wrap { max-width: 300px; height: 300px; margin: 0 auto; }
}

/* ─── SD-PROCESS — full width steps (no sidebar) ────────────────────────────*/
.sd-steps-full { max-width: 680px; }

/* ─── OPERATOR FORM — fix op-form-group.full selector ───────────────────────*/
.op-form-group.full { grid-column: 1 / -1; }
/* ─── HERO ANIMATED CARDS ───────────────────────────────────────────────────*/
.hero-animated-cards {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  perspective: 1000px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatCard 6s ease-in-out infinite;
  background: var(--navy-800);
  height: auto;
}
.hero-card.card-1 {
  top: 10%;
  left: 0;
  width: 85%;
  z-index: 3;
  animation-delay: 0s;
}
.hero-card.card-2 {
  top: 35%;
  right: 0;
  width: 75%;
  z-index: 2;
  animation-delay: -2s;
  opacity: 0.9;
}
.hero-card.card-3 {
  bottom: 0;
  left: 10%;
  width: 70%;
  z-index: 1;
  animation-delay: -4s;
  opacity: 0.8;
}

.hero-animated-cards:hover .card-1 { transform: translateY(-10px) scale(1.02); }
.hero-animated-cards:hover .card-2 { transform: translateX(10px) scale(1.02); }
.hero-animated-cards:hover .card-3 { transform: translateY(10px) scale(1.02); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .hero-animated-cards { height: 280px; max-width: 320px; margin: 0 auto; overflow: visible; transform: scale(0.9); }
  .hero-visual { order: 2; margin-top: 20px; width: 100%; display: flex; justify-content: center; }
  .hero-text { order: 1; }
  .hero-content { display: flex; flex-direction: column; text-align: center; }
  .hero-actions { justify-content: center; }
  .nav-right .nav-contact-link { display: none; }
}
@media (max-width: 1024px) {
  .hero-visual { order: 2; }
}
