* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1e1f24;
  --muted: #5b616b;
  --soft: #f3f0ea;
  --accent: #2a6f6b;
  --accent-dark: #1c4e4b;
  --sand: #f7f3ef;
  --stone: #e7e2da;
  --leaf: #d7e5de;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.82rem;
  color: var(--accent-dark);
  background: var(--leaf);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 6vw 20px;
}

.hero-copy {
  flex: 1 1 320px;
  padding: 30px;
  background: var(--sand);
  border-radius: 28px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-visual {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--stone);
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.btn-outline:hover {
  background: var(--accent-dark);
  color: #fff;
}

.section {
  padding: 48px 6vw;
}

.section-light {
  background: var(--sand);
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  position: relative;
}

.offset-card:nth-child(2n) {
  transform: translateY(18px);
}

.card-media {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--stone);
  margin-bottom: 16px;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.split-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split-feature .copy {
  flex: 1 1 300px;
}

.split-feature .media {
  flex: 1 1 300px;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--leaf);
}

.split-feature .media img {
  width: 100%;
  height: 100%;
}

.tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  font-weight: 600;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 18px;
  margin-top: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d3d6db;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: var(--stone);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta span {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 22px;
  right: 22px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  background: var(--leaf);
  border-radius: 18px;
  padding: 16px 18px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 18px;
}

.muted {
  color: var(--muted);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--leaf);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 20px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
