* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0d1b2a;
  --ink-soft: #1f2a44;
  --muted: #5f6f82;
  --accent: #2e7d32;
  --accent-dark: #1c5a23;
  --mist: #f2f6f4;
  --sun: #f4d35e;
  --slate: #e3e8ef;
  --sand: #f9f4ef;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #ffffff;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--slate);
  padding: 6px 10px;
  border-radius: 999px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 6vw 40px;
  gap: 24px;
  background-image: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.image-box {
  background: var(--slate);
  border-radius: 18px;
  overflow: hidden;
  height: 340px;
}

.section {
  padding: 60px 6vw;
}

.section.light {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
}

.split h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.tagline {
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(13, 27, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .image-box {
  height: 160px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.step {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--slate);
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--slate);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  color: var(--ink-soft);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--slate);
  font-size: 16px;
  width: 100%;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f172a;
  color: #e2e8f0;
}

.footer a {
  color: #e2e8f0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer small {
  display: block;
  margin-top: 14px;
  color: #cbd5f5;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--slate);
  padding: 16px;
  border-radius: 14px;
  max-width: 360px;
  z-index: 9;
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink-soft);
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--slate);
}

.contact-block div {
  flex: 1 1 220px;
}

@media (max-width: 900px) {
  .hero {
    padding: 50px 5vw 30px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
