:root {
  --green: #315f36;
  --green-dark: #1f3f27;
  --sage: #7fa569;
  --cream: #fbf6ed;
  --cream-2: #f4ead9;
  --gold: #d3a72f;
  --brown: #5a2b07;
  --text: #25251f;
  --muted: #707466;
  --white: #fff;
  --line: rgba(49, 95, 54, .15);
  --shadow: 0 18px 48px rgba(31, 63, 39, .08);
  --radius: 14px;
  --container: 1120px;
  --side: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

p {
  line-height: 1.7;
}

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

svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.wrap {
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin-inline: auto;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: opacity .55s ease, visibility .55s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.preloader-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--cream);
  opacity: 0;
  transform: translateY(8px) scale(.98);
  animation: preloaderLogo .9s ease forwards;
}

.preloader-line {
  position: relative;
  width: 132px;
  height: 1px;
  overflow: hidden;
  background: rgba(49, 95, 54, .16);
}

.preloader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 46%;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: preloaderLine 1.1s ease-in-out infinite;
}

.preloader-text {
  margin: 0;
  color: var(--sage);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@keyframes preloaderLogo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloaderLine {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(240%);
  }
}

/* Header */
.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(var(--container), calc(100% - var(--side) * 2));
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 246, 237, .86);
  backdrop-filter: blur(16px);
  transition: .25s ease;
}

.header.is-scrolled {
  top: 12px;
  box-shadow: 0 14px 36px rgba(31, 63, 39, .1);
  background: rgba(251, 246, 237, .96);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--cream);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brown);
  font-size: 17px;
  line-height: 1;
  letter-spacing: -.03em;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 650;
}

.nav a {
  opacity: .72;
}

.nav a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 760;
  transition: .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(31, 63, 39, .13);
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, .45);
  color: var(--green-dark);
}

.btn-light {
  background: var(--cream);
  color: var(--green-dark);
}

.menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  cursor: pointer;
}

.menu span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: .2s ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 92px;
  min-height: 760px;
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 22%, rgba(211, 167, 47, .16), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(127, 165, 105, .12), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-dark);
  letter-spacing: -.035em;
}

h1 {
  max-width: 610px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brown);
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1.02;
  font-weight: 700;
}

h2 {
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  font-size: 19px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15.5px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .42);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 650;
}

/* Product Visual */
.visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

/* New CSS Hero IMG */
.hero-photo-card {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 4 / 5.2;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 11px;
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
}

/*.product-photo {
  position: relative;
  width: min(390px, 100%);
  height: 500px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(244, 234, 217, .96)),
    radial-gradient(circle at 50% 8%, rgba(211, 167, 47, .14), transparent 36%);
  box-shadow: var(--shadow);
  overflow: hidden;
}*/

/*.product-photo::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  bottom: 28px;
  border: 1px solid rgba(49, 95, 54, .12);
  border-radius: 12px;
}*/

/*.photo-logo {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 102px;
  height: 102px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--cream);
  padding: 4px;
}*/

/*.pack {
  position: absolute;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  width: 205px;
  height: 280px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7ead6, #fffaf0);
  border: 1px solid rgba(49, 95, 54, .18);
  box-shadow: 0 18px 42px rgba(31, 63, 39, .14);
  overflow: hidden;
}*/

/*.pack-top {
  height: 92px;
  display: grid;
  place-items: center;
  background: var(--cream);
}*/

.pack-top img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

/*.pack-label {
  height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--cream);
  background: var(--green-dark);
}*/

.pack-label small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pack-label strong {
  display: block;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: .95;
}

/*.rice-window {
  width: 92px;
  height: 92px;
  margin: 18px auto 0;
  border: 10px solid #fff7e8;
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, .18);
}*/

.texture-red {
  background:
    radial-gradient(circle, #9e3d34 0 5%, transparent 6%) 0 0 / 18px 18px,
    radial-gradient(circle, #c87563 0 5%, transparent 6%) 8px 7px / 22px 22px,
    #b44f42;
}

.texture-brown {
  background:
    radial-gradient(circle, #d7c19f 0 5%, transparent 6%) 0 0 / 18px 18px,
    radial-gradient(circle, #aa8656 0 5%, transparent 6%) 8px 6px / 20px 20px,
    #e6d3b4;
}

.texture-black {
  background:
    radial-gradient(circle, #111 0 4%, transparent 5%) 0 0 / 18px 18px,
    radial-gradient(circle, #4c3857 0 4%, transparent 5%) 8px 6px / 18px 18px,
    #211827;
}

/*.mini {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 38px rgba(31, 63, 39, .1);
  backdrop-filter: blur(10px);
}*/

/*.mini-left {
  left: 0;
  bottom: 78px;
}*/

/*.mini-right {
  right: 0;
  top: 74px;
}*/

/*.mini-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex: 0 0 52px;
}*/

.mini strong {
  display: block;
  color: var(--green-dark);
  font-size: 13px;
}

.mini small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

/* Sections */
.section {
  padding: 84px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  display: grid;
  justify-items: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr .58fr;
  gap: 22px;
}

.box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 14px 38px rgba(31, 63, 39, .05);
}

.intro-copy {
  padding: 30px;
  color: var(--muted);
  font-size: 15px;
}

.note {
  padding: 30px;
}

.note svg {
  width: 28px;
  height: 28px;
  color: var(--sage);
  margin-bottom: 14px;
}

.note strong {
  display: block;
  color: var(--green-dark);
  font-size: 17px;
  margin-bottom: 6px;
}

.note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(31, 63, 39, .055);
}

.product-img {
  position: relative;
  height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* New */
.product-img-photo {
  background: var(--cream-2);
}

.product-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
  transition: transform .45s ease;
}

.product-card:hover .product-img-photo img {
  transform: scale(1.6);
}

.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(31, 63, 39, .08));
  pointer-events: none;
}

.product-img-tea {
  background: linear-gradient(135deg, #f6ead5, #efe0c3);
}

.small-pack {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 132px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 9px;
  background: rgba(255, 249, 239, .9);
  box-shadow: 0 14px 30px rgba(31, 63, 39, .14);
  transform: rotate(-3deg);
}

.small-pack.dark {
  background: rgba(30, 29, 27, .9);
  color: var(--cream);
}

.small-pack img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.small-pack span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 800;
  line-height: .96;
  color: var(--brown);
}

.small-pack.dark span {
  color: var(--cream);
}

.product-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(211, 167, 47, .14);
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tag svg {
  width: 14px;
  height: 14px;
}

.product-body p:not(.tag) {
  min-height: 96px;
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 0;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-bottom strong {
  color: var(--green-dark);
  font-size: 14px;
}

.product-bottom a {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit {
  padding: 26px;
  min-height: 230px;
}

.benefit svg {
  width: 30px;
  height: 30px;
  color: var(--sage);
  margin-bottom: 38px;
}

.benefit p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

/* Reseller */
.reseller {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 18px;
}

.reseller-main {
  padding: 42px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 20%, rgba(211, 167, 47, .18), transparent 30%),
    linear-gradient(135deg, #1f3f27, #315f36);
  color: var(--cream);
}

.reseller-main h2 {
  color: var(--cream);
}

.reseller-main p {
  max-width: 660px;
  color: rgba(251, 246, 237, .78);
  font-size: 15px;
}

.reseller-main ul {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(251, 246, 237, .88);
  font-size: 14px;
}

.reseller-main li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.reseller-main li svg {
  color: var(--gold);
}

.reseller-side {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-label {
  width: max-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(211, 167, 47, .14);
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.reseller-stats {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.reseller-stat-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(251, 246, 237, .58);
}

.reseller-stat-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(127, 165, 105, .14);
  color: var(--green);
}

.reseller-stat-icon svg {
  width: 20px;
  height: 20px;
}

.reseller-stat-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.reseller-stat-item span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 26px;
}

.step .num {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 34px;
  display: block;
}

.step svg {
  width: 28px;
  height: 28px;
  color: var(--sage);
  margin-bottom: 14px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .58);
}

summary {
  cursor: pointer;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 820;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Final CTA */
.final {
  padding: 60px 0 84px;
}

.final-box {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 44px 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 18%, rgba(211, 167, 47, .18), transparent 28%),
    linear-gradient(135deg, #1f3f27, #315f36);
  color: var(--cream);
}

.final-box img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--cream);
  margin-bottom: 18px;
}

.final-box h2 {
  color: var(--cream);
  max-width: 560px;
}

.final-box p:not(.eyebrow) {
  margin: 14px 0 22px;
  color: rgba(251, 246, 237, .76);
  font-size: 15px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer strong {
  color: var(--green-dark);
  display: block;
  margin-bottom: 4px;
}

.footer a {
  color: var(--green);
  font-weight: 800;
  margin-left: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  color: var(--muted);
  font-size: 12.5px;
  background: rgba(251, 246, 237, .72);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--green);
  font-weight: 800;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.footer-brand strong {
  color: var(--green-dark);
  display: block;
  margin-bottom: 4px;
}

.footer-brand span {
  color: var(--muted);
}

.footer-marketplace {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-marketplace > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-marketplace a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .58);
  transition: .2s ease;
}

.footer-marketplace a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 63, 39, .10);
}

.footer-marketplace img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a {
  color: var(--green);
  font-weight: 800;
  margin-left: 0;
}

@media (max-width: 760px) {
  .footer-bottom-inner {
    display: grid;
    gap: 8px;
  }

	  .footer-main {

    grid-template-columns: 1fr;

    align-items: start;

    gap: 18px;

  }

  .footer-marketplace {

    flex-wrap: wrap;

  }

  .footer-links {

    flex-wrap: wrap;

  }
}

/* Floating WhatsApp */
.floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #25d366;
  color: white;
  box-shadow: 0 16px 34px rgba(31, 63, 39, .22);
}

.floating svg {
  width: 25px;
  height: 25px;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  :root {
    --container: 760px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-grid,
  .intro-grid,
  .reseller,
  .faq {
    grid-template-columns: 1fr;
  }

  .visual {
    order: -1;
  }

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

@media (max-width: 760px) {
  :root {
    --side: 18px;
  }

  .header {
    height: 64px;
    top: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand span {
    display: none;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 50%;
    transform: translate(-50%, -8px);
    width: min(420px, calc(100vw - 36px));
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(251, 246, 237, .97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .header .btn {
    display: none;
  }

  .menu {
    display: block;
  }

  .menu.open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu.open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    padding: 112px 0 64px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .actions {
    display: grid;
  }

  .actions .btn {
    width: 100%;
  }

  .visual {
    min-height: auto;
  }

  /*.product-photo {
    height: 440px;
    width: 100%;
  }*/
	
.hero-photo-card {
  width: 100%;
  aspect-ratio: 4 / 5;
}

  .mini {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .product-grid,
  .benefit-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .product-body p:not(.tag) {
    min-height: auto;
  }

  .footer .wrap {
    display: grid;
  }

  .footer a {
    margin-left: 0;
    margin-right: 18px;
  }
}