*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --ink: #1d1a1a;
  --muted: #6a6662;
  --accent: #ff7a59;
  --accent-dark: #d45b3b;
  --teal: #1f5d57;
  --sand: #f1e6d6;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(20, 15, 12, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  padding: 32px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #eee;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav a {
  padding: 6px 0;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.btn-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.btn-dark {
  background: var(--teal);
}

.content {
  flex: 1;
  padding: 32px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  background: var(--card);
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.section--split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.section--split .copy {
  flex: 1;
}

.section--split .visual {
  flex: 1;
}

.section--story {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
}

.section--cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #f0e7db;
}

.section--layered {
  position: relative;
  overflow: hidden;
}

.section--layered::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  background: rgba(255, 122, 89, 0.18);
  border-radius: 50%;
}

.section--layered .layered-content {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.section--timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fafafa;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.section--pricing {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #f7f3ec;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.section--form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: var(--teal);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.hero-title {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.muted {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 93, 87, 0.12);
  color: var(--teal);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.two-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 260px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-image {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .sidebar-cta {
    flex-direction: row;
    margin-top: 0;
  }

  .section--split,
  .section--layered .layered-content {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .content {
    padding: 24px;
  }

  .hero-title {
    font-size: 30px;
  }
}
