/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1e2327;
  background: #f7f7f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: 1.9rem;
  margin: 0 0 16px;
}

.muted {
  color: #5a6570;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e2327;
  background: #1e2327;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: #2a3036;
}

.btn.secondary {
  background: transparent;
  color: #1e2327;
}

/* Header & Navigation */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4e6ea;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand img {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: none;
  gap: 20px;
  align-items: center;
}

.site-nav a {
  font-weight: 600;
  color: #2c3339;
}

.menu-toggle {
  border: 1px solid #d0d5db;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(16, 19, 21, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  background: #ffffff;
  width: 85%;
  max-width: 320px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu-panel a {
  font-weight: 600;
  color: #1e2327;
}

.mobile-menu-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hero */
.hero {
  background: #0d2833;
  color: #ffffff;
  padding: 72px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  margin: 0;
  color: #e2edf0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 24px;
}

/* Sections */
.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e6e8eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.tag {
  background: #eef3f5;
  color: #1f2d36;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

.service-list,
.testimonial-list,
.value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #0d2833;
}

.testimonial {
  background: #ffffff;
  border: 1px solid #e6e8eb;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial span {
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: #101316;
  color: #d9e0e6;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #d9e0e6;
  font-size: 0.95rem;
}

/* Cookie Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #dce1e6;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 19, 21, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid #e0e5ea;
  border-radius: 12px;
}

.toggle {
  border: 1px solid #c7cdd4;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2f4f6;
  font-weight: 600;
}

.toggle.active {
  background: #0d2833;
  color: #ffffff;
  border-color: #0d2833;
}

/* Responsive */
@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
  }

  .service-list,
  .testimonial-list,
  .value-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item,
  .testimonial,
  .card {
    flex: 1 1 260px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
