:root {
  --bg: #fffaf5;
  --paper: #ffffff;
  --ink: #26332f;
  --muted: #6f7d77;
  --line: #e8ddd1;
  --brand: #4c8a62;
  --brand-dark: #326346;
  --accent: #d68646;
  --soft: #edf6ec;
  --shadow: 0 22px 60px rgba(47, 61, 55, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 246, 236, 0.9), rgba(255, 250, 245, 0) 360px),
    var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 221, 209, 0.8);
  background: rgba(255, 250, 245, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: none;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 42px;
  display: grid;
  gap: 36px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 9vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(76, 138, 98, 0.24);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button.full {
  width: 100%;
}

.hero-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(230px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(38, 51, 47, 0.18);
  padding: 16px;
  backdrop-filter: blur(12px);
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.floating-note strong {
  display: block;
  font-size: 1.2rem;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  padding: 0;
  box-shadow: 0 12px 36px rgba(47, 61, 55, 0.07);
}

.intro-strip div {
  background: rgba(255, 255, 255, 0.8);
  padding: 22px;
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  font-size: 1.05rem;
}

.intro-strip span {
  color: var(--muted);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.offer h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 26px;
}

.about-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-image img {
  height: 320px;
  object-fit: cover;
}

.about-text {
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.68);
  padding: 24px;
}

.about-text p {
  margin-bottom: 0;
  color: #55635e;
  font-size: 1rem;
}

.benefits {
  width: 100%;
  max-width: none;
  background: #f2f7ef;
  padding-right: max(16px, calc((100vw - 1120px) / 2));
  padding-left: max(16px, calc((100vw - 1120px) / 2));
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-card,
.testimonial {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(47, 61, 55, 0.08);
}

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

.benefit-card h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.benefit-card p,
.testimonial p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  gap: 16px;
}

.testimonial {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial p {
  font-size: 1.05rem;
}

.testimonial span {
  display: block;
  margin-top: 20px;
  font-weight: 800;
}

.offer {
  padding-top: 36px;
}

.offer-panel {
  display: grid;
  gap: 28px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(50, 99, 70, 0.94), rgba(38, 51, 47, 0.98)),
    var(--ink);
  color: #fff;
  padding: clamp(28px, 6vw, 54px);
  box-shadow: var(--shadow);
}

.offer-panel .eyebrow,
.offer-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.offer-panel h2 {
  color: #fff;
}

.price-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
}

.price-label,
.price-note {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.price {
  display: block;
  margin: 4px 0;
  font-size: clamp(3rem, 11vw, 5.5rem);
  line-height: 1;
}

.price-note {
  margin-bottom: 22px;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

@media (min-width: 680px) {
  .nav-links {
    display: flex;
  }

  .intro-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-list,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .hero {
    min-height: calc(100vh - 72px);
    grid-template-columns: 0.96fr 1.04fr;
    align-items: center;
    padding: 40px 0 54px;
  }

  .hero-card,
  .hero-card img {
    min-height: 560px;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .about-image img {
    height: 460px;
  }

  .benefit-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offer-panel {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .logo {
    max-width: 130px;
    line-height: 1.1;
  }

  .nav-cta {
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero,
  .section,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  .button {
    width: 100%;
  }
}
