* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2a24;
  background: #f5f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw 12px;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #2b4a3c;
  background: #dfe8df;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4vw;
  padding: 40px 6vw 30px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-panel {
  flex: 0.9;
  background-color: #c8d4cb;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.hero-panel img {
  width: 100%;
  height: 100%;
}

.hero-highlight {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  max-width: 320px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2a24;
  color: #f8f7f3;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f2a24;
  color: #1f2a24;
}

.section {
  padding: 40px 6vw;
}

.offset-row {
  display: flex;
  gap: 4vw;
  align-items: center;
}

.offset-card {
  flex: 1;
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.offset-media {
  flex: 0.9;
  background: #dfe4d8;
  border-radius: 20px;
  overflow: hidden;
}

.floating-note {
  margin-top: -30px;
  margin-left: 8vw;
  background: #fef7e5;
  padding: 18px 22px;
  border-radius: 18px;
  max-width: 420px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-image {
  background: #cfd9d3;
}

.split-section {
  display: flex;
  gap: 4vw;
  align-items: flex-start;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 10px;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #e8efe8;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9dcd7;
}

.pricing-item span {
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #2b4a3c;
  color: #f7f6f2;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.form-shell {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7cfc9;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1f2a24;
  color: #f7f6f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2a24;
  color: #ffffff;
}

.cookie-reject {
  background: #e8efe8;
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.hero-background {
  background-color: #c7d5ce;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 50px 6vw;
  margin: 10px 6vw 30px;
  color: #f7f6f2;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1519682337058-a94d519337bc?w=1400&q=80");
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1482192505345-5655af888cc4?w=1400&q=80");
}

.hero-background .btn-outline {
  border-color: #f7f6f2;
  color: #f7f6f2;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-frame {
  background: #d5dfd4;
  border-radius: 18px;
  overflow: hidden;
}

.thin {
  max-width: 720px;
}

@media (max-width: 900px) {
  .hero,
  .offset-row,
  .split-section {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
