@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap");

:root {
  --bg: #f5f3ef;
  --paper: #ffffff;
  --ink: #1f2328;
  --muted: #5b636a;
  --accent: #1f6f5f;
  --accent-soft: #e6f0ed;
  --warm: #efe4d6;
  --cool: #e4edf7;
  --line: #dde2e6;
  --shadow: 0 18px 50px rgba(20, 22, 24, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  font-size: 14px;
  padding: 6px 0;
}

.nav a.button-link {
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
}

.sidebar .meta {
  font-size: 12px;
  color: var(--muted);
}

.content {
  flex: 1;
  padding: 36px 6vw 100px 6vw;
}

section {
  margin-bottom: 64px;
}

.hero {
  background: var(--cool);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}

.hero-copy {
  flex: 1.1;
}

.hero h1 {
  margin-top: 0;
  font-size: 38px;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  flex: 0.9;
  border-radius: 22px;
  overflow: hidden;
  background: #d9e3f0;
}

.img-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: #2f3e46;
}

.btn.soft {
  background: var(--accent-soft);
  color: var(--accent);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  flex: 1;
}

.panel.highlight {
  background: var(--warm);
}

.panel h3 {
  margin-top: 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 160px;
  background: #dfe7e6;
}

.card-body {
  padding: 18px;
  flex: 1;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  min-width: 240px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--paper);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  flex: 1 1 100%;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.form-actions {
  margin-top: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.ticker {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d8e1dc;
}

.section-band {
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
}

.background-section {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfd8d3;
  padding: 36px;
  border-radius: 26px;
  color: #fff;
}

.background-section .overlay {
  background: rgba(31, 35, 40, 0.72);
  padding: 24px;
  border-radius: 18px;
  max-width: 560px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
