* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f24;
  --muted: #5a6674;
  --accent: #2f6a5e;
  --accent-soft: #dfece8;
  --sand: #f4f0ea;
  --sun: #f7d9a6;
  --cloud: #f6f7fb;
  --line: #e3e6eb;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 16px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 6vw 60px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  min-height: 360px;
  background: var(--accent-soft);
  border-radius: 24px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  filter: brightness(0.95);
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--cloud);
}

.section.sand {
  background: var(--sand);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asym-panel {
  flex: 1 1 320px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.asym-panel.offset {
  transform: translateY(20px);
}

.asym-panel img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background: #d7dde5;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: #dee6ef;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  border-radius: 12px;
  margin-top: 12px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.sticky-cta a {
  font-weight: 600;
  color: var(--accent);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  background: #11151a;
  color: #f6f7fb;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #c9d0da;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
}

.table-row span {
  min-width: 140px;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-block {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.media-block img {
  width: 240px;
  height: 180px;
  border-radius: 14px;
  background: #d7dde5;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.hidden {
  display: none;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    text-align: center;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }
}
