/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d232c;
  background: #f7f8fb;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  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;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.muted {
  color: #4a5568;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6eaf0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #15324b;
}

.logo svg {
  width: 36px;
  height: 36px;
}

.site-nav {
  display: none;
  gap: 20px;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  color: #1d232c;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #2b6cb0;
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ccd6e5;
  color: #1d232c;
  background: #ffffff;
}

.mobile-menu {
  background: #ffffff;
  border-top: 1px solid #e6eaf0;
  box-shadow: 0 10px 25px rgba(18, 32, 48, 0.08);
}

.mobile-menu .menu-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 4%;
}

.mobile-menu a {
  font-size: 1rem;
  color: #1d232c;
}

/* Hero */
.hero {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #eaf2fb, #ffffff);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.1rem;
  color: #15324b;
}

.hero p {
  font-size: 1.05rem;
  color: #2f3b4a;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2b6cb0;
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: #2b6cb0;
  border: 1px solid #2b6cb0;
}

/* Cards */
.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e3e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .price {
  font-weight: 700;
  color: #15324b;
}

/* Split */
.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-gap {
  margin-top: 18px;
}

.split .panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e3e8f0;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #e3e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial .author {
  font-weight: 600;
  color: #15324b;
}

/* Footer */
.site-footer {
  background: #0f2436;
  color: #e3edf7;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: #e3edf7;
  font-size: 0.95rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #ffffff;
  border-top: 1px solid #e3e8f0;
  box-shadow: 0 -10px 24px rgba(15, 36, 54, 0.12);
  padding: 16px 0;
  z-index: 40;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 36, 54, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}

.cookie-modal .modal-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e3e8f0;
}

.toggle-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ccd6e5;
  background: #f1f5f9;
  color: #1d232c;
}

.toggle-btn[aria-pressed="true"] {
  background: #2b6cb0;
  color: #ffffff;
  border-color: #2b6cb0;
}

/* Utilities */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edf2f7;
  color: #2f3b4a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e3e8f0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
  }

  .hero-aside {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split .panel {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cookie-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
