.home-page {
  --cream: #f7f3ea;
  --cream-light: #fffdf7;
  --green: #1f6b45;
  --green-dark: #123d2b;
  --green-soft: #e6efdd;
  --ink: #15322b;
  --muted: #52665f;
  --line: #d9ccb8;
  --red: #d92d20;
  --blue: #2e78d2;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page :where(h1, h2, h3, p) {
  margin-top: 0;
  letter-spacing: 0;
}

.home-page :where(a) {
  color: inherit;
  text-decoration: none;
}

.home-page .container {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.home-page header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 252, 246, 0.92);
  border-bottom: 1px solid rgba(217, 204, 184, 0.88);
  backdrop-filter: blur(14px);
}

.home-page .nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
}

.home-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--green-dark);
  font-weight: 950;
  line-height: 1;
}

.home-page .brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(31, 107, 69, 0.12);
}

.home-page .brand-name {
  display: grid;
  gap: 2px;
}

.home-page .brand-name strong {
  color: var(--green-dark);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.home-page .brand-name small {
  color: #53725f;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-page .menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-light);
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.home-page .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  color: #153a2d;
  font-size: 0.98rem;
  font-weight: 850;
}

.home-page .nav-links a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.home-page .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.home-page .nav-links a:hover::after,
.home-page .nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.home-page .nav-right {
  margin-left: 12px;
}

.home-page .language-dropdown {
  position: relative;
}

.home-page .language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.88);
  color: var(--green-dark);
  font: inherit;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(31, 107, 69, 0.08);
  cursor: pointer;
}

.home-page .language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 180px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf7;
  box-shadow: 0 18px 40px rgba(15, 27, 45, 0.14);
}

.home-page .language-dropdown.open .language-menu {
  display: grid;
  gap: 4px;
}

.home-page .language-option {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 850;
}

.home-page .language-option:hover,
.home-page .language-option.active {
  background: var(--green-soft);
}

.home-page .language-option small {
  color: #6a7b72;
  font-weight: 750;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 6%, rgba(31, 107, 69, 0.12), transparent 34%),
    radial-gradient(circle at 5% 92%, rgba(217, 45, 32, 0.075), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, var(--cream) 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: 0;
  width: 43vw;
  min-width: 430px;
  aspect-ratio: 1;
  border-radius: 0 0 0 100%;
  background: rgba(210, 226, 198, 0.38);
  pointer-events: none;
}

.home-hero .container {
  width: min(1760px, calc(100% - 84px));
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(640px, calc(100svh - 86px), 790px);
  padding: clamp(42px, 5.4vw, 70px) 0 clamp(34px, 4vw, 56px);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #e1ebd3;
  color: var(--green-dark);
  font-size: 0.94rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(31, 107, 69, 0.08);
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: clamp(3.6rem, 5.35vw, 6.35rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  color: var(--red);
}

.hero-copy p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.55vw, 1.28rem);
  line-height: 1.55;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(31, 107, 69, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.home-button:hover,
.home-button:focus-visible {
  transform: translateY(-2px);
  background: #185839;
  box-shadow: 0 20px 42px rgba(31, 107, 69, 0.24);
}

.home-button.secondary {
  background: rgba(255, 253, 247, 0.88);
  color: var(--green-dark);
  box-shadow: none;
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: -118px;
  right: calc(50% - 50vw);
  bottom: -112px;
  left: calc(50% - 50vw);
  min-width: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fffaf1 0%, rgba(255, 250, 241, 0.995) 20%, rgba(255, 250, 241, 0.92) 32%, rgba(255, 250, 241, 0.62) 45%, rgba(255, 250, 241, 0.22) 58%, transparent 72%),
    linear-gradient(180deg, #fffaf1 0%, rgba(255, 250, 241, 0.76) 8%, rgba(255, 250, 241, 0.18) 22%, transparent 38%, transparent 74%, rgba(247, 243, 234, 0.22) 84%, rgba(247, 243, 234, 0.86) 95%, var(--cream) 100%);
}

.hero-illustration {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100% !important;
  max-width: none !important;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  filter: none;
  transform: none;
}

.hero-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  transform: scale(1.015);
}

.feature-band {
  padding: 42px 0 46px;
  background: rgba(255, 253, 247, 0.8);
  border-top: 1px solid rgba(217, 204, 184, 0.7);
  border-bottom: 1px solid rgba(217, 204, 184, 0.7);
}

.feature-band h2 {
  margin-bottom: 30px;
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 14px 12px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.28;
}

.mini-icon,
.guide-icon {
  display: inline-grid;
  place-items: center;
  color: var(--green);
}

.mini-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.9;
}

.section-block {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--cream);
}

.section-block.light {
  background: #fffaf1;
  border-top: 1px solid rgba(217, 204, 184, 0.78);
  border-bottom: 1px solid rgba(217, 204, 184, 0.78);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

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

.section-label {
  margin-bottom: 12px;
  color: #b4531b;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.guide-card,
.product-tile,
.why-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 16px 36px rgba(31, 54, 42, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.guide-card {
  min-height: 206px;
  padding: 24px;
}

.guide-card:hover,
.product-tile:hover,
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 107, 69, 0.36);
  background: #fffdf7;
  box-shadow: 0 22px 48px rgba(31, 54, 42, 0.12);
}

.guide-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--green-soft);
}

.guide-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.guide-card h3,
.product-tile h3,
.why-card h3 {
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 1.12rem;
  line-height: 1.2;
}

.guide-card p,
.product-tile p,
.why-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 680;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.product-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
}

.product-badge {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(46, 120, 210, 0.16);
}

.product-badge.red {
  background: var(--red);
  box-shadow: 0 18px 34px rgba(217, 45, 32, 0.14);
}

.product-badge svg {
  width: 42px;
  height: 42px;
}

.product-tile strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-weight: 950;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  min-height: 240px;
  padding: 28px;
}

.why-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.founder-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdf7;
  box-shadow: 0 18px 42px rgba(31, 54, 42, 0.08);
}

.founder-mark {
  width: 68px;
  height: 68px;
  border-radius: 21px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 1.28rem;
  font-weight: 950;
}

.founder-note h2 {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.founder-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.home-page footer {
  padding: 34px 0;
  background: var(--green-dark);
  color: #f8f4e8;
}

.home-page footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.home-page footer p {
  margin: 0;
  color: inherit;
  font-weight: 750;
}

.home-page .footer-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.home-page .footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  .feature-list,
  .guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-hero .container {
    width: min(100% - 48px, 1320px);
  }

  .home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    gap: 28px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 100vw;
    min-height: clamp(320px, 52vw, 520px);
    overflow: hidden;
    transform: translateX(-50%);
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, #fffaf1 0%, rgba(255, 250, 241, 0.45) 16%, transparent 32%, transparent 72%, rgba(247, 243, 234, 0.8) 94%, var(--cream) 100%),
      linear-gradient(90deg, #fffaf1 0%, rgba(255, 250, 241, 0.6) 14%, transparent 34%);
  }

  .hero-illustration {
    position: absolute;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100%;
  }

  .hero-illustration img {
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
  }
}

@media (max-width: 920px) {
  .home-page .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .home-page .nav {
    align-items: center;
    flex-wrap: wrap;
  }

  .home-page .nav-links {
    order: 4;
    display: none;
    width: 100%;
    padding: 16px 0 6px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid var(--line);
  }

  .home-page .nav-links.open {
    display: flex;
  }

  .home-page .nav-right {
    margin-left: 0;
  }

  .product-grid,
  .why-grid,
  .founder-note {
    grid-template-columns: 1fr;
  }

  .founder-note .home-button {
    width: fit-content;
  }
}

@media (max-width: 700px) {
  .home-page .container,
  .home-hero .container {
    width: min(100% - 30px, 1320px);
  }

  .home-page .brand-name small {
    display: none;
  }

  .home-page .brand img {
    width: 38px;
    height: 38px;
  }

  .home-hero-grid {
    padding-top: 34px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .hero-actions,
  .home-button {
    width: 100%;
  }

  .hero-media {
    min-height: clamp(280px, 74vw, 390px);
  }

  .hero-media::before {
    background: linear-gradient(180deg, #fffaf1 0%, rgba(255, 250, 241, 0.35) 18%, transparent 34%, transparent 70%, rgba(247, 243, 234, 0.88) 94%, var(--cream) 100%);
  }

  .hero-illustration img {
    object-position: 66% center;
  }

  .feature-list,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    padding-inline: 0;
  }

  .product-tile {
    grid-template-columns: 1fr;
  }
}
