* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f22;
  --muted: #4b5563;
  --line: #e4e7ec;
  --sand: #f4f1ec;
  --slate: #e8edf2;
  --clay: #d7c8b3;
  --accent: #1f6a5c;
  --accent-dark: #154a41;
  --accent-soft: #d8efe8;
  --shadow: 0 18px 40px rgba(18, 31, 34, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 18px 8%;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-section {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 48px 8%;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.panel.tight {
  gap: 10px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #ffffff;
  background: var(--accent);
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.light {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: #ffffff;
}

.media-box {
  flex: 1;
  background: var(--slate);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
}

.media-box img {
  width: 100%;
  height: 100%;
}

.layered {
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 60%;
  background: var(--clay);
  right: -10%;
  bottom: -12%;
  border-radius: 24px;
  z-index: -1;
}

.section-alt {
  background: var(--sand);
}

.section-soft {
  background: #f7fafc;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.price-item span {
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-media {
  background: var(--slate);
  height: 160px;
}

.card .card-media img {
  width: 100%;
  height: 100%;
}

.card .card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.form-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
  box-shadow: var(--shadow);
}

footer {
  padding: 32px 8% 48px;
  background: #0f1f1d;
  color: #d5dde0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
