* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --paper: #ffffff;
  --ink: #1f2328;
  --muted: #5b6068;
  --accent: #2f6f60;
  --accent-dark: #214e43;
  --soft: #e9e1d4;
  --sun: #f1c76b;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--soft);
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent-dark);
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 48px 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--paper);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 18px 40px rgba(15, 20, 20, 0.08);
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 2.4vw + 1.4rem, 3.2rem);
  line-height: 1.15;
}

.hero-text p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: transparent;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section .media {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background: var(--paper);
  padding: 20px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
}

.card strong {
  font-size: 1.1rem;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--soft);
  padding: 28px;
  border-radius: 28px;
}

.split-highlight .panel {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote {
  background: var(--paper);
  padding: 22px;
  border-radius: 20px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: var(--paper);
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #d7d5cf;
  background: #faf9f6;
  font-size: 1rem;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.2);
  z-index: 10;
}

.footer {
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(20, 20, 20, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fef6e2;
  color: #6e5414;
  font-size: 0.85rem;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.notice {
  background: #f2f7f5;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed #c4d9d1;
}

@media (max-width: 920px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--soft);
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 6vw 80px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
