/* ===================================================
   Saara Life Care — Premium fintech / insurance UI
   Palette: deep blue + refined gold
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-deep: #061a2e;
  --navy: #0c2744;
  --navy-soft: #153a5c;
  --blue-mid: #1a4d7a;
  --blue-accent: #2563a8;
  --gold: #c9a962;
  --gold-rich: #e8d5a3;
  --gold-deep: #a68540;
  --gold-glow: rgba(201, 169, 98, 0.35);
  --bone: #f7f5f0;
  --surface: #fafbfc;
  --white: #ffffff;

  /* Health product — green system (Niva Bupa) */
  --health-950: #022c22;
  --health-900: #064e3b;
  --health-800: #065f46;
  --health-700: #047857;
  --health-600: #059669;
  --health-500: #10b981;
  --health-400: #34d399;
  --health-soft: #ecfdf5;
  --health-muted: #d1fae5;
  --health-glow: rgba(16, 185, 129, 0.22);

  /* Life product — blue system (LIC) */
  --life-950: #051624;
  --life-900: #082f49;
  --life-800: #0c4a6e;
  --life-700: #0e5c8c;
  --life-600: #156cac;
  --life-500: #1d7ebf;
  --life-soft: #f0f7fc;
  --life-muted: #e0edf5;
  --life-glow: rgba(21, 108, 172, 0.2);

  --teal: var(--health-800);
  --teal-bright: var(--health-600);
  --blue-lic: var(--life-800);

  --stone-100: #f1f0ee;
  --stone-200: #e4e2df;
  --stone-300: #c9c4bc;
  --stone-400: #6e6860;
  --stone-500: #524c45;
  --text-muted: #475569;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(6, 26, 46, 0.06);
  --shadow-md: 0 12px 40px rgba(6, 26, 46, 0.08);
  --shadow-lg: 0 24px 64px rgba(6, 26, 46, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--bone);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }

/* ========== Typography ========== */
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; }
h1 { font-size: clamp(2.35rem, 4.8vw, 3.65rem); line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.45rem); letter-spacing: -0.02em; line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.2; }

.gold { color: var(--gold); }
strong { color: var(--navy); font-weight: 600; }
.text-health { color: var(--health-700); font-weight: 700; }
.text-life { color: var(--life-700); font-weight: 700; }

/* ========== Buttons ========== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn-pill { border-radius: 999px; }
.btn-lg { padding: 0 28px; min-height: 52px; font-size: 15px; }

.btn-primary {
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue-mid) 55%, var(--blue-accent) 100%);
  color: #fff;
  box-shadow: 0 4px 0 var(--gold-deep), 0 12px 36px rgba(6, 26, 46, 0.28);
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--gold), 0 20px 48px rgba(6, 26, 46, 0.35);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--gold-deep), 0 8px 24px rgba(6, 26, 46, 0.25);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-cta-primary {
  min-width: min(100%, 280px);
}

.btn-outline {
  border: 1.5px solid var(--stone-300);
  color: var(--navy-soft);
  padding: 0 22px;
  min-height: 44px;
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.btn-cta-secondary {
  min-width: min(100%, 220px);
  border-color: rgba(12, 39, 68, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.btn-gold {
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy-deep);
  padding: 0 28px;
  min-height: 52px;
  font-weight: 700;
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201, 169, 98, 0.45);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 0 28px;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-health,
.btn-teal {
  background: linear-gradient(145deg, var(--health-500) 0%, var(--health-700) 45%, var(--health-800) 100%);
  color: #fff;
  padding: 0 18px;
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.28);
}

.btn-health:hover,
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(5, 150, 105, 0.38);
}

.btn-life,
.btn-lic {
  background: linear-gradient(145deg, var(--life-600) 0%, var(--life-800) 50%, var(--life-900) 100%);
  color: #fff;
  padding: 0 18px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid rgba(201, 169, 98, 0.55);
  box-shadow: 0 4px 16px rgba(12, 74, 110, 0.25);
}

.btn-life:hover,
.btn-lic:hover {
  transform: translateY(-2px);
  border-color: var(--gold-rich);
  box-shadow: 0 10px 32px rgba(12, 74, 110, 0.35);
}

.nav-actions .btn-primary {
  min-height: 44px;
  padding: 0 22px;
  font-size: 13px;
  box-shadow: 0 3px 0 var(--gold-deep), 0 8px 24px rgba(6, 26, 46, 0.22);
}

.nav-actions .btn-primary:hover {
  box-shadow: 0 3px 0 var(--gold), 0 14px 32px rgba(6, 26, 46, 0.3);
}

/* ========== Pill Badge ========== */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(255, 255, 255, 0.5));
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.pill-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-rich), var(--gold));
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.25);
}

.pill-health,
.pill-teal {
  border-color: rgba(5, 150, 105, 0.28);
  color: var(--health-800);
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.65), rgba(255, 255, 255, 0.9));
}

.pill-life,
.pill-blue {
  border-color: rgba(14, 92, 140, 0.28);
  color: var(--life-800);
  background: linear-gradient(135deg, rgba(224, 237, 245, 0.75), rgba(255, 255, 255, 0.95));
}
.pill-gold { border-color: rgba(201, 169, 98, 0.45); color: var(--gold-rich); background: rgba(201, 169, 98, 0.08); }

/* ========== Navbar ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(12, 39, 68, 0.06);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--navy), var(--blue-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-rich);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 19px;
  box-shadow: 0 4px 16px rgba(6, 26, 46, 0.2);
}

.nav-logo-footer {
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--gold-rich);
  box-shadow: none;
}

.nav-brand-name { font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; }
.nav-brand-tag { font-size: 9px; color: var(--stone-500); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }

.nav-links { display: flex; gap: clamp(20px, 3vw, 36px); align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.nav-link-health,
.nav-link-life {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link-health::before,
.nav-link-life::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.nav-link-health::before {
  background: linear-gradient(145deg, var(--health-400), var(--health-600));
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.nav-link-life::before {
  background: linear-gradient(145deg, var(--life-500), var(--life-800));
  box-shadow: 0 0 0 2px rgba(21, 108, 172, 0.2);
}

.nav-link-health:hover::before,
.nav-link-life:hover::before {
  transform: scale(1.15);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy-soft); transition: 0.3s; border-radius: 2px; }

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px clamp(20px, 4vw, 32px) 20px;
  border-top: 1px solid var(--stone-100);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.mobile-menu a:not(.mobile-menu-cta) {
  border-bottom: 1px solid var(--stone-100);
}

.mobile-menu-cta {
  margin-top: 18px;
  width: 100%;
  min-height: 50px;
  display: inline-flex !important;
  justify-content: center;
  text-align: center;
  color: #fff !important;
}

.mobile-menu.open { display: block; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .nav-inner { height: 64px; }
}

/* ========== Hero ========== */
.hero-shell {
  position: relative;
  padding-top: 104px;
  padding-bottom: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% -10%, rgba(37, 99, 168, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 20%, rgba(201, 169, 98, 0.12), transparent 45%),
    linear-gradient(180deg, var(--surface) 0%, var(--bone) 45%, var(--bone) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-orb-1 {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -120px;
  right: -80px;
  background: rgba(37, 99, 168, 0.2);
}

.hero-orb-2 {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  bottom: 10%;
  left: -100px;
  background: rgba(201, 169, 98, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  min-height: 500px;
}

.hero-text { display: flex; flex-direction: column; gap: 22px; max-width: 540px; }

.hero-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 32rem;
}

.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.hero-checks li {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-soft);
  padding-left: 28px;
  position: relative;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.25), rgba(37, 99, 168, 0.12));
  border: 1px solid rgba(201, 169, 98, 0.4);
}

.hero-checks li::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-mid);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; padding-top: 4px; }

.hero-cta-note {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
  max-width: 28rem;
}

.hero-cta-note-strong { color: var(--navy-soft); font-weight: 600; }

.hero-pathways {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 4px;
}

.pathway {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}

.pathway-health {
  color: var(--health-700);
  border-bottom: 2px solid rgba(16, 185, 129, 0.45);
  padding-bottom: 2px;
}

.pathway-health:hover {
  color: var(--health-800);
  border-bottom-color: var(--health-500);
}

.pathway-life {
  color: var(--life-700);
  border-bottom: 2px solid rgba(21, 108, 172, 0.4);
  padding-bottom: 2px;
}

.pathway-life:hover {
  color: var(--life-900);
  border-bottom-color: var(--life-600);
}

.pathway-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--stone-300);
}

/* Bento Grid */
.hero-bento {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 460px;
}

.bento-main { grid-row: span 2; }
.bento-main, .bento-side {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.bento-main img, .bento-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
}

.bento-main:hover img, .bento-side:hover img { transform: scale(1.04); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 26, 46, 0.82) 0%, rgba(6, 26, 46, 0.2) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.bento-small {
  color: rgba(232, 213, 163, 0.85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bento-title {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
}

.bento-title-compact {
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bento-stat {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--blue-mid) 100%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: var(--shadow-md);
}

.bento-stat-value {
  color: var(--gold-rich);
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.bento-stat-label { color: rgba(255, 255, 255, 0.65); font-size: 12px; margin-top: 8px; font-weight: 500; }
.bento-stat-line { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-top: 14px; }
.bento-stat-sub { color: rgba(255, 255, 255, 0.38); font-size: 10px; margin-top: 10px; line-height: 1.55; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; min-height: 0; }
  .hero-bento { height: 340px; }
  .bento-stat { display: none; }
}

@media (max-width: 600px) {
  .hero-shell { padding-top: 88px; padding-bottom: 48px; }
  .hero-bento { grid-template-columns: 1fr; grid-template-rows: 220px; height: auto; }
  .bento-side { display: none; }
  .hero-cta .btn { width: 100%; }
}

/* Stats Row */
.stats-row-elevated {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 98, 0.35);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(12, 39, 68, 0.06), rgba(37, 99, 168, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform 0.3s var(--ease-out);
}

.stat-item:hover .stat-icon {
  transform: scale(1.06);
  color: var(--blue-mid);
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label { font-size: 12px; font-weight: 600; color: var(--stone-500); margin-top: 4px; }

@media (max-width: 768px) {
  .stats-row-elevated { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 400px) {
  .stat-item { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ========== Sections ========== */
.section { padding: clamp(72px, 1vw, 100px) 0; }
.bg-white { background: var(--white); }
.bg-bone { background: var(--bone); }
.bg-navy {
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 40%, #0f3355 100%);
}

/* —— Product sections: health = green, life = blue —— */
.section-health,
.section-lic {
  position: relative;
  overflow: hidden;
}

.section-product-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-health-inner,
.section-lic-inner {
  position: relative;
  z-index: 1;
}

.section-product-bg-health {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(16, 185, 129, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 80%, rgba(52, 211, 153, 0.08), transparent 50%),
    linear-gradient(180deg, var(--health-soft) 0%, var(--white) 35%, var(--white) 100%);
}

.section-product-bg-life {
  background:
    radial-gradient(ellipse 75% 55% at 90% 10%, rgba(21, 108, 172, 0.12), transparent 52%),
    radial-gradient(ellipse 45% 40% at 0% 90%, rgba(14, 92, 140, 0.08), transparent 48%),
    linear-gradient(185deg, var(--life-soft) 0%, var(--bone) 40%, var(--bone) 100%);
}

.section-header-health .title-accent-health,
.section-header-life .title-accent-life {
  display: inline;
  background-repeat: no-repeat;
  background-size: 100% 42%;
  background-position: 0 88%;
  padding: 0 0.06em;
}

.section-header-health .title-accent-health {
  color: var(--health-800);
  background-image: linear-gradient(transparent 60%, rgba(16, 185, 129, 0.28) 60%);
}

.section-header-life .title-accent-life {
  color: var(--life-800);
  background-image: linear-gradient(transparent 60%, rgba(21, 108, 172, 0.22) 60%);
}

.section-header { text-align: center; margin-bottom: clamp(36px, 5vw, 52px); max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin: 12px 0 10px; }
.section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.65; max-width: 34rem; margin-left: auto; margin-right: auto; }

.section-header-light h2 { color: #fff; }
.section-header-light .booking-heading { color: #fff; }
.section-header-light .booking-lead { color: rgba(255, 255, 255, 0.62); }

.booking-heading { color: #fff; }
.booking-lead { color: rgba(255, 255, 255, 0.58); font-size: 15px; line-height: 1.65; margin-top: 8px; }

.section-link { text-align: center; margin-top: 28px; }
.section-link a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-link a:hover { text-decoration: underline; text-underline-offset: 3px; }

.section-link-health a {
  color: var(--health-700);
}

.section-link-health a:hover {
  color: var(--health-800);
}

.section-link-life a {
  color: var(--life-700);
}

.section-link-life a:hover {
  color: var(--life-900);
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 640px;
  margin: 0 auto 44px;
}

.quick-stats div {
  text-align: center;
  padding: 16px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stone-200);
  background: var(--white);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.quick-stats div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.quick-stats-health div,
.quick-stats-teal div {
  border-color: rgba(5, 150, 105, 0.18);
  background: linear-gradient(180deg, var(--white) 0%, rgba(236, 253, 245, 0.5) 100%);
}

.quick-stats-life div,
.quick-stats-blue div {
  border-color: rgba(14, 92, 140, 0.18);
  background: linear-gradient(180deg, var(--white) 0%, rgba(240, 247, 252, 0.65) 100%);
}

.quick-stats strong { display: block; font-size: 15px; font-weight: 700; }
.quick-stats-health strong,
.quick-stats-teal strong { color: var(--health-700); }
.quick-stats-life strong,
.quick-stats-blue strong { color: var(--life-800); }
.quick-stats span { font-size: 11px; font-weight: 600; color: var(--stone-500); margin-top: 4px; display: block; }

@media (max-width: 500px) {
  .quick-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Plan Cards ========== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 900px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.35s;
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 rgba(201, 169, 98, 0);
  pointer-events: none;
  transition: box-shadow 0.4s var(--ease-out);
  z-index: 2;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 169, 98, 0.22);
  border-color: rgba(12, 39, 68, 0.12);
}

.plan-card-health:hover {
  border-color: rgba(5, 150, 105, 0.28);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--health-glow), 0 20px 48px rgba(5, 150, 105, 0.1);
}

.plan-card-life:hover {
  border-color: rgba(14, 92, 140, 0.3);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--life-glow), 0 20px 48px rgba(12, 74, 110, 0.12);
}

.plan-card:hover::before {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.plan-header { padding: 22px 20px; }
.plan-header-health,
.plan-header-teal {
  background: linear-gradient(135deg, var(--health-600) 0%, var(--health-800) 42%, var(--health-900) 100%);
}

.plan-header-life,
.plan-header-blue {
  background: linear-gradient(135deg, var(--life-600) 0%, var(--life-800) 45%, var(--life-950) 100%);
}
.plan-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

/* Health plans: name + badge row, then full-width tagline (no awkward wrap) */
.plan-header-top-health {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 8px 12px;
  align-items: start;
}

.plan-header-top-health .plan-name {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  min-width: 0;
}

.plan-header-top-health .plan-badge-health {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  max-width: 11.5rem;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
}

.plan-header-top-health .plan-tagline-health {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
}

@media (max-width: 380px) {
  .plan-header-top-health {
    grid-template-columns: 1fr;
  }

  .plan-header-top-health .plan-name {
    grid-column: 1;
    grid-row: 1;
  }

  .plan-header-top-health .plan-badge-health {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    max-width: 100%;
  }

  .plan-header-top-health .plan-tagline-health {
    grid-row: 3;
  }
}

.plan-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700; color: #fff; }
.plan-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 500;
}

.plan-tagline-health {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 12px;
  margin-top: 2px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  border-left: 3px solid rgba(232, 213, 163, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-badge-health {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.plan-badge-gold {
  background: rgba(201, 169, 98, 0.28);
  color: var(--gold-rich);
  font-size: 10px;
}

.plan-meta { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.plan-meta span { font-size: 10px; font-weight: 600; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.plan-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-body .plan-highlights {
  flex: 1 1 auto;
}

.plan-body .plan-cta {
  margin-top: auto;
  padding-top: 4px;
}
.plan-pricing {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--stone-100);
  gap: 12px;
}

.plan-pricing-label { font-size: 10px; font-weight: 700; color: var(--stone-500); text-transform: uppercase; letter-spacing: 0.1em; }
.plan-pricing-value { font-size: 19px; font-weight: 700; margin-top: 4px; color: var(--navy); }
.plan-pricing-health .plan-pricing-value,
.plan-pricing-teal .plan-pricing-value { color: var(--health-700); }
.plan-highlights { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.plan-highlights li svg { margin-top: 3px; flex-shrink: 0; }
.check-health,
.check-teal { color: var(--health-600); }
.check-life,
.check-blue { color: var(--life-600); }
.plan-maturity { background: linear-gradient(135deg, rgba(14, 92, 140, 0.08), rgba(14, 92, 140, 0.02)); border-radius: var(--radius-md); padding: 14px; margin-top: 18px; border: 1px solid rgba(14, 92, 140, 0.12); margin-bottom: 10px; }
.plan-maturity-label { font-size: 9px; font-weight: 700; color: var(--life-800); text-transform: uppercase; letter-spacing: 0.12em; }
.plan-maturity-value { font-size: 12px; color: var(--text-muted); margin-top: 6px; line-height: 1.5; }
.plan-cta { margin-top: 22px; display: flex; }
.plan-cta .btn { width: 100%; justify-content: center; }

/* ========== Why Us ========== */
.section-why {
  background: linear-gradient(185deg, var(--white) 0%, rgba(240, 247, 252, 0.35) 42%, rgba(236, 253, 245, 0.25) 100%);
  position: relative;
  overflow-x: hidden;
}

.section-why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 85%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), rgba(14, 92, 140, 0.2), transparent);
}

.why-images { display: grid; grid-template-columns: 7fr 5fr; gap: 18px; margin-bottom: 44px; }
.why-img-main, .why-img-side { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 260px; box-shadow: var(--shadow-md); border: 1px solid rgba(255, 255, 255, 0.4); }
.why-img-main img, .why-img-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.75s var(--ease-out); }
.why-img-main:hover img, .why-img-side:hover img { transform: scale(1.04); }
.why-overlay-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.why-img-badge {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-align: right;
  flex-shrink: 0;
}

.why-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-rich);
  line-height: 1;
}

.why-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}

@media (max-width: 600px) {
  .why-images { grid-template-columns: 1fr; }
  .why-img-side { display: none; }
}

/* Features — base (used in Why Us) */
.why-features {
  margin-top: 8px;
}

.features-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 14px; }
.features-bottom { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 52px; }

@media (max-width: 900px) {
  .features-top { grid-template-columns: 1fr; }
  .features-grid, .features-bottom { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  position: relative;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 169, 98, 0.18);
  border-color: rgba(12, 39, 68, 0.1);
}

.feature-card-sm { border-radius: var(--radius-md); padding: 18px 16px; }
.feature-card-sm:hover { transform: translateY(-4px); }
.feature-card-bone { background: var(--bone); }

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
  background: linear-gradient(145deg, var(--white), var(--bone));
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out), color 0.3s;
}

.feature-card:hover .feature-icon {
  border-color: rgba(201, 169, 98, 0.55);
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.12), rgba(255, 255, 255, 0.9));
  color: var(--blue-mid);
  transform: scale(1.05);
}

.feature-icon-sm { width: 38px; height: 38px; border-radius: 9px; margin-bottom: 12px; }
.feature-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.02em; }
.feature-title-sm { font-size: 13px; }
.feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.feature-desc-sm { font-size: 12px; font-weight: 500; color: var(--text-muted); line-height: 1.55; }

/* Why Us — stronger section lead + premium feature cards */
.section-why .section-header h2 {
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  letter-spacing: -0.03em;
}

.section-why .section-lead-why {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--navy-soft);
  line-height: 1.7;
  max-width: 38rem;
}

.section-why .why-features .features-top,
.section-why .why-features .features-grid,
.section-why .why-features .features-bottom {
  gap: 20px;
}

.section-why .why-features .feature-card {
  overflow: hidden;
  border: 1px solid rgba(12, 39, 68, 0.1);
  background: linear-gradient(168deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 28px rgba(6, 26, 46, 0.07);
}

.section-why .why-features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--health-500) 0%, var(--gold) 50%, var(--life-600) 100%);
  opacity: 0.92;
}

.section-why .why-features .feature-card-sm::before {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.section-why .why-features .features-top .feature-card {
  padding: 30px 28px 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.section-why .why-features .feature-card-sm {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
}

.section-why .why-features .feature-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.section-why .why-features .feature-title-sm {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.section-why .why-features .feature-desc {
  font-size: 15px;
  font-weight: 500;
  color: #334155;
  line-height: 1.65;
  flex-grow: 1;
}

.section-why .why-features .feature-desc-sm {
  font-size: 14px;
  font-weight: 500;
  color: #3d4d5c;
  line-height: 1.6;
}

.section-why .why-features .feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue-mid) 100%);
  color: var(--gold-rich);
  box-shadow: 0 10px 26px rgba(6, 26, 46, 0.22);
}

.section-why .why-features .feature-icon-sm {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, var(--navy-soft) 0%, var(--navy) 100%);
  color: var(--gold-rich);
  box-shadow: 0 8px 20px rgba(6, 26, 46, 0.18);
}

.section-why .why-features .feature-card:hover .feature-icon,
.section-why .why-features .feature-card:hover .feature-icon-sm {
  transform: scale(1.06) translateY(-1px);
  border-color: rgba(232, 213, 163, 0.35);
  box-shadow: 0 14px 32px rgba(6, 26, 46, 0.28);
}

.section-why .why-features .feature-card-bone {
  background: linear-gradient(168deg, #ffffff 0%, #f1f5f9 100%);
}

.section-why .why-features .feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 56px rgba(6, 26, 46, 0.11),
    0 0 0 1px rgba(201, 169, 98, 0.12);
}

.section-why .why-features .feature-card-sm:hover {
  transform: translateY(-5px);
}

/* CTA Banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue-mid) 100%);
  padding: clamp(48px, 8vw, 72px) clamp(28px, 5vw, 48px);
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: var(--shadow-lg);
}

.cta-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.cta-banner h3 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255, 255, 255, 0.55); font-size: 15px; max-width: 460px; margin: 0 auto 32px; line-height: 1.65; position: relative; z-index: 1; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; position: relative; z-index: 1; }

/* ========== Booking Form ========== */
.booking-container { max-width: 720px; }

.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 40px) clamp(24px, 4vw, 36px);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.req { color: #c62828; }

.input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: 0 16px;
  min-height: 50px;
  background: var(--surface);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.15);
  background: var(--white);
}

.input-wrap svg { flex-shrink: 0; color: var(--stone-500); }
.input-wrap input,
.input-wrap select {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--navy);
  min-height: 48px;
}

.input-wrap input::placeholder { color: var(--stone-400); font-size: 14px; opacity: 1; }
.input-wrap select { cursor: pointer; -webkit-appearance: none; appearance: none; }

.input-wrap.error { border-color: #c62828; box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08); }

.form-field-error {
  font-size: 11px;
  color: #c62828;
  margin-top: 2px;
  min-height: 14px;
  display: none;
}

.form-field-error.show { display: block; }

.form-error {
  background: rgba(198, 40, 40, 0.06);
  border: 1px solid rgba(198, 40, 40, 0.2);
  color: #b71c1c;
  font-size: 13px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-top: 18px;
  text-align: center;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-top: 26px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue-mid) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 4px 0 var(--gold-deep), 0 12px 32px rgba(6, 26, 46, 0.25);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--gold), 0 18px 44px rgba(6, 26, 46, 0.32);
}

.form-submit-btn:active { transform: translateY(1px); }
.form-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 0 var(--stone-300), 0 6px 16px rgba(6, 26, 46, 0.12);
}

.form-success { text-align: center; padding: 56px 32px; }
.success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(13, 79, 74, 0.08);
  border: 2px solid rgba(13, 79, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.form-success h3 { color: var(--health-800); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: 15px; max-width: 380px; margin: 0 auto; line-height: 1.65; }

.form-hint { text-align: center; margin-top: 24px; }
.form-hint p { font-size: 14px; color: rgba(255, 255, 255, 0.62); line-height: 1.6; }
.form-hint-link { color: var(--gold-rich); font-weight: 700; text-decoration: none; }
.form-hint-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ========== Footer ========== */
footer { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-grid { display: grid; grid-template-columns: 5fr 3fr 4fr; gap: 48px; padding-top: 0; }
.footer-brand p { color: rgba(255, 255, 255, 0.55); font-size: 14px; margin: 18px 0 10px; max-width: 380px; line-height: 1.75; }
.footer-agent-code { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.38); letter-spacing: 0.04em; }

.footer-links h4, .footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  font-family: 'Manrope', sans-serif;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-rich); }

.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-rich);
  flex-shrink: 0;
}

.contact-item span { font-size: 14px; color: rgba(255, 255, 255, 0.72); font-weight: 500; }

.office-hours {
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.oh-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.55); font-weight: 700; display: block; margin-bottom: 8px; }
.office-hours p { font-size: 13px; color: rgba(255, 255, 255, 0.72); margin: 0 0 4px; }

.office-hours .footer-hours-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

.footer-bottom { margin-top: 64px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.38); }
.footer-logo { display: flex; align-items: center; gap: 12px; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2fe576, #25D366);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  padding: 26px 0 28px;
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid rgba(12, 39, 68, 0.06);
  box-shadow: 0 16px 48px rgba(6, 26, 46, 0.05);
}

.trust-strip-premium {
  padding-top: 32px;
}

.trust-strip-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--health-500) 0%,
    var(--health-400) 18%,
    var(--gold) 50%,
    var(--life-600) 82%,
    var(--life-800) 100%
  );
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 20px;
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-soft);
  letter-spacing: 0.02em;
  text-align: left;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(37, 99, 168, 0.1), rgba(201, 169, 98, 0.12));
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.trust-check-health {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.12));
  color: var(--health-800);
}

.trust-check-life {
  background: linear-gradient(145deg, rgba(21, 108, 172, 0.2), rgba(14, 92, 140, 0.1));
  color: var(--life-800);
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .trust-item {
    font-size: 11px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
