*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --navy: #0f1e2e;
  --teal: #2a8b8b;
  --accent: #f2c94c;
  --cream: #f7f4ee;
  --text: #1b2430;
  --muted: #5c6773;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(15, 30, 46, 0.12);
  --radius: 16px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 24px rgba(15, 30, 46, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--navy);
}

.brand svg {
  width: 40px;
  height: 40px;
}

.menu-toggle {
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.primary-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(15, 30, 46, 0.08);
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.primary-nav.is-open {
  display: flex;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.primary-nav a {
  padding: 0.5rem 1.5rem;
  display: block;
  font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--teal);
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-accent {
  background: var(--accent);
  color: var(--navy);
}

.section {
  padding: 2.5rem 0;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.section-subtitle {
  margin-top: 0;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  margin: 0;
  color: var(--navy);
}

.price {
  font-weight: 700;
  color: var(--teal);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--navy);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--white);
  opacity: 0.9;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 1;
}

.tagline {
  color: var(--muted);
}

.notice {
  background: rgba(42, 139, 139, 0.12);
  padding: 1.2rem;
  border-radius: var(--radius);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  padding: 0 1rem;
  display: none;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  background: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 46, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__panel {
  background: var(--white);
  width: min(560px, 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--cream);
  padding: 1rem;
  border-radius: 12px;
}

.cookie-status {
  font-weight: 600;
  color: var(--teal);
}

.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 46px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 46, 0.3);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.switch input:checked + .slider {
  background: var(--teal);
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.cookie-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .primary-nav ul {
    flex-direction: row;
    gap: 0.75rem;
  }

  .primary-nav a {
    padding: 0.3rem 0.8rem;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-item {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions,
  .cookie-modal__footer {
    flex-direction: row;
    justify-content: flex-end;
  }
}
