* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2a2e;
  background: #f6f7f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 0 10px;
  gap: 24px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  background: #e9efe7;
  color: #2a3b2f;
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe5df;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: #eef3ee;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin-top: 26px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0 24px;
}

.hero-copy h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-primary,
.btn-secondary,
.btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.btn-primary {
  background: #2c4730;
  color: #ffffff;
}

.btn-primary:hover {
  background: #223526;
}

.btn-secondary {
  background: #ffffff;
  color: #2c4730;
  border: 1px solid #d0d8d1;
}

.btn-secondary:hover {
  background: #eef3ee;
}

.btn-inline {
  background: transparent;
  color: #2c4730;
  padding: 0;
}

.btn-inline:hover {
  text-decoration: underline;
}

.hero-visual {
  flex: 0.9;
  position: relative;
}

.hero-visual .image-frame {
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #dfe8df;
}

.hero-visual .floating-card {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  width: 240px;
}

.floating-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.floating-card p {
  margin: 0;
  font-size: 13px;
}

.offset-section {
  display: flex;
  gap: 28px;
  margin: 120px 0 80px;
  align-items: center;
}

.offset-section.reverse {
  flex-direction: row-reverse;
}

.offset-section .image-frame {
  flex: 1;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #e3e8e4;
}

.offset-section .content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  margin-top: -40px;
}

.pill {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #496457;
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.asym-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.asym-row .card {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card .image-frame {
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background: #e0e7e2;
}

.card h4 {
  margin: 0;
  font-size: 16px;
}

.price {
  font-weight: 700;
  color: #1a3a25;
}

.layered-band {
  background: #e9efe7;
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  margin: 80px 0 60px;
  position: relative;
}

.layered-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(233, 239, 231, 0.92);
  z-index: 0;
}

.layered-band::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #c8d8cb;
  border-radius: 50%;
  right: 8%;
  top: -60px;
  z-index: 1;
}

.band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  align-items: center;
}

.band-inner .content {
  flex: 1.2;
}

.band-inner .image-frame {
  flex: 0.8;
  height: 280px;
  border-radius: 26px;
  overflow: hidden;
  background: #d6e0d4;
}

.testimonial-line {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 20px;
  margin-top: 16px;
}

.testimonial-line span {
  font-size: 13px;
  color: #516258;
}

.form-shell {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: 30px;
}

.form-shell .info-panel {
  flex: 0.8;
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell form {
  flex: 1;
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d0d8d1;
  font-size: 14px;
  font-family: inherit;
  background: #f8faf7;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #d7ded7;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: #4a5850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
  background: #2c4730;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.sticky-cta:hover {
  background: #223526;
}

.policy-page h1 {
  margin-top: 40px;
  font-size: 30px;
}

.policy-page section {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  margin-top: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.contact-blocks {
  display: flex;
  gap: 24px;
  margin-top: 26px;
}

.contact-block {
  flex: 1;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 12px;
  flex-direction: column;
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

@media (max-width: 960px) {
  .hero,
  .offset-section,
  .band-inner,
  .form-shell,
  .contact-blocks {
    flex-direction: column;
  }

  .hero-visual .floating-card {
    position: static;
    margin-top: 16px;
  }

  .offset-section .content {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
