/* ============================================================
   NOVACARE HAITI — Frontend Public CSS
   Landing Page & Public Pages Design System
   ============================================================ */

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

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:        #082B6F;
  --primary-light:  #0e3d9e;
  --primary-dark:   #051e4e;
  --accent:         #00A3FF;
  --accent-light:   #33b8ff;
  --success:        #10B981;
  --warning:        #F59E0B;
  --danger:         #EF4444;

  --white:          #FFFFFF;
  --bg:             #F4F6FB;
  --text:           #111827;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --border:         #E5E7EB;

  --radius:         14px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.08);
  --shadow:     0 4px 14px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.14), 0 4px 10px rgba(0,0,0,.10);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.12);
  --shadow-blue: 0 8px 30px rgba(8,43,111,.30);

  --navbar-h: 70px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-brand .brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), #0082cc);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-brand .brand-icon i { color: #fff; font-size: 16px; }
.navbar-brand .brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.navbar-brand .brand-tagline {
  font-size: 9px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.navbar.scrolled .brand-name { color: var(--primary); }
.navbar.scrolled .brand-tagline { color: var(--text-muted); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.navbar-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.navbar-link:hover, .navbar-link.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.navbar.scrolled .navbar-link { color: var(--text-muted); }
.navbar.scrolled .navbar-link:hover,
.navbar.scrolled .navbar-link.active { color: var(--primary); background: rgba(8,43,111,.07); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.navbar-btn-outline {
  padding: 7px 16px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.navbar-btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.1);
}
.navbar.scrolled .navbar-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.navbar.scrolled .navbar-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.navbar-btn-primary {
  padding: 8px 20px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0,163,255,.35);
}
.navbar-btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,163,255,.45);
}

/* Auth name in navbar */
.nav-auth-name {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar.scrolled .nav-auth-name { color: var(--text-muted); }

/* Mobile hamburger */
.navbar-hamburger {
  display: none;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}
.navbar.scrolled .navbar-hamburger {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mobile-link {
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.mobile-menu .mobile-link:hover,
.mobile-menu .mobile-link.active { background: var(--bg); color: var(--primary); }
.mobile-menu .mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-menu .mobile-actions { display: flex; gap: 8px; padding-top: 4px; }
.mobile-menu .mobile-actions a { flex: 1; text-align: center; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.mobile-menu .mobile-actions .btn-login { border: 1.5px solid var(--primary); color: var(--primary); }
.mobile-menu .mobile-actions .btn-register { background: var(--primary); color: #fff; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(8,43,111,.4);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,163,255,.35);
}
.btn-accent:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,163,255,.45);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--bg);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}
.btn-lg { padding: 14px 36px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }

/* ─── SECTION LAYOUT ─────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-sm { padding: 64px 0; }
.section-bg { background: var(--bg); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(8,43,111,.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ─── HERO SECTION ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #051e4e 0%, #082B6F 45%, #0c399c 75%, #0a4fb5 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,163,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,163,255,.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid dots pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero-content { padding-right: 20px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,163,255,.15);
  border: 1px solid rgba(0,163,255,.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), #33ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat .value {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-mockup {
  position: relative;
  width: 340px;
}
.insurance-card-demo {
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.08));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.insurance-card-demo::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0,163,255,.15);
}
.demo-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.demo-brand-name { font-size: 14px; font-weight: 800; letter-spacing: .05em; }
.demo-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #f0d060, #c8a820);
  border-radius: 6px;
}
.demo-holder { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.demo-num {
  font-size: 13px;
  letter-spacing: .2em;
  opacity: .7;
  margin-bottom: 24px;
  font-family: monospace;
}
.demo-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.demo-expiry .label { font-size: 9px; opacity: .6; text-transform: uppercase; letter-spacing: .05em; }
.demo-expiry .value { font-size: 14px; font-weight: 600; }
.demo-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,.25);
  border: 1px solid rgba(16,185,129,.4);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #6ee7b7;
}
.demo-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
}

/* Floating badges around card */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: float-y 4s ease-in-out infinite;
}
.float-badge:nth-child(2) { animation-delay: 1s; }
.float-badge:nth-child(3) { animation-delay: 2s; }
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.float-badge-1 { top: -30px; left: -50px; }
.float-badge-2 { bottom: -20px; right: -40px; }

/* ─── FEATURES SECTION ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(8,43,111,.15);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── STATS SECTION ──────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #051e4e 0%, #082B6F 60%, #0c399c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-number span { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* ─── PLANS / PRICING ────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.plan-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #082B6F, #0e3d9e);
  color: #fff;
  transform: scale(1.03);
  box-shadow: var(--shadow-blue);
}
.plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 50px rgba(8,43,111,.45);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 4px 12px rgba(0,163,255,.35);
  white-space: nowrap;
}
.plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.plan-card:not(.featured) .plan-icon { background: var(--bg); color: var(--primary); }
.plan-card.featured .plan-icon { background: rgba(255,255,255,.15); color: #fff; }
.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.plan-card.featured .plan-name { color: #fff; }
.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-card.featured .plan-desc { color: rgba(255,255,255,.65); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price .amount {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.plan-card.featured .plan-price .amount { color: #fff; }
.plan-price .currency { font-size: 16px; font-weight: 700; color: var(--text-muted); }
.plan-card.featured .plan-price .currency { color: rgba(255,255,255,.6); }
.plan-price .period { font-size: 13px; color: var(--text-muted); }
.plan-card.featured .plan-price .period { color: rgba(255,255,255,.55); }
.plan-per-person {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.plan-card.featured .plan-per-person { color: rgba(255,255,255,.45); }
.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.plan-card.featured .plan-divider { border-color: rgba(255,255,255,.15); }
.plan-features { margin-bottom: 28px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  color: var(--text);
}
.plan-card.featured .plan-feature { color: rgba(255,255,255,.85); }
.plan-feature .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.plan-card.featured .plan-feature .check-icon {
  background: rgba(52,211,153,.2);
  color: #6ee7b7;
}
.plan-feature.disabled { color: var(--text-light); }
.plan-feature.disabled .check-icon { background: var(--bg); color: var(--text-light); }
.plan-cta {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  display: block;
}
.plan-card:not(.featured) .plan-cta {
  background: var(--bg);
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.plan-card:not(.featured) .plan-cta:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.plan-card.featured .plan-cta {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.plan-card.featured .plan-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .25;
}
.step-item { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(8,43,111,.3);
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--warning);
  font-size: 14px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #082B6F 0%, #0c399c 50%, #0a4fb5 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,163,255,.12);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #060f26;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #0082cc);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand .brand-icon i { color: #fff; font-size: 14px; }
.footer-brand .brand-name-text {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.page-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, #051e4e 0%, #082B6F 60%, #0a3280 100%);
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-h) + 40px) 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(0,163,255,.15);
  border: 1px solid rgba(0,163,255,.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 28px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}
.team-card-body { padding: 0 20px 24px; }
.team-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--text-muted); }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.contact-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--primary); background: rgba(8,43,111,.04); }
.contact-method-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-method-info .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.contact-method-info .value { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 2px; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}
.contact-form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.contact-form-card .subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  font-family: inherit;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,43,111,.08);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%236B7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,43,111,.08); }

/* Alert boxes */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065F46; border-left: 4px solid var(--success); }
.alert-danger  { background: #fee2e2; color: #991B1B; border-left: 4px solid var(--danger); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card.featured { transform: scale(1); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-description, .hero-actions { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .navbar-menu, .navbar-actions { display: none; }
  .navbar-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stats { gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ─── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white { color: #fff; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
