/* ============================================
   PASSERELLE SANTÉ — Design System
   sortie-hopital.fr
   ============================================ */

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

:root {
  /* Couleurs principales */
  --navy:    #1A3A5C;
  --navy-light: #254E7A;
  --teal:    #2B8A8A;
  --teal-light: #3AABAB;
  --amber:   #D4973A;
  --amber-light: #E8B96A;
  --cream:   #FBF7F0;
  --cream-dark: #F0E9DC;
  --green:   #4A8C6F;
  --green-light: #6BAD90;

  /* Neutres */
  --white:   #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100:#F0F2F5;
  --gray-200:#E2E6EC;
  --gray-400:#9AA5B4;
  --gray-600:#6B7685;
  --gray-800:#2D3748;
  --black:   #111827;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26,58,92,0.08);
  --shadow-md: 0 8px 24px rgba(26,58,92,0.12);
  --shadow-lg: 0 20px 60px rgba(26,58,92,0.15);
  --shadow-amber: 0 8px 24px rgba(212,151,58,0.25);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); }

p { color: var(--gray-600); margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.section-cream {
  background: var(--cream);
}

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

.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,151,58,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

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

.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: all 0.2s;
}

.nav a:hover, .nav a.active {
  background: var(--cream);
  color: var(--navy);
}

.nav-cta {
  margin-left: 0.75rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== PHONE BAR ===== */
.phone-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.phone-bar a {
  color: var(--amber-light);
  font-weight: 700;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(43,138,138,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(212,151,58,0.1) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--space-xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(43,138,138,0.2);
  border: 1px solid rgba(43,138,138,0.4);
  color: var(--teal-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  font-weight: 600;
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  isolation: isolate;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-form .form-group {
  margin-bottom: 1rem;
}

.hero-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-form select,
.hero-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color 0.2s;
}

.hero-form select:focus,
.hero-form input:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.hero-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-card-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 600;
}

/* ===== URGENCY STRIP ===== */
.urgency-strip {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  padding: 1.25rem 0;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.urgency-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.urgency-text strong { color: var(--amber-light); }

.urgency-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.15);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  transition: background 0.2s;
}

.urgency-phone:hover { background: rgba(255,255,255,0.25); }

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.text-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.section-header h2 { margin-bottom: 1rem; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card-icon.teal { background: linear-gradient(135deg, rgba(43,138,138,0.1), rgba(43,138,138,0.2)); }
.card-icon.amber { background: linear-gradient(135deg, rgba(212,151,58,0.1), rgba(212,151,58,0.2)); }
.card-icon.green { background: linear-gradient(135deg, rgba(74,140,111,0.1), rgba(74,140,111,0.2)); }
.card-icon.navy { background: linear-gradient(135deg, rgba(26,58,92,0.1), rgba(26,58,92,0.2)); }

.card h3 { margin-bottom: 0.75rem; }

/* ===== PROCESS STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step::after {
  content: '→';
  position: absolute;
  right: -0.5rem;
  top: 2.5rem;
  font-size: 1.5rem;
  color: var(--amber);
  font-weight: 700;
}

.step:last-child::after { display: none; }

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(43,138,138,0.3);
}

.step h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step p { font-size: 0.9rem; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, rgba(43,138,138,0.03) 0%, var(--white) 100%);
}

.pricing-card.featured::before {
  content: '✦ Recommandé';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 600;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  font-style: italic;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--gray-800);
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--cream-dark);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

.testimonial-info .role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.stars {
  color: var(--amber);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.5rem 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-item .icon {
  font-size: 1.3rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  user-select: none;
  gap: 1rem;
}

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

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--teal);
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== PROFESSIONALS SECTION ===== */
.pro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

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

.pro-card-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* ===== COVERAGE MAP ===== */
.coverage-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coverage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.coverage-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.coverage-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}

.coverage-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.35rem;
  font-weight: 600;
}

.france-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.france-map svg {
  max-width: 400px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ===== BLOG PREVIEW ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

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

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.blog-card h4 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--teal) 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,151,58,0.15), transparent 70%);
}

.cta-section h2 { color: var(--white); position: relative; }
.cta-section p { color: rgba(255,255,255,0.75); position: relative; font-size: 1.1rem; }

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-sm);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name { color: var(--white); font-size: 1.5rem; }
.footer-brand .logo-tagline { color: var(--teal-light); }
.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.footer-contact {
  margin-top: 1.25rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber-light);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber-light); }

.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.footer-city-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  transition: all 0.2s;
}

.footer-city-link:hover {
  color: var(--amber-light);
  border-color: var(--amber);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: var(--space-md);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  padding: calc(72px + 3rem) 0 3rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 600px; margin: 1rem auto 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* ===== CPTS / CITIES LISTING ===== */
.listing-filters {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.search-input {
  width: 100%;
  padding: 0.875rem 1.25rem 0.875rem 3rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--gray-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%239AA5B4' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") no-repeat 1rem center;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--teal);
  background-color: var(--white);
}

.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.region-tab {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: all 0.2s;
}

.region-tab:hover, .region-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.listing-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.listing-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  background: var(--cream);
}

.listing-item-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.listing-item-sub {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.listing-item .arrow {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: auto;
}

/* ===== SCHEMA / RICH CONTENT ===== */
.info-box {
  background: rgba(43,138,138,0.05);
  border: 1px solid rgba(43,138,138,0.2);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box h4 {
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.warning-box {
  background: rgba(212,151,58,0.06);
  border: 1px solid rgba(212,151,58,0.25);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    overflow-y: auto;
    z-index: 999;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }

  .nav-cta { margin-left: 0; margin-top: 1rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { max-width: 500px; margin: 0 auto; }
  .coverage-content { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 3rem;
  }
  .footer-top { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .urgency-inner { flex-direction: column; text-align: center; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Intersection observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

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

.cookie-banner a { color: var(--amber-light); }

/* ===== PRINT ===== */
@media print {
  .header, .cookie-banner, .cta-section { display: none; }
  body { font-size: 12pt; }
}
