* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1c1c;
  --muted: #546061;
  --accent: #1f6e6a;
  --accent-2: #e1b25a;
  --soft: #f3f5f4;
  --sand: #efe7db;
  --deep: #0b2e2f;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--deep);
  color: #f4f4f0;
  padding: 28px 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sidebar p {
  margin: 0 0 18px;
  color: #d8e2df;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 20px 80px;
}

.section {
  padding: 32px 20px;
  border-radius: 24px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section h1,
.section h2,
.section h3 {
  margin: 0;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.section.split {
  background: #ffffff;
  border: 1px solid #e7ecea;
  gap: 28px;
}

.split .split-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e5e9e8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(31, 110, 106, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.bg-reef {
  background: linear-gradient(120deg, rgba(15, 28, 28, 0.08), rgba(225, 178, 90, 0.15)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-reef p {
  color: #f0f4f2;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e5e9e8;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e5e9e8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8dfde;
  font-family: inherit;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 88px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e1e6e5;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 25;
  box-shadow: 0 12px 30px rgba(15, 28, 28, 0.1);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  padding: 24px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stacked {
  background: var(--sand);
}

.highlight {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #ebe6dc;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
    position: relative;
  }

  .main {
    padding: 40px 40px 100px;
  }

  .split .split-inner {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-grid .card {
    flex: 1 1 calc(50% - 16px);
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .contact-meta {
    flex-direction: row;
    gap: 30px;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-item {
    flex: 1 1 calc(50% - 16px);
  }
}
