* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --ink: #1f2225;
  --muted: #5c636a;
  --accent: #1f6f8b;
  --accent-dark: #0f4f63;
  --soft: #ffffff;
  --line: #e4dfd7;
  --warn: #f2ede7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 32px 0 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 48px 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--soft);
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.image-frame {
  background: #d8d0c6;
  padding: 8px;
  border-radius: 16px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.section-tone {
  background: var(--warn);
  padding: 36px;
  border-radius: 20px;
}

.section-bg {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px;
  color: #ffffff;
  background-color: #2b3842;
}

.bg-testimonials {
  background-image: url("https://images.pexels.com/photos/132695/pexels-photo-132695.jpeg");
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--soft);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-box {
  background: var(--soft);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b7;
  font-size: 1rem;
  background: #fff;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 5;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  z-index: 6;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
