* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f24;
  --muted: #5b6670;
  --accent: #1c6e5a;
  --accent-dark: #155647;
  --sand: #f4f2ef;
  --ice: #eef5f5;
  --line: #d8e1e6;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--ice);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  background: #fff;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
    url("https://images.unsplash.com/photo-1761689502577-0013be84f1bf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 84px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sand);
}

.section.soft {
  background: var(--ice);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #dfe7ea;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--line);
}

.metric strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer {
  background: #0f1c1c;
  color: #e6ecec;
  padding: 50px 0;
}

.footer p,
.footer a {
  color: #e6ecec;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.small {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  cursor: pointer;
}

.cookie-actions .btn-outline {
  background: transparent;
  color: var(--accent);
}

.cookie-actions .btn-outline:hover,
.cookie-actions .btn-outline:focus {
  background: var(--accent);
  color: #fff;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 54px 0 32px;
  border-bottom: 1px solid var(--line);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
