:root {
  --primary: #b80d23;
  --primary-dark: #7a0918;
  --secondary: #1e3a5f;
  --accent: #c9a227;
  --text: #141821;
  --muted: #3d4a5c;
  --bg: #f7f4f2;
  --white: #ffffff;
  --line: #e8dfe0;
  --ok: #0d7a52;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 0.5rem;
  top: 0.5rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--text);
  z-index: 100;
  overflow: visible;
  border-radius: 0.35rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  outline: 2px solid var(--primary);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.disclaimer-bar {
  background: var(--secondary);
  color: #e8eef5;
  font-size: 0.85rem;
  padding: 0.55rem 4%;
  text-align: center;
}

.disclaimer-bar strong {
  color: #fff;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand img {
  height: 40px;
  width: auto;
}

.menu-toggle {
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.55rem 0.85rem;
  border-radius: 0.45rem;
  font-weight: 600;
  cursor: pointer;
}

.main-nav {
  display: none;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0.25rem;
  border-radius: 0.35rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--primary);
  background: rgba(184, 13, 35, 0.08);
}

.main-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #fff, #faf6f4);
  padding: 1rem 4% 1.25rem;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(20, 24, 33, 0.08);
}

.hero {
  padding: 2.75rem 0 3.25rem;
  background: linear-gradient(145deg, #fff5f5 0%, #f0f4f8 50%, #fff 100%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--secondary);
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero-image {
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.72rem 1.15rem;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(184, 13, 35, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.section {
  padding: 2.75rem 0;
}

.section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--secondary);
  margin: 0 0 0.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 1.5rem;
}

.alt {
  background: linear-gradient(180deg, #eef2f7, #faf8f6);
}

.cards {
  display: grid;
  gap: 1.1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.15rem;
  box-shadow: 0 8px 22px rgba(20, 24, 33, 0.06);
}

.card img {
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  max-height: 160px;
  width: 100%;
  object-fit: contain;
  background: #f3f6f9;
}

.card h3 {
  margin: 0 0 0.4rem;
  color: var(--secondary);
  font-size: 1.1rem;
}

.two-col {
  display: grid;
  gap: 1.5rem;
}

.feature-list,
.check-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.check-list li {
  margin-bottom: 0.45rem;
}

.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.stat {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  color: var(--primary);
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.6rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer {
  background: linear-gradient(135deg, #152a45, var(--secondary));
  color: #dce6f2;
  padding: 2rem 0 1.5rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.footer-note {
  font-size: 0.88rem;
  opacity: 0.95;
  line-height: 1.55;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.legal-links a {
  color: #f0e6a8;
}

.page-hero {
  padding: 2rem 0 1.5rem;
  background: linear-gradient(135deg, #fff5f5, #eef2f7);
}

.page-hero h1 {
  margin: 0;
  color: var(--secondary);
}

.page-hero p {
  color: var(--muted);
  margin: 0.5rem 0 0;
  max-width: 720px;
}

.legal-page,
.contact-page,
.inner-page {
  padding: 2rem 0 3rem;
}

.legal,
.prose {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.25rem;
  box-shadow: 0 8px 22px rgba(20, 24, 33, 0.05);
}

.prose h2 {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-top: 1.25rem;
}

.notice {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--accent);
  background: #fffbeb;
  border-radius: 0.35rem;
  color: var(--text);
}

form {
  display: grid;
  gap: 0.65rem;
}

label {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c5ced9;
  border-radius: 0.5rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 13, 35, 0.15);
}

.feedback {
  min-height: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.feedback.error {
  color: #b42318;
}

.feedback.success {
  color: var(--ok);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  width: min(780px, 94%);
  background: linear-gradient(135deg, #152a45, #243d5c);
  color: #f0f4fa;
  border-radius: 0.85rem;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 14px 32px rgba(10, 20, 40, 0.4);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 50;
}

.cookie-banner.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none;
    width: auto;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .site-header {
    position: relative;
  }

  .main-nav.is-open {
    max-height: 70vh;
    overflow-y: auto;
  }

  .cta-row .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
  }
}
