/* =====================================================
   DAWN WEBSITE — MASTER STYLESHEET
   ===================================================== */

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

/* ---- Variables ---- */
/* Palette sampled from the hero photograph:
   sky #D3E9FD · petal #B3D4F9 · blazer #7891B9 · city haze #8696B0 · hair/denim #101B2E */
:root {
  --primary: #2563C9;
  --primary-dark: #0E3A7E;
  --primary-light: #1B54B0;
  --pink: #1B54B0;
  --pink-light: #0E3A7E;
  --cyan: #0E3A7E;
  --red: #EF4444;
  --bg: #F3F8FE;
  --bg-2: #DCEBFC;
  --sky: #D3E9FD;
  --petal: #B3D4F9;
  --steel: #7891B9;
  --bg-card: #FFFFFF;
  --bg-card-hover: rgba(37,99,201,0.04);
  --border: rgba(37,99,201,0.12);
  --border-glow: rgba(37,99,201,0.28);
  --text: #101B2E;
  --text-muted: #5A6B85;
  --text-dim: #8FA0B8;
  --gradient: linear-gradient(135deg, #0E3A7E 0%, #2E7AE0 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(37,99,201,0.07) 0%, rgba(120,145,185,0.09) 100%);
  --shadow-glow: 0 8px 32px rgba(37,99,201,0.14);
  --shadow-pink: 0 8px 32px rgba(27,84,176,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Typography ---- */
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.4; }
p { color: var(--text-muted); line-height: 1.8; }
.serif { font-family: 'Playfair Display', serif; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: none; outline: none;
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,201,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,201,0.5); }
.btn-outline {
  border: 1px solid var(--border); color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--primary); background: rgba(37,99,201,0.06); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-danger {
  background: linear-gradient(135deg, #EF4444, #DC2626); color: #fff;
  box-shadow: 0 4px 20px rgba(239,68,68,0.3);
}
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(239,68,68,0.45); }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(37,99,201,0.1);
  border: 1px solid rgba(37,99,201,0.2);
  color: var(--primary-light); margin-bottom: 1.5rem;
}
.badge-red {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.2);
  color: #DC2626;
}
.badge-cyan {
  background: rgba(14,58,126,0.08);
  border-color: rgba(14,58,126,0.2);
  color: #0E3A7E;
}
.badge-pink {
  background: rgba(27,84,176,0.08);
  border-color: rgba(27,84,176,0.2);
  color: var(--pink-light);
}

/* ---- Section Header ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-header .badge { margin-bottom: 1.25rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ---- Cards ---- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(37,99,201,0.06);
}
.card:hover { background: var(--bg-card-hover); border-color: var(--border-glow); transform: translateY(-4px); box-shadow: var(--shadow-glow); }

/* ---- Check list item ---- */
.check-item {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem;
}
.check-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(37,99,201,0.1); border: 1px solid rgba(37,99,201,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--primary-light); flex-shrink: 0; margin-top: 2px;
}
.check-item span { font-size: 0.95rem; color: var(--text-muted); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.4rem 0; transition: var(--transition);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 transparent;
}
.navbar.scrolled {
  background: rgba(243,248,254,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 0.3rem 0;
  box-shadow: 0 1px 16px rgba(37,99,201,0.07);
}
.navbar .container { display: flex; align-items: center; gap: 1rem; }

.logo { display: flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 1.25rem; }
.logo-icon { width: 28px; height: 28px; object-fit: contain; display: block; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 0.02em; color: var(--text); }

.nav-links { display: flex; gap: 0.1rem; margin-left: auto; }
.nav-links a {
  padding: 0.45rem 0.65rem; border-radius: 8px; white-space: nowrap;
  font-size: 0.86rem; font-weight: 500; color: var(--text-muted); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(37,99,201,0.07); }

.nav-cta {
  margin-left: 0.4rem; white-space: nowrap;
  padding: 0.5rem 1.15rem; font-size: 0.84rem;
}
.navbar .logo { font-size: 1.15rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(243,248,254,0.97);
  backdrop-filter: blur(20px); z-index: 1001;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); transition: var(--transition); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); }
.mobile-close {
  position: absolute; top: 1.75rem; right: 2rem;
  background: none; border: none; color: var(--text); font-size: 1.5rem;
}

/* ============================================
   AURORA BACKGROUND (animated)
   ============================================ */
.aurora-bg {
  position: absolute; inset: 0; background: var(--bg); overflow: hidden; z-index: 0;
}
.aurora-bg .orb {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.aurora-bg .orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(37,99,201,0.14) 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: drift1 10s ease-in-out infinite;
}
.aurora-bg .orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(27,84,176,0.1) 0%, transparent 70%);
  bottom: -10%; right: -10%;
  animation: drift2 13s ease-in-out infinite;
}
.aurora-bg .orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(ellipse, rgba(14,58,126,0.08) 0%, transparent 70%);
  top: 30%; right: 15%;
  animation: drift3 16s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(5%,4%) scale(1.08)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-4%,-5%) scale(1.06)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(3%,-4%)} 66%{transform:translate(-3%,3%)} }

#particles { position: absolute; inset: 0; z-index: 0; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 8rem 0 5rem;
}
.hero .container {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}

.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.15rem; max-width: 500px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex; gap: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-val { font-size: 1.6rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-lbl { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }

/* Phone Mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }

.phone-wrap {
  width: 260px; height: 520px;
  background: #1C0A38; border-radius: 44px;
  border: 1px solid rgba(37,99,201,0.35); position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 0 60px rgba(37,99,201,0.2);
  overflow: hidden;
}
.phone-screen {
  position: absolute; inset: 10px; border-radius: 36px;
  background: linear-gradient(160deg, #180430, #0A0218); overflow: hidden;
}
.phone-top { display: flex; justify-content: space-between; padding: 0.9rem 1.2rem 0.4rem; font-size: 0.65rem; color: rgba(255,255,255,0.35); }
.phone-body { padding: 0.8rem 1.2rem; }
.phone-logo-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.phone-logo-text { font-weight: 800; font-size: 1rem; color: #fff; }
.phone-av { width: 28px; height: 28px; border-radius: 50%; background: var(--gradient); }
.phone-loc {
  background: rgba(255,255,255,0.07); border-radius: 20px; padding: 0.5rem 0.9rem;
  font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.35rem;
}
.phone-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-bottom: 0.75rem; }
.ph-svc {
  background: rgba(37,99,201,0.15); border: 1px solid rgba(37,99,201,0.2);
  border-radius: 12px; padding: 0.75rem; text-align: center;
}
.ph-svc .em { font-size: 1.1rem; }
.ph-svc .lbl { font-size: 0.6rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }
.ph-sos {
  background: linear-gradient(135deg, rgba(239,68,68,0.25), rgba(27,84,176,0.2));
  border: 1px solid rgba(239,68,68,0.3); border-radius: 12px;
  padding: 0.7rem 1rem; display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; color: #FCA5A5;
}
.ph-track {
  background: rgba(14,58,126,0.1); border: 1px solid rgba(14,58,126,0.2);
  border-radius: 12px; padding: 0.7rem 1rem; margin-top: 0.55rem;
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between; align-items: center;
}
.track-dot { width: 6px; height: 6px; border-radius: 50%; background: #06B6D4; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Floating badges */
.fbadge {
  position: absolute; background: rgba(255,255,255,0.88);
  border: 1px solid rgba(37,99,201,0.15); border-radius: 12px;
  padding: 0.55rem 0.9rem; backdrop-filter: blur(12px);
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08); color: var(--text);
}
.fbadge-1 { top: 12%; left: -95px; animation: flt 4s ease-in-out infinite; }
.fbadge-2 { top: 42%; right: -110px; animation: flt 5s ease-in-out infinite 1s; }
.fbadge-3 { bottom: 18%; left: -85px; animation: flt 4.5s ease-in-out infinite 2s; }
@keyframes flt { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ============================================
   HERO V2 (image-led)
   ============================================ */
.hero-v2 {
  position: relative; overflow: hidden;
  padding: 3.25rem 0 0;
  background: linear-gradient(180deg, var(--sky) 0%, #E6F2FE 55%, var(--bg) 100%);
}
/* the hero photograph already carries the DAWN petal watermark, so this is
   only a faint tint behind the headline — not a second petal */
.hero-v2-petal {
  position: absolute; top: -8%; right: 42%; width: 460px; height: 560px;
  background: radial-gradient(closest-side, rgba(179,212,249,0.30), transparent 72%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero-v2-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr 1fr; gap: 1.5rem; align-items: center;
}
.hero-v2-content { padding-bottom: 2.5rem; }
.hero-v2-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  background: rgba(37,99,201,0.09); border: 1px solid rgba(37,99,201,0.18);
  color: var(--primary);
}
.hero-v2-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.9rem, 3.3vw, 2.9rem); line-height: 1.15;
  letter-spacing: -0.01em; color: #16264A; margin-bottom: 1.4rem;
}
.hero-v2-accent { color: var(--primary); }
.hero-v2-desc {
  font-size: 1.05rem; color: var(--text-muted); max-width: 46ch;
  line-height: 1.65; margin-bottom: 1.9rem;
}
.hero-v2-desc strong { color: var(--primary); font-weight: 600; }

/* three assurances, divided by hairlines like the reference */
.hero-v2-points {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.4rem; margin-bottom: 2rem;
}
.hero-v2-points li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 500; line-height: 1.35; color: var(--text);
}
.hero-v2-points li + li { border-left: 1px solid var(--border); padding-left: 1.4rem; }
.hero-v2-points svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--primary); }

.hero-v2-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.btn-ico { width: 18px; height: 18px; flex-shrink: 0; }
.hero-v2-actions .btn { border-radius: 10px; padding: 0.9rem 1.6rem; }
.hero-v2-actions .btn-outline { background: #fff; border-color: rgba(22,38,74,0.16); }
.btn-arrow { font-weight: 700; }

/* --bleed is how far the column's right edge sits from the viewport edge; the
   photo is widened by it, and the overlays are pulled out by it so they hang
   off the photo's true right edge rather than the container's */
.hero-v2-visual {
  position: relative; align-self: center;
  --bleed: calc(max(0px, (100vw - 1200px) / 2) + 2rem);
}
.hero-photo-wrap {
  position: relative;
  margin-right: calc(-1 * var(--bleed));
  aspect-ratio: 100 / 88; overflow: hidden;
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%);
  mask-image: linear-gradient(90deg, transparent, #000 14%);
}
.hero-help-card {
  position: absolute; bottom: 13rem; right: calc(3.5rem - var(--bleed)); z-index: 3;
  display: flex; align-items: flex-start; gap: 0.6rem;
  background: #fff; border-radius: 12px; padding: 0.8rem 0.9rem; width: 208px;
  box-shadow: 0 16px 38px rgba(16,38,74,0.18);
}
.hero-help-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: rgba(37,99,201,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.hero-help-text strong { font-size: 0.82rem; color: var(--text); display: block; margin-bottom: 0.12rem; }
.hero-help-text p { font-size: 0.7rem; line-height: 1.4; }
.hero-help-arrow {
  position: absolute; right: 14px; bottom: -14px;
  width: 30px; height: 30px; border-radius: 50%; border: 3px solid #F4F8FF;
  background: var(--primary); color: #fff; font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(37,99,201,0.4);
}
/* transparent, sitting over the photo's dark hair region — white type with a
   soft dark shadow, kept clear of the support card that rides up over the image */
.hero-sos-status {
  position: absolute; bottom: 8.4rem; right: calc(3.5rem - var(--bleed)); z-index: 3;
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; color: #fff;
  /* tight dark outline + wider glow: this spot spans light skin and dark hair,
     so white type needs to hold on both */
  text-shadow:
    0 0 2px rgba(6,14,28,0.95), 0 0 4px rgba(6,14,28,0.9),
    0 0 9px rgba(6,14,28,0.8), 0 1px 18px rgba(6,14,28,0.7);
}
.hero-sos-status strong { font-weight: 700; }
.hero-sos-status small { color: rgba(255,255,255,0.88); font-size: 0.72rem; }
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #16A34A;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.18);
}

/* ---- Support carousel ---- */
/* pulled up over the photo so the card sits just under the hero buttons */
.support-section { padding: 0 0 5rem; margin-top: -5.5rem; position: relative; z-index: 4; }
.support-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem 2.75rem; box-shadow: 0 24px 60px rgba(16,38,74,0.10);
}
.support-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  text-align: center; color: #16264A; font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 2rem;
}
.support-carousel { display: flex; align-items: center; gap: 0.5rem; }
.support-viewport { flex: 1; overflow: hidden; }
.support-track {
  display: flex;
  transition: transform 0.45s var(--ease);
}
.support-item {
  flex: 0 0 20%; text-align: center; padding: 0.5rem 1.25rem 0.25rem;
  transition: var(--transition);
}
.support-item h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; }
.support-item p { font-size: 0.8rem; line-height: 1.5; }
.support-icon {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 1rem;
  border: 1px solid var(--border); background: rgba(37,99,201,0.04);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  transition: var(--transition);
}
.support-icon svg { width: 30px; height: 30px; }
.support-item:hover .support-icon { background: rgba(37,99,201,0.12); transform: translateY(-3px); }
.support-nav {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); color: var(--text-muted);
  font-size: 1.3rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(16,38,74,0.08); transition: var(--transition);
}
.support-nav:hover { color: var(--primary); border-color: var(--border-glow); }
.support-nav:disabled { opacity: 0.35; cursor: default; }

@media (max-width: 1024px) {
  .hero-v2 { padding-top: 4.5rem; }
  .hero-v2-grid { grid-template-columns: 1fr; }
  .hero-v2-content { padding-bottom: 0; text-align: left; }
  .hero-v2-desc { max-width: 46ch; }
  .hero-v2-visual { min-height: 460px; margin-top: 1.5rem; }
  .hero-photo-wrap { inset: 0; border-radius: var(--radius-lg); }
  .hero-photo { -webkit-mask-image: none; mask-image: none; }
  .support-item { flex-basis: 33.333%; }
}
@media (max-width: 640px) {
  .hero-v2-visual { min-height: 380px; }
  .hero-help-card { width: 200px; padding: 0.7rem 0.8rem; bottom: 8rem; }
  .support-item { flex-basis: 80%; }
  .support-card { padding: 2rem 0.75rem; }
}

/* ============================================
   QUOTE PANEL
   ============================================ */
.quote-section { padding: 0 0 5rem; }
/* the portrait asset carries its own pale ground (#ECF1FD–#F2F5FE), so the panel
   sits in that same range and the image edges are masked out — otherwise the
   asset reads as a rectangle pasted onto the panel */
.quote-panel {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 2rem; align-items: center;
  background: linear-gradient(90deg, #EDF2FD 0%, #EFF3FE 45%, #F3F6FE 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; margin: 0;
}
.quote-portrait { align-self: center; }
.quote-portrait img {
  width: 100%; height: auto;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 62%, transparent 92%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 62%, transparent 92%);
}
/* pushed to the right of its column so the block sits against the panel edge
   instead of leaving a wide dead gutter there */
.quote-body { padding: 2.5rem 3rem 2.5rem 0; justify-self: end; max-width: 620px; }
/* opening mark rides on the first line, hung into the left margin so all four
   lines of the quote still start on the same vertical */
.quote-mark {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--primary); font-size: 1.45em; line-height: 0;
  vertical-align: -0.12em; margin-right: 0.06em;
}
.quote-mark-end {
  font-size: 1.2em; margin: 0 0 0 0.1em; vertical-align: -0.18em;
}
.quote-text {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.75rem); line-height: 1.5;
  color: #16264A; margin-bottom: 1.5rem;
  text-indent: -0.62em;
}
.quote-rule { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem; }
.quote-rule span { height: 1px; width: 74px; background: rgba(37,99,201,0.28); }
.quote-rule img { width: 16px; height: 16px; object-fit: contain; opacity: 0.8; }
.quote-attrib { display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 0.9rem; }
.quote-name {
  font-family: 'Playfair Display', serif; font-style: normal; font-weight: 700;
  font-size: 1.15rem; color: var(--primary);
}
.quote-years { font-size: 0.82rem; color: var(--text-muted); }
.quote-work {
  font-size: 0.8rem; color: var(--primary-light);
  background: rgba(255,255,255,0.75); border: 1px solid rgba(37,99,201,0.2);
  border-radius: 50px; padding: 0.3rem 0.9rem;
}
.quote-note { font-size: 0.85rem; line-height: 1.7; max-width: 62ch; }

@media (max-width: 900px) {
  .quote-panel { grid-template-columns: 1fr; gap: 0; }
  .quote-portrait { max-width: 340px; margin: 1.5rem auto 0; }
  .quote-body { padding: 1.5rem 1.75rem 2.25rem; justify-self: stretch; max-width: none; }

}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.svc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(37,99,201,0.06);
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient); opacity: 0; transition: var(--transition);
}
.svc-card:hover { background: var(--bg-card-hover); border-color: rgba(37,99,201,0.3); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.5rem;
}
.icon-knight { background: rgba(37,99,201,0.1); }
.icon-commute { background: rgba(14,58,126,0.1); }
.icon-medical { background: rgba(27,84,176,0.1); }
.svc-card h3 { margin-bottom: 0.75rem; }
.svc-card p { font-size: 0.93rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem; color: var(--primary-light);
  font-size: 0.88rem; font-weight: 600; transition: var(--transition);
}
.svc-card:hover .svc-link { gap: 0.7rem; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-bg { background: linear-gradient(180deg, transparent, rgba(37,99,201,0.04) 50%, transparent); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 51px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.step-card { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff;
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(37,99,201,0.4);
}
.step-card h4 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; }

/* ============================================
   SOS SECTION
   ============================================ */
.sos-wrap {
  background: linear-gradient(135deg, rgba(239,68,68,0.04), rgba(27,84,176,0.04));
  border: 1px solid rgba(239,68,68,0.12); border-radius: var(--radius-lg);
  padding: 5rem 4rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; overflow: hidden;
}
.sos-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(239,68,68,0.06) 0%, transparent 70%);
}
.sos-content { position: relative; }
.sos-feats { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.sos-feat { display: flex; align-items: flex-start; gap: 1rem; }
.sos-feat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(239,68,68,0.08); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.sos-feat-text h5 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.sos-feat-text p { font-size: 0.85rem; }

.sos-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.sos-btn-demo {
  width: 170px; height: 170px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(239,68,68,0.18), rgba(27,84,176,0.15));
  border: 2px solid rgba(239,68,68,0.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.35rem;
  font-size: 2rem; position: relative;
  animation: sosGlow 2.5s ease-in-out infinite;
  cursor: default;
}
.sos-btn-demo span { font-size: 0.75rem; font-weight: 700; color: #DC2626; letter-spacing: 0.08em; }
.sos-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(239,68,68,0.2); animation: sosPulse 2.5s ease-out infinite;
}
.sos-ring-1 { inset: -20px; animation-delay: 0s; }
.sos-ring-2 { inset: -40px; animation-delay: 0.5s; }
.sos-ring-3 { inset: -60px; animation-delay: 1s; }
@keyframes sosGlow { 0%,100%{box-shadow:0 0 30px rgba(239,68,68,0.2)} 50%{box-shadow:0 0 60px rgba(239,68,68,0.4)} }
@keyframes sosPulse { 0%{transform:scale(0.85);opacity:0.7} 100%{transform:scale(1.5);opacity:0} }

/* ============================================
   FEATURES GRID
   ============================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feat-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 2px 8px rgba(37,99,201,0.04);
}
.feat-item:hover { border-color: rgba(37,99,201,0.25); background: var(--bg-card-hover); box-shadow: var(--shadow-glow); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(37,99,201,0.1); display: flex;
  align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.feat-icon.pink { background: rgba(27,84,176,0.1); }
.feat-icon.cyan { background: rgba(14,58,126,0.1); }
.feat-icon.red { background: rgba(239,68,68,0.1); }
.feat-text h4 { margin-bottom: 0.3rem; }
.feat-text p { font-size: 0.875rem; }

/* ============================================
   HELPLINES STRIP
   ============================================ */
.helplines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.helpline-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.helpline-card:hover { border-color: rgba(27,84,176,0.25); background: var(--bg-card-hover); }
.helpline-num { font-size: 1.4rem; font-weight: 800; color: var(--pink-light); min-width: 56px; }
.helpline-info .n { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.helpline-info .d { font-size: 0.8rem; color: var(--text-dim); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(37,99,201,0.05);
}
.testi-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; font-family: 'Playfair Display', serif;
  color: rgba(37,99,201,0.12); line-height: 1;
}
.stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.93rem; line-height: 1.75; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #fff;
}
.testi-name { font-weight: 600; font-size: 0.88rem; }
.testi-loc { font-size: 0.78rem; color: var(--text-dim); }

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.dl-section {
  text-align: center; background: var(--gradient-subtle);
  border: 1px solid var(--border-glow); border-radius: var(--radius-lg);
  padding: 5rem 3rem; position: relative; overflow: hidden;
}
.dl-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,201,0.1) 0%, transparent 65%);
}
.dl-section .inner { position: relative; }
.dl-section h2 { margin-bottom: 1rem; }
.dl-section p { font-size: 1.05rem; max-width: 480px; margin: 0 auto 2.5rem; }
.dl-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.app-btn {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1.75rem; background: rgba(255,255,255,0.85);
  border: 1px solid rgba(37,99,201,0.15); border-radius: 14px;
  transition: var(--transition); cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.app-btn:hover { background: #fff; border-color: rgba(37,99,201,0.3); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,99,201,0.12); }
.app-btn-icon { font-size: 1.8rem; }
.app-btn-text .store { font-size: 0.68rem; color: var(--text-muted); }
.app-btn-text .name { font-size: 1rem; font-weight: 700; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: rgba(37,99,201,0.03); border-top: 1px solid var(--border); padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.social-row { display: flex; gap: 0.65rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.social-btn:hover { background: rgba(37,99,201,0.08); border-color: rgba(37,99,201,0.25); }
.footer-col h5 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-dim); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.83rem; color: var(--text-dim);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-dim); transition: var(--transition); }
.footer-links a:hover { color: var(--text); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 10rem 0 5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,201,0.1) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-visual { display: flex; justify-content: center; }
.card-stack { position: relative; width: 320px; height: 420px; }
.st-card {
  position: absolute; width: 280px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,99,201,0.08);
}
.st-card.c1 { top: 0; left: 0; transform: rotate(-4deg); z-index: 1; }
.st-card.c2 { top: 35px; left: 20px; transform: rotate(1.5deg); z-index: 2; background: rgba(37,99,201,0.06); border-color: rgba(37,99,201,0.18); }
.st-card.c3 { top: 70px; left: 40px; z-index: 3; }
.st-card .card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.st-card h4 { margin-bottom: 0.4rem; }
.st-card p { font-size: 0.85rem; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
.val-item {
  padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.val-item:hover { border-color: rgba(37,99,201,0.25); }
.val-icon { font-size: 1.4rem; margin-bottom: 0.65rem; }
.val-item h4 { margin-bottom: 0.3rem; }
.val-item p { font-size: 0.85rem; }

.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.diff-card {
  padding: 2.5rem 2rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center; transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(37,99,201,0.05);
}
.diff-card:hover { border-color: rgba(37,99,201,0.25); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.diff-em { font-size: 2.8rem; margin-bottom: 1.25rem; display: block; }
.diff-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding: 5rem 0; border-bottom: 1px solid var(--border);
}
.svc-detail:last-of-type { border-bottom: none; }
.svc-detail.flip { direction: rtl; }
.svc-detail.flip > * { direction: ltr; }
.svc-big-icon { font-size: 3rem; margin-bottom: 1.25rem; display: block; }
.svc-detail h2 { margin-bottom: 1rem; }
.svc-detail > div > p { margin-bottom: 1.5rem; }
.svc-visual {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 4.5rem; position: relative; overflow: hidden; gap: 1rem;
  box-shadow: 0 4px 20px rgba(37,99,201,0.07);
}
.svc-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(37,99,201,0.06) 0%, transparent 70%); }
.svc-visual-label { font-size: 0.8rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; position: relative; }

/* ============================================
   PARTNERS PAGE
   ============================================ */
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.partner-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; transition: var(--transition); overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(37,99,201,0.05);
}
.partner-card:hover { border-color: rgba(37,99,201,0.25); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.partner-card.featured { grid-column: span 2; background: var(--gradient-subtle); border-color: rgba(37,99,201,0.18); }
.p-tag {
  display: inline-block; padding: 0.22rem 0.7rem; border-radius: 4px;
  font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 1rem; background: rgba(37,99,201,0.1); color: var(--primary-light);
}
.partner-card h3 { margin-bottom: 0.65rem; }
.partner-card p { font-size: 0.93rem; margin-bottom: 1.25rem; }
.p-benefits { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.p-tag-sm {
  padding: 0.28rem 0.7rem; border-radius: 4px; font-size: 0.78rem;
  background: rgba(37,99,201,0.06); border: 1px solid var(--border); color: var(--text-muted);
}

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 5rem; }
.stat-bar-item {
  text-align: center; padding: 2rem 1rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.stat-bar-val { font-size: 2rem; font-weight: 800; margin-bottom: 0.35rem; }
.stat-bar-item h4 { font-size: 0.88rem; margin-bottom: 0.25rem; }
.stat-bar-item p { font-size: 0.8rem; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero-row { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-bottom: 4rem; }
.blog-featured {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(37,99,201,0.06);
}
.blog-featured:hover { border-color: rgba(37,99,201,0.25); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.blog-thumb {
  height: 280px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative;
}
.blog-thumb::before { content: ''; position: absolute; inset: 0; }
.t-purple { background: linear-gradient(135deg, rgba(37,99,201,0.2), rgba(27,84,176,0.12)); }
.t-cyan   { background: linear-gradient(135deg, rgba(14,58,126,0.2), rgba(37,99,201,0.12)); }
.t-pink   { background: linear-gradient(135deg, rgba(27,84,176,0.2), rgba(239,68,68,0.1)); }
.t-red    { background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(251,191,36,0.1)); }
.t-teal   { background: linear-gradient(135deg, rgba(20,184,166,0.2), rgba(14,58,126,0.12)); }
.blog-featured-body { padding: 1.75rem; }
.blog-side { display: flex; flex-direction: column; gap: 0.85rem; }
.blog-side-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; gap: 1rem; padding: 1rem; cursor: pointer; transition: var(--transition); overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.blog-side-item:hover { border-color: rgba(37,99,201,0.25); background: var(--bg-card-hover); }
.blog-side-thumb {
  width: 72px; height: 72px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.blog-side-info { flex: 1; }
.blog-tag {
  display: inline-block; padding: 0.22rem 0.65rem; border-radius: 4px;
  font-size: 0.72rem; font-weight: 600; background: rgba(37,99,201,0.1); color: var(--primary-light); margin-bottom: 0.5rem;
}
.blog-tag.red { background: rgba(239,68,68,0.1); color: #DC2626; }
.blog-tag.cyan { background: rgba(14,58,126,0.1); color: #0E3A7E; }
.blog-tag.pink { background: rgba(27,84,176,0.1); color: var(--pink-light); }
.blog-tag.teal { background: rgba(20,184,166,0.1); color: #0F766E; }
.blog-side-info h4 { font-size: 0.88rem; line-height: 1.4; margin-bottom: 0.25rem; }
.blog-side-info p { font-size: 0.78rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(37,99,201,0.05);
}
.blog-card:hover { border-color: rgba(37,99,201,0.25); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.blog-card-thumb { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.blog-card-body { padding: 1.5rem; }
.blog-card-body h3 { font-size: 1rem; line-height: 1.4; margin-bottom: 0.5rem; margin-top: 0.5rem; }
.blog-card-body p { font-size: 0.865rem; margin-bottom: 1rem; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text-dim); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(37,99,201,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.ci-lbl { font-size: 0.76rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.ci-val { font-weight: 600; font-size: 0.92rem; }
.ci-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }
.form-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(37,99,201,0.06);
}
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { font-size: 0.93rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.92rem; transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); background: rgba(37,99,201,0.04); }
.form-group select { cursor: pointer; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================
   PRIVACY / TERMS
   ============================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h3 { margin: 2.5rem 0 1rem; font-size: 1.2rem; }
.legal-content p { font-size: 0.95rem; margin-bottom: 1rem; }
.legal-content ul { margin: 1rem 0 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-muted); list-style: disc; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.anim.in { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc, .hero-actions, .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .sos-wrap { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-detail.flip { direction: ltr; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-card.featured { grid-column: span 1; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .blog-hero-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1180px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .sos-wrap { margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .helplines-grid { grid-template-columns: 1fr; }
  .fbadge { display: none; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  section { padding: 3rem 0; }
  .hero { padding: 7rem 0 3rem; }
  .page-hero { padding: 8rem 0 3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .phone-wrap { width: 220px; height: 440px; }
  .card-stack { width: 100%; max-width: 260px; height: 360px; margin: 0 auto; }
  .st-card { width: 85%; max-width: 220px; padding: 1.25rem; }
  .sos-wrap { padding: 2.5rem 1.25rem; }
  .dl-section { padding: 3rem 1.5rem; }
  .form-card, .partner-card, .diff-card, .svc-card { padding: 1.75rem 1.25rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .footer-links { flex-direction: column; gap: 0.5rem; }
}
