:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #eaf0f7;
  --text: #132238;
  --muted: #4a607a;
  --primary: #c7162b;
  --primary-hover: #a10f22;
  --secondary: #15324f;
  --secondary-hover: #0f2439;
  --accent-red-soft: #fde9ec;
  --accent-red-border: #f3c8cf;
  --border: #d4deea;
  --shadow: 0 16px 36px rgba(9, 33, 67, 0.08);
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% -6%, rgba(252, 197, 38, 0.38) 0%, rgba(252, 197, 38, 0) 38%),
    radial-gradient(circle at 92% 0%, rgba(211, 29, 51, 0.22) 0%, rgba(211, 29, 51, 0) 42%),
    linear-gradient(180deg, #f9f5ee 0%, #f4f7fd 45%, #f8fbff 100%);
  color: var(--text);
  font: 400 16px/1.6 "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

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

a {
  color: var(--primary);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.2;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

h1 {
  font-size: clamp(1.9rem, 5.5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.section {
  padding: 52px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-intro,
.lead {
  max-width: 840px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero {
  padding: 54px 0 42px;
}

.hero-page {
  padding-bottom: 34px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-note {
  font-weight: 500;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: #4f6480;
}

.breadcrumbs a {
  color: #365f8a;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.hero-image-card,
.form-card,
.card,
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image-card {
  padding: 14px;
}

.answer-card {
  background: linear-gradient(160deg, #fff 0%, #fff8f5 100%);
  border: 1px solid var(--accent-red-border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.answer-card h2 {
  margin-bottom: 10px;
}

.answer-card p {
  margin-bottom: 12px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.contact-line {
  display: inline-block;
  margin: 6px 0 4px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.btn {
  border: 0;
  border-radius: 11px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px 16px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 12px;
  font-size: 0.86rem;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  color: #fff;
  background: var(--secondary);
}

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

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  padding: 6px 0 2px;
  background: linear-gradient(180deg, rgba(239, 245, 253, 0.84) 0%, rgba(239, 245, 253, 0.46) 100%);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.nav-wrap {
  position: relative;
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand toggle"
    "nav nav";
  align-items: center;
  gap: 8px 10px;
  padding: 8px 10px;
  border: 1px solid rgba(174, 192, 215, 0.78);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 251, 255, 0.78) 100%);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(20, 49, 84, 0.11);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, #c7162b, #15324f);
  font-weight: 800;
}

.brand-text {
  display: block;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.54rem;
  margin-top: -3px;
  white-space: nowrap;
}

.menu-toggle {
  grid-area: toggle;
  justify-self: end;
  border: 1px solid #bfd1e7;
  background: #fff;
  border-radius: 999px;
  padding: 5px 11px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
  box-shadow: 0 6px 14px rgba(15, 49, 89, 0.08);
}

.primary-nav {
  grid-area: nav;
  display: none;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 0;
  padding: 7px;
  border-radius: 10px;
  border: 1px solid #d2dfee;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(17, 48, 87, 0.12);
}

.primary-nav.is-open {
  display: grid;
}

.primary-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 9px;
  padding: 6px 8px;
  transition: 0.2s ease;
}

.primary-nav a:hover {
  background: #fdecef;
  color: #991425;
}

.primary-nav .is-active {
  color: #fff;
  background: linear-gradient(140deg, #d11d33, #8f1020);
}

.nav-actions {
  grid-area: actions;
  display: none;
  gap: 8px;
  align-items: center;
}

.nav-actions .btn {
  white-space: nowrap;
  padding: 5px 10px;
  font-size: 0.77rem;
  border-radius: 10px;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.menu-cta-primary {
  color: #fff !important;
  background: linear-gradient(140deg, #d11d33, #a31225);
}

.menu-cta-primary:hover {
  background: linear-gradient(140deg, #b9182d, #8f1020) !important;
}

.menu-cta-secondary {
  color: var(--secondary) !important;
  background: #fff;
  border-color: #c5d5ea;
}

.menu-cta-secondary:hover {
  border-color: #9fb9d9 !important;
  color: #0f2b45 !important;
}

.promo-strip {
  background: transparent;
  border: 0;
  padding-bottom: 1px;
}

.promo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 18px;
  padding: 0 4px;
}

.promo-wrap p {
  margin: 0;
  color: #1b3f67;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.promo-wrap .btn {
  padding: 4px 9px;
  font-size: 0.69rem;
}

.site-header + .promo-strip {
  background: transparent;
}

.site-header + .promo-strip .container {
  border-top: 1px solid rgba(186, 202, 223, 0.35);
  padding-top: 2px;
}

.card-grid,
.reason-grid,
.link-grid,
.area-grid {
  display: grid;
  gap: 16px;
}

.card {
  padding: 18px;
}

.card p {
  margin-bottom: 12px;
}

.card a {
  font-weight: 700;
  text-decoration: none;
}

.check-list,
.plain-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.check-list li,
.plain-link-list li {
  position: relative;
  padding-left: 18px;
}

.check-list li::before,
.plain-link-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  top: 10px;
  left: 0;
}

.process-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.faq-wrap details {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.faq-wrap details p {
  margin: 10px 0 0;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zone-tags a {
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.94rem;
  transition: 0.2s ease;
}

.zone-tags a:hover {
  border-color: var(--accent-red-border);
  background: var(--accent-red-soft);
  color: #9a1223;
}

.cta-section {
  background: linear-gradient(160deg, #0f2c4a 0%, #0c2640 58%, #122f4d 100%);
  border-top: 4px solid rgba(219, 35, 58, 0.72);
}

.cta-section h2,
.cta-section p,
.cta-section li {
  color: #f4f8ff;
}

.cta-grid {
  display: grid;
  gap: 20px;
}

.form-card {
  padding: 18px;
}

.form-card label {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox-field input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
}

.checkbox-field a,
.form-legal-note a {
  font-weight: 600;
}

.form-legal-note {
  font-size: 0.84rem;
  margin: 10px 0 0;
}

.legal-content h2 {
  margin-top: 24px;
}

.form-alert {
  margin: 0 0 12px;
  background: #fdecef;
  border: 1px solid #f0b9c1;
  color: #8f1020;
  border-radius: 10px;
  padding: 10px;
}

.form-alert-error {
  background: #ffe9eb;
  border-color: #f5b9c1;
  color: #8d1322;
}

.site-footer {
  background:
    radial-gradient(circle at 92% -10%, rgba(223, 29, 52, 0.26) 0, rgba(223, 29, 52, 0) 54%),
    linear-gradient(160deg, #0c1f36 0%, #112a45 58%, #10263d 100%);
  color: #d4e2f3;
  padding: 26px 0 20px;
}

.footer-shell {
  border: 1px solid rgba(168, 189, 214, 0.24);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 16px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(201, 216, 235, 0.2);
}

.footer-kicker {
  margin: 0;
  color: #f2f7ff;
  font-weight: 700;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-col {
  min-width: 0;
}

.footer-brand,
.footer-title {
  color: #ffffff;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.site-footer p {
  color: #cfdeef;
  margin-bottom: 10px;
}

.site-footer a {
  display: block;
  color: #dce9fb;
  text-decoration: none;
  margin-bottom: 7px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 216, 235, 0.18);
}

.footer-bottom p {
  margin: 0;
  color: #b6c8df;
  font-size: 0.9rem;
}

@media (max-width: 699px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(14, 35, 58, 0.96);
  border-top: 1px solid rgba(201, 216, 235, 0.2);
  padding: 10px 12px;
}

.mobile-cta .btn {
  font-size: 0.9rem;
  padding: 10px 8px;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 92px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(16, 87, 47, 0.34);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.wa-label {
  color: #fff;
  font-weight: 800;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  z-index: 2;
}

.wa-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: wa-pulse 1.9s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.86);
    opacity: 0.78;
  }
  70% {
    transform: scale(1.36);
    opacity: 0;
  }
  100% {
    transform: scale(1.36);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-pulse {
    animation: none;
  }
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 206px;
  z-index: 35;
  display: none;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(9, 21, 36, 0.6);
  padding: 18px;
}

.cookie-settings.is-visible {
  display: grid;
  place-items: center;
}

.cookie-settings-card {
  width: min(620px, 100%);
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 16px;
}

@media (min-width: 700px) {
  .card-grid,
  .reason-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .link-grid,
  .cta-grid,
  .hero-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
}

@media (min-width: 1060px) {
  .menu-toggle {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas: "brand nav";
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 6px 10px;
  }

  .primary-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .primary-nav .menu-cta {
    padding: 4px 9px;
    margin-left: 3px;
  }

  .primary-nav a:hover {
    background: #fdecef;
    border-color: #f3c8cf;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .promo-strip {
    padding-bottom: 0;
  }

  .promo-wrap {
    justify-content: center;
    min-height: 16px;
  }

  .promo-wrap .btn {
    display: none;
  }

  .cookie-banner {
    left: auto;
    right: 18px;
    bottom: 24px;
    width: min(520px, 92vw);
  }

  .wa-float {
    right: 18px;
    bottom: 28px;
  }

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

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

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

  .cta-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1180px) {
  .mobile-cta {
    display: none;
  }

  .cookie-banner {
    bottom: 16px;
  }

  .wa-float {
    right: 20px;
    bottom: 22px;
  }
}
