/* ==========================================================================
   BPO MADE EASY — PREMIUM CONVERSION-OPTIMIZED DESIGN SYSTEM
   Colors: Royal Blue #0837a0 | Cyan #1783ba | Navy #000d29 | #102452
   ========================================================================== */

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

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Brand Colors */
  --blue:        #0837a0;
  --blue-dark:   #062580;
  --blue-light:  #eef3ff;
  --cyan:        #1783ba;
  --cyan-light:  #e5f4fb;
  --navy:        #000d29;
  --navy-mid:    #102452;
  --navy-light:  #1e2e5a;

  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --border:      #dde4f0;
  --muted:       #64748b;
  --subtle:      #94a3b8;

  /* Accent */
  --gold:        #f59e0b;
  --green:       #10b981;
  --red:         #ef4444;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0837a0 0%, #1783ba 100%);
  --grad-navy:    linear-gradient(145deg, #000d29 0%, #102452 100%);
  --grad-glow:    linear-gradient(135deg, rgba(8,55,160,0.12) 0%, rgba(23,131,186,0.08) 100%);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(8,55,160,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(8,55,160,0.12), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 20px 40px rgba(8,55,160,0.15), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-xl:  0 30px 60px rgba(0,13,41,0.25), 0 12px 24px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(23,131,186,0.2);

  /* Border Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Spacing */
  --sec: 6rem;
  --sec-sm: 4rem;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Sora', sans-serif;

  /* Transitions */
  --t: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.text-blue  { color: var(--blue); }
.text-cyan  { color: var(--cyan); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section       { padding: var(--sec) 0; }
.section-sm    { padding: var(--sec-sm) 0; }
.section-dark  { background: var(--grad-navy); }
.section-blue  { background: var(--blue-light); }
.section-off   { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-head h2 { font-size: 2.6rem; margin: 0.75rem 0 1rem; }
.section-head p  { color: var(--muted); font-size: 1.1rem; }

/* ─── Eyebrow / Badge ────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(8,55,160,0.18);
  margin-bottom: 1.25rem;
}

.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(23,131,186,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(23,131,186,0); }
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(8,55,160,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8,55,160,0.4);
  filter: brightness(1.05);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--blue-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.btn-lg { padding: 1.05rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }

/* ─── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  padding: 0.4rem 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

/* Services Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--t);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% + 8px);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--t);
}
.dropdown-link:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-xs);
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-drawer {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }

.mobile-nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:hover { color: var(--blue); }

/* ─── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: var(--t);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--t);
}
.card:hover .card-icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}

/* ─── Service Card ───────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--t);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card .card-icon { margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card p  { color: var(--muted); font-size: 0.93rem; flex-grow: 1; margin-bottom: 1.5rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue);
  transition: var(--t);
}
.service-link:hover { gap: 0.75rem; }

.service-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  fill: var(--gold);
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  gap: 1rem;
}
.testimonial-author { font-weight: 700; font-size: 0.95rem; }
.testimonial-meta   { font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; }
.testimonial-co     { color: var(--blue); font-weight: 700; }
.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

/* ─── Stats ───────────────────────────────────────────────── */
.stat-block { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

/* Dark stat */
.stat-block.dark .stat-number { color: var(--white); }
.stat-block.dark .stat-label  { color: var(--subtle); }
.stat-block.cyan .stat-number { color: var(--cyan); }

/* ─── Checklist Items ─────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}
.check-item i { color: var(--blue); width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

/* ─── Tag Pill ────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ─── Logo Wall ───────────────────────────────────────────── */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.client-chip {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.client-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ─── Info Box ────────────────────────────────────────────── */
.info-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.info-box-icon {
  width: 42px; height: 42px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-box-label { font-size: 0.72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.info-box-value { font-size: 0.93rem; font-weight: 700; color: var(--navy); }

/* ─── Dark Card ───────────────────────────────────────────── */
.dark-card {
  background: var(--grad-navy);
  border-radius: var(--r-lg);
  padding: 3rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

/* ─── Comparison Table ────────────────────────────────────── */
.compare-col {
  border-radius: var(--r-lg);
  padding: 2.5rem;
  height: 100%;
}
.compare-col.col-plain  {
  background: var(--off-white);
  border: 1.5px solid var(--border);
}
.compare-col.col-winner {
  background: var(--grad-navy);
  color: var(--white);
  position: relative;
}
.winner-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.compare-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.compare-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.compare-price small { font-size: 1rem; font-weight: 500; }

/* ─── Video Container ─────────────────────────────────────── */
.video-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
  position: relative;
}
.video-wrap video {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.92);
}
.video-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,13,41,0.95) 0%, rgba(0,13,41,0.5) 50%, transparent 100%);
  padding: 2rem;
  color: var(--white);
}

/* ─── Form ────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: var(--t);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8,55,160,0.08);
}
.form-textarea { resize: vertical; min-height: 110px; }

/* ─── Process Steps ───────────────────────────────────────── */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(8,55,160,0.3);
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-tagline { color: var(--subtle); font-size: 0.93rem; margin: 1rem 0 1.5rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer-link-list { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-link-list a { color: var(--subtle); font-size: 0.88rem; transition: var(--t); }
.footer-link-list a:hover { color: var(--cyan); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.88rem; color: var(--subtle); }
.footer-contact-item a { color: var(--white); font-weight: 600; }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--subtle);
  font-size: 0.82rem;
}
.footer-bar-links { display: flex; gap: 1.5rem; }
.footer-bar-links a { color: var(--subtle); }
.footer-bar-links a:hover { color: var(--cyan); }

/* ─── Sticky CTA Strip ────────────────────────────────────── */
.cta-strip {
  background: var(--grad-primary);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 0.75rem; }
.cta-strip p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(155deg, #f0f5ff 0%, #ffffff 50%, #e8f5fd 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(23,131,186,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero-kicker { margin-bottom: 1.25rem; }
.hero-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
}
.hero-trust-item i { color: var(--blue); width: 16px; height: 16px; }

/* Video right panel */
.hero-video-panel { position: relative; }
.hero-video-box {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy);
  position: relative;
}
.hero-video-box video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}
.hero-video-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,13,41,0.95) 0%, rgba(0,13,41,0.5) 60%, transparent 100%);
  padding: 1.75rem 1.5rem 1.5rem;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.caption-title { font-weight: 700; font-size: 1rem; }
.caption-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16,185,129,0.2);
  border: 1px solid rgba(16,185,129,0.4);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 1.5s infinite;
}

/* ─── Quick Stats Bar ─────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 2.25rem 0;
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stats-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.12);
}

/* ─── Calculator ──────────────────────────────────────────── */
.calc-wrap {
  background: var(--grad-navy);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
}
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.calc-h { color: var(--white); font-size: 2.2rem; margin-bottom: 0.75rem; }
.calc-p { color: var(--subtle); margin-bottom: 2rem; font-size: 0.95rem; }
.slider-wrap { margin-bottom: 1.5rem; }
.slider-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.6rem;
}
.slider-val { color: var(--cyan); font-weight: 700; }
input[type=range] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  outline: none;
  accent-color: var(--cyan);
  cursor: pointer;
}
.calc-result {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 2.5rem 2rem;
  text-align: center;
}
.result-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--subtle); margin-bottom: 0.5rem; }
.result-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-annual { font-size: 0.93rem; color: var(--subtle); margin-bottom: 2rem; }
.result-annual strong { color: rgba(255,255,255,0.9); }

/* ─── Excellence pillars ──────────────────────────────────── */
.pillar-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  border-left: 4px solid var(--blue);
  transition: var(--t);
  align-items: flex-start;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-xs);
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-title { font-size: 1.1rem; margin-bottom: 0.35rem; }
.pillar-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ─── Page Hero (Inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--grad-navy);
  padding: 4.5rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(23,131,186,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 1rem; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; margin: 0 auto; position: relative; }

/* ─── Careers ─────────────────────────────────────────────── */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: var(--t);
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateX(4px); }
.job-title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.job-meta  {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.25rem;
}
.job-meta span { display: flex; align-items: center; gap: 0.35rem; }
.job-salary    { color: var(--blue); font-weight: 700; margin-top: 0.4rem; font-size: 0.93rem; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .calc-layout   { grid-template-columns: 1fr; }
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .hero-h1       { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  :root { --sec: 4rem; --sec-sm: 3rem; }
  .nav-menu, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bar    { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-h1       { font-size: 2.2rem; }
  .section-head h2 { font-size: 2rem; }
  .stats-bar-inner { gap: 2rem; }
  .stats-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .compare-col   { margin-bottom: 1rem; }
  .job-card      { flex-direction: column; align-items: flex-start; }
  .calc-wrap     { padding: 2rem; }
}
