:root {
  --ink: #1c1f26;
  --muted: #5a6678;
  --accent: #1b6f6a;
  --accent-dark: #0f4f4b;
  --cream: #f7f5ef;
  --sky: #e9f1f6;
  --sand: #f2efe6;
  --stone: #e4e2dc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  padding-bottom: 90px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 8vw 12px 8vw;
  background: #fff;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 8vw 60px 8vw;
  background: var(--sky);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-image {
  position: relative;
  background-color: #c9d5df;
  overflow: hidden;
  border-radius: 18px;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.12));
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  gap: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-button:hover {
  background: var(--accent-dark);
}

.secondary-button {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 8vw;
}

.section.compact {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section.light {
  background: var(--cream);
}

.section.stone {
  background: var(--stone);
}

.section.sand {
  background: var(--sand);
}

.section.section-bg {
  background-color: #dde3ea;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.45)), url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-row > div {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #d6dee6;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card .image-frame img {
  height: 180px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  align-items: center;
}

.pricing-item span {
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  font-size: 14px;
  color: var(--muted);
}

.form-panel input,
.form-panel select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 8vw;
  background: #101418;
  color: #d9e0e7;
}

.footer a {
  color: #d9e0e7;
}

.footer small {
  color: #97a1ad;
}

.sticky-cta {
  position: fixed;
  bottom: 12px;
  right: 12px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  bottom: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: min(340px, 90vw);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.page-hero {
  padding: 48px 8vw 20px 8vw;
  background: var(--sky);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-body {
  padding: 32px 8vw 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-body ul {
  padding-left: 20px;
}

.notice {
  padding: 16px;
  background: var(--sand);
  border-radius: 12px;
}

@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
  }
  .hero-inner > div {
    flex: 1 1 0;
  }
}
