* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --brand: #1b365d;
  --brand-accent: #c9a227;
  --card: #ffffff;
  --border: #e3ded7;
  --shadow: 0 12px 30px rgba(27, 54, 93, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 6px 6px;
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--brand);
  font-size: 1.1rem;
}

.menu-toggle {
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
}

.site-nav {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
}

.site-nav.is-open {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem 1.5rem;
}

.nav-list a {
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
}

.nav-list a:hover,
.nav-list a:focus {
  background: var(--bg);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  gap: 0.4rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.btn-tertiary {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}

.section {
  padding: 3rem 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 14px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card strong {
  color: var(--brand);
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.pill {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 162, 39, 0.15);
  color: var(--brand);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.feature-list span {
  color: var(--brand-accent);
  font-weight: 700;
}

.testimonial {
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial p {
  color: #f0f0f0;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-strip span {
  background: #fff;
  border: 1px dashed var(--border);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.highlight {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block {
  background: #fff;
  padding: 1.6rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 1500;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__panel {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.toggle {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 600;
  min-width: 110px;
}

.toggle[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > * {
    flex: 1 1 0;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__actions {
    flex-direction: row;
  }
}
