* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f24;
  --muted: #55606b;
  --accent: #1f6b5f;
  --accent-soft: #e4f2ef;
  --sand: #f6f2ed;
  --stone: #e2e6ea;
  --sun: #f8e4b3;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--sand);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.nav a[aria-current="page"] {
  font-weight: 600;
}

.cta-stack {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.tight {
  padding: 40px 72px;
}

.section.sun {
  background: var(--sun);
}

.section.stone {
  background: var(--stone);
}

.section.accent {
  background: var(--accent-soft);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 0.9;
  display: flex;
  align-items: stretch;
}

.image-frame {
  background: #d8e1e6;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-frame.small {
  width: 160px;
  height: 120px;
}

.image-frame.spaced {
  margin-top: 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(27, 31, 36, 0.08);
}

.card .price {
  font-weight: 600;
  color: var(--accent);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
}

.service-row .text {
  flex: 1;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-wrapper label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9cfd6;
  font-size: 14px;
  font-family: inherit;
}

.form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 40px 72px;
  background: #14181d;
  color: #e8edf2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #e8edf2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(27, 31, 36, 0.18);
  padding: 6px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.sticky-cta span {
  padding-left: 8px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(27, 31, 36, 0.22);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.meta-grid div {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 14px;
  border-radius: 12px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .cta-stack {
    width: 100%;
    flex-direction: row;
  }

  .section,
  .section.tight,
  .footer {
    padding: 40px 24px;
  }

  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    bottom: 90px;
  }
}
