/* ============================================
   BUPILO HEALTH HUB — Premium Design System
   ============================================ */

/* === CSS Custom Properties === */
:root {
  /* Brand Colours — Logo-matched palette */
  --teal-900: #0B2E27;
  --teal-800: #0F3A31;
  --teal-700: #123F36;
  --teal-600: #174E43;
  --teal-500: #1D6154;
  --teal-400: #257A6A;
  --teal-300: #3A9C89;
  --teal-200: #7EC4B6;
  --teal-100: #C4E4DD;
  --teal-50: #E8F4F1;

  --red-700: #6D1F18;
  --red-600: #8B2921;
  --red-500: #AF352A;
  --red-400: #C94337;
  --red-300: #E06B60;
  --red-100: #FCEAE8;
  --red-50: #FEF5F4;

  --gold-600: #B58A3A;
  --gold-500: #CFA04A;
  --gold-400: #D9B06A;
  --gold-100: #FDF6E8;

  /* Neutrals — Warm sophisticated tones */
  --neutral-950: #1A1412;
  --neutral-900: #2C2420;
  --neutral-800: #3D3430;
  --neutral-700: #5C4F48;
  --neutral-600: #796B62;
  --neutral-500: #9A8C82;
  --neutral-400: #B8ADA6;
  --neutral-300: #D5CDC8;
  --neutral-200: #E8E2DE;
  --neutral-100: #F3EFEC;
  --neutral-50: #FAF8F6;

  --white: #FFFFFF;

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE5D;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --space-2xs: 2px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 88px;
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 14px;
  --border-radius-xl: 20px;
  --border-radius-2xl: 28px;
  --border-radius-pill: 100px;

  /* Shadows — layered for depth */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.10), 0 8px 16px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(0, 0, 0, 0.06);
  --shadow-teal: 0 8px 24px rgba(29, 97, 84, 0.15);
  --shadow-red: 0 8px 24px rgba(175, 53, 42, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--neutral-900);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--teal-500);
}

ul,
ol {
  list-style: none;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--neutral-950);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--neutral-700);
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-muted {
  color: var(--neutral-600);
}

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

.text-teal {
  color: var(--teal-600);
}

.text-center {
  text-align: center;
}

.font-heading {
  font-family: var(--font-heading);
}

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-subtitle::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--teal-400);
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-description {
  color: var(--neutral-600);
  max-width: 640px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-description.centered {
  margin-left: auto;
  margin-right: auto;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--sm {
  padding: var(--space-2xl) 0;
}

.section--bg-white {
  background-color: var(--white);
}

.section--bg-cream {
  background-color: var(--neutral-50);
}

.section--bg-teal {
  background-color: var(--teal-800);
  color: var(--white);
}

.section--bg-teal h2,
.section--bg-teal h3,
.section--bg-teal h4 {
  color: var(--white);
}

.section--bg-teal .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.section--bg-teal .section-subtitle {
  color: var(--gold-400);
}

.section--bg-teal .section-subtitle::before {
  background: var(--gold-400);
}

.section--bg-light-teal {
  background-color: var(--teal-50);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
  gap: var(--space-md);
}

.flex--center {
  align-items: center;
}

.flex--between {
  justify-content: space-between;
}

.flex--wrap {
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: var(--border-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29, 97, 84, 0.25);
  color: var(--white);
}

.btn--secondary {
  background-color: transparent;
  color: var(--teal-600);
  border-color: var(--teal-400);
}

.btn--secondary:hover {
  background-color: var(--teal-50);
  border-color: var(--teal-500);
  color: var(--teal-700);
  transform: translateY(-2px);
}

.btn--teal {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-700) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-teal);
}

.btn--teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29, 97, 84, 0.25);
  color: var(--white);
}

.btn--whatsapp {
  background-color: var(--white);
  color: var(--neutral-900);
  border-color: var(--neutral-300);
}

.btn--whatsapp svg {
  width: 20px;
  height: 20px;
  fill: var(--whatsapp);
  flex-shrink: 0;
}

.btn--whatsapp:hover {
  background-color: var(--whatsapp);
  border-color: var(--whatsapp);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover svg {
  fill: var(--white);
}

.btn--white {
  background-color: var(--white);
  color: var(--teal-700);
  border-color: var(--white);
}

.btn--white:hover {
  background-color: var(--neutral-50);
  border-color: var(--neutral-50);
  color: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: none;
  border: none;
  color: var(--teal-500);
  font-weight: 600;
  padding: var(--space-sm) 0;
}

.btn--ghost:hover {
  color: var(--teal-600);
}

.btn--ghost svg,
.btn--ghost .icon {
  transition: transform var(--transition-fast);
}

.btn--ghost:hover svg,
.btn--ghost:hover .icon {
  transform: translateX(4px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-base);
}

.nav.scrolled .nav__logo img {
  height: 50px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--neutral-800);
  position: relative;
  padding: var(--space-sm) 0;
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--teal-600);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
  transition: all var(--transition-base);
  border-radius: 2px;
  transform: translateX(-50%);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Nav CTA Buttons --- */
.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: all var(--transition-base);
  cursor: pointer;
}

.nav__cta-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Call button — outlined teal */
.nav__cta-btn--call {
  color: var(--teal-700);
  border: 1.5px solid var(--teal-400);
  background: transparent;
}

.nav__cta-btn--call:hover {
  background: var(--teal-50);
  border-color: var(--teal-500);
  color: var(--teal-800);
  transform: translateY(-1px);
}

.nav__cta-btn--call svg {
  color: var(--teal-500);
}

/* WhatsApp button — brand green */
.nav__cta-btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border: 1.5px solid #25D366;
}

.nav__cta-btn--whatsapp:hover {
  background: #1fba59;
  border-color: #1fba59;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.nav__cta-btn--whatsapp svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all var(--transition-base);
  border: 1px solid var(--neutral-100);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9375rem;
  color: var(--neutral-800);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

.nav__dropdown-menu a:hover {
  background: var(--teal-50);
  color: var(--teal-600);
}

/* Mobile Menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  overflow: hidden;
  background: var(--white);
}

/* Subtle ambient shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-50) 0%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--red-50) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  max-width: 540px;
}

.hero__badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: var(--space-sm);
  background: var(--teal-50);
  color: var(--teal-600);
  padding: 8px 20px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  margin: 0 auto var(--space-xl);
  border: 1px solid var(--teal-100);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--red-500);
}

.hero__title {
  margin-bottom: var(--space-lg);
  color: var(--neutral-950);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero__title span {
  color: var(--teal-500);
}

.hero__description {
  font-size: 1.125rem;
  color: var(--neutral-600);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero__trust-signals {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--neutral-200);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal-400);
}

.hero__image {
  position: relative;
}

.hero__image img {
  border-radius: var(--border-radius-2xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-2xl);
}

/* Decorative elements around hero image */
.hero__image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--teal-200);
  border-radius: var(--border-radius-2xl);
  z-index: -1;
}

.hero__image::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: var(--teal-500);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.08;
}

/* === Trust Bar === */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: var(--space-xl) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
}

.trust-bar__item:hover {
  background: var(--teal-50);
}

.trust-bar__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--teal-100) 100%);
  border-radius: var(--border-radius-lg);
  color: var(--teal-600);
  flex-shrink: 0;
}

.trust-bar__icon svg {
  width: 24px;
  height: 24px;
}

.trust-bar__text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--neutral-900);
}

.trust-bar__text p {
  font-size: 0.8125rem;
  color: var(--neutral-600);
  margin: 0;
}

/* === Service Cards === */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-md);
  color: var(--teal-500);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  transform: scale(1.05);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
  color: var(--neutral-900);
}

.service-card__description {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.service-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--teal-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-card__link {
  color: var(--teal-600);
  gap: 10px;
}

/* === Why Choose Us / Feature Cards === */
.feature-card {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--border-radius-xl);
  transition: all var(--transition-base);
}

.feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  color: var(--teal-600);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
  box-shadow: var(--shadow-teal);
}

.feature-card__icon svg {
  width: 32px;
  height: 32px;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
}

.feature-card__description {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  margin: 0;
}

/* === Process / How It Works === */
.process {
  counter-reset: process;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.process__step {
  position: relative;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--neutral-200);
  counter-increment: process;
  transition: all var(--transition-base);
}

.process__step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}

.process__step::before {
  content: counter(process);
  position: absolute;
  top: -16px;
  left: var(--space-xl);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-teal);
}

.process__icon {
  color: var(--teal-500);
  margin-bottom: var(--space-md);
}

.process__icon svg {
  width: 32px;
  height: 32px;
}

.process__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.process__description {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  margin: 0;
}

/* === Testimonials === */
.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--neutral-200);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
  color: var(--gold-500);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__quote::before {
  content: '"';
  font-size: 2rem;
  color: var(--teal-300);
  font-family: serif;
  line-height: 0;
  position: relative;
  top: 8px;
  margin-right: 4px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-700);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
}

.cta-section .btn-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* === Medical Aid Bar === */
.medical-aid-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding: var(--space-lg);
  background: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  opacity: 0.7;
}

.medical-aid-bar span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--neutral-400);
}

/* === Footer === */
.footer {
  background: var(--neutral-950);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.5);
}

.footer__brand img {
  height: 48px;
  margin-bottom: var(--space-md);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--teal-600);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal-400);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a:hover {
  color: var(--white);
}

.footer__powered-by {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-md);
}

.footer__powered-by a {
  color: var(--teal-300);
  text-decoration: none;
  font-weight: 500;
}

.footer__powered-by a:hover {
  color: var(--teal-200);
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.6);
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--neutral-900);
  padding: 8px 16px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}

/* === Mobile Bottom Bar === */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--neutral-100);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
}

.mobile-bottom-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.mobile-bottom-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 0;
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
  color: var(--white);
}

.mobile-bottom-bar__item svg {
  width: 22px;
  height: 22px;
}

.mobile-bottom-bar__item span {
  line-height: 1;
}

/* Call — dark teal */
.mobile-bottom-bar__item--call {
  background: var(--teal-700);
}

.mobile-bottom-bar__item--call:active {
  background: var(--teal-800);
}

.mobile-bottom-bar__item--call svg {
  stroke: var(--white);
}

/* WhatsApp — brand green */
.mobile-bottom-bar__item--whatsapp {
  background: #25D366;
}

.mobile-bottom-bar__item--whatsapp:active {
  background: #1fba59;
}

.mobile-bottom-bar__item--whatsapp svg {
  fill: var(--white);
}

/* Get a Quote — warm teal */
.mobile-bottom-bar__item--book {
  background: var(--teal-500);
}

.mobile-bottom-bar__item--book:active {
  background: var(--teal-600);
}

.mobile-bottom-bar__item--book svg {
  stroke: var(--white);
}

/* === Forms === */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--neutral-900);
}

.form-label .required {
  color: var(--red-500);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--border-radius-md);
  background: var(--white);
  color: var(--neutral-900);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-100);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  margin-top: 4px;
  accent-color: var(--teal-600);
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* === FAQ Accordion === */
.faq-item {
  border: 1px solid var(--neutral-200);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--teal-200);
}

.faq-item.active {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--neutral-900);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--teal-600);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--neutral-400);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--teal-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--neutral-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* === Blog Cards === */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: var(--space-lg);
}

.blog-card__category {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-600);
  background: var(--teal-50);
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
  color: var(--neutral-900);
  line-height: 1.4;
}

.blog-card__meta {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* === Page Header === */
.page-header {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 100%);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-header p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.page-header .breadcrumb {
  margin-bottom: var(--space-lg);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--neutral-950);
  color: var(--white);
  padding: var(--space-lg);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-banner p {
  font-size: 0.875rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner a {
  color: var(--teal-300);
}

.cookie-banner .btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-height));
    background: var(--white);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    padding-left: var(--space-md);
    display: none;
    border: none;
  }

  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: var(--nav-height) 0 var(--space-md);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero__image {
    order: -1;
    margin-left: calc(-1 * var(--space-lg));
    margin-right: calc(-1 * var(--space-lg));
    width: calc(100% + var(--space-lg) * 2);
  }

  .hero__image img {
    aspect-ratio: 16/9;
    max-height: 280px;
    border-radius: 0;
    width: 100%;
    object-fit: cover;
  }

  .hero__image::before {
    display: none;
  }

  .hero__title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
  }

  .hero__description {
    display: none;
  }

  .hero__actions {
    display: none;
  }

  .hero__trust-signals {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .trust-bar__item {
    flex-direction: column;
    text-align: center;
    padding: var(--space-sm);
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__contact li {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .cta-section .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .mobile-bottom-bar {
    display: block;
  }

  .whatsapp-float {
    bottom: 80px;
    display: none;
  }

  body {
    padding-bottom: 72px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 480px) {
  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.75rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}

/* === Skip to content (accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal-600);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}