* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --brand-dark: #0b2a45;
  --brand-teal: #2aa6a2;
  --brand-accent: #f5a352;
  --brand-ink: #1b1f24;
  --brand-muted: #5b6770;
  --brand-bg: #f5f7fa;
  --brand-card: #ffffff;
  --brand-border: #dde3ea;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--brand-ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--brand-bg);
}

.section.dark {
  background: var(--brand-dark);
  color: #ffffff;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--brand-teal);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  color: var(--brand-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--brand-teal);
  color: #ffffff;
}

.btn.primary:hover {
  background: #23908c;
}

.btn.secondary {
  background: transparent;
  border-color: var(--brand-teal);
  color: var(--brand-teal);
}

.btn.secondary:hover {
  background: rgba(42, 166, 162, 0.1);
}

.btn.light {
  background: #ffffff;
  color: var(--brand-dark);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #ffffff;
  color: var(--brand-dark);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 99;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brand-border);
  z-index: 50;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-dark);
}

.brand span {
  font-size: 1.05rem;
}

.nav-toggle {
  border: 1px solid var(--brand-border);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 90px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.nav-links.open {
  transform: translateX(0);
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-links .btn {
  width: fit-content;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    transform: none;
    background: transparent;
    gap: 22px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--brand-card);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--brand-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .hero-grid {
    flex: 1;
  }
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 760px) {
  .card-list {
    flex-direction: row;
  }
}

.card {
  background: var(--brand-card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--brand-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature img {
  width: 44px;
  height: 44px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--brand-border);
  flex: 1;
}

@media (min-width: 760px) {
  .stats {
    flex-direction: row;
  }
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border-left: 4px solid var(--brand-accent);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: rgba(42, 166, 162, 0.12);
  color: var(--brand-teal);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.highlight-panel {
  background: var(--brand-dark);
  color: #ffffff;
  border-radius: 20px;
  padding: 28px;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 860px) {
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--brand-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 240px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--brand-border);
}

@media (min-width: 760px) {
  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--brand-border);
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: #ffffff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 18px;
  display: none;
  color: var(--brand-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.2s ease;
}

.footer {
  background: #0a1f33;
  color: #ffffff;
  padding: 40px 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 760px) {
  .footer-links {
    flex-direction: row;
    gap: 18px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--brand-border);
  box-shadow: 0 10px 30px rgba(11, 42, 69, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
  width: min(960px, 92%);
  display: none;
  z-index: 100;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 760px) {
  .cookie-banner.active {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 42, 69, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--brand-border);
  padding: 12px;
  border-radius: 12px;
}

.cookie-option span {
  font-weight: 600;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 163, 82, 0.2);
  color: #a05a18;
  font-weight: 600;
  font-size: 0.78rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--brand-border);
}

.map-card {
  background: var(--brand-bg);
  border-radius: 16px;
  padding: 20px;
  border: 1px dashed var(--brand-border);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--brand-border);
  margin: 20px 0;
}
