@font-face {
  font-family: main-font;
  src: url("assets/fonts/PlusJakartaSans-Regular.ttf");
}

@font-face {
  font-family: bold-font;
  src: url("assets/fonts/PlusJakartaSans-Bold.ttf");
}

@font-face {
  font-family: medium-font;
  src: url("assets/fonts/PlusJakartaSans-Medium.ttf");
}

@font-face {
  font-family: cervo-light;
  src: url("assets/fonts/Cervo-Light.otf");
}

:root {
  color-scheme: light;
  --ink: #272727;
  --nav: #262f45;
  --mint: #d8efe8;
  --teal: #3e8e7e;
  --deep: #254a45;
  --max: 1110px;
  font-family: main-font, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
}

body.cookie-locked {
  overflow: hidden;
}

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

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  height: 114px;
  background: #ffffff;
}

.nav-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  display: block;
  width: 200px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--nav);
  font-family: medium-font, Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
}

.order-button {
  min-width: 240px;
  height: 58px;
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #347d70;
  color: #ffffff;
  font-family: bold-font, Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.mobile-menu {
  display: none;
}

.first-fold {
  min-height: calc(100vh - 114px);
}

.hero-main {
  min-height: 541px;
  background: linear-gradient(90deg, var(--mint) 72%, var(--teal) 72%);
  overflow: hidden;
}

.hero-grid {
  min-height: 541px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: center;
}

.hero-copy {
  padding: 46px 0 36px;
}

.hero-copy h1 {
  margin: 0;
  font-family: bold-font, Arial, sans-serif;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.cert-link {
  display: inline-flex;
  margin-top: 40px;
}

.cert-link img {
  display: block;
  width: 480px;
  max-width: 100%;
  height: auto;
  filter: invert(1);
}

.hero-product {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
}

.hero-product img {
  display: block;
  width: 85%;
  max-width: 378px;
  height: auto;
  transform: translate(15px, -1px);
  filter: drop-shadow(0 20px 30px rgba(15, 74, 63, 0.16));
}

.benefit-strip {
  min-height: 113px;
  background: var(--deep);
}

.benefit-row {
  min-height: 113px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.benefit-item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.benefit-item span {
  font-family: cervo-light, "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 23, 28, 0.34);
  backdrop-filter: blur(2px);
}

.cookie-modal {
  position: relative;
  width: min(520px, 100%);
  border-radius: 8px;
  padding: 28px 30px 30px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(10, 28, 35, 0.28);
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #e9f3f0;
  color: var(--deep);
  font-family: bold-font, Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: bold-font, Arial, sans-serif;
  font-size: 26px;
  line-height: 1.15;
}

.cookie-modal p {
  margin: 0;
  color: #52605e;
  font-size: 15px;
  line-height: 1.48;
}

.cookie-modal p a {
  color: #2e7b6e;
  font-family: bold-font, Arial, sans-serif;
  text-decoration: underline;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.cookie-button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  font-family: bold-font, Arial, sans-serif;
  font-size: 17px;
  cursor: pointer;
}

.cookie-button.primary {
  background: #347d70;
  color: #ffffff;
}

.cookie-button.secondary {
  background: #eaf2f0;
  color: #254a45;
}

@media (max-width: 992px) {
  body {
    overflow: hidden;
  }

  .wrap {
    width: calc(100% - 30px);
  }

  .site-header {
    height: 82px;
  }

  .logo-link img {
    width: 200px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #ffffff;
  }

  .mobile-menu span {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: var(--deep);
  }

  .first-fold {
    min-height: calc(100vh - 82px);
    background: var(--mint);
  }

  .hero-main {
    min-height: calc(100vh - 196px);
    background: var(--mint);
  }

  .hero-grid {
    min-height: calc(100vh - 196px);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .hero-copy {
    width: 100%;
    padding: 20px 0 14px;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 365px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.08;
  }

  .hero-copy p {
    max-width: 350px;
    margin: 22px auto 0;
    font-size: 20px;
    line-height: 1.35;
  }

  .cert-link {
    margin-top: 40px;
  }

  .cert-link img {
    width: 360px;
  }

  .hero-product {
    width: 100%;
    min-height: 500px;
    align-self: center;
  }

  .hero-product img {
    width: min(85vw, 332px);
    max-width: 332px;
    transform: translate(0, 12px);
  }

  .benefit-strip {
    min-height: 114px;
  }

  .benefit-row {
    min-height: 114px;
    gap: 8px;
    justify-content: space-between;
  }

  .benefit-item {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
    width: 32%;
  }

  .benefit-item span {
    font-size: 18px;
  }

  .cookie-overlay {
    padding: 14px;
  }

  .cookie-modal {
    padding: 24px 22px 22px;
  }

  .cookie-modal h2 {
    font-size: 23px;
  }

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

@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 30px);
  }

  .hero-product {
    min-height: 494px;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

  .hero-copy p {
    font-size: 20px;
  }

  .cert-link {
    margin-top: 39px;
  }
}
