* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c2024;
  --muted: #5a636c;
  --accent: #2f7a66;
  --accent-dark: #235d4f;
  --warm: #f7f2ea;
  --cool: #eef4f6;
  --light: #ffffff;
  --shadow: rgba(25, 30, 34, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 8vw;
  background: var(--light);
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--cool);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px dashed var(--muted);
  border-radius: 999px;
}

.hero {
  padding: 20px 8vw 40px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  border: 2px solid var(--accent);
  transition: background 0.2s ease, border 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 52px 8vw;
}

.section.alt {
  background: var(--warm);
}

.section.cool {
  background: var(--cool);
}

.section.photo-bg {
  background-color: #e6efe8;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.75)),
    url("https://images.unsplash.com/photo-1517423440428-a5a00ad493e8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 12px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.img-frame {
  background: #d8e1e6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px var(--shadow);
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.panel-block {
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.panel-block li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.panel-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--cool);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
}

.card {
  flex: 1 1 220px;
  background: var(--light);
  border-radius: 16px;
  box-shadow: 0 12px 28px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cool);
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 240px;
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 16px;
  box-shadow: 0 8px 20px var(--shadow);
}

.form-wrap {
  background: var(--light);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd5db;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: var(--light);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px var(--shadow);
  z-index: 50;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #1b4a3f;
}

.footer {
  margin-top: auto;
  padding: 32px 8vw 46px;
  background: #12181c;
  color: #f1f5f7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #b8d7cf;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c4ccd2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: var(--light);
  border-radius: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  padding: 16px;
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions .btn.secondary {
  border-color: #9aa6ad;
  color: #44525a;
}

.legal-page {
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-page h1 {
  font-size: 2.2rem;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  padding: 18px;
  border-radius: 14px;
  background: var(--cool);
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
