* {
  box-sizing: border-box;
}

:root {
  --ink: #111112;
  --muted: #4e545b;
  --sand: #f4f1ec;
  --mist: #eef1f4;
  --accent: #1d5b5f;
  --accent-soft: #d7ecec;
  --sun: #f0c060;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--sun);
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 0 48px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.flex-300 {
  flex: 1 1 300px;
}

.flex-360 {
  flex: 1 1 360px;
}

.flex-380 {
  flex: 1 1 380px;
}

.hero-text {
  flex: 1 1 360px;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.image-frame {
  background: var(--mist);
  border-radius: 22px;
  overflow: hidden;
}

.image-hero {
  height: 420px;
}

.image-problem {
  height: 320px;
  flex: 1 1 360px;
}

.image-small {
  height: 240px;
  flex: 1 1 300px;
}

.image-card {
  height: 160px;
}

.image-wide {
  height: 320px;
  flex: 1 1 360px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card {
  position: absolute;
  bottom: -18px;
  left: 18px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  max-width: 260px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 52px 0;
}

.section.alt {
  background: var(--sand);
}

.section.soft {
  background: var(--mist);
}

.offset-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(17, 17, 18, 0.08);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-size: 1.3rem;
  font-weight: 700;
}

.banner {
  background: var(--accent);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  font-family: inherit;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 36px 0 52px;
  margin-top: auto;
  background: #0f1418;
  color: #e6edf2;
}

.footer a {
  color: #e6edf2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal {
  font-size: 0.85rem;
  color: #b7c1c9;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.spacer {
  height: 16px;
}

@media (max-width: 900px) {
  .hero-card {
    position: static;
    max-width: none;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
