/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy2: #0d1f3c;
  --navy3: #1a2f52;
  --card-bg: #0f2040;
  --card-border: rgba(255,255,255,0.07);
  --gold: #C8973A;
  --gold2: #e8b34b;
  --blue: #1e90ff;
  --blue2: #3498db;
  --green: #2ecc71;
  --red: #e74c3c;
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.5);
  --font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body-font); background: var(--navy); color: var(--white); overflow-x: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0;  left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(200,151,58,0.2);
  margin: 0 auto;
  padding: .8rem 2rem;
  display: flex; align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.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 {
  display: flex; align-items: center; gap: 4px;
  flex: 1; margin-left: 20px;
}
.nav-links a {
  font-family: var(--font); font-weight: 500;
  font-size: 13px; color: var(--text-light);
  padding: 6px 12px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* ── SERVICES DROPDOWN ── */
.has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.has-dropdown .services-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.has-dropdown .arrow {
  display: inline-block;
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.has-dropdown:hover .arrow,
.has-dropdown.active .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  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(200,151,58,0.15);
  list-style: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-left: 1px solid rgba(200,151,58,0.15);
  border-top: 1px solid rgba(200,151,58,0.15);
  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 !important;
  align-items: center;
  gap: 14px;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  color: #1a2035 !important;
  background: transparent !important;
  transition: background 0.2s ease !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  font-family: 'Montserrat', sans-serif;
}

.dropdown-item:hover {
  background: #f4f7ff !important;
  color: #1a2035 !important;
}

.dropdown-item.active-drop {
  background: #fff8e6 !important;
}

.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: #1a2035;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
}

.drop-text small {
  font-size: 11px;
  color: #666;
  font-weight: 400;
}

/* ── MOBILE MENU: data page uses div, not ul/li ── */
.mobile-has-dropdown {
  width: 100%;
}

.mobile-services-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}

.mobile-services-toggle:hover { color: var(--gold); }

.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: 8px;
  margin: 0 12px 8px;
  overflow: hidden;
}

.mobile-has-dropdown.open .mobile-dropdown {
  display: flex;
}

.mobile-sub-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 11px 16px !important;
  color: rgba(255,255,255,0.70) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: var(--font) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
  background: transparent !important;
}

.mobile-sub-link:last-child { border-bottom: none; }

.mobile-sub-link i {
  color: var(--gold);
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-sub-link:hover {
  color: var(--gold) !important;
  background: rgba(200,151,58,0.07) !important;
}

.active-mobile-drop { color: var(--gold) !important; }

.btn-schedule {
  font-family: var(--font); font-weight: 600; font-size: 13px;
  background: var(--gold); color: #0a0a0a;
  padding: 9px 20px; border-radius: 6px;
  white-space: nowrap; transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.btn-schedule:hover { background: var(--gold2); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; 
  transform: scale(1.0);         
  display: block;
  transform-origin: center center;
  object-fit: contain
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 13, 29, 0.97) 0%,
    rgba(8, 18, 38, 0.93) 25%,
    rgba(8, 18, 38, 0.786) 50%,
    rgba(8, 18, 38, 0.25) 75%,
    rgba(14, 26, 50, 0.05) 100%
  );
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  min-height: 540px;
}

.hero-left {
  flex: 0 0 500px;
  max-width: 500px;
  padding: 70px 0;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }

.hero-left h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 50px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-left h1 .gold { color: var(--gold); }

.hero-tagline {
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 13px 26px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 6px;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(200,151,58,0.1);
}

/* Hero text entrance animation */
.hero-left > * {
  animation: fadeInUp 0.6s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.15s; }
.hero-left > *:nth-child(3) { animation-delay: 0.25s; }
.hero-left > *:nth-child(4) { animation-delay: 0.35s; }
.hero-left > *:nth-child(5) { animation-delay: 0.45s; }

/* Hero responsive */
@media (max-width: 1100px) {
  .hero-content-wrap { padding: 0 40px; }
  .hero-left { flex: 0 0 420px; }
}
@media (max-width: 900px) {
  .hero-left { flex: 1; max-width: 100%; }
  .hero-content-wrap { padding: 0 30px; }
  .hero-bg-overlay {
    background: linear-gradient(
      to right,
      rgba(8,18,38,0.97) 0%,
      rgba(8,18,38,0.85) 100%
    );
  }
}

/* ===== HAMBURGER & MOBILE MENU (data page) ===== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  margin-left: auto;
}
.hamburger-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.data-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  padding: 1rem 1.5rem;
  gap: .2rem;
  border-top: 1px solid rgba(200,151,58,0.2);
  position: sticky;
  top: 64px;
  z-index: 999;
}
.data-mobile-menu.open { display: flex; }
.data-mobile-menu a {
  color: rgba(255,255,255,.8);
  font-family: var(--font);
  font-size: .88rem;
  padding: .65rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.data-mobile-menu a:hover { background: rgba(200,151,58,.1); color: var(--gold); }

/* ===== MOBILE RESPONSIVE FIXES (data page) ===== */
@media (max-width: 900px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; }
  .btn-schedule { display: none; }
  .hamburger-btn { display: flex; }
  
  .hero-left { padding: 80px 20px 40px; }
  .hero-left h1 { font-size: 32px; }
  
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }
  .stat-divider { display: none; }
  .stat-item { justify-content: flex-start; gap: 12px; }
}

@media (max-width: 600px) {
  .hero-left { padding: 70px 16px 32px; }
  .hero-left h1 { font-size: 26px; }
  .hero-tagline { font-size: 14px; }
  
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 16px; gap: 12px; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 11px; }
  
  .services-section, .proof-section, .trust-impact-section { padding: 40px 16px; }
  .process-section { padding: 40px 16px; }
  
  .tools-col h3 { font-size: 18px; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .tool-badge { padding: 10px 8px; font-size: 11px; }
  
  .cta-section { flex-direction: column; padding: 32px 16px; gap: 20px; }
  .cta-left h2 { font-size: 22px; }
  .cta-sub { font-size: 20px; }
  .btn-cta-primary, .btn-cta-secondary { min-width: unset; width: 100%; }
  .cta-img-wrap { display: none; }
  
  .footer-inner { grid-template-columns: 1fr; padding: 32px 16px; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 14px 16px; text-align: center; }
  
  .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .stats-inner { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 22px; }
}

@media (max-width: 600px) {
  .hero-left h1 { font-size: 32px; }
  .hero-content-wrap { padding: 0 20px; }
  .hero-left { flex: 0 0 auto; max-width: 100%; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: transparent;
  position: relative;
  z-index: 10;
  padding: 0 40px;
  margin-top: -40px;
}

.stats-inner {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.stat-icon-circle {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.stat-icon-circle svg {
  width: 100%;
  height: 100%;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font);
  font-weight: 800;
  font-size: 22px;
  color: #0f172a;
  line-height: 1.1;
  display: block;
}

.stat-label {
  font-family: var(--body-font);
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  margin-top: 3px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: #e2e8f0;
  flex-shrink: 0;
  margin: 0 8px;
}

/* Responsive */
@media (max-width: 1100px) {
  .stats-inner { padding: 24px 30px; gap: 0; }
  .stat-num { font-size: 18px; }
}
@media (max-width: 768px) {
  .stats-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 20px;
  }
  .stat-item { flex: 0 0 calc(33% - 20px); justify-content: flex-start; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .stat-item { flex: 0 0 calc(50% - 20px); }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #ffffff;
  padding: 70px 0;
}

.services-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT */
.services-left {
  flex: 0 0 260px;
  padding-top: 10px;
}

.section-tag {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.services-left h2 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
}

.services-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}

.services-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* RIGHT */
.services-right {
  flex: 1;
}

.services-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 24px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(59,130,246,0.12);
  transform: translateY(-3px);
  border-color: #bfdbfe;
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
}

.svc-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.service-card h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-wrap { padding: 0 30px; gap: 30px; }
}
@media (max-width: 768px) {
  .services-wrap { flex-direction: column; }
  .services-left { flex: none; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== ELECTION INTELLIGENCE DASHBOARD ===== */
.dashboard-section {
  background: #ffffff;
  padding: 40px 40px;
  margin: 0;
}
.dash-full-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  border: 3px solid rgba(200,151,58,0.4);
}
.dashboard-header {
  font-family: var(--font); font-weight: 800; font-size: 15px;
  color: #3b82f6; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,151,58,0.2);
}
.dashboard-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.dash-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 16px; min-height: 180px;
}
.dash-card h5 {
  font-family: var(--font); font-weight: 700; font-size: 11px;
  color: var(--white); margin-bottom: 14px; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-map-img { width: 100%; border-radius: 6px; height: 140px; object-fit: cover; object-position: center; }

/* Sentiment Chart */
.sentiment-chart { display: flex; align-items: center; gap: 10px; }
.donut-container { flex-shrink: 0; }
.donut-svg { width: 80px; height: 80px; }
.sentiment-labels p, .demo-labels p {
  font-size: 11px; color: var(--text-light);
  display: flex; align-items: center; gap: 5px; margin-bottom: 5px;
}
.sentiment-labels strong, .demo-labels strong { color: var(--white); }

/* Turnout Chart */
.turnout-chart { text-align: center; }
.trend-svg { width: 100%; height: 60px; }
.turnout-val {
  font-family: var(--font); font-weight: 800; font-size: 28px;
  color: var(--white); display: block;
}
.turnout-sub { font-size: 11px; color: var(--text-muted); }

/* Demographic Chart */
.demographic-chart { display: flex; align-items: center; gap: 8px; }

/* Issue Bars */
.issue-bars { display: flex; flex-direction: column; gap: 7px; }
.issue-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--text-light);
}
.issue-row > span:first-child { width: 80px; flex-shrink: 0; font-size: 10px; }
.issue-bar-wrap {
  flex: 1; height: 6px; background: rgba(255,255,255,0.08);
  border-radius: 3px; overflow: hidden;
}
.issue-bar {
  height: 100%; background: var(--blue2);
  border-radius: 3px; transition: width 0.8s ease;
}
.red-bar { background: var(--red); }
.orange-bar { background: #f39c12; }
.issue-pct { font-size: 10px; color: var(--white); font-weight: 700; width: 28px; text-align: right; }

/* Win Probability */
.win-prob { text-align: center; }
.gauge-svg { width: 120px; height: 70px; }
.win-label {
  font-size: 12px; color: var(--green);
  font-weight: 600; margin-top: 4px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: #ffffff;
  padding: 60px 80px 70px;
}

.process-title-wrap {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.process-title-wrap::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #1e90ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-title-center {
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 3px;
  color: #1a2f52;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  overflow-x: visible;
}

.process-step {
  flex: 0 0 130px;
  text-align: center;
  padding: 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  margin: 0 auto 10px;
  transition: transform 0.2s;
}
.step-icon-wrap:hover { transform: scale(1.07); }

.step-num {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid;
}

/* Step colors */
.step-blue  { border-color: #3b82f6; color: #3b82f6; }
.step-blue  .step-num { color: #3b82f6; border-color: #3b82f6; }

.step-green { border-color: #22c55e; color: #22c55e; }
.step-green .step-num { color: #22c55e; border-color: #22c55e; }

.step-teal  { border-color: #14b8a6; color: #14b8a6; }
.step-teal  .step-num { color: #14b8a6; border-color: #14b8a6; }

.step-gold  { border-color: #f59e0b; color: #f59e0b; }
.step-gold  .step-num { color: #f59e0b; border-color: #f59e0b; }

.step-blue2 { border-color: #6366f1; color: #6366f1; }
.step-blue2 .step-num { color: #6366f1; border-color: #6366f1; }

.step-indigo { border-color: #8b5cf6; color: #8b5cf6; }
.step-indigo .step-num { color: #8b5cf6; border-color: #8b5cf6; }

.step-red   { border-color: #ef4444; color: #ef4444; }
.step-red   .step-num { color: #ef4444; border-color: #ef4444; }

.process-step h5 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  color: #0f172a;
  margin-bottom: 6px;
  margin-top: 4px;
}

.process-step p {
  font-size: 11px;
  color: #64748b;
  line-height: 1.5;
  text-align: center;
}

.process-arrow {
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 16px;
  padding-top: 26px;
  align-self: flex-start;
  margin: 0 2px;
}

/* ===== TRUST / IMPACT / TOOLS ===== */
.trust-impact-section {
  display: flex;
  gap: 24px;
  padding: 50px 60px;
  background: #ffffff;
  max-width: 100%;
  margin: 0;
  align-items: stretch;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* TRUST COL */
.trust-col {
  flex: 1;
  background: #0d1f3c;
  border-radius: 12px;
  padding: 28px 26px;
}
.trust-col h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.35;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--body-font);
}
.trust-list li:last-child { border-bottom: none; }
.check-icon { color: #22c55e; font-size: 14px; flex-shrink: 0; }

/* IMPACT COL */
.impact-col {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
}
.impact-col h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.impact-title-bar {
  display: inline-block;
  width: 4px;
  height: 20px;
  background: #1e90ff;
  border-radius: 2px;
  flex-shrink: 0;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.impact-item {
  text-align: center;
  padding: 16px 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impact-arrow-icon {
  color: #22c55e;
  font-size: 12px;
  margin-bottom: 4px;
}
.impact-num {
  display: block;
  font-family: var(--font);
  font-weight: 900;
  font-size: 28px;
  color: #22c55e;
  line-height: 1.1;
}
.impact-label {
  font-size: 10.5px;
  color: #64748b;
  margin-top: 5px;
  line-height: 1.4;
  text-align: center;
}

/* TOOLS COL */
.tools-col {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
}
.tools-col h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 20px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tool-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #475569;
  font-family: var(--body-font);
  font-weight: 600;
}
.tool-badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.tool-badge .tool-img-wide {
  width: 56px;
  height: 28px;
  object-fit: contain;
}

/* ===== PROOF SECTION ===== */
.proof-section {
  display: flex;
  gap: 24px;
  padding: 30px 60px;
  background: #ffffff;
  max-width: 100%;
  margin: 0;
  align-items: stretch;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.proof-col {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}

.proof-tag {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  color: #1e90ff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.proof-col h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.proof-col > p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Case Stats */
.case-stats {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: 30px;
}

.case-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.case-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #64748b;
  margin-bottom: 10px;
}

.case-num {
  font-family: var(--font);
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
  line-height: 1.1;
}

.case-lbl {
  font-size: 10px;
  color: #64748b;
  margin-top: 4px;
  line-height: 1.4;
  text-align: center;
}

/* Before After */
.ba-col {
  justify-content: flex-start;
}

.ba-img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  margin-top: 10px;
  max-height: 300px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #0a1628;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.cta-left {
  flex: 1.4;
  z-index: 2;
  position: relative;
}

.cta-left h2 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 28px;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.cta-sub {
  display: block;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
}

.cta-left p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  line-height: 1.6;
  max-width: 420px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  flex-shrink: 0;
  position: relative;
}

.btn-cta-primary {
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  background: var(--gold);
  color: #0a0a0a;
  padding: 14px 32px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 240px;
}
.btn-cta-primary:hover { background: var(--gold2); }

.btn-cta-secondary {
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-align: center;
  background: transparent;
  transition: border-color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 240px;
}
.btn-cta-secondary:hover { border-color: var(--gold); color: var(--gold); }

.cta-img-wrap {
  flex-shrink: 0;
  width: 320px;
  height: 160px;
  position: relative;
  z-index: 2;
}

.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  display: block;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0) 100%);
}

/* ===== FOOTER ===== */
.footer {
  background: #060f1e; border-top: 1px solid rgba(200,151,58,0.2);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 50px 80px 40px;
  display: grid; grid-template-columns: 220px 1fr 1.4fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 12px; color: var(--text-muted); line-height: 1.9;
  margin-bottom: 18px;
}
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.social-icons a:hover { background: var(--gold); color: #0a0a0a; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font); font-weight: 700; font-size: 13px;
  color: var(--white); margin-bottom: 16px; text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { font-size: 12.5px; color: var(--text-muted); transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 12.5px; color: var(--text-muted); margin-bottom: 10px;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 80px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeInUp 0.6s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.15s; }
.hero-left > *:nth-child(3) { animation-delay: 0.25s; }
.hero-left > *:nth-child(4) { animation-delay: 0.35s; }
.hero-left > *:nth-child(5) { animation-delay: 0.45s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-section, .proof-section, .trust-impact-section { padding: 60px 40px; }
  .process-section { padding: 50px 40px; }
  .dashboard-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .hero-left { flex: none; padding: 40px 30px; }
  .hero-right { height: 300px; }
  .services-section { flex-direction: column; }
  .trust-impact-section { flex-direction: column; }
  .proof-section { flex-direction: column; }
  .stats-bar { padding: 20px 30px; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero-left h1 { font-size: 28px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .cta-section { flex-direction: column; padding: 40px 20px; }
  .cta-img-wrap { display: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 40px 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 18px 20px; }
}

/* =============================================
   DATA PAGE — COMPLETE MOBILE RESPONSIVE FIX
   ============================================= */

@media (max-width: 900px) {
  /* Hero */
  .hero-content-wrap { padding: 0 24px; min-height: 460px; }
  .hero-left { padding: 80px 0 40px; }
  .hero-left h1 { font-size: 30px; }
  .hero-tagline { font-size: 15px; }
  .hero-desc { font-size: 13px; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  /* Stats Bar */
  .stats-bar { padding: 0 20px; margin-top: -20px; }
  .stats-inner {
    padding: 20px 16px;
    gap: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-divider { display: none; }
  .stat-item { flex: none; justify-content: flex-start; gap: 10px; }
  .stat-icon-circle { width: 40px; height: 40px; }
  .stat-num { font-size: 18px; }
  .stat-label { font-size: 11px; }

  /* Services */
  .services-section { padding: 48px 0; }
  .services-wrap { flex-direction: column; padding: 0 20px; gap: 24px; }
  .services-left { flex: none; width: 100%; }
  .services-left h2 { font-size: 22px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 18px 12px; }
  .svc-icon-wrap { width: 44px; height: 44px; }
  .service-card h4 { font-size: 12px; }
  .service-card p { font-size: 11px; }

  /* Dashboard */
  .dashboard-section { padding: 32px 20px; }
  .dashboard-header { font-size: 13px; letter-spacing: 1.5px; }
  .dash-full-img { border-radius: 10px; }

  /* Process */
  .process-section { padding: 48px 20px; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }
  .process-arrow { display: none; }
  .process-step { flex: none; width: 100%; padding: 0; }
  .step-icon-wrap { width: 60px; height: 60px; font-size: 22px; }
  .process-step h5 { font-size: 12px; }
  .process-step p { font-size: 10.5px; }

  /* Trust / Impact / Tools */
  .trust-impact-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 16px;
  }
  .trust-col, .impact-col, .tools-col { flex: none; width: 100%; }
  .trust-col h3, .impact-col h3, .tools-col h3 { font-size: 15px; }
  .trust-list li { font-size: 12px; }

  /* Impact Grid */
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .impact-num { font-size: 24px; }
  .impact-label { font-size: 10px; }

  /* Tools Grid */
  .tools-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .tool-badge img { width: 32px; height: 32px; }
  .tool-badge .tool-img-wide { width: 48px; height: 24px; }
  .tool-badge { font-size: 10px; }

  /* Proof / Case Study */
  .proof-section { flex-direction: column; padding: 24px 20px; gap: 16px; }
  .proof-col { flex: none; width: 100%; }
  .case-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .case-num { font-size: 22px; }
  .case-lbl { font-size: 11px; }
  .ba-img { width: 100%; height: auto; }

  /* CTA */
  .cta-section { flex-direction: column; padding: 32px 20px; gap: 20px; align-items: flex-start; }
  .cta-left h2 { font-size: 22px; }
  .cta-sub { font-size: 20px; }
  .cta-right { width: 100%; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; min-width: unset; justify-content: center; }
  .cta-img-wrap { display: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 32px 20px; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 14px 20px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-left h1 { font-size: 26px; }
  .hero-content-wrap { padding: 0 16px; }

  .stats-bar { padding: 0 16px; }
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 14px; gap: 10px; }
  .stat-num { font-size: 17px; }

  .services-wrap { padding: 0 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .process-section { padding: 40px 16px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .trust-impact-section { padding: 32px 16px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  .proof-section { padding: 24px 16px; }
  .case-stats { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; padding: 28px 16px; gap: 20px; }
}

@media (max-width: 400px) {
  .hero-left h1 { font-size: 22px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .case-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {

  .logo-main{
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .logo-sub{
    font-size: 7px;
    letter-spacing: 1px;
  }

  .brand-logo-img{
    width: 50px;
    height: 50px;
  }

  .navbar{
    padding: 10px 12px;
  }

  .nav-inner{
    gap: 10px;
  }

  .hamburger-btn{
    display: flex !important;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 9999;
  }
}