@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

* { box-sizing: border-box; }
body {
  background: #f0f4f8;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ─── PAGE HEADER ─────────────────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #020617 0%, #0c1a35 35%, #1a3a6e 65%, #0f172a 100%);
  padding: 90px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-header-orb-1 {
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 65%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-header-orb-2 {
  position: absolute;
  bottom: -150px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 65%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(99,179,255,0.28);
  color: #93c5fd;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.page-header h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin-bottom: 1rem;
  font-family: inherit;
}
.page-header h1 .highlight {
  background: linear-gradient(90deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── SECTION LABELS & TITLES ─────────────────────────────────────────────── */
.section-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.15;
  font-family: inherit;
  margin-bottom: 0;
}
.section-subtitle { color: #64748b; font-size: 0.95rem; margin-top: 8px; line-height: 1.7; }

/* ─── MISSION SECTION ─────────────────────────────────────────────────────── */
.mission-text p { color: #64748b; font-size: 0.95rem; line-height: 1.85; }
.mission-highlight {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-left: 3px solid #2563eb;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #1e3a8a;
  font-weight: 600;
  line-height: 1.65;
  margin: 1.2rem 0;
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}
.btn-primary-custom:hover {
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,99,235,0.45);
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #2563eb;
  color: #2563eb;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
  font-family: inherit;
}
.btn-outline-custom:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

/* ─── STAT CARDS ──────────────────────────────────────────────────────────── */
.stat-big-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 1.5px solid #f1f5f9;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.stat-big-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #818cf8);
  border-radius: 20px 20px 0 0;
}
.stat-big-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(37,99,235,0.14);
  border-color: #bfdbfe;
}
.stat-big-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1.5px;
  font-family: inherit;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-big-label {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ─── STORY / TIMELINE ────────────────────────────────────────────────────── */
.story-block {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  border: 1.5px solid #f1f5f9;
}
.timeline-item {
  display: flex;
  gap: 22px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #bfdbfe, #e2e8f0);
}
.timeline-dot {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(37,99,235,0.35);
  position: relative;
  z-index: 1;
}
.timeline-content h6 {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.timeline-content p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

/* ─── DIFFERENTIATORS ─────────────────────────────────────────────────────── */
.diff-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(37,99,235,0.11);
  border-color: #bfdbfe;
}
.diff-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.diff-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 7px;
  font-family: inherit;
}
.diff-desc { color: #64748b; font-size: 0.875rem; line-height: 1.75; margin: 0; }

/* ─── VALUE CARDS ─────────────────────────────────────────────────────────── */
.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  border: 1.5px solid #f1f5f9;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 46px rgba(37,99,235,0.13);
  border-color: #bfdbfe;
}
.value-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: transform 0.25s;
}
.value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }
.value-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: inherit;
}
.value-desc { color: #64748b; font-size: 0.875rem; line-height: 1.8; }

/* ─── COMPARISON TABLE ────────────────────────────────────────────────────── */
.compare-table {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #f1f5f9;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.compare-table thead th {
  padding: 18px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  border-bottom: 1.5px solid #f1f5f9;
  font-family: inherit;
  letter-spacing: 0.2px;
}
.compare-table thead th.th-cvdn {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
}
.compare-table tbody td {
  padding: 14px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid #f8fafc;
  color: #374151;
  vertical-align: middle;
  font-family: inherit;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td.td-cvdn {
  background: rgba(239,246,255,0.5);
  color: #1e293b;
  font-weight: 600;
}
.check-yes { color: #16a34a; font-size: 1rem; }
.check-no { color: #dc2626; font-size: 1rem; }

/* ─── TRUST BADGES ────────────────────────────────────────────────────────── */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.trust-badge:hover { border-color: #2563eb; box-shadow: 0 4px 14px rgba(37,99,235,0.12); }
.trust-badge i { font-size: 1.1rem; }

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0c1a35 0%, #1e3a8a 40%, #2563eb 75%, #1d4ed8 100%);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-orb-1 {
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.cta-orb-2 {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.cta-banner > .container { position: relative; z-index: 1; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-header { padding: 65px 0 55px; }
  .section-title { font-size: 1.45rem; }
  .story-block { padding: 28px 20px; }
  .cta-banner { padding: 50px 24px; border-radius: 16px; }
}
