* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1b1b1b;
  --muted: #5e5b57;
  --accent: #0b6a5b;
  --accent-dark: #08453c;
  --sun: #f0c76a;
  --mist: #f7f4ef;
  --ink: #2a2a2a;
  --soft: #ffffff;
  --line: #e3ded6;
  --shadow: 0 22px 45px rgba(17, 17, 17, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: #fcfbf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 8%;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--mist);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 8% 60px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 20%;
  width: 180px;
  height: 180px;
  background: var(--sun);
  border-radius: 40% 60% 45% 55%;
  opacity: 0.35;
  z-index: 0;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.6vw, 3.6rem);
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.hero-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section {
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 1.7rem;
}

.offset-card {
  background: var(--soft);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.03rem;
  color: var(--muted);
}

.quote {
  background: #0b6a5b0f;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  font-style: italic;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step {
  flex: 1 1 200px;
  background: var(--mist);
  border-radius: 18px;
  padding: 18px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.badge {
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.layered {
  position: relative;
  background: var(--ink);
  color: #f5f0ea;
  padding: 40px 8%;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -30%;
  width: 240px;
  height: 240px;
  background: #ffffff1f;
  border-radius: 45% 55% 60% 40%;
}

.layered-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.layered-inner div {
  flex: 1 1 260px;
}

.form-shell {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.map-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.map-shell img {
  border-radius: 20px;
}

.footer {
  background: var(--mist);
  padding: 30px 8% 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-simple {
  padding: 30px 8% 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.simple-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.thanks-shell {
  padding: 50px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thanks-highlight {
  background: var(--mist);
  padding: 20px;
  border-radius: 18px;
  max-width: 560px;
}

@media (max-width: 720px) {
  .nav-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
