* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2a30;
  background: #f6f4f1;
}

a {
  color: #0b5c6b;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #1f2a30;
  color: #f4f7f8;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #f4bf55;
  color: #2a1c00;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  color: #f4f7f8;
}

.sidebar-note {
  font-size: 13px;
  line-height: 1.5;
  color: #c7d3d6;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 48px 8vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #e9eff0;
}

.section.bg-vision {
  background-image: linear-gradient(rgba(31, 42, 48, 0.72), rgba(31, 42, 48, 0.72)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-habits {
  background-image: linear-gradient(rgba(244, 191, 85, 0.82), rgba(244, 191, 85, 0.82)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #2a1c00;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 260px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #0b5c6b;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
}

.btn.secondary {
  background: #f4bf55;
  color: #2a1c00;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.image-frame {
  background: #dfe7e9;
  padding: 10px;
  border-radius: 14px;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(31, 42, 48, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
  background-color: #dfe7e9;
}

.price {
  font-weight: 700;
  color: #0b5c6b;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-marker {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0b5c6b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  background: #fff6e1;
  border-left: 4px solid #f4bf55;
  padding: 16px 18px;
  border-radius: 8px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: #1f2a30;
  color: #ffffff;
  padding: 18px;
  border-radius: 12px;
  max-width: 280px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(31, 42, 48, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7d3d6;
  font-size: 15px;
  font-family: inherit;
}

button {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  background: #0b5c6b;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  background: #1f2a30;
  color: #f4f7f8;
  padding: 28px 8vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f4bf55;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(31, 42, 48, 0.2);
  max-width: 320px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button.reject {
  background: #f4bf55;
  color: #2a1c00;
}

.notice {
  font-size: 14px;
  line-height: 1.6;
}
