* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f4f1;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --primary: #1c5d70;
  --accent: #f2b067;
  --light: #ffffff;
  --panel: #e7eceb;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--light);
  border-bottom: 1px solid #e2e2e2;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--light);
  padding: 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.site-nav a {
  font-weight: 500;
}

.nav-toggle {
  border: 1px solid #d6d6d6;
  background: var(--light);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.site-nav.open {
  display: flex;
  position: absolute;
  right: 4%;
  top: 64px;
}

.hero {
  padding: 64px 0 48px;
  background: linear-gradient(140deg, #fdf7ee, #eef3f3);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
}

.hero-card {
  background: var(--light);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.inner-hero {
  padding: 56px 0;
}

.section {
  padding: 56px 0;
}

.section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.section p {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card-row,
.service-grid,
.feature-grid,
.team,
.values,
.comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card,
.service-card,
.feature,
.value,
.comparison-item {
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.service-card .price {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--primary);
}

.accent {
  background: #f7efe6;
}

.muted {
  background: var(--panel);
}

.highlight-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--light);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.panel-note {
  background: #f4f6f6;
  padding: 20px;
  border-radius: 16px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--muted);
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.checklist li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--primary);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
}

.stat-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--light);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.step-number {
  font-weight: 700;
  color: var(--primary);
}

.quote {
  background: #1c5d70;
  color: #fff;
  text-align: center;
}

.quote blockquote {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.quote-author {
  color: #e3f3f6;
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-question {
  border: 1px solid #d6d6d6;
  background: var(--light);
  padding: 14px 16px;
  text-align: left;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 16px 14px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: #f8dcb4;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.button.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.site-footer {
  background: #0f2f3a;
  color: #fff;
  padding: 40px 0 24px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-grid a {
  display: block;
  margin-top: 6px;
  color: #d3e2e6;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
}

.milestones,
.team,
.values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.milestone,
.info-list,
.legal {
  background: var(--light);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal h2 {
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--light);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: block;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 16px;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-inner {
  background: var(--light);
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.icon-button {
  border: none;
  background: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
    background: transparent;
    box-shadow: none;
    position: static;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content,
  .split,
  .highlight-panel,
  .cta-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content > div {
    flex: 1;
  }

  .hero-card {
    max-width: 340px;
  }

  .card-row,
  .service-grid,
  .feature-grid,
  .team,
  .values,
  .comparison {
    flex-direction: row;
  }

  .card,
  .service-card,
  .feature,
  .value,
  .comparison-item {
    flex: 1;
  }

  .process {
    flex-direction: row;
  }

  .process-step {
    flex: 1;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .insight-list {
    gap: 20px;
  }
}
