* {
  box-sizing: border-box;
}

:root {
  --ink: #18222b;
  --muted: #5c6b78;
  --paper: #f7f4f0;
  --accent: #2f6b5f;
  --accent-light: #d9ece6;
  --sun: #f3d7a0;
  --stone: #dfe6ed;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.page {
  overflow-x: hidden;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 6vw 10px;
}

.brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--accent-light);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 38px 6vw 28px;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
  line-height: 1.15;
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 340px;
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.section {
  padding: 46px 6vw;
}

.section.alt {
  background: var(--paper);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.offset-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(24, 34, 43, 0.08);
}

.offset-media {
  flex: 1 1 280px;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--stone);
  transform: translateY(28px);
}

.image-wrap {
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
}

.split-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.split-grid .panel {
  flex: 1 1 260px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
}

.image-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(24, 34, 43, 0.08);
}

.spaced-top {
  margin-top: 26px;
}

.image-card .image-wrap {
  height: 160px;
}

.pricing {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.wide-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  border-radius: 26px;
  padding: 30px;
  color: #ffffff;
  background: #20353f;
}

.wide-banner .banner-text {
  flex: 1 1 280px;
}

.wide-banner .banner-image {
  flex: 1 1 240px;
  min-height: 200px;
  border-radius: 22px;
  overflow: hidden;
  background: #44525d;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.form-block {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 36px rgba(24, 34, 43, 0.08);
}

.form-block form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd7de;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 22px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  padding: 36px 6vw;
  background: #11181f;
  color: #e5edf2;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0 20px;
  color: #c6d2da;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c6d2da;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 30px rgba(24, 34, 43, 0.15);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: var(--sun);
  color: #1f2a33;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.two-column .col {
  flex: 1 1 300px;
}

.bg-ledger {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1b2a33;
  color: #ffffff;
}

.bg-ledger .panel {
  background: rgba(17, 24, 31, 0.72);
  color: #ffffff;
}

.page-title {
  padding: 20px 6vw 0;
}

.page-title h1 {
  font-size: 2.3rem;
  margin-bottom: 6px;
}

.simple-card {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(24, 34, 43, 0.08);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
