:root {
  --bg: #f6f4f1;
  --ink: #1c1c1c;
  --muted: #5c5c5c;
  --accent: #2f6b5d;
  --accent-dark: #20473d;
  --sand: #e4dfd6;
  --mist: #eef2ef;
  --sun: #f2b647;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.page {
  position: relative;
  overflow: hidden;
}

.header {
  padding: 32px 0 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 50px 0 80px;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.hero-copy {
  flex: 1.1;
}

.hero-copy h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-copy p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-media {
  flex: 0.9;
  position: relative;
}

.hero-media img {
  border-radius: 28px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -24px;
  background: var(--sun);
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--mist);
}

.section-sand {
  background: var(--sand);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 420px;
}

.offset-wrap {
  display: flex;
  gap: 32px;
  align-items: center;
}

.offset-panel {
  flex: 1;
  padding: 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.offset-panel h3 {
  margin-top: 0;
}

.offset-panel p {
  color: var(--muted);
}

.offset-image {
  flex: 0.8;
  margin-top: -40px;
}

.offset-image img {
  border-radius: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 14px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.button.ghost {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
}

.story p {
  margin: 0;
}

.story strong {
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
  font-size: 15px;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.offset-band {
  position: relative;
  background: url('images/pattern-lines.svg');
  background-size: cover;
  background-position: center;
}

.offset-band::after {
  content: "";
  position: absolute;
  inset: 10% 12% -14% auto;
  width: 220px;
  background: rgba(47, 107, 93, 0.2);
  transform: rotate(-6deg);
}

.cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border-radius: 18px;
  background: var(--accent-dark);
  color: #fff;
}

.cta-bar p {
  margin: 0;
}

.footer {
  padding: 40px 0;
  background: #121212;
  color: #f8f8f8;
}

.footer a {
  color: #f8f8f8;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--sun);
  color: #1b1b1b;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #f2f2f2;
  padding: 16px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 12;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.sidebar-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.sidebar {
  flex: 0 0 200px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-content {
  flex: 1;
}

.data-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.data-list span {
  font-weight: 600;
}

.page-hero {
  padding: 50px 0 30px;
  background: var(--mist);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
}

.page-hero p {
  margin-top: 12px;
  max-width: 680px;
  color: var(--muted);
}

.list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-grid .list-item {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.list-item h3 {
  margin-top: 0;
}

.list-item p {
  margin: 0;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero-inner,
  .offset-wrap,
  .form-wrap,
  .sidebar-layout {
    flex-direction: column;
  }

  .hero-badge {
    position: static;
    margin-top: 16px;
  }

  .offset-image {
    margin-top: 0;
  }

  .sidebar {
    width: 100%;
  }
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}
