:root {
  color-scheme: light;
  --red: #bf0000;
  --green: #09d100;
  --green-dark: #08bf00;
  --pink: #ffe0e0;
  --ink: #070707;
  --white: #ffffff;
  --cookie-green: #61a229;
  --shadow: 0 16px 34px rgba(22, 9, 9, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.hero-shell {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: #ffffff;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 78vh;
  height: 717px;
  max-height: calc(100dvh - 1px);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 27%, #ffe8e8 62%, #ffd6d6 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -165px;
  width: 118vw;
  height: 205px;
  border-radius: 50% 50% 0 0;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: 0;
}

.mobile-cert {
  display: none;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  left: calc(50% - 565px);
  top: 74px;
  width: 650px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--red);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  width: 535px;
  margin: 12px 0 0;
  color: #000000;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}

.benefits {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  min-height: 37px;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #000000;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 400;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 16px;
  height: 9px;
  border-left: 5px solid var(--red);
  border-bottom: 5px solid var(--red);
  transform: rotate(-45deg);
}

.hero-product {
  position: absolute;
  z-index: 1;
  left: calc(50% + 183px);
  top: 50px;
  width: 168px;
  height: 533px;
  display: flex;
  justify-content: center;
}

.hero-product img {
  width: 168px;
  height: 533px;
  object-fit: contain;
  display: block;
}

.hero-cta {
  position: absolute;
  z-index: 1;
  left: calc(50% - 15px);
  top: 614px;
  width: 380px;
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(77, 28, 28, 0.24);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-cta:hover {
  background: var(--green-dark);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(1.5px);
  cursor: pointer;
}

.cookie-popup {
  width: min(1060px, 100%);
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #353535;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.cookie-copy h2 {
  margin: 0 0 6px;
  color: #222222;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
}

.cookie-copy p {
  max-width: 800px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.38;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  color: #333333;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.cookie-btn.muted {
  background: #dedede;
}

.cookie-btn.accept {
  background: var(--cookie-green);
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero {
    height: 100dvh;
    min-height: 100dvh;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #fff3f3 100%);
  }

  .hero::after {
    display: none;
  }

  .mobile-cert {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background: linear-gradient(90deg, #ffb000 0%, #fff56a 100%);
    color: #000000;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    text-align: center;
  }

  .hero-copy {
    left: 20px;
    top: 1238px;
    width: calc(100% - 40px);
  }

  .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(24px, 7.4vw, 34px);
  }

  .lead {
    width: min(100%, 390px);
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .benefits {
    margin-top: 18px;
    max-width: 410px;
  }

  .benefits li {
    min-height: auto;
    margin-bottom: 11px;
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .hero-product {
    left: 50%;
    right: auto;
    top: 76px;
    width: 315px;
    height: auto;
    justify-content: center;
    opacity: 1;
    transform: translateX(-50%);
  }

  .hero-product img {
    width: 315px;
    height: auto;
  }

  .hero-cta {
    top: auto;
    bottom: -90px;
    width: min(360px, calc(100% - 40px));
    min-height: 54px;
    border-radius: 18px;
    font-size: 15px;
    padding: 0 18px;
  }

  .cookie-overlay {
    padding: 14px;
  }

  .cookie-popup {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .cookie-copy p {
    font-size: 12.5px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .cookie-btn {
    min-height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .hero-product {
    left: 50%;
    right: auto;
    top: 76px;
    width: min(315px, calc(100vw - 75px));
  }

  .hero-product img {
    width: min(315px, calc(100vw - 75px));
  }

  .benefits {
    max-width: 290px;
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-btn.accept {
    grid-column: 1 / -1;
  }
}
