* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f1b1a;
  --muted: #506062;
  --surface: #f5f7f6;
  --accent: #1f7a6f;
  --accent-dark: #14524b;
  --border: #dde5e2;
  --sand: #edf1ef;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(31, 122, 111, 0.35);
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface);
}

.hero {
  background: linear-gradient(120deg, rgba(15, 27, 26, 0.72), rgba(15, 27, 26, 0.35)),
    url("https://images.unsplash.com/photo-1779755376652-22ca6eba86b8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 90px 6% 80px;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.3vw, 3.6rem);
  line-height: 1.1;
  max-width: 520px;
}

.hero p {
  max-width: 420px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.section {
  padding: 70px 6%;
}

.split-section {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text-block {
  flex: 1;
  min-width: 280px;
}

.split-section .media-block {
  flex: 1;
  min-width: 280px;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  padding: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.card-image {
  background: #e5ecea;
}

.card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.9rem;
}

.layered {
  background: linear-gradient(120deg, rgba(237, 241, 239, 0.9), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1623720800086-a86064cb1967?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.testimonial {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 27, 26, 0.08);
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(15, 27, 26, 0.06);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 12px 24px rgba(15, 27, 26, 0.12);
}

.sticky-cta button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 24px rgba(15, 27, 26, 0.12);
  z-index: 60;
}

.cookie-banner p {
  flex: 1 1 260px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
  border-color: transparent;
}

.about-hero {
  background: linear-gradient(120deg, rgba(15, 27, 26, 0.7), rgba(15, 27, 26, 0.25)),
    url("https://images.unsplash.com/photo-1656488816345-60a79d1a743d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 70px 6% 60px;
}

.services-hero {
  background: linear-gradient(120deg, rgba(15, 27, 26, 0.72), rgba(15, 27, 26, 0.3)),
    url("https://images.unsplash.com/photo-1609178055460-f99e63393769?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 70px 6% 60px;
}

.simple-hero {
  background: var(--surface);
  padding: 60px 6%;
}

@media (max-width: 920px) {
  .hero-inner,
  .split-section,
  .split-section.reverse {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
