*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #18201a;
  --muted: #5a6a5f;
  --accent: #2a7f62;
  --accent-soft: #e3f3ea;
  --sand: #f4f2ed;
  --sun: #f9c867;
  --sky: #e6eef5;
  --night: #0f1b18;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 27, 24, 0.12);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

.shell {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--white);
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-highlight {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  width: fit-content;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px dashed var(--muted);
}

.hero-visual {
  position: relative;
  padding: 18px;
  background: var(--sky);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -20px;
  bottom: 24px;
  background: var(--sun);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-bg-sky {
  background: var(--sky);
}

.section-bg-night {
  background: var(--night);
  color: var(--white);
}

.section-offset {
  transform: translateY(-24px);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split-feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-visual {
  background: var(--sand);
  border-radius: 18px;
  padding: 18px;
}

.form-wrap {
  background: var(--white);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7d3cc;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px dashed var(--accent);
  padding-left: 18px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.16);
  padding: 18px;
  border-radius: 16px;
}

.footer {
  padding: 42px 0;
  background: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 600;
  border: none;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.page-hero {
  background: var(--sky);
  padding: 42px 0;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.banner-hidden {
  display: none;
}

@media (min-width: 840px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-column > * {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .split-feature {
    flex-direction: row;
  }

  .split-feature > * {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
