/* ============================================================
   MAHACRED — Corporate Fintech Design System
   Inspired by Experian.in + Equifax.co.in
   Logo Colors: Navy #002D72  |  Green #1B8F5A  |  Orange #E87722
   ============================================================ */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Brand */
  --brand-navy: #002D72;
  --brand-navy-deep: #001845;
  --brand-navy-light: #003B96;
  --brand-green: #1B8F5A;
  --brand-green-dark: #147A4A;
  --brand-green-light: #23A96B;
  --brand-orange: #E87722;
  --brand-teal: #00718F;

  /* Hero/Dark backgrounds */
  --hero-bg: #0B1F4A;
  --hero-bg-2: #0D2B5E;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --light-gray: #EEF1F5;
  --mid-gray: #D0D5DD;
  --text-gray: #667085;
  --text-dark: #1D2939;
  --text-heading: #101828;
  --dark-footer: #1B2437;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.10), 0 0 1px rgba(0,0,0,0.08);
  --shadow-nav: 0 2px 12px rgba(0,0,0,0.06);

  /* Layout */
  --max-width: 1200px;
  --section-padding: 96px;
  --container-px: clamp(20px, 4vw, 40px);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Border radius — corporate: moderate, not pill */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-btn: 6px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--text-heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

/* ---------- Buttons (Experian/Equifax style: slightly rounded rectangle, NOT pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--brand-navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,45,114,0.25);
}

.btn-green {
  background: var(--brand-green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--brand-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,143,90,0.25);
}

.btn-teal {
  background: var(--brand-teal);
  color: var(--white);
}
.btn-teal:hover {
  background: #005f78;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 2px solid var(--brand-navy);
}
.btn-outline:hover {
  background: var(--brand-navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--brand-navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ============================================================
   NAVIGATION — 2-TIER (like Experian/Equifax)
   ============================================================ */

/* Top utility bar */
.top-bar {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left a,
.top-bar-right a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color var(--transition);
}

.top-bar-left a:hover,
.top-bar-right a:hover {
  color: var(--white);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-right .divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

/* Main navigation */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.main-nav.scrolled {
  box-shadow: var(--shadow-nav);
}

.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.nav-logo img {
  height: 90px;
  width: auto;
  transition: height 0.3s ease;
}

.main-nav.scrolled .nav-logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--brand-navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  background: var(--brand-navy);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .btn {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — Creative Show-Stopper
   Full viewport, animated grid, gradient text, floating stats
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse at 20% 50%, #0D2B5E 0%, #0B1F4A 40%, #071536 100%);
  overflow: hidden;
  padding: 100px 0 0;
}

/* Animated grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(27,143,90,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,143,90,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}

@keyframes grid-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(0,45,114,0.25);
  top: -150px; left: -100px;
  animation: glow-pulse 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(27,143,90,0.15);
  bottom: -100px; right: -80px;
  animation: glow-pulse 8s ease-in-out infinite 3s;
}

.hero-glow-3 {
  width: 300px; height: 300px;
  background: rgba(232,119,34,0.08);
  top: 40%; right: 25%;
  animation: glow-pulse 10s ease-in-out infinite 5s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Floating network nodes */
.hero-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-node {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(27,143,90,0.5);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(27,143,90,0.3);
  animation: node-float 12s ease-in-out infinite;
}

.hero-node::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px;
  border: 1px solid rgba(27,143,90,0.15);
  border-radius: 50%;
  animation: node-ring 3s ease-out infinite;
}

.hero-node:nth-child(1) { left: 8%; top: 25%; animation-delay: 0s; }
.hero-node:nth-child(2) { left: 22%; top: 65%; animation-delay: 2s; background: rgba(0,45,114,0.5); box-shadow: 0 0 12px rgba(0,45,114,0.3); }
.hero-node:nth-child(3) { left: 75%; top: 20%; animation-delay: 4s; width: 4px; height: 4px; }
.hero-node:nth-child(4) { left: 85%; top: 55%; animation-delay: 1s; background: rgba(232,119,34,0.4); box-shadow: 0 0 12px rgba(232,119,34,0.2); }
.hero-node:nth-child(5) { left: 55%; top: 75%; animation-delay: 3s; width: 5px; height: 5px; }
.hero-node:nth-child(6) { left: 40%; top: 15%; animation-delay: 5s; background: rgba(0,45,114,0.4); }

@keyframes node-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, -25px); }
  66% { transform: translate(-10px, 15px); }
}

@keyframes node-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* Connection lines between nodes (CSS-drawn) */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

.hero-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,143,90,0.5), transparent);
  transform-origin: left center;
}

.hero-line-1 { top: 30%; left: 10%; width: 300px; transform: rotate(25deg); animation: line-fade 6s ease-in-out infinite; }
.hero-line-2 { top: 55%; left: 60%; width: 250px; transform: rotate(-15deg); animation: line-fade 6s ease-in-out infinite 2s; }
.hero-line-3 { top: 70%; left: 20%; width: 350px; transform: rotate(10deg); animation: line-fade 6s ease-in-out infinite 4s; background: linear-gradient(90deg, transparent, rgba(0,45,114,0.4), transparent); }

@keyframes line-fade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Hero main content */
.hero-main {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.03em;
  animation: badge-in 0.8s ease-out 0.3s both;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--brand-green-light);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(35,169,107,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(35,169,107,0); }
}

@keyframes badge-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: hero-title-in 0.9s ease-out 0.5s both;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--brand-green-light) 0%, #7DDAA8 40%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 36px;
  animation: hero-desc-in 0.9s ease-out 0.7s both;
}

@keyframes hero-desc-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: hero-btns-in 0.9s ease-out 0.9s both;
}

@keyframes hero-btns-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .btn-hero-primary {
  background: var(--brand-green);
  color: var(--white);
  padding: 15px 34px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  box-shadow: 0 4px 24px rgba(27,143,90,0.35);
}

.hero .btn-hero-primary:hover {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27,143,90,0.45);
}

.hero .btn-hero-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 34px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.hero .btn-hero-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* Floating Glass Stat Cards */
.hero-stats-float {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding: 0 var(--container-px);
  animation: stats-in 1s ease-out 1.1s both;
}

@keyframes stats-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition);
  min-width: 200px;
}

.hero-stat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 22px; height: 22px;
}

.hero-stat-icon.blue { background: rgba(0,45,114,0.2); }
.hero-stat-icon.blue svg { stroke: #6BA3E8; }
.hero-stat-icon.green { background: rgba(27,143,90,0.2); }
.hero-stat-icon.green svg { stroke: #7DDAA8; }
.hero-stat-icon.orange { background: rgba(232,119,34,0.2); }
.hero-stat-icon.orange svg { stroke: #F0A060; }

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-value .suffix {
  font-size: 0.6em;
  color: var(--brand-green-light);
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 2px;
}

/* Wave Divider */
.hero-wave {
  position: relative;
  z-index: 4;
  margin-top: auto;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   BREADCRUMB (Equifax style)
   ============================================================ */
.breadcrumb-bar {
  background: var(--off-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.8rem;
  color: var(--text-gray);
}

.breadcrumb-bar a {
  color: var(--brand-navy);
  font-weight: 500;
}

.breadcrumb-bar a:hover {
  text-decoration: underline;
}

.breadcrumb-bar span {
  margin: 0 6px;
  color: var(--mid-gray);
}

/* ============================================================
   SECTION BASE STYLES
   ============================================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-white { background: var(--white); }
.section-gray { background: var(--off-white); }
.section-dark {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--brand-navy) 100%);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

/* Section headers (centered, Experian style) */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  margin-bottom: 14px;
}

.section-header .section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--brand-green);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   SERVICE CARDS — Equifax-style (white bg, light border, icon+title)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card-icon.blue {
  background: rgba(0,45,114,0.08);
  color: var(--brand-navy);
}

.service-card-icon.blue svg { stroke: var(--brand-navy); }

.service-card-icon.green {
  background: rgba(27,143,90,0.08);
  color: var(--brand-green);
}

.service-card-icon.green svg { stroke: var(--brand-green); }

.service-card-icon.orange {
  background: rgba(232,119,34,0.08);
  color: var(--brand-orange);
}

.service-card-icon.orange svg { stroke: var(--brand-orange); }

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy);
  transition: all var(--transition);
}

.card-link:hover .card-link-arrow {
  transform: translateX(4px);
}

.card-link-arrow {
  display: inline-flex;
  transition: transform var(--transition);
}

.card-link svg { width: 14px; height: 14px; }

/* ============================================================
   FEATURE SECTION — Split layout (text + image)
   Alternating sides like Experian/Equifax
   ============================================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.feature-split.reversed { direction: rtl; }
.feature-split.reversed > * { direction: ltr; }

.feature-image {
  position: relative;
}

.feature-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  line-height: 0;
}

.feature-image-wrap img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-image-wrap:hover img {
  transform: scale(1.02);
}

/* Decorative accent behind feature image */
.feature-image .accent-bar {
  position: absolute;
  width: 6px;
  height: 80px;
  border-radius: 3px;
  z-index: -1;
}

.feature-text .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  margin-bottom: 12px;
}

.feature-text .section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--brand-green);
}

.feature-text h2 {
  margin-bottom: 18px;
}

.feature-text > p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Checklist items */
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checklist-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(27,143,90,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--brand-green);
}

.checklist-item span {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION — Dark bg with metrics
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-tag {
  color: rgba(255,255,255,0.6);
}

.about-text .section-tag::before {
  background: var(--brand-green-light);
}

.about-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.metric-card {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}

.metric-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-value .suffix {
  font-size: 0.6em;
  color: var(--brand-green-light);
}

.metric-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ============================================================
   SECURITY GRID — 3x2 cards
   ============================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.security-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-navy);
}

.security-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,45,114,0.06), rgba(27,143,90,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand-navy);
}

.security-card h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.security-card p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ============================================================
   WHY CHOOSE — Number indexed cards (2 columns)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-card-hover);
}

.why-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-card p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--brand-navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(27,143,90,0.08);
  filter: blur(60px);
  top: -80px;
  right: -40px;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section .section-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.75;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(0,45,114,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-navy);
}

.contact-item h4 {
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.contact-item p {
  color: var(--text-gray);
  font-size: 0.88rem;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  margin-bottom: 24px;
  font-size: 1.15rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(0,45,114,0.08);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-card .btn { width: 100%; }

/* ============================================================
   FOOTER — Dark corporate style
   ============================================================ */
.site-footer {
  background: var(--dark-footer);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 70px;
  filter: brightness(1.3);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--brand-green-light);
  padding-left: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.6);
}

.footer-social a:hover svg {
  stroke: var(--white);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1; transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1; transform: translateX(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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-navy-light);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 18px; height: 18px; stroke: var(--white);
}

/* Page loader */
.page-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--hero-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--brand-green-light);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-logo img { height: 75px; }
  .main-nav.scrolled .nav-logo img { height: 60px; }
  .hero { min-height: auto; padding: 100px 0 0; }
  .hero-stats-float { gap: 14px; }
  .hero-stat-card { min-width: 170px; padding: 14px 18px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .feature-split.reversed { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid .feature-image { display: none; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; }
  .top-bar { display: none; }
  .main-nav-inner { height: 64px; }
  .nav-logo img { height: 65px; }
  .main-nav.scrolled .nav-logo img { height: 55px; }
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(11,31,74,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 60px 32px;
    z-index: 500;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.05rem;
    color: var(--white);
    padding: 12px 20px;
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions { display: none; }
  .hero { padding: 90px 0 0; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .hero-stats-float { gap: 10px; margin-top: 40px; }
  .hero-stat-card { min-width: 140px; padding: 12px 14px; }
  .hero-stat-value { font-size: 1.2rem; }
  .hero-node { display: none; }
  .hero-lines { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons .btn { width: 100%; }
  .hero-stats-float { flex-direction: column; align-items: center; }
  .hero-stat-card { width: 100%; max-width: 280px; }
  .metrics-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .metric-value { font-size: 1.5rem; }
  .contact-form-card { padding: 24px 18px; }
}

/* ---------- Print ---------- */
@media print {
  .top-bar, .main-nav, .back-to-top, .page-loader, .hero-grid-bg, .hero-nodes, .hero-lines, .hero-glow { display: none !important; }
}

