* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f0;
  --ink: #1d1f21;
  --muted: #5c646b;
  --accent: #2b5d4c;
  --accent-soft: #e3efe9;
  --warm: #f2e7da;
  --line: #d8d0c4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #ffffff;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--warm);
  padding: 8px 10px;
  border-radius: 10px;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.button-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.main {
  flex: 1;
  padding: 32px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 36px;
  margin: 0;
}

.hero-image {
  flex: 1;
  min-height: 320px;
  background-color: #e8efe9;
  display: flex;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
}

.section-bg {
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 29, 26, 0.6);
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.bg-ledger {
  background-color: #385046;
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
}

.bg-clarity {
  background-color: #3f4f5c;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.section-split {
  display: flex;
  gap: 24px;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-media {
  flex: 0.9;
  background-color: #efe8dd;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numbers {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.number-card {
  flex: 1;
  min-width: 160px;
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #e6e6e6;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  background: #f3f0eb;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.storyline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1;
  min-width: 200px;
  background: #f7f2ea;
  padding: 18px;
  border-radius: 16px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.image-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-strip img {
  width: 100%;
  max-width: 240px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #e8e0d6;
}

.footer {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  z-index: 50;
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  max-width: 360px;
  display: none;
  z-index: 60;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-list a {
  font-weight: 600;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-cta {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero,
  .section-split,
  .section-split.reverse {
    flex-direction: column;
  }
}
