* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1c1c;
  --muted: #495a59;
  --accent: #2d6b69;
  --accent-soft: #dce7e6;
  --highlight: #cfa77b;
  --paper: #f6f4f1;
  --deep: #122624;
  --warm: #f2ece5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  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;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw;
  position: relative;
  background: transparent;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 7vw 64px;
  gap: 32px;
  background: linear-gradient(120deg, rgba(18, 38, 36, 0.95), rgba(18, 38, 36, 0.7)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  color: #fff;
}

.hero-content {
  max-width: 640px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 64px 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff;
}

.section.deep {
  background: var(--deep);
  color: #fff;
}

.section.warm {
  background: var(--warm);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(12, 28, 26, 0.12);
}

.card img {
  border-radius: 14px;
}

.quote {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(45, 107, 105, 0.1);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(18, 38, 36, 0.1);
}

.price-tag {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(12, 28, 26, 0.15);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(18, 38, 36, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 20;
  background: var(--highlight);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(12, 28, 26, 0.2);
  font-weight: 600;
}

.footer {
  padding: 32px 7vw 48px;
  background: var(--deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(12, 28, 26, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--accent);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 16px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack img:nth-child(2) {
  margin-left: 8%;
}

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 820px) {
  .split,
  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split > div,
  .split-row > div {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 20px);
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .form-wrapper {
    flex-direction: row;
    gap: 32px;
  }

  .form-wrapper > div {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
