/* Base */
:root {
  --brand-900: #1f2a44;
  --brand-700: #2b5b9a;
  --brand-500: #22a39f;
  --brand-100: #e8f3f6;
  --text-900: #1b1f2a;
  --text-600: #4b5565;
  --surface: #ffffff;
  --muted: #f6f8fb;
  --border: #d9e2ec;
  --accent: #f5b700;
  --shadow: 0 10px 25px rgba(31, 42, 68, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-900);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section-muted {
  background: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--brand-700);
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0 3.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
}

.hero p {
  color: var(--text-600);
  font-size: 1.05rem;
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-100);
  color: var(--brand-700);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand-700);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #244e84;
}

.btn-secondary {
  background: #fff;
  color: var(--brand-700);
  border-color: var(--brand-700);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--brand-100);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--text-600);
}

.price-tag {
  font-weight: 700;
  color: var(--brand-700);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight {
  background: var(--brand-700);
  color: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight p {
  color: #e6edf7;
  margin: 0;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.testimonial strong {
  color: var(--brand-700);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
}

.list li {
  color: var(--text-600);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--brand-900);
  font-size: 1.05rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 68, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu-panel {
  background: #fff;
  width: min(320px, 80%);
  height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--brand-900);
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

/* Footer */
.site-footer {
  background: var(--brand-900);
  color: #e9eef7;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-grid a {
  color: #e9eef7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Cookie banner & modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  z-index: 20;
}

.cookie-banner .container {
  gap: 0.75rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-600);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 68, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.modal-content h3 {
  margin: 0;
}

.modal-content label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-600);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Responsive */
@media (min-width: 768px) {
  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
