/* ============================================
   SPOED-DIENST — Design System v1.0
   Shared across all landing pages and the home
   ============================================ */

:root {
  /* Brand palette */
  --c-red: #E63946;
  --c-red-dark: #C1121F;
  --c-red-light: #FFE5E7;
  --c-red-glow: rgba(230, 57, 70, .35);
  --c-navy: #1D3557;
  --c-navy-dark: #0B1E37;
  --c-blue: #457B9D;
  --c-cream: #F1FAEE;
  --c-gray-50: #F9FAFB;
  --c-gray-100: #F3F4F6;
  --c-gray-200: #E5E7EB;
  --c-gray-300: #D1D5DB;
  --c-gray-400: #9CA3AF;
  --c-gray-600: #4B5563;
  --c-gray-900: #111827;
  --c-success: #10B981;
  --c-star: #FBBF24;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, .15);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, .25);

  /* Animation */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease);
}

/* ============================================ RESET ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--c-gray-900);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================ EMERGENCY BANNER ============================================ */
.emergency-banner {
  background: linear-gradient(90deg, var(--c-red-dark), var(--c-red), var(--c-red-dark));
  background-size: 200% 100%;
  color: white;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: shimmer 6s linear infinite;
}
.emergency-banner a { color: white; text-decoration: underline; font-weight: 800; }
.emergency-banner .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: white;
  margin-right: 6px; animation: blink 1.4s infinite;
}
@keyframes shimmer { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: .35; } }

/* ============================================ HEADER ============================================ */
.site-header {
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 0;
  border-bottom: 1px solid var(--c-gray-200);
  position: sticky;
  top: 38px;
  z-index: 99;
}
.nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 900; color: var(--c-navy); letter-spacing: -.5px; }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 18px;
  box-shadow: 0 4px 12px var(--c-red-glow);
}
.logo .red { color: var(--c-red); }
.header-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 600; color: var(--c-navy); }
.header-nav a:hover { color: var(--c-red); }
.header-phone {
  font-size: 18px; font-weight: 800; color: var(--c-red);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 100px;
  background: var(--c-red-light); transition: var(--transition);
}
.header-phone:hover { background: var(--c-red); color: white; transform: translateY(-1px); }

/* ============================================ HERO ============================================ */
.hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(230, 57, 70, .25) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(69, 123, 157, .35) 0%, transparent 60%),
    linear-gradient(135deg, var(--c-navy-dark) 0%, var(--c-navy) 50%, #2A4365 100%);
  color: white;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(230, 57, 70, .2);
  border: 1px solid rgba(230, 57, 70, .5);
  border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  color: #FFCFD2; margin-bottom: 24px;
  animation: pulseGlow 2.4s infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--c-red-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: #FFA8B0;
  background: linear-gradient(90deg, #FFA8B0, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px; color: rgba(255, 255, 255, .85);
  margin-bottom: 32px; max-width: 540px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 18px;
  color: rgba(255, 255, 255, .85); font-size: 14px; font-weight: 500;
}
.hero-trust-row > div { display: flex; align-items: center; gap: 6px; }
.hero-trust-row svg { width: 18px; height: 18px; fill: var(--c-success); }

/* ============================================ BUTTONS ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-red); color: white;
  box-shadow: 0 4px 12px var(--c-red-glow);
}
.btn-primary:hover { background: var(--c-red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px var(--c-red-glow); }
.btn-secondary { background: white; color: var(--c-navy); border: 2px solid var(--c-navy); }
.btn-ghost { background: transparent; color: var(--c-navy); border: 1px solid var(--c-gray-300); }
.btn-lg { padding: 18px 32px; font-size: 17px; }

.btn-call-hero {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--c-red); color: white;
  padding: 18px 28px; border-radius: var(--radius);
  font-weight: 800; font-size: 20px;
  box-shadow: 0 8px 24px var(--c-red-glow);
  transition: var(--transition);
  position: relative;
}
.btn-call-hero::before {
  content: ""; position: absolute; inset: -4px; border-radius: 16px;
  border: 2px solid var(--c-red); opacity: 0;
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(.95); opacity: .7; }
  100% { transform: scale(1.15); opacity: 0; }
}
.btn-call-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--c-red-glow); }
.btn-call-hero .num { font-size: 22px; letter-spacing: -.5px; }

.btn-secondary-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .1);
  color: white;
  padding: 18px 24px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: var(--transition);
}
.btn-secondary-hero:hover { background: rgba(255, 255, 255, .2); }

/* ============================================ HERO FORM ============================================ */
.hero-form {
  background: white; color: var(--c-gray-900);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-form::before {
  content: ""; position: absolute; inset: -2px; border-radius: 22px;
  background: linear-gradient(135deg, var(--c-red), transparent);
  z-index: -1; opacity: .6;
}
.hero-form h2 { font-size: 22px; font-weight: 800; color: var(--c-navy); margin-bottom: 6px; }
.hero-form-sub { font-size: 14px; color: var(--c-gray-600); margin-bottom: 20px; }
.hero-form .field { margin-bottom: 14px; }
.hero-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--c-gray-600); }
.hero-form input, .hero-form select, .hero-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 10px;
  font-family: var(--font); font-size: 15px;
  transition: var(--transition);
}
.hero-form input:focus, .hero-form select:focus, .hero-form textarea:focus {
  outline: none; border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, .15);
}
.hero-form button[type="submit"] {
  width: 100%; background: var(--c-red); color: white;
  padding: 16px; border-radius: 10px;
  font-weight: 800; font-size: 16px;
  transition: var(--transition);
}
.hero-form button[type="submit"]:hover { background: var(--c-red-dark); transform: translateY(-1px); }
.hero-form-disclaimer { font-size: 12px; color: var(--c-gray-400); margin-top: 12px; text-align: center; }

/* ============================================ TRUST STRIP ============================================ */
.trust-strip { background: white; padding: 36px 0; border-bottom: 1px solid var(--c-gray-200); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { text-align: center; }
.trust-icon { width: 44px; height: 44px; color: var(--c-red); margin: 0 auto 8px; display: block; }
.trust-icon svg { width: 100%; height: 100%; }
.trust-num { font-size: 30px; font-weight: 900; color: var(--c-navy); letter-spacing: -1.5px; line-height: 1; }
.trust-label { font-size: 13px; color: var(--c-gray-600); font-weight: 500; margin-top: 4px; }

/* ============================================ SECTION ============================================ */
section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--c-navy); letter-spacing: -1.5px; margin-bottom: 12px; line-height: 1.1; }
.section-header p { font-size: 17px; color: var(--c-gray-600); max-width: 640px; margin: 0 auto; }

/* ============================================ HOW IT WORKS ============================================ */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card {
  background: white;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
  transition: var(--transition);
  position: relative;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--c-red-light); }
.how-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-dark));
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px var(--c-red-glow);
}
.how-card h3 { font-size: 20px; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.how-card p { color: var(--c-gray-600); font-size: 15px; }

/* ============================================ SERVICES ============================================ */
.services { background: var(--c-cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
  display: block; color: inherit;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--c-red);
}
.service-icon { width: 56px; height: 56px; color: var(--c-red); margin-bottom: 14px; display: block; transition: var(--transition); }
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--c-navy); margin-bottom: 6px; }
.service-card p { color: var(--c-gray-600); font-size: 14px; margin-bottom: 14px; }
.service-card .arrow { color: var(--c-red); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-card:hover .arrow { gap: 10px; }

/* ============================================ PRICING ============================================ */
.pricing-card {
  background: white;
  border: 2px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 720px; margin: 0 auto;
  box-shadow: var(--shadow);
}
.pricing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-gray-200);
}
.pricing-row:last-of-type { border-bottom: none; }
.pricing-label { font-weight: 600; color: var(--c-navy); }
.pricing-label small { display: block; font-size: 13px; font-weight: 400; color: var(--c-gray-600); margin-top: 2px; }
.pricing-price { font-size: 22px; font-weight: 800; color: var(--c-red); }
.pricing-note { font-size: 13px; color: var(--c-gray-600); margin-top: 20px; text-align: center; }
.pricing-note strong { color: var(--c-success); }

/* ============================================ REVIEWS ============================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: white;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stars { color: var(--c-star); font-size: 18px; margin-bottom: 8px; letter-spacing: 2px; }
.review-text { color: var(--c-gray-900); font-size: 15px; margin-bottom: 16px; line-height: 1.55; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.review-name { font-weight: 600; font-size: 14px; color: var(--c-navy); }
.review-meta { font-size: 12px; color: var(--c-gray-400); }

/* ============================================ FAQ ============================================ */
.faq { background: var(--c-cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer; font-weight: 700;
  color: var(--c-navy);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+"; font-size: 26px; color: var(--c-red); font-weight: 300;
  transition: transform .2s var(--ease);
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; color: var(--c-gray-600); font-size: 15px; }

/* ============================================ ZONES ============================================ */
.zones-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; max-width: 1000px; margin: 0 auto; }
.zones-list a {
  display: block; padding: 12px 16px;
  background: white;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  color: var(--c-navy);
  transition: var(--transition);
}
.zones-list a:hover { background: var(--c-red); color: white; border-color: var(--c-red); transform: translateY(-1px); }

/* ============================================ FINAL CTA ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--c-red), var(--c-red-dark));
  color: white; text-align: center;
  padding: 80px 0; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15) 0%, transparent 50%);
}
.final-cta > .container { position: relative; }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
.final-cta p { font-size: 19px; opacity: .95; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.final-cta .btn-call-hero { background: white; color: var(--c-red); box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }
.final-cta .btn-call-hero::before { border-color: white; }

/* ============================================ FOOTER ============================================ */
footer { background: var(--c-navy-dark); color: rgba(255, 255, 255, .7); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; font-size: 14px; }
.footer ul a:hover { color: white; }
.footer p { font-size: 14px; line-height: 1.6; }
.footer a { transition: var(--transition); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255, 255, 255, .5);
}

/* ============================================ STICKY MOBILE CALL ============================================ */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-red); color: white;
  padding: 14px; text-align: center;
  font-weight: 800; font-size: 18px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
  z-index: 999;
  animation: pulseBg 3s infinite;
}
@keyframes pulseBg {
  0%, 100% { background: var(--c-red); }
  50% { background: var(--c-red-dark); }
}

/* ============================================ FADE IN ANIMATIONS ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================ LEGAL / PROSE PAGES ============================================ */
.legal-page { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; color: var(--c-navy); margin-bottom: 8px; letter-spacing: -1px; }
.legal-page .meta { color: var(--c-gray-400); font-size: 14px; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--c-gray-100); }
.legal-page h2 { font-size: 22px; font-weight: 700; color: var(--c-navy); margin: 32px 0 12px; padding-left: 12px; border-left: 4px solid var(--c-red); }
.legal-page h3 { font-size: 17px; font-weight: 700; color: var(--c-navy); margin: 20px 0 8px; }
.legal-page p { font-size: 15.5px; color: var(--c-gray-900); margin-bottom: 14px; line-height: 1.7; }
.legal-page ul { padding-left: 22px; margin-bottom: 14px; }
.legal-page ul li { font-size: 15.5px; color: var(--c-gray-900); margin-bottom: 6px; line-height: 1.65; }
.legal-page strong { color: var(--c-navy); }
.legal-page .legal-info-box { background: var(--c-cream); border-radius: 12px; padding: 20px; margin-top: 32px; }
.legal-page .legal-info-box p { margin-bottom: 6px; font-size: 14px; }

/* ============================================ 404 ============================================ */
.error-404 { text-align: center; padding: 100px 20px; }
.error-404 .num { font-size: clamp(80px, 14vw, 160px); font-weight: 900; color: var(--c-red); line-height: 1; letter-spacing: -4px; }
.error-404 h1 { font-size: clamp(24px, 3vw, 32px); color: var(--c-navy); margin: 16px 0 12px; }
.error-404 p { color: var(--c-gray-600); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 60px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid, .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-phone, .header-nav { display: none; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
  section { padding: 56px 0; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .btn-call-hero, .btn-secondary-hero { width: 100%; justify-content: center; }
  .emergency-banner { font-size: 12px; }
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .pricing-price { font-size: 20px; }
}

/* ============================================ DROPDOWN MENU (added v4) ============================================ */
.header-nav .has-submenu {
  position: relative;
  display: inline-block;
}
.header-nav .has-submenu > a::after {
  content: " ▾";
  font-size: 11px;
  opacity: .7;
  margin-left: 2px;
}
.header-nav .submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  background: white;
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  z-index: 200;
}
.header-nav .submenu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  box-shadow: -2px -2px 6px rgba(0,0,0,.05);
}
.header-nav .has-submenu:hover .submenu,
.header-nav .has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header-nav .submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-navy);
  white-space: nowrap;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.header-nav .submenu a:hover {
  background: var(--c-cream);
  color: var(--c-red);
  border-left-color: var(--c-red);
}
.header-nav .submenu a .ic { font-size: 16px; }
@media (max-width: 880px) {
  .header-nav .submenu { display: none; }
}

/* ============================================ MOBILE BURGER MENU (added v5) ============================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn:hover span { background: var(--c-red); }

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 55, .65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 86%;
  max-width: 340px;
  background: white;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 320ms var(--ease);
  overflow-y: auto;
  box-shadow: 4px 0 32px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--c-navy-dark), var(--c-navy));
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-drawer-header .logo { color: white; font-size: 20px; }
.mobile-drawer-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-drawer-close:hover { background: var(--c-red); }

.mobile-drawer-nav {
  flex: 1;
  padding: 8px 0;
}
.mobile-drawer-nav a,
.mobile-drawer-nav details > summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-gray-100);
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  transition: var(--transition);
}
.mobile-drawer-nav details > summary::-webkit-details-marker { display: none; }
.mobile-drawer-nav details > summary::after {
  content: "▾";
  margin-left: auto;
  color: var(--c-red);
  font-size: 12px;
  transition: transform 220ms var(--ease);
}
.mobile-drawer-nav details[open] > summary::after { transform: rotate(180deg); }
.mobile-drawer-nav details .submenu-items {
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-gray-100);
}
.mobile-drawer-nav details .submenu-items a {
  padding: 12px 20px 12px 44px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-gray-600);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.mobile-drawer-nav details .submenu-items a:last-child { border-bottom: none; }
.mobile-drawer-nav a:hover,
.mobile-drawer-nav summary:hover {
  background: var(--c-cream);
  color: var(--c-red);
}

.mobile-drawer-cta {
  margin: 16px;
  padding: 16px;
  background: var(--c-red);
  color: white !important;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 800;
  font-size: 17px;
  display: block;
  box-shadow: 0 4px 12px var(--c-red-glow);
  text-decoration: none;
}
.mobile-drawer-cta:hover { background: var(--c-red-dark); }

@media (max-width: 880px) {
  .mobile-menu-btn { display: flex; }
  .nav { justify-content: flex-start; gap: 8px; }
  .nav .logo { flex: 1; justify-content: flex-start; }
}
