/* ═══════════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --navy: #0a1628;
  --navy-dark: #020b22;
  --gold: #FFC857;
  --gold-hover: #ffb830;
  --blue: #1E90FF;
  --white: #FFFFFF;
  --light-bg: #F7F9FC;
  --text-dark: #1B1F2A;
  --text-gray: #666666;
  --shadow: 0 4px 24px rgba(0,27,78,0.10);
  --shadow-lg: 0 8px 40px rgba(0,27,78,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 40px;
}

.navbar.scrolled {
  background: rgba(1, 9, 28, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin: 0 auto;
  padding: .8rem 2rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon  { flex-shrink: 0; }
.brand-logo-img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: #fff;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: .05em;
}
.logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links li a {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--gold); }
.arrow { font-size: 10px; margin-left: 3px; }

/* ── SERVICES DROPDOWN ── */
.has-dropdown { position: relative; }
.has-dropdown .arrow { display: inline-block; transition: transform 0.3s ease; font-size: 10px; }
.has-dropdown:hover .arrow, .has-dropdown.active .arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,27,78,0.18);
  min-width: 300px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  border: 1px solid rgba(0,27,78,0.07);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid rgba(0,27,78,0.07);
  border-top: 1px solid rgba(0,27,78,0.07);
  rotate: 45deg;
}
.has-dropdown:hover .dropdown-menu, .has-dropdown.active .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--text-dark) !important;
  transition: background 0.2s ease;
}
.dropdown-item:hover { background: #f4f7ff; }
.dropdown-item.active-drop { background: #fff8e6; }
.drop-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 15px;
}
.dropdown-item.active-drop .drop-icon { background: var(--gold); color: var(--navy); }
.drop-text { display: flex; flex-direction: column; gap: 2px; }
.drop-text strong { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.2; }
.drop-text small { font-size: 11px; color: var(--text-gray); font-weight: 400; }

/* ── MOBILE DROPDOWN ── */
.mobile-has-dropdown { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-services-toggle { display: flex !important; justify-content: space-between; align-items: center; border-bottom: none !important; width: 100%; }
.mobile-arrow { font-size: 11px; transition: transform 0.3s ease; display: inline-block; }
.mobile-has-dropdown.open .mobile-arrow { transform: rotate(180deg); }
.mobile-dropdown { display: none; flex-direction: column; background: rgba(255,255,255,0.04); border-radius: 10px; margin: 0 0 10px 0; overflow: hidden; }
.mobile-has-dropdown.open .mobile-dropdown { display: flex; }
.mobile-sub-link { display: flex; align-items: center; gap: 10px; padding: 11px 16px; color: rgba(255,255,255,0.75) !important; font-size: 13.5px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s, background 0.2s; }
.mobile-sub-link:last-child { border-bottom: none; }
.mobile-sub-link i { color: var(--gold); font-size: 13px; width: 16px; text-align: center; }
.mobile-sub-link:hover { color: var(--gold) !important; background: rgba(255,200,87,0.06); }
.active-mobile-drop { color: var(--gold) !important; }

/* CTA Button */
.btn-nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,200,87,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(1, 11, 35, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 20px 24px 32px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  display: block;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-link {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 500;
}
.mobile-cta {
  margin-top: 16px;
  display: inline-block;
  border: none;
}

/* ═══════════════════════════════════════════
   HERO SECTION — full-width photo + overlay
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* ① Full-bleed background photo */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.75) saturate(1.1);
  z-index: 0;
  display: block;
}

/* ② Gradient overlay — navy heavy on left, transparent on right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(2, 15, 48, 0.97)  0%,
    rgba(1, 14, 46, 0.92)  28%,
    rgba(0,18,64,0.55)  52%,
    rgba(0,18,64,0.15)  72%,
    rgba(0,18,64,0.0)  100%
  );
}

/* ③ Content grid */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 110px 48px 72px;
  display: grid;
  grid-template-columns: 460px 1fr;
  align-items: center;
  gap: 0;
}

/* ── LEFT: text ── */
.hero-left {
  display: flex;
  flex-direction: column;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 26px;
}
.breadcrumb .sep    { color: rgba(255,255,255,0.35); }
.breadcrumb .active { color: var(--gold); font-weight: 500; }

/* Hero Heading */
.hero-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  line-height: 1.05;
}
.white-line {
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
}
.gold-line {
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.12;
}

.hero-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.83);
  line-height: 1.75;
  margin-bottom: 34px;
}

/* Buttons */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 6px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,200,87,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ── CENTER-RIGHT: icons panel ── */
.hero-icons-panel {
  position: relative;
  height: 420px;
  /* sits in the centre of the photo */
}

/* SVG dashed lines — fills the whole panel */
.icon-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Base icon bubble */
.ficon {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(10, 40, 130, 0.68);
  border: 1.8px solid rgba(120, 190, 255, 0.60);
  box-shadow:
    0 0 0 7px rgba(30,144,255,0.14),
    0 0 24px rgba(30,144,255,0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ficon:hover {
  transform: scale(1.18) !important;
  box-shadow: 0 0 0 10px rgba(30,144,255,0.25), 0 0 36px rgba(30,144,255,0.75);
}

/*
  Positions mapped precisely to the screenshot layout:
  icons form a web/network shape over the centre of the photo
*/
.fi-1 { top: 6%;   left: 16%;  animation: fb1 4.2s ease-in-out infinite; }   /* group – upper left   */
.fi-2 { top: 2%;   left: 43%;  animation: fb2 3.7s ease-in-out infinite; }   /* chat  – top centre   */
.fi-3 { top: 5%;   right: 8%;  animation: fb3 4.6s ease-in-out infinite; }   /* mega  – upper right  */
.fi-4 { top: 40%;  left: 26%;  animation: fb4 4.0s ease-in-out infinite; }   /* person– mid left     */
.fi-5 { top: 38%;  right: 12%; animation: fb5 3.4s ease-in-out infinite; }   /* check – mid right    */
.fi-6 { bottom: 18%; left: 8%; animation: fb6 4.9s ease-in-out infinite; }   /* dots  – lower left   */
.fi-7 { bottom: 14%; left: 42%; animation: fb7 4.1s ease-in-out infinite; }  /* tick  – lower centre */

@keyframes fb1 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-10px)} }
@keyframes fb2 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-7px)}  }
@keyframes fb3 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-12px)} }
@keyframes fb4 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-8px)}  }
@keyframes fb5 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-11px)} }
@keyframes fb6 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-6px)}  }
@keyframes fb7 { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-9px)}  }

/* ═══════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════ */
.stats-section {
  position: relative;
  z-index: 3;
  padding: 0 40px;
  margin-top: -50px;
}

.stats-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 28px 32px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-content { display: flex; flex-direction: column; }
.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-gray);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════ */
.section-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title { text-align: center; margin-bottom: 50px; }
.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.title-line h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.line-dec {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}


.about-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.85;
}

.about-img-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,27,78,0.14);
  aspect-ratio: 4/3;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.benefits-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
}
.benefits-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.benefits-list { display: flex; flex-direction: column; gap: 12px; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.gold-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  background: rgba(255,200,87,0.15);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 18px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,27,78,0.07);
  border: 1px solid rgba(0,27,78,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,27,78,0.14);
}

.svc-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.service-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.service-card p {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════ */
.process-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: rgba(0,27,78,0.1);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0,27,78,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.step-number1 {
  font-size: 11px;
  font-weight: 800;
  color: #1E90FF;
  background: #1e8fff2c;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.step-number2 {
  font-size: 11px;
  font-weight: 800;
  color: #16A34A;
  background: #16a34a2c;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.step-number3 {
  font-size: 11px;
  font-weight: 800;
  color: #D97706;
  background: #d977062c;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.step-number4 {
  font-size: 11px;
  font-weight: 800;
  color: #9333EA;
  background: #9233ea2c;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.step-number5 {
  font-size: 11px;
  font-weight: 800;
  color: #E11D48;
  background: #e11d472c;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.step-number6 {
  font-size: 11px;
  font-weight: 800;
  color: #0D9488;
  background: #0d94892c;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.process-step h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.process-step p {
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 20px;
  right: -10px;
  color: var(--navy);
  font-size: 22px;
  opacity: 2;
  font-weight: 700;
  z-index: 3;
}

.process-step:last-child .step-arrow { display: none; }

/* ═══════════════════════════════════════════
   RESULTS SECTION — Horizontal Banner Style
═══════════════════════════════════════════ */
.results-section {
  background: var(--navy);
  padding: 24px 40px;
}

.results-grid {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: #0d2260;
  border-radius: 14px;
  padding: 24px 32px;
  gap: 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.results-left {
  flex: 0 0 220px;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.results-left h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.results-left p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
}

.results-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-left: 8px;
  gap: 0;
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
}

.result-item:last-child {
  border-right: none;
}

.result-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.result-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.result-label {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  line-height: 1.4;
  max-width: 90px;
  text-align: center;
}

@media (max-width: 900px) {
  .results-section { padding: 20px 16px; }
  .results-grid {
    flex-wrap: wrap;
    padding: 22px 20px;
    gap: 20px;
  }
  .results-left {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-right: 0;
    padding-bottom: 18px;
  }
  .results-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-left: 0;
  }
  .result-item {
    flex: 0 0 calc(33% - 16px);
    border-right: none;
  }
}

@media (max-width: 480px) {
  .result-item { flex: 0 0 calc(50% - 16px); }
  .result-num { font-size: 20px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .results-section { padding: 20px 16px; }
  .results-grid {
    flex-wrap: wrap;
    padding: 24px 20px;
    gap: 20px;
  }
  .results-left {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .results-right {
    flex-wrap: wrap;
    gap: 16px;
    padding-left: 0;
    justify-content: center;
  }
  .result-item {
    flex: 0 0 calc(33% - 16px);
    border-right: none;
    padding: 0 8px;
  }
  .result-num { font-size: 22px; }
}

@media (max-width: 480px) {
  .result-item { flex: 0 0 calc(50% - 16px); }
}

/* ═══════════════════════════════════════════
   TOOLS SECTION
═══════════════════════════════════════════ */
.tools-section {
  padding: 60px 0;
  background: var(--white);
  
}

.tools-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: stretch;
  
}

/* LEFT */
.tools-left {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 20px rgba(0,27,78,0.08);
  border: 1px solid rgba(0,27,78,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tools-left h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

.tools-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.tool-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-gray);
  line-height: 1.4;
}

.tools-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0,27,78,0.08);
}

/* RIGHT – Success Card */
.tools-right {
  display: flex;
  flex-direction: column;
}

.success-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 20px rgba(0,27,78,0.08);
  border: 1px solid rgba(0,27,78,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.success-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

/* Image + Content side by side */
.success-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: start;
  flex: 1;
}

/* Photo */
.success-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
}

.success-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.success-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,200,87,0.92);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Text + Metrics */
.success-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.success-desc {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}

.success-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.metric-top {
  display: flex;
  align-items: center;
  gap: 5px;
}

.metric-num {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  font-size: 10.5px;
  color: var(--text-gray);
  line-height: 1.4;
  max-width: 80px;
}

/* Responsive */
@media (max-width: 900px) {
  .tools-grid { grid-template-columns: 1fr; }
  .success-body { grid-template-columns: 1fr; }
  .success-image { height: 200px; }
}

/* ═══════════════════════════════════════════
   CTA SECTION — Horizontal Strip
═══════════════════════════════════════════ */
.cta-section {
  background: #0a1628;
  padding: 24px 40px;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}

/* LEFT text */
.cta-text {
  flex: 0 0 240px;
}

.cta-text h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* CENTER badges */
.cta-badges {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  white-space: nowrap;
}

.cta-badge-icon { 
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(2, 5, 37, 0.515);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-badge span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

/* RIGHT action */
.cta-action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.btn-cta-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-cta-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,200,87,0.4);
}

.cta-phone {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.cta-phone strong {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 44px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 1.1fr;
  gap: 36px;
}

.footer-brand .logo { margin-bottom: 14px; }

.logo-footer .logo-main { color: var(--white); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-bar p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-bottom-links a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ── CTA + FOOTER RESPONSIVE ── */
@media (max-width: 1024px) {
  .cta-inner { flex-wrap: wrap; gap: 20px; }
  .cta-text { flex: 0 0 100%; }
  .cta-badges { flex-wrap: wrap; }
  .cta-action { align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .cta-section { padding: 24px 20px; }
  .cta-badges { flex-wrap: wrap; justify-content: flex-start; }
  .cta-action { align-items: center; width: 100%; }
  .btn-cta-gold { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 20px 32px; }
  .footer-bottom-bar { flex-direction: column; text-align: center; padding: 16px 20px; }
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.35s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.40s; }
.services-grid .service-card:nth-child(9) { transition-delay: 0.45s; }
.services-grid .service-card:nth-child(10) { transition-delay: 0.50s; }

.process-step:nth-child(1) { transition-delay: 0.05s; }
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.25s; }
.process-step:nth-child(4) { transition-delay: 0.35s; }
.process-step:nth-child(5) { transition-delay: 0.45s; }
.process-step:nth-child(6) { transition-delay: 0.55s; }

.result-item:nth-child(1) { transition-delay: 0.05s; }
.result-item:nth-child(2) { transition-delay: 0.15s; }
.result-item:nth-child(3) { transition-delay: 0.25s; }
.result-item:nth-child(4) { transition-delay: 0.35s; }
.result-item:nth-child(5) { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════
   RESPONSIVE – TABLET (1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .nav-links { gap: 18px; }
  .nav-links li a { font-size: 13px; }

  .hero-container {
    grid-template-columns: 380px 1fr;
    padding: 90px 32px 50px;
  }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-center { display: none; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }

  .tools-grid { grid-template-columns: 1fr; }

  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-right { align-items: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-container {
    grid-template-columns: 1fr;
    padding: 90px 24px 40px;
  }
  .hero-left { padding: 0; }
  .hero-icons-panel { height: 300px; }
  .white-line, .gold-line { font-size: 38px; }

  /* Stats */
  .stats-section { padding: 0 16px; margin-top: -30px; }
  .stats-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }
  .stat-item { width: 100%; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-center { display: none; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .process-timeline::before { display: none; }
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .process-step h5 { margin-bottom: 4px; }
  .step-arrow { display: none; }
  .step-circle { flex-shrink: 0; width: 56px; height: 56px; }
  .step-number { margin: 0 0 4px; }

  /* Results */
  .results-grid { grid-template-columns: 1fr; gap: 32px; }
  .results-right { justify-content: flex-start; }

  /* Tools */
  .tools-grid { grid-template-columns: 1fr; }
  .tools-icons-grid { grid-template-columns: repeat(3, 1fr); }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-left h2 { font-size: 24px; }
  .cta-badges { justify-content: center; }
  .cta-right { align-items: center; width: 100%; }
  .btn-cta-gold { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .title-line { flex-wrap: wrap; }
  .title-line h2 { white-space: normal; text-align: center; }
  .line-dec { width: 40px; }
}

@media (max-width: 375px) {
  .white-line, .gold-line { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .tools-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; justify-content: center; }
}

/* ===== VOTER PAGE EXTRA MOBILE FIXES ===== */
@media (max-width: 480px) {
  .navbar { padding: 0 16px; }
  .hero-container { padding: 80px 16px 32px; }
  .white-line, .gold-line { font-size: 32px; line-height: 1.2; }
  .hero-desc { font-size: 14px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; justify-content: center; padding: 14px 20px; }
  
  .stats-section { padding: 0 12px; margin-top: -20px; }
  .stats-card { flex-direction: column; gap: 16px; padding: 20px 16px; }
  .stat-divider-v { display: none; }
  .stat-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 16px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  
  .about-section { padding: 48px 16px; }
  .services-section { padding: 48px 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 20px 16px; }
  
  .process-section { padding: 48px 16px; }
  
  .tools-section { padding: 48px 16px; }
  .tools-icons-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  
  .results-section { padding: 48px 16px; }
  .result-item { padding: 16px; }
  
  .cta-section { padding: 32px 16px; }
  .cta-left h2 { font-size: 22px; }
  
  .footer-section { padding: 40px 16px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { padding: 16px; flex-direction: column; text-align: center; gap: 8px; }
  
  .mobile-menu { padding: 16px; }
  .mobile-menu ul { gap: 4px; }
  .mobile-menu li a { padding: 12px 16px; font-size: 15px; }
}

@media (max-width: 375px) {
  .white-line, .gold-line { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .tools-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { gap: 8px; }
}