*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #0d1b1e;
  --muted: #5a6b6f;
  --accent: #2b8a7d;
  --accent-soft: #d6efe9;
  --sun: #f6c85f;
  --cloud: #f6f8f7;
  --slate: #1e2d32;
  --paper: #ffffff;
  --shadow: 0 18px 40px rgba(13, 27, 30, 0.15);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  overflow: hidden;
}

.shell {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 16px;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav__links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav__cta {
  padding: 10px 18px;
  background: var(--accent);
  color: var(--paper);
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 80px 0 110px;
}

.hero__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateX(6%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__content h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero__content p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--accent);
  color: var(--paper);
}

.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  padding: 80px 0;
}

.section--cloud {
  background: var(--cloud);
}

.section--ink {
  background: var(--slate);
  color: var(--paper);
}

.section__title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 16px;
}

.section__lead {
  color: var(--muted);
  max-width: 640px;
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--paper);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card--lift {
  transform: translateX(-6%);
}

.offset-card--shift {
  transform: translateX(8%);
}

.offset-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

.split__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateX(-5%);
}

.split__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: var(--paper);
  padding: 24px;
  border-left: 5px solid var(--sun);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.service-card img {
  border-radius: 18px;
  height: 180px;
  object-fit: cover;
}

.form-panel {
  background: var(--paper);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd5d7;
  font-size: 1rem;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--accent-soft);
  border-radius: 28px;
  padding: 24px;
}

.cta-strip strong {
  font-size: 1.2rem;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 16px;
}

.metric span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer {
  padding: 50px 0 70px;
  background: var(--ink);
  color: var(--paper);
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: var(--paper);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  background: var(--paper);
  color: var(--ink);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 100;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 18px;
  background: var(--accent);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 90;
}

.page-header {
  padding: 70px 0 40px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .hero__wrap {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .hero__media {
    flex: 1.1;
  }

  .hero__content {
    flex: 0.9;
  }

  .offset-grid {
    flex-direction: row;
  }

  .offset-card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split__content {
    flex: 1.1;
  }

  .split__media {
    flex: 0.9;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
