/* Base */
:root {
  --bg: #0f1417;
  --bg-soft: #151c20;
  --text: #e9f1f5;
  --muted: #b7c4cc;
  --brand: #49b1b3;
  --brand-dark: #2b6a6b;
  --accent: #f4c04f;
  --card: #1a2328;
  --line: #26323a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 16px 0;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(73, 177, 179, 0.15);
  color: var(--brand);
  border: 1px solid rgba(73, 177, 179, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(15, 20, 23, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
}

.menu-btn:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 23, 0.96);
  display: none;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}

.mobile-menu__panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 60vh;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.1rem;
}

.mobile-menu .mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.close-btn {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 70px 0 50px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.3rem;
  margin: 0;
}

.hero .cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--brand);
  color: #071014;
  border-color: var(--brand);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0f10;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: var(--brand);
  color: var(--brand);
}

/* Cards */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

/* Highlights */
.highlight-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(244, 192, 79, 0.15);
  border: 1px solid rgba(244, 192, 79, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
}

.testimonial p {
  margin: 0 0 10px 0;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 40px 0;
  background: #0c1114;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Cookie banner & modal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 23, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.modal-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #12181c;
}

.toggle-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #0b1216;
}

.toggle-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Utility */
.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    max-width: 520px;
  }

  .hero .cta-row {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .highlight-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .highlight {
    flex: 1 1 220px;
  }

  .split {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
