* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5a5f66;
  --bg: #f5f2ee;
  --panel: #ffffff;
  --accent: #0a4d4a;
  --accent-soft: #d7efe8;
  --highlight: #f8d8b0;
  --shadow: 0 18px 40px rgba(15, 20, 20, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--panel);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid #e4ded6;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 6px 0;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.sidebar .cta-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 48px 96px;
}

.section {
  background: var(--panel);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.section--wide {
  padding: 40px;
}

.section--tone {
  background: var(--accent);
  color: #fff;
}

.section--soft {
  background: var(--accent-soft);
}

.section--highlight {
  background: var(--highlight);
}

.section--layered::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.2);
  top: -60px;
  right: -40px;
  border-radius: 40px;
  transform: rotate(12deg);
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #e5dfd7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(10, 77, 74, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: #0b2a27;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d5cdc5;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-row > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.note {
  color: var(--muted);
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e4ded6;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .main {
    padding: 28px 22px 100px;
  }

  .hero {
    flex-direction: column;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
