/* ============================================================
   DIGITAL SUNIL — Professional UI Redesign
   Design: Premium Dark Glassmorphism Agency Theme
   ============================================================ */

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

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-root:        #ffffff;
  --bg-surface:     #f5f7ff;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f8faff;

  /* Brand Palette */
  --navy:           #1a2460;
  --navy-dark:      #0f1a4f;
  --navy-light:     #263080;
  --blue:           #2563eb;
  --blue-light:     #3b82f6;
  --blue-dark:      #1d4ed8;
  --orange:         #f97316;
  --orange-dark:    #ea6c0a;
  --orange-light:   #fb923c;
  --purple:         #7c3aed;
  --purple-light:   #a855f7;
  --pink:           #ec4899;
  --cyan:           #06b6d4;
  --green:          #22c55e;

  /* Gradients */
  --grad-brand:     linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  --grad-warm:      linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  --grad-cool:      linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  --grad-text:      linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);

  /* Text */
  --text-100:       #0f172a;
  --text-200:       #1e293b;
  --text-300:       #334155;
  --text-400:       #64748b;
  --text-500:       #94a3b8;

  /* Borders */
  --border:         #e2e8f0;
  --border-bright:  #cbd5e1;
  --border-blue:    rgba(37,99,235,0.25);

  /* Glass */
  --glass-blur:     blur(20px);
  --glass-blur-sm:  blur(10px);

  /* Shadows */
  --shadow-card:    0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-blue:    0 4px 24px rgba(37,99,235,0.15);
  --shadow-orange:  0 4px 24px rgba(249,115,22,0.25);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);

  /* Typography */
  --font-sans:      'Inter', system-ui, sans-serif;
  --font-heading:   'Poppins', system-ui, sans-serif;

  /* Motion */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur:            0.3s;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg-root);
  color: var(--text-300);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Subtle dot grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,36,96,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-100);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color var(--dur) var(--ease); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: rgba(26,36,96,0.25); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.section-padding { padding: 110px 0; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 99px;
}

.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
}
.section-title p {
  color: var(--text-400);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* ── Gradient Text ──────────────────────────────────────── */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badges ─────────────────────────────────────────────── */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(249,115,22,0.4);
  background: rgba(249,115,22,0.08);
  color: var(--orange-dark);
  margin-bottom: 24px;
}
.pill-badge .live-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(249,115,22,0.3);
  animation: pulse-dot 2s ease infinite;
}

.badge-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-blue   { background: rgba(59,130,246,0.12); color: var(--blue-light);   border: 1px solid rgba(59,130,246,0.25); }
.badge-purple { background: rgba(168,85,247,0.12); color: var(--purple-light); border: 1px solid rgba(168,85,247,0.25); }
.badge-pink   { background: rgba(236,72,153,0.12); color: #f9a8d4;             border: 1px solid rgba(236,72,153,0.25); }
.badge-cyan   { background: rgba(6,182,212,0.12);  color: #67e8f9;             border: 1px solid rgba(6,182,212,0.25); }
.badge-orange { background: rgba(249,115,22,0.12); color: #fdba74;             border: 1px solid rgba(249,115,22,0.25); }
.badge-green  { background: rgba(34,197,94,0.12);  color: #86efac;             border: 1px solid rgba(34,197,94,0.25); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--grad-brand);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(26,36,96,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,36,96,0.35);
}

/* Navy filled button */
.btn-navy {
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(26,36,96,0.25);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,36,96,0.35);
}

/* Orange filled button */
.btn-orange {
  background: var(--orange);
  color: #fff !important;
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Watch demo style button */
.btn-watch-demo {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-bright);
  gap: 10px;
}
.btn-watch-demo:hover {
  background: var(--bg-surface);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-watch-demo i { color: var(--orange); font-size: 1.1rem; }

.btn-white {
  background: #ffffff;
  color: var(--navy) !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}
.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn-ghost {
  background: var(--bg-surface);
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-card-hover);
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── Blob Decorations ───────────────────────────────────── */
.blob-wrapper {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blur-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  animation: floatBlob 25s ease-in-out infinite alternate;
}

.blob-blue   { width: 700px; height: 700px; background: radial-gradient(circle, var(--orange) 0%, transparent 65%);  top: -15%; left: -10%; }
.blob-purple { width: 600px; height: 600px; background: radial-gradient(circle, var(--navy) 0%, transparent 65%);    bottom: 5%; right: -10%; animation-delay: -8s; opacity: 0.05; }
.blob-cyan   { width: 400px; height: 400px; background: radial-gradient(circle, var(--blue) 0%, transparent 65%);    top: 50%; left: 40%; animation-delay: -4s; opacity: 0.06; }

@keyframes floatBlob {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(50px,-70px) scale(1.08); }
  100% { transform: translate(-30px,40px) scale(0.94); }
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  padding: 16px 0;
  transition: all var(--dur) var(--ease);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid transparent;
  transition: all var(--dur) var(--ease);
}

.navbar.sticky::before {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar.sticky { padding: 10px 0; }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  padding: 4px;
  transition: all var(--dur) var(--ease);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--orange); }

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

.nav-links li a:not(.btn) {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-300);
  transition: all var(--dur) var(--ease);
}
.nav-links li a:not(.btn):hover,
.nav-links li a:not(.btn).active {
  background: rgba(26,36,96,0.06);
  color: var(--navy);
}
.nav-links li a:not(.btn).active {
  color: var(--navy);
  font-weight: 600;
}

.nav-links li:last-child a { margin-left: 10px; }

.nav-icon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;   /* right-align bars for tapered cascade effect */
  gap: 5px;
  z-index: 1003;
  padding: 4px;
  transition: all var(--dur) var(--ease);
}
.hamburger.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.hamburger .bar {
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(249,115,22,0.6), var(--navy));
  transition: width 0.28s var(--ease), opacity 0.28s var(--ease);
  display: block;
}
.hamburger .bar:nth-child(1) { width: 22px; }
.hamburger .bar:nth-child(2) { width: 14px; }
.hamburger .bar:nth-child(3) { width: 8px; }

/* Hover: all bars expand to full width */
.hamburger:hover .bar { width: 22px; }

.sidebar-overlay { display: none; }
.sidebar-logo-container { display: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { animation: fadeUp 0.9s var(--ease-spring) both; }

/* Orange label badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 24px; height: 2.5px;
  background: var(--orange);
  border-radius: 99px;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  font-weight: 900;
  line-height: 1.13;
  color: var(--navy);
  margin-bottom: 6px;
}

.hero h1 .orange-line {
  display: block;
  color: var(--orange);
}

.hero > .container .hero-grid .hero-content p {
  font-size: clamp(0.92rem, 1.1vw + 0.3rem, 1.05rem);
  color: var(--text-400);
  max-width: 500px;
  line-height: 1.85;
  margin-top: 20px;
  margin-bottom: 28px;
}

/* Feature checks row */
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-bottom: 36px;
}
.hero-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-200);
}
.hero-check-item i {
  color: var(--orange);
  font-size: 1rem;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right side visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.9s 0.15s var(--ease-spring) both;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 520px;
  margin: 0 auto;
  overflow: visible;
}

/* Small decorative orange dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  z-index: 0;
}
.hero-dot-1 { width: 10px; height: 10px; top: 8%;  right: 28%; opacity: 0.7; }
.hero-dot-2 { width:  7px; height:  7px; top: 22%; right: 10%; opacity: 0.5; }
.hero-dot-3 { width:  6px; height:  6px; top: 4%;  right: 50%; opacity: 0.4; }

/* Navy arch — centered behind person, large enough for full image */
.navy-arch {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  top: 46%;
  left: 54%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  border-radius: 50%;
  z-index: 1;
}

/* Solid orange circle — centered inside navy ring */
.orange-circle {
  position: absolute;
  width: 63%;
  aspect-ratio: 1;
  top: 46%;
  left: 54%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  border-radius: 50%;
  z-index: 2;
}

/* Orange dashed ring — largest, same center */
.orange-ring {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  top: 46%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2.5px dashed rgba(249,115,22,0.6);
  background: transparent;
  z-index: 2;
}

/* Person image — overlaps from front */
.hero-center-img {
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 88%;
  height: 98%;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-center-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 10px 30px rgba(26,36,96,0.15));
}

/* Floating icon badges */
.float-badge {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  animation: floatBadge 3s ease-in-out infinite alternate;
}

/* Megaphone — top-center, orange tinted */
.float-badge-1 {
  width: 50px; height: 50px;
  top: 6%; left: 48%;
  background: rgba(255,255,255,0.95);
  border: 1.5px solid rgba(249,115,22,0.25);
  color: var(--orange);
  font-size: 1.1rem;
  animation-delay: 0s;
}

/* Chart bar — left-center, navy */
.float-badge-2 {
  width: 48px; height: 48px;
  top: 44%; left: 0%;
  background: var(--navy);
  color: var(--orange);
  font-size: 1.1rem;
  animation-delay: 0.6s;
}

/* Crosshairs/target — right-center, orange */
.float-badge-3 {
  width: 56px; height: 56px;
  top: 36%; right: -4%;
  background: var(--orange);
  color: #ffffff;
  font-size: 1.3rem;
  animation-delay: 1.2s;
}

@keyframes floatBadge {
  from { transform: translateY(0px); }
  to   { transform: translateY(-9px); }
}

/* Rating card */
.rating-card {
  position: absolute;
  bottom: 20px; right: -8px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 6;
  white-space: nowrap;
}
.rating-score {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rating-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 3px; }
.rating-label { font-size: 0.7rem; color: var(--text-400); font-weight: 500; margin-bottom: 4px; }
.rating-avatars {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.rating-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: -7px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.rating-avatar:first-child { margin-left: 0; }

/* Legacy hero-features grid kept for compatibility */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text-200);
  font-weight: 500;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-card);
}
.hero-feature-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
}
.hero-feature-item i {
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Stats Panel */
.stats-container {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.9s 0.15s var(--ease-spring) both;
}
.stats-container::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), transparent 40%, rgba(168,85,247,0.15));
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 28px 22px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}

.stat-card-gradient-1 {
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
  box-shadow: 0 8px 24px rgba(59,130,246,0.3);
}
.stat-card-gradient-2 {
  background: linear-gradient(135deg, #be185d 0%, #c2410c 100%);
  box-shadow: 0 8px 24px rgba(236,72,153,0.25);
}
.stat-card-glass {
  background: #1a2844;
  border: 1px solid var(--border-bright);
}

.stat-card h3 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.stat-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ── Why Choose Us ──────────────────────────────────────── */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-choose-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 32px;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.why-choose-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}
.why-choose-card:hover::before { opacity: 1; }

.why-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 26px;
  position: relative;
}
.why-icon-wrap.blue   { background: rgba(26,36,96,0.1);    color: var(--navy); }
.why-icon-wrap.purple { background: rgba(249,115,22,0.12); color: var(--orange); }
.why-icon-wrap.cyan   { background: rgba(37,99,235,0.1);   color: var(--blue); }
.why-icon-wrap.orange { background: rgba(249,115,22,0.12); color: var(--orange); }
.why-icon-wrap.green  { background: rgba(34,197,94,0.1);   color: #16a34a; }
.why-icon-wrap.pink   { background: rgba(26,36,96,0.1);    color: var(--navy); }

.why-choose-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.why-choose-card p {
  color: var(--text-400);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Services Section ───────────────────────────────────── */
.services-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.services-section-header .section-title {
  text-align: left;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  transition: opacity var(--dur) var(--ease);
  opacity: 0.6;
}
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--orange), var(--pink)); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, var(--green), var(--cyan)); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, var(--purple), var(--blue)); }

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-orange);
}
.service-card:hover::before { opacity: 1; }

.service-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.star-rating { color: var(--orange); font-size: 0.8rem; letter-spacing: 2px; }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.service-card:nth-child(1) .service-icon-wrap { background: rgba(249,115,22,0.1);  color: var(--orange); }
.service-card:nth-child(2) .service-icon-wrap { background: rgba(26,36,96,0.1);    color: var(--navy); }
.service-card:nth-child(3) .service-icon-wrap { background: rgba(249,115,22,0.1);  color: var(--orange); }
.service-card:nth-child(4) .service-icon-wrap { background: rgba(26,36,96,0.1);    color: var(--navy); }
.service-card:nth-child(5) .service-icon-wrap { background: rgba(249,115,22,0.1);  color: var(--orange); }
.service-card:nth-child(6) .service-icon-wrap { background: rgba(26,36,96,0.1);    color: var(--navy); }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card > p {
  color: var(--text-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-details {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-300);
}
.service-details div::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.service-card .btn { margin-top: auto; }

/* ── Tools Grid ─────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tool-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 16px 24px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  cursor: default;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.tool-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
  transform-origin: left;
}
.tool-card:hover {
  background: var(--bg-surface);
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}
.tool-card:hover::after { transform: scaleX(1); }

.tool-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.25rem;
}
.tool-card h3 { font-size: 0.88rem; font-weight: 600; color: var(--text-200); margin-bottom: 0; }

/* ── Testimonials / Process (optional visual break) ─────── */
.divider-line {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  margin: 0;
}

/* ── CTA Section ────────────────────────────────────────── */
.cta-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  background: var(--navy);
  box-shadow: 0 24px 64px rgba(26,36,96,0.3);
}
.cta-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-wrapper::after {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-wrapper h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-wrapper p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── Page Header (inner pages) ──────────────────────────── */
.page-header {
  padding: 190px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}
.page-header .section-label { margin-bottom: 20px; }
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.page-header p {
  font-size: 1.15rem;
  color: var(--text-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── About Page ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: 24px;
}
.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-brand);
  border-radius: 26px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(1px);
}
.about-img-wrapper::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15) 0%, transparent 65%);
  z-index: -2;
}
.about-img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}

.about-content { }
.about-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 18px;
}
.about-content p {
  color: var(--text-400);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 0.97rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-200);
}
.features-list li i { color: var(--blue-light); font-size: 1rem; }

/* ── About — Stats Strip ────────────────────────────────── */
.about-stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.about-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.about-stat-item {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 20px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
}
.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-400);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.about-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── About — Mission & Vision ───────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.mv-card {
  padding: 44px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.07;
  transition: opacity 0.3s;
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); }
.mv-card-blue  { background: linear-gradient(135deg, #f5f7ff, #eef2ff); border-color: rgba(26,36,96,0.2); }
.mv-card-blue::before  { background: var(--navy); }
.mv-card-blue:hover  { border-color: rgba(26,36,96,0.4); box-shadow: 0 8px 32px rgba(26,36,96,0.1); }
.mv-card-purple { background: linear-gradient(135deg, #fff8f0, #fff3e6); border-color: rgba(249,115,22,0.25); }
.mv-card-purple::before { background: var(--orange); }
.mv-card-purple:hover { border-color: rgba(249,115,22,0.5); box-shadow: var(--shadow-orange); }

.mv-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.mv-card-blue   .mv-icon { background: rgba(26,36,96,0.1);    color: var(--navy); }
.mv-card-purple .mv-icon { background: rgba(249,115,22,0.12); color: var(--orange); }
.mv-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-100);
}
.mv-card p {
  color: var(--text-400);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.mv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-200);
}
.mv-list li i {
  font-size: 0.75rem;
  color: var(--blue-light);
  background: rgba(59,130,246,0.15);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mv-card-purple .mv-list li i { color: #c4b5fd; background: rgba(139,92,246,0.15); }

/* ── About — Core Values ─────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 26px;
  transition: all 0.3s var(--ease);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
  background: rgba(255,255,255,0.04);
}
.value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px;
}
.value-icon-blue   { background: rgba(59,130,246,0.15);  color: var(--blue-light); }
.value-icon-purple { background: rgba(139,92,246,0.15);  color: #c4b5fd; }
.value-icon-cyan   { background: rgba(6,182,212,0.15);   color: #67e8f9; }
.value-icon-pink   { background: rgba(236,72,153,0.15);  color: #f9a8d4; }
.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-100);
}
.value-card p {
  font-size: 0.87rem;
  color: var(--text-400);
  line-height: 1.7;
}

/* ── About — Timeline ────────────────────────────────────── */
.timeline {
  position: relative;
  margin-top: 56px;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--purple) 100%);
  opacity: 0.35;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
  padding-left: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -27px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-900);
  border: 2px solid rgba(59,130,246,0.5);
  transition: border-color 0.3s;
}
.timeline-dot-active {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
}
.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 30px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}
.timeline-card:hover {
  border-color: var(--border-blue);
  transform: translateX(6px);
}
.timeline-card-active {
  border-color: rgba(59,130,246,0.35);
  background: linear-gradient(135deg, rgba(29,78,216,0.12), var(--bg-card));
}
.timeline-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,130,246,0.12);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.timeline-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 8px;
}
.timeline-card p {
  font-size: 0.89rem;
  color: var(--text-400);
  line-height: 1.75;
}

/* ── About — Team ────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s var(--ease);
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-social {
  position: absolute;
  bottom: -48px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 16px;
  background: linear-gradient(0deg, rgba(12,17,34,0.95) 60%, transparent);
  padding-top: 28px;
  transition: bottom 0.3s var(--ease);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-100);
  font-size: 0.8rem;
  transition: all 0.25s var(--ease);
}
.team-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.team-info {
  padding: 22px 20px 26px;
}
.team-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 4px;
}
.team-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-info p {
  font-size: 0.86rem;
  color: var(--text-400);
  line-height: 1.7;
}

/* ── About — Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .mv-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-stat-divider { display: none; }
  .about-stats-grid   { gap: 0; }
  .about-stat-item    { flex: 1 1 45%; border-bottom: 1px solid var(--border); padding: 20px; }
  .timeline { padding-left: 24px; }
  .timeline-card:hover { transform: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-stat-item { flex: 1 1 100%; }
  .mv-card { padding: 30px 24px; }
}

/* ── Blog Page ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.blog-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.blog-img-wrapper {
  overflow: hidden;
  height: 220px;
}
.blog-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-img { transform: scale(1.06); }

.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.blog-meta span {
  font-size: 0.78rem;
  color: var(--text-500);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-meta i { color: var(--blue-light); }

.blog-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-content p {
  color: var(--text-400);
  font-size: 0.88rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-light);
  font-size: 0.88rem;
  font-weight: 600;
}
.read-more i { transition: transform var(--dur) var(--ease); }
.read-more:hover { color: var(--text-100); }
.read-more:hover i { transform: translateX(4px); }

/* ── Contact Page ───────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info {
  padding: 60px 48px;
  background: linear-gradient(145deg, #1a2460 0%, #263080 100%);
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(168,85,247,0.2) 0%, transparent 65%);
  border-radius: 50%;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--text-400);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 48px;
}

.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.info-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--blue-light);
  flex-shrink: 0;
}
.info-item h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; color: var(--text-300); }
.info-item p  { color: var(--text-400); font-size: 0.9rem; margin-bottom: 0; }

.contact-form { padding: 60px 48px; }
.contact-form h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.contact-form > p { color: var(--text-400); font-size: 0.92rem; margin-bottom: 36px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-300);
  margin-bottom: 9px;
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  color: var(--text-100);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  transition: all var(--dur) var(--ease);
}
.form-control::placeholder { color: var(--text-500); }
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  background: #0e1f3d;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}
select.form-control option { background: #0c1122; }

textarea.form-control { resize: vertical; min-height: 130px; }

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: 14px;
  margin-top: 4px;
}

.form-message {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  align-items: center;
  gap: 10px;
}
.form-message.success {
  display: flex;
  background: rgba(22,101,52,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
}
.form-message.error {
  display: flex;
  background: rgba(153,27,27,0.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.25);
}

/* ── Orange text utility ──────────────────────────────────── */
.orange-text { color: var(--orange); }
.navy-text   { color: var(--navy); }

/* ── Trusted By Section ───────────────────────────────────── */
.trusted-by {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  position: relative;
  z-index: 2;
}
.trusted-text {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-400);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trusted-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  transition: color var(--dur) var(--ease);
}
.trusted-logo:hover { color: var(--navy); }
.trusted-logo i { font-size: 1.4rem; }
.trusted-logo .in-blue { color: #0077b5; }

/* ── Course Modules Grid ──────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.3);
  box-shadow: var(--shadow-orange);
}
.module-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.module-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin: 0 auto 16px;
}
.module-card:nth-child(even) .module-icon-wrap {
  background: rgba(26,36,96,0.08);
  color: var(--navy);
}
.module-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.module-card p {
  font-size: 0.85rem;
  color: var(--text-400);
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ── Benefits Grid ────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: all var(--dur) var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.3);
  box-shadow: var(--shadow-orange);
}
.benefit-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.benefit-icon.navy-bg   { background: rgba(26,36,96,0.1);   color: var(--navy); }
.benefit-icon.orange-bg { background: rgba(249,115,22,0.1); color: var(--orange); }
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.84rem;
  color: var(--text-400);
  line-height: 1.7;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  padding: 64px 0;
  background: var(--bg-root);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-bar-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-bar-label {
  font-size: 0.9rem;
  color: var(--text-400);
  font-weight: 500;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--dur) var(--ease);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.3);
  box-shadow: var(--shadow-orange);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-300);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-400);
  font-weight: 500;
}

/* ── CTA Navy Banner ──────────────────────────────────────── */
.cta-navy {
  padding: 0 0 80px;
  position: relative; z-index: 2;
}
.cta-navy-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--navy);
  border-radius: 24px;
  padding: 48px 56px;
  box-shadow: 0 24px 64px rgba(26,36,96,0.25);
  position: relative;
  overflow: hidden;
}
.cta-navy-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-navy-icon {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 20px;
  background: rgba(249,115,22,0.2);
  border: 1.5px solid rgba(249,115,22,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  position: relative; z-index: 1;
}
.cta-navy-text {
  flex: 1;
  position: relative; z-index: 1;
}
.cta-navy-text h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-navy-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 480px;
}
.cta-navy .btn-orange { position: relative; z-index: 1; flex-shrink: 0; }

/* ── bg-surface section ──────────────────────────────────── */
.bg-surface-section { background: var(--bg-surface); }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.footer-brand img {
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px;
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--dur) var(--ease);
}
.social-icons a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--dur) var(--ease);
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-contact-list li i { color: var(--orange); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: color var(--dur) var(--ease); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(249,115,22,0.3); }
  50%       { box-shadow: 0 0 0 5px rgba(249,115,22,0.12); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .tools-grid      { grid-template-columns: repeat(4, 1fr); }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid   { grid-template-columns: 1fr; gap: 56px; }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }

  /* Navbar mobile */
  .hamburger { display: flex; }

  /* Logo redesign for mobile */
  .logo { gap: 10px; }
  .logo img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow:
      0 0 0 2px #ffffff,
      0 0 0 3.5px rgba(249,115,22,0.6),
      0 4px 14px rgba(26,36,96,0.2);
    transition: box-shadow 0.3s var(--ease);
  }
  .logo:hover img {
    box-shadow:
      0 0 0 2px #ffffff,
      0 0 0 3.5px rgba(249,115,22,0.9),
      0 6px 20px rgba(26,36,96,0.3);
  }
  /* font-size:0 hides the "Digital " text node; ::before re-adds it as a styled label */
  .logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
    font-size: 0;
  }
  .logo-text::before {
    content: 'Digital';
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-400);
  }
  .logo-text span {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--orange);
  }
  .sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    /* No backdrop-filter here — it can bleed into the sidebar on mobile */
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--dur) var(--ease);
  }
  .sidebar-overlay.active { opacity: 1; visibility: visible; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 78%;
    max-width: 310px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--border);
    /* backdrop-filter removed — caused blurry text on mobile browsers */
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease-spring), visibility 0.4s;
    z-index: 1002;
  }
  .nav-links.active { transform: translateX(0); visibility: visible; }

  .nav-links li { width: 100%; }
  .nav-links li a:not(.btn) {
    padding: 15px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--text-200);
  }
  .nav-links li a:not(.btn):hover { background: rgba(26,36,96,0.04); color: var(--navy); }
  .nav-links li:last-child a.btn { margin: 20px 20px 0; width: calc(100% - 40px); border-radius: 12px; }

  .nav-icon { display: inline-block; color: var(--blue-light); width: 18px; text-align: center; }

  .sidebar-logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
    width: 100%;
  }
  .sidebar-logo { height: 38px; border-radius: 8px; background: rgba(255,255,255,0.07); padding: 4px; }
  .close-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-bright);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    position: relative;
  }
  .close-btn:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }
  .close-line {
    position: absolute;
    width: 14px; height: 2px;
    background: var(--navy);
    border-radius: 99px;
  }
  .close-line:first-child { transform: rotate(45deg); }
  .close-line:last-child  { transform: rotate(-45deg); }

  /* Hero */
  .hero { padding: 140px 0 80px; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-btns { gap: 10px; flex-wrap: wrap; }
  .hero-btns .btn { padding: 10px 18px; font-size: 0.83rem; gap: 7px; }

  /* Grids */
  .why-choose-grid { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .tools-grid      { grid-template-columns: repeat(2, 1fr); }
  .blog-grid       { grid-template-columns: 1fr; }
  .features-list   { grid-template-columns: 1fr; }

  /* Services header */
  .services-section-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* CTA */
  .cta-wrapper { padding: 64px 28px; border-radius: 24px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }

  /* Contact */
  .contact-info, .contact-form { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card h3 { font-size: 2rem; }
  .section-title p { font-size: 0.95rem; }
  .page-header { padding: 160px 0 80px; }
  .contact-info::before { display: none; }
}

/* Very small phones — stack hero buttons so they don't overflow */
@media (max-width: 360px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 10px 18px; font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   ORBITAL STATS — clockwise rotating stat cards
   Math:  container = 2r + cw  ×  2r + ch
          card center traces a circle of radius r
   ═══════════════════════════════════════════════════════════ */

/* ── Design tokens for the orbit ───────────────────────── */
.orbit-container {
  /* Circle card size — must be equal for perfect circles */
  --cw: 112px;
  --ch: 112px;
  /* Orbit radius (center of container → center of card) */
  --r:  150px;

  position: relative;
  width:  420px;   /* 2*150 + 112 + 8px breathing */
  height: 420px;
  flex-shrink: 0;
  margin: 0 auto;
  animation: fadeUp 0.9s 0.15s var(--ease-spring) both;
}

/* ── Static dashed orbit ring ───────────────────────────── */
.orbit-path {
  position: absolute;
  top:  50%; left: 50%;
  width:  calc(var(--r) * 2);
  height: calc(var(--r) * 2);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(99, 170, 255, 0.35);
  pointer-events: none;
  z-index: 0;
}

/* Outer soft glow ring */
.orbit-path::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.07);
}

/* Inner fill glow */
.orbit-path::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.04) 0%,
    transparent 68%
  );
}

/* ── Spinning ring ──────────────────────────────────────── */
/* Same size as container; rotates clockwise carrying all items */
.orbit-ring {
  position: absolute;
  inset: 0;
  animation: orbitCW 16s linear infinite;
  z-index: 1;
}

/* ── Individual orbit items ─────────────────────────────── */
/* Positioned at top / right / bottom / left of the ring */
.orbit-item {
  position: absolute;
  width:  var(--cw);
  height: var(--ch);
}

/* Top  (0°) */
.orbit-item:nth-child(1) {
  top:  calc(50% - var(--r) - var(--ch) / 2);
  left: calc(50% - var(--cw) / 2);
}
/* Right (90°) */
.orbit-item:nth-child(2) {
  top:  calc(50% - var(--ch) / 2);
  left: calc(50% + var(--r) - var(--cw) / 2);
}
/* Bottom (180°) */
.orbit-item:nth-child(3) {
  top:  calc(50% + var(--r) - var(--ch) / 2);
  left: calc(50% - var(--cw) / 2);
}
/* Left (270°) */
.orbit-item:nth-child(4) {
  top:  calc(50% - var(--ch) / 2);
  left: calc(50% - var(--r) - var(--cw) / 2);
}

/* ── Orbit cards — CIRCLES ──────────────────────────────── */
.orbit-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.28);
  animation: orbitCCW 16s linear infinite;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
}

/* Top shine arc — wide bright gloss */
.orbit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

/* Inner light sheen overlay */
.orbit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 100%);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

/* Per-card colour themes — orange/navy */
.orbit-card-blue {
  background: linear-gradient(145deg, #1a2460 0%, #2563eb 100%);
  box-shadow: 0 8px 28px rgba(26,36,96,0.45), 0 0 0 1px rgba(255,255,255,0.15);
}
.orbit-card-purple {
  background: linear-gradient(145deg, #f97316 0%, #fb923c 100%);
  box-shadow: 0 8px 28px rgba(249,115,22,0.45), 0 0 0 1px rgba(255,255,255,0.15);
}
.orbit-card-pink {
  background: linear-gradient(145deg, #1a2460 0%, #263080 100%);
  box-shadow: 0 8px 28px rgba(26,36,96,0.45), 0 0 0 1px rgba(255,255,255,0.15);
}
.orbit-card-cyan {
  background: linear-gradient(145deg, #ea6c0a 0%, #f97316 100%);
  box-shadow: 0 8px 28px rgba(234,108,10,0.45), 0 0 0 1px rgba(255,255,255,0.15);
}

/* Stat number — solid white, crisp */
.orbit-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
  background: none;
  -webkit-text-fill-color: #ffffff;
}

/* Stat label — compact to fit inside circle */
.orbit-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-align: center;
  line-height: 1.3;
  max-width: 78%;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ── Center logo / brand mark ───────────────────────────── */
.orbit-center {
  position: absolute;
  top:  50%; left: 50%;
  transform: translate(-50%, -50%);
  width:  118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid rgba(249,115,22,0.45);
  box-shadow:
    0 0 0 8px rgba(249,115,22,0.06),
    0 0 32px rgba(249,115,22,0.15),
    0 8px 24px rgba(0,0,0,0.1);
  animation: centerPulse 4s ease-in-out infinite;
  z-index: 3;
  overflow: hidden;
}

.orbit-center img {
  width:  56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}

.orbit-center span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-400);
  text-align: center;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════
   ORBIT KEYFRAMES
   ═══════════════════════════════════════════════════════════ */

/* Clockwise — spins the ring (cards orbit with it) */
@keyframes orbitCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Counter-clockwise — applied to each card so text stays upright */
@keyframes orbitCCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Subtle heartbeat glow on the center logo */
@keyframes centerPulse {
  0%, 100% {
    box-shadow:
      0 0 0  8px rgba(249,115,22,0.05),
      0 0 32px rgba(249,115,22,0.12),
      0 8px 24px rgba(0,0,0,0.1);
  }
  50% {
    box-shadow:
      0 0 0 14px rgba(249,115,22,0.08),
      0 0 55px rgba(249,115,22,0.22),
      0 8px 24px rgba(0,0,0,0.1);
  }
}

/* ── Orbit responsive overrides ─────────────────────────── */

/* Tablet (hero grid stacks to 1 col at ≤1024px) */
@media (max-width: 1024px) {
  .orbit-container {
    --r:  124px;
    --cw:  96px;
    --ch:  96px;    /* equal → circle */
    width:  352px;  /* 2*124 + 96 + 8 */
    height: 352px;
  }
  .orbit-center { width: 92px; height: 92px; }
  .orbit-center img { width: 44px; height: 44px; }
  .orbit-num   { font-size: 1.25rem; }
  .orbit-label { font-size: 0.58rem; }
}

/* Mobile */
@media (max-width: 600px) {
  .orbit-container {
    --r:  100px;
    --cw:  82px;
    --ch:  82px;    /* equal → circle */
    width:  286px;  /* 2*100 + 82 + 4 */
    height: 286px;
  }
  .orbit-center { width: 76px; height: 76px; }
  .orbit-center img { width: 36px; height: 36px; }
  .orbit-num   { font-size: 1.05rem; }
  .orbit-label { font-size: 0.53rem; }
}

/* ── New section responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid  { grid-template-columns: repeat(2, 1fr); }
  .modules-grid   { grid-template-columns: repeat(2, 1fr); }
  .cta-navy-inner { flex-direction: column; text-align: center; padding: 40px 36px; }
  .cta-navy-text p { max-width: 100%; }
}
@media (max-width: 768px) {
  .benefits-grid        { grid-template-columns: 1fr; }
  .modules-grid         { grid-template-columns: 1fr; }
  .stats-bar-grid       { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item       { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-bar-item:nth-child(even) { border-left: 1px solid var(--border); }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .trusted-logos        { gap: 24px; }
  .hero-grid            { grid-template-columns: 1fr; gap: 48px; }
  .hero-img-frame       { max-width: 340px; height: 380px; margin-bottom: 72px; }
  .navy-arch            { top: 62%; left: 50%; }
  .orange-circle        { top: 62%; left: 50%; }
  .orange-ring          { top: 62%; left: 50%; }
  .hero-center-img      { left: 50%; transform: translateX(-50%); width: 90%; }
  .rating-card          {
    bottom: -64px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .cta-navy-inner       { padding: 32px 24px; gap: 24px; }
}
@media (max-width: 480px) {
  .stats-bar-grid { grid-template-columns: 1fr; }
  .stats-bar-item { border-right: none; border-left: none; }
}

/* Pause animation if user prefers reduced motion (handled by global rule above) */

