/* Pro24h Sanitär Notdienst — emergency landing
   Blue + white palette (industry convention for AT/DE handwerk).
   Orange reserved strictly for action (CTA), red for alert only. */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f1f5f9;
  --bg-alt: #e0f2fe;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-dark: #0c4a6e;
  --bg-dark-soft: #075985;
  --bg-darker: #082f49;

  /* Borders */
  --border: #cbd5e1;
  --border-soft: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.18);

  /* Text */
  --text: #0f172a;
  --text-soft: #475569;
  --text-mute: #64748b;
  --text-light: #ffffff;
  --text-light-soft: #cbd5e1;

  /* Brand */
  --primary: #0c4a6e;
  --primary-mid: #0369a1;
  --primary-light: #0ea5e9;
  --primary-soft: #e0f2fe;

  /* Action */
  --cta: #ea580c;
  --cta-dark: #c2410c;
  --cta-soft: rgba(234, 88, 12, 0.10);

  /* Alert */
  --alert: #dc2626;
  --alert-dark: #b91c1c;

  /* Status */
  --success: #10b981;
  --success-soft: rgba(16, 185, 129, 0.14);

  /* Accent (brand mark + stars + rating) */
  --yellow: #f59e0b;
  --yellow-dark: #d97706;

  /* Shadows */
  --shadow-cta: 0 6px 22px rgba(234, 88, 12, 0.35);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);

  --radius: 14px;
  --radius-sm: 10px;
  --container: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-mid); text-decoration: none; }
a:hover { color: var(--primary); }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

/* ========== ALERT BAR (urgency signal only) ========== */
.alert-bar {
  background: var(--bg-darker);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 16px;
  text-align: center;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.alert-bar .alert-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--alert);
  border-radius: 50%;
  animation: heartbeat 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.alert-bar .alert-text {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 12.5px;
}

@media (max-width: 380px) {
  .alert-bar { font-size: 11.5px; padding: 8px 10px; }
  .alert-bar .alert-text { font-size: 11px; letter-spacing: 0.03em; }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); opacity: 1; }
  30% { transform: scale(1.18); opacity: 1; }
  60% { transform: scale(1); opacity: 0.85; }
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: #fff !important;
  padding: 11px 14px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 13.5px;
  white-space: nowrap;
  transition: all 0.15s;
  box-shadow: var(--shadow-cta);
}

.header-call:hover {
  background: var(--cta-dark);
  color: #fff !important;
}

.header-call svg { width: 16px; height: 16px; }
.header-call .label { display: inline; }

@media (hover: hover) {
  .header-call:hover svg { animation: ring 0.5s ease; }
}

@keyframes ring {
  0% { transform: rotate(0); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(4deg); }
  100% { transform: rotate(0); }
}

/* ========== HERO ========== */
.hero {
  padding: 22px 0 44px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary-soft) 100%);
}

.hero-inner { position: relative; z-index: 1; }

/* Hero image card — cinematic strip above heading */
.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 18px 40px -8px rgba(12, 74, 110, 0.35),
    0 4px 14px rgba(15, 23, 42, 0.10);
  isolation: isolate;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle blue→orange gradient overlay for palette cohesion */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(12, 74, 110, 0.32) 0%,
      rgba(12, 74, 110, 0.08) 35%,
      transparent 60%,
      rgba(234, 88, 12, 0.18) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Premium rating badge — top-right corner of hero image */
.hero-rating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow:
    0 12px 32px rgba(8, 47, 73, 0.30),
    0 4px 12px rgba(8, 47, 73, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  min-width: 116px;
}

.hero-rating-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--yellow);
  margin-bottom: 1px;
}

.hero-rating-stars svg {
  width: 13px;
  height: 13px;
  display: block;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.06));
}

.hero-rating-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-rating-max {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0;
}

.hero-rating-label {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--cta);
  padding-top: 4px;
  border-top: 1px solid var(--border-soft);
  width: 100%;
  margin-top: 2px;
}


.operator-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, 0.30);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.operator-pill .pulse-green {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: heartbeat 1.6s ease-in-out infinite;
}

.hero h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--primary);
}

.hero h1 .accent {
  display: inline-block;
  box-shadow: inset 0 -10px 0 rgba(234, 88, 12, 0.35);
  padding: 0 4px;
  color: var(--text);
}

.hero-lead {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 20px;
  max-width: 540px;
  line-height: 1.55;
}

.hero-lead strong { color: var(--text); font-weight: 800; }

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 14px 22px;
  background: var(--cta);
  color: #fff !important;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-cta);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.50);
  background: var(--cta-dark);
  color: #fff !important;
}

.btn-call svg { width: 22px; height: 22px; }
.btn-call .phone-number { font-size: 20px; font-weight: 900; }
.btn-call .label { font-size: 12px; opacity: 0.85; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

@media (hover: hover) {
  .btn-call:hover svg { animation: ring 0.5s ease; }
}

.cta-trust {
  font-size: 12.5px;
  color: var(--text-soft);
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 100px;
  border: 1px solid rgba(12, 74, 110, 0.18);
  letter-spacing: 0.01em;
}

.chip .chip-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}

.hero-reassurance {
  font-size: 13px;
  color: var(--cta);
  font-weight: 700;
  font-style: italic;
  margin-top: 4px;
}

/* ========== TESTIMONIALS CAROUSEL ========== */
.testimonials-carousel {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-badge {
  flex: 0 0 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--cta);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 16px -2px rgba(12, 74, 110, 0.15);
  min-height: 110px;
}

.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--yellow);
}

.testimonial-stars svg { width: 13px; height: 13px; display: block; }

.testimonial-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
  font-weight: 600;
}

.testimonial-author {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: auto;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(12, 74, 110, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.t-dot:hover { background: rgba(12, 74, 110, 0.45); }

.t-dot.active {
  background: var(--cta);
  width: 22px;
  border-radius: 4px;
}

/* ========== REASSURE BAND (emotional beats) ========== */
.reassure-band {
  background: var(--bg-soft);
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.reassure-band p {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
  max-width: 640px;
  margin: 0 auto;
}

.reassure-band.reassure-soft p {
  color: var(--text-soft);
  font-style: italic;
}

/* ========== SECTION COMMON ========== */
.section { padding: 48px 0; }

.section-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--primary);
}
.section-lead {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 26px;
}

/* ========== EMERGENCY CARDS — photo-driven vertical cards ========== */
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.emergency-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.emergency-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(12, 74, 110, 0.22), 0 4px 12px rgba(15, 23, 42, 0.08);
  color: var(--text);
}

.emergency-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.emergency-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.emergency-item:hover .emergency-photo img {
  transform: scale(1.05);
}

/* Subtle bottom gradient for photo-text cohesion */
.emergency-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 74, 110, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Floating orange call-badge in top-right corner of photo */
.emergency-call-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: var(--cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.50), 0 0 0 3px rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.emergency-call-badge svg { width: 20px; height: 20px; }

.emergency-item:hover .emergency-call-badge {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.65), 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.emergency-text {
  padding: 18px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.emergency-text h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--primary);
}

.emergency-text p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ========== PROCESS (4 steps) ========== */
.section-process { background: var(--bg-soft); }

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 84px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--cta) 0%, transparent 100%);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 16px rgba(12, 74, 110, 0.30);
}

.process-content { padding-top: 8px; }
.process-content h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--primary);
}
.process-content p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}
.process-content p strong { color: var(--text); font-weight: 800; }

/* ========== TIPS CARD (light card with primary accent) ========== */
.tips-card {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--cta);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}

.tips-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.tips-card-head .siren {
  width: 38px;
  height: 38px;
  background: var(--cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: heartbeat 1.6s ease-in-out infinite;
}
.tips-card-head .siren svg { width: 20px; height: 20px; }

.tips-card-head h3 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--primary);
}

.tips-list {
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: tipnum;
}

.tips-list li {
  background: var(--primary-soft);
  border: 1px solid rgba(12, 74, 110, 0.10);
  padding: 14px 16px 14px 56px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  counter-increment: tipnum;
  color: var(--text);
}

.tips-list li strong {
  color: var(--primary);
  font-weight: 800;
}

.tips-list li::before {
  content: counter(tipnum);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

/* ========== GAS CALLOUT (red warning) ========== */
.gas-callout {
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.30);
  border-left: 4px solid var(--alert);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.gas-icon {
  width: 36px;
  height: 36px;
  background: var(--alert);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gas-icon svg { width: 20px; height: 20px; }

.gas-text strong {
  display: block;
  font-size: 15px;
  color: var(--alert);
  margin-bottom: 4px;
  font-weight: 800;
}

.gas-text p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}

.gas-text p strong {
  display: inline;
  color: var(--text);
  font-size: 13.5px;
}

/* ========== EDITORIAL ARTICLES — content-driven, magazine quality ========== */
.articles-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.article-block {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  box-shadow: 0 2px 6px rgba(12, 74, 110, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(12, 74, 110, 0.18), 0 4px 10px rgba(15, 23, 42, 0.06);
  border-color: rgba(12, 74, 110, 0.16);
}

.article-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cta);
  margin-bottom: 14px;
  padding-bottom: 0;
}

.article-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.article-divider {
  width: 48px;
  height: 3px;
  background: var(--cta);
  border-radius: 2px;
  margin-bottom: 18px;
}

.article-body {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin: 0;
}

.article-body strong {
  color: var(--primary);
  font-weight: 800;
}

/* Compact CTA inside selected articles */
.article-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 20px 12px 12px;
  background: var(--cta);
  color: #fff !important;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.30);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.article-cta:hover {
  transform: translateY(-2px);
  background: var(--cta-dark);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.45);
}

@media (hover: hover) {
  .article-cta:hover .article-cta-icon svg { animation: ring 0.5s ease; }
}

.article-cta-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-cta-icon svg { width: 16px; height: 16px; display: block; }

.article-cta-text {
  white-space: nowrap;
}

.article-cta-text strong {
  font-weight: 900;
  letter-spacing: 0;
}

@media (max-width: 380px) {
  .article-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13.5px;
  }
  .article-cta-text { white-space: normal; }
}

/* Variant: article with hero photo at top */
.article-block-with-photo {
  padding: 0;
  overflow: hidden;
}

.article-block-with-photo .article-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.article-block-with-photo .article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.article-block-with-photo:hover .article-photo img {
  transform: scale(1.03);
}

/* Subtle gradient overlay on photo for cohesion */
.article-block-with-photo .article-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(12, 74, 110, 0.15) 100%);
  pointer-events: none;
}

.article-block-with-photo .article-content {
  padding: 26px 26px 28px;
}

/* ========== PROCESS — split layout (list + photo) ========== */
.process-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.process-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px -8px rgba(12, 74, 110, 0.32), 0 3px 10px rgba(15, 23, 42, 0.08);
  aspect-ratio: 16 / 11;
  order: -1;
  position: relative;
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 74, 110, 0.20) 100%);
  pointer-events: none;
}

/* ========== ABOUT BAND ========== */
.about-band {
  background: var(--bg);
  padding: 56px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.about-band-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px -8px rgba(12, 74, 110, 0.28);
  aspect-ratio: 4 / 3;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text .about-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-text p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ========== TRUST — split layout (strip + photo) ========== */
.trust-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.trust-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px -8px rgba(12, 74, 110, 0.28);
  aspect-ratio: 4 / 3;
  position: relative;
}

.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-photo-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(12, 47, 73, 0.92);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.trust-photo-caption strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: var(--cta);
}

.trust-photo-caption span {
  font-size: 13px;
  color: var(--text-light-soft);
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-check {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 14px; height: 14px; }

.trust-item h4 {
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  color: var(--primary);
}
.trust-item p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 15.5px;
  font-weight: 800;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  line-height: 1.35;
}

.faq-q .plus {
  width: 24px;
  height: 24px;
  background: var(--cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 20px 18px;
}

/* ========== FINAL CTA — full-bleed dark blue with atmospheric photo ========== */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-darker) 100%);
  padding: 56px 0 48px;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.final-cta-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.final-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(1px) saturate(1.1);
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(234, 88, 12, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8, 47, 73, 0.35) 0%, rgba(8, 47, 73, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.final-cta-section > .container { position: relative; z-index: 2; }

.final-cta-section h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff;
}

.btn-call-final {
  max-width: 360px;
  margin: 0 auto;
}

.final-cta-trust {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-light-soft);
  font-weight: 600;
  font-style: italic;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0 22px;
  font-size: 14px;
  color: var(--text-light-soft);
  text-align: center;
}

.footer .brand { justify-content: center; margin-bottom: 18px; color: var(--text-light); }
.footer p { margin-bottom: 6px; }
.footer a { color: #fff; }
.footer a:hover { color: var(--cta); }

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.footer-company-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
}

.footer-company-row .icn {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.footer-company-row .icn svg { width: 18px; height: 18px; }

.footer-company-row strong {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.footer-company-row .val {
  color: var(--text-light-soft);
  font-size: 14px;
  line-height: 1.5;
}
.footer-company-row .val a { color: var(--text-light-soft); }
.footer-company-row .val a:hover { color: var(--cta); }

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ========== INLINE CTA BANDS (between sections) ========== */
.cta-band {
  background: var(--bg-soft);
  padding: 32px 18px;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cta-band-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.btn-call-inline {
  max-width: 360px;
  margin: 0 auto;
}

@keyframes pulseShadow {
  0%, 100% { box-shadow: var(--shadow-cta); }
  50% { box-shadow: 0 8px 28px rgba(234, 88, 12, 0.55); }
}

/* ========== TABLET ========== */
@media (min-width: 640px) {
  .cta-band { padding: 40px 18px; }
  .cta-band-text { font-size: 18px; }

  .header-inner { padding: 12px 0; }
  .header-call { padding: 11px 18px; font-size: 14.5px; }

  .hero { padding: 36px 0 72px; }
  .hero-image { aspect-ratio: 21 / 9; margin-bottom: 30px; }
  .hero-rating-badge { top: 20px; right: 20px; padding: 14px 18px; min-width: 130px; }
  .hero-rating-stars svg { width: 14px; height: 14px; }
  .hero-rating-value { font-size: 24px; }
  .hero-rating-label { font-size: 10px; }

  .hero h1 { font-size: 50px; line-height: 1.05; }
  .hero h1 .accent { box-shadow: inset 0 -14px 0 rgba(234, 88, 12, 0.35); }
  .hero-lead { font-size: 18px; margin-bottom: 24px; }
  .hero-cta-wrap { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 14px; }
  .btn-call { width: auto; padding: 18px 32px; }
  .cta-trust { width: auto; text-align: left; flex-basis: 100%; }
  .hero-chips { gap: 10px; }
  .chip { font-size: 13px; padding: 7px 13px; }
  .hero-reassurance { font-size: 14.5px; }

  .testimonials-carousel { max-width: 540px; margin-top: 24px; }
  .testimonial-badge { padding: 16px 20px; min-height: 120px; }
  .testimonial-quote { font-size: 15px; }
  .testimonial-stars svg { width: 14px; height: 14px; }

  .reassure-band p { font-size: 18px; }

  .section { padding: 72px 0; }
  .section-title { font-size: 32px; }

  .emergency-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .emergency-text { padding: 22px 22px 22px; }
  .emergency-text h3 { font-size: 19px; }
  .emergency-call-badge { width: 48px; height: 48px; top: 14px; right: 14px; }
  .emergency-call-badge svg { width: 22px; height: 22px; }

  .article-block { padding: 36px 36px 38px; }
  .article-block-with-photo { padding: 0; }
  .article-block-with-photo .article-content { padding: 30px 36px 34px; }
  .article-title { font-size: 26px; }
  .article-body { font-size: 16px; line-height: 1.78; }
  .article-eyebrow { font-size: 12px; }

  .tips-card { padding: 32px 30px; }
  .tips-card-head h3 { font-size: 22px; }
  .tips-list { grid-template-columns: 1fr 1fr; gap: 12px; }

  .trust-strip { flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .trust-item { flex: 1 1 calc(50% - 9px); min-width: 240px; }

  .about-band { padding: 72px 0; }
  .about-band-inner {
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
  }
  .about-text h3 { font-size: 28px; }

  .final-cta-section { padding: 80px 0 64px; }
  .final-cta-section h2 { font-size: 64px; }
}

/* ========== DESKTOP ========== */
@media (min-width: 1024px) {
  .hero { padding: 48px 0 92px; }
  .hero-image { aspect-ratio: 3 / 1; margin-bottom: 36px; }
  .hero h1 { font-size: 60px; }
  .section-title { font-size: 36px; }

  .article-block { padding: 44px 48px 46px; }
  .article-block-with-photo { padding: 0; }
  .article-block-with-photo .article-content { padding: 36px 48px 42px; }
  .article-title { font-size: 28px; }

  .process-wrap {
    grid-template-columns: 1fr 360px;
    gap: 56px;
  }
  .process-photo {
    aspect-ratio: 4 / 5;
    order: 0;
    position: sticky;
    top: 90px;
  }
  .process-list { max-width: none; margin: 0; }

  .trust-wrap {
    grid-template-columns: 1fr 320px;
    gap: 36px;
  }
  .trust-photo {
    aspect-ratio: 4 / 5;
    position: sticky;
    top: 90px;
  }

  .about-band-inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
  }

  .final-cta-section h2 { font-size: 72px; }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 2px;
  border-radius: 4px;
}
