:root {
  --pink: #f8c6dd;
  --hot-pink: #ff5475;
  --red: #ff0004;
  --orange: #ef7c14;
  --green: #34e000;
  --ink: #202020;
  --muted: #383838;
  --paper: #f5f2ed;
  --section-max: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

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

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

.site-header,
.site-footer {
  width: 100%;
  background: #161616;
}

.site-header {
  position: relative;
  z-index: 10;
}

.nav-bar {
  width: min(100%, 1440px);
  min-height: 46px;
  margin: 0 auto;
  padding: 5px 23px;
  display: flex;
  align-items: center;
  gap: 23px;
}

.brand {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 19px;
  color: #ffffff;
  font-size: 15.7px;
  font-weight: 600;
  line-height: 1;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffd6de;
}

.hero {
  min-height: 704px;
  padding: 26px 0 30px;
  display: grid;
  grid-template-columns: minmax(360px, 41.5%) minmax(720px, 58.5%);
  align-items: center;
  background-color: var(--pink);
  background-image: url("assets/figma/hero-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-copy {
  max-width: 575px;
  padding-left: clamp(24px, 3.6vw, 56px);
  text-align: center;
}

.hero-kicker,
.hero-subtitle {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero-kicker {
  font-size: clamp(24px, 2.15vw, 33px);
}

.hero h1 {
  margin: 16px 0 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.2vw, 61px);
  line-height: 1.06;
  letter-spacing: 0;
}

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

.hero-subtitle {
  font-size: clamp(25px, 2.2vw, 33px);
  line-height: 1.12;
}

.hero-description {
  margin: 22px 0 0;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.18;
}

.hero-description strong,
.hero-description b {
  font-weight: 800;
}

.hero-gallery {
  display: grid;
  gap: 29px;
  overflow: hidden;
  padding: 0 0 0 28px;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 25px;
  will-change: transform;
}

.marquee-track img {
  width: clamp(205px, 18vw, 263px);
  height: clamp(242px, 21.2vw, 310px);
  border-radius: 15px;
  object-fit: cover;
}

.marquee-left .marquee-track {
  animation: slide-left 26s linear infinite;
}

.marquee-right .marquee-track {
  animation: slide-right 30s linear infinite;
}

.texture {
  background-color: var(--paper);
  background-image: url("assets/figma/paper-texture.png");
  background-position: center;
  background-size: cover;
}

.section-inner {
  width: min(100%, var(--section-max));
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.product-section {
  min-height: 566px;
  padding: 68px 0 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(420px, 535px) minmax(470px, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 132px);
}

.product-mockup {
  width: min(100%, 535px);
}

.product-copy {
  text-align: center;
}

.product-copy h2 {
  margin: 0 0 76px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.2vw, 45px);
  line-height: 1.08;
}

.product-copy h2 span,
.product-copy .big-line span {
  color: var(--red);
}

.cta-button {
  display: inline-flex;
  min-height: 96px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 22px 31px;
  border: 0;
  border-radius: 18px;
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(177, 78, 10, 0.22);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 16px 28px rgba(177, 78, 10, 0.28);
}

.big-line {
  margin: 72px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.1vw, 42px);
  font-weight: 700;
  line-height: 1.06;
}

.product-copy > p:not(.big-line) {
  max-width: 430px;
  margin: 8px auto 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
}

.benefits {
  min-height: 763px;
  padding: 60px 0;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(440px, 568px) minmax(620px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.benefits-copy h2 {
  margin: 0 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.1vw, 42px);
  line-height: 1.14;
}

.benefits-copy ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-copy li {
  position: relative;
  min-height: 62px;
  padding-left: 42px;
  color: #393939;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.22;
}

.benefits-copy li::before,
.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--hot-pink);
}

.side-marquee {
  overflow: hidden;
  width: calc(100% + 220px);
  margin-right: -220px;
}

.side-track {
  display: flex;
  width: max-content;
  gap: 54px;
  will-change: transform;
  animation: slide-right 40s linear infinite;
}

.side-track img {
  width: clamp(230px, 25vw, 398px);
  height: clamp(331px, 35.8vw, 573px);
  object-fit: cover;
}

.bonus-section {
  padding: 0 0 54px;
}

.bonus-section h2,
.testimonials h2,
.recipe-strip h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(40px, 4.15vw, 59px);
  font-weight: 800;
  line-height: 1.12;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 31px;
  margin-top: 34px;
}

.bonus-card {
  min-height: 545px;
  padding: 24px 24px 26px;
  border-radius: 17px;
  background: var(--hot-pink);
  color: #ffffff;
  text-align: center;
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 306 / 207;
  border-radius: 14px;
  object-fit: cover;
}

.bonus-card h3 {
  margin: 17px 0 6px;
  font-size: clamp(31px, 3.15vw, 48px);
  line-height: 1.05;
}

.bonus-card p {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 800;
  line-height: 1.22;
}

.old-price {
  position: relative;
  display: inline-block;
  margin: 22px 0 6px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
}

.old-price::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 5px;
  background: #ffffff;
  transform: translateY(-50%);
}

.bonus-card strong {
  display: block;
  color: #82ff91;
  font-size: clamp(44px, 4.5vw, 65px);
  line-height: 1;
}

.testimonials {
  padding: 64px 0 82px;
  background-color: var(--pink);
  background-image: url("assets/figma/mobile-pink-bg.png");
  background-size: 520px auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 309px));
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.testimonial-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(95, 27, 45, 0.22);
}

.recipe-strip {
  padding: 56px 0 70px;
  background: var(--hot-pink);
  color: #ffffff;
  overflow: hidden;
}

.recipe-strip h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.8vw, 52px);
}

.wide-marquee {
  margin-top: 32px;
  overflow: hidden;
}

.wide-track {
  display: flex;
  width: max-content;
  gap: 38px;
  will-change: transform;
  animation: slide-left 52s linear infinite;
}

.wide-track img {
  width: clamp(190px, 24vw, 346px);
  height: clamp(273px, 34.6vw, 497px);
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(69, 15, 27, 0.25);
}

.offer {
  min-height: 975px;
  padding: 92px 32px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--pink);
  background-image: url("assets/figma/offer-bg.png");
  background-position: center;
  background-size: cover;
}

.offer-title {
  width: min(100%, 1054px);
  margin: 0 0 28px;
  color: #222222;
  text-align: center;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.08;
}

.offer-card {
  width: min(100%, 454px);
  min-height: 688px;
  padding: 18px 32px 34px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(125, 120, 62, 0.92), rgba(148, 11, 60, 0.98)),
    #8b1647;
  color: #ffffff;
  text-align: center;
}

.price-before {
  display: inline-block;
  position: relative;
  margin: 0;
  font-size: 43px;
  font-weight: 800;
  line-height: 1;
}

.price-before::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 49%;
  height: 4px;
  background: #ffffff;
}

.price {
  margin: 0 0 26px;
  font-size: 35px;
  font-weight: 800;
  line-height: 1.02;
}

.price strong {
  display: block;
  margin-top: 4px;
  padding: 0 11px;
  background: var(--green);
  font-size: clamp(58px, 5.1vw, 72px);
  line-height: 0.95;
}

.offer-card ul {
  display: grid;
  gap: 25px;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.offer-card li {
  position: relative;
  padding-left: 27px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
  text-decoration: underline;
  text-decoration-color: #58ff39;
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}

.offer-card li::before {
  width: 16px;
  height: 16px;
  background: #ffffff;
}

.guarantee {
  width: min(100%, 330px);
  margin: 0 auto 25px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.offer-button {
  min-height: 99px;
  margin-top: 36px;
  border-radius: 15px;
  font-size: clamp(20px, 1.85vw, 27px);
}

.site-footer {
  background: #ffffff;
}

.footer-nav .nav-links {
  color: #000000;
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slide-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .hero-gallery {
    padding-left: 0;
  }

  .product-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .benefits-copy {
    max-width: 720px;
    text-align: left;
  }

  .side-marquee {
    width: 100vw;
    margin-right: 0;
  }
}

@media (max-width: 820px) {
  .nav-bar {
    justify-content: center;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 726px;
    padding-bottom: 0;
    background-image: url("assets/figma/mobile-pink-bg.png");
    background-position: center top;
  }

  .hero h1 {
    color: #000000;
  }

  .hero h1 span {
    color: #000000;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .hero-kicker {
    color: #ffffff;
    font-size: 20px;
  }

  .hero h1 {
    margin: 8px 0 8px;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 35px;
    line-height: 1.18;
  }

  .hero-subtitle {
    color: #ffffff;
    font-size: 19px;
  }

  .hero-description {
    color: #ffffff;
    font-size: 16px;
  }

  .hero-gallery {
    gap: 14px;
  }

  .marquee-track {
    gap: 16px;
  }

  .marquee-track img {
    width: 184px;
    height: 217px;
  }

  .section-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-section {
    padding-top: 26px;
  }

  .product-copy h2 {
    margin-bottom: 24px;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 32px;
  }

  .cta-button {
    min-height: 63px;
    border-radius: 14px;
    font-size: 18px;
  }

  .big-line {
    margin-top: 32px;
    font-size: 32px;
  }

  .benefits {
    padding-top: 34px;
  }

  .benefits-copy h2 {
    font-size: 31px;
  }

  .benefits-copy li {
    min-height: auto;
    font-size: 18px;
  }

  .bonus-section h2,
  .testimonials h2,
  .recipe-strip h2 {
    font-size: 34px;
  }

  .bonus-grid,
  .testimonial-grid {
    grid-template-columns: minmax(0, 309px);
  }

  .bonus-card {
    min-height: auto;
  }

  .testimonials {
    padding-top: 42px;
  }

  .offer {
    min-height: auto;
    padding: 64px 16px;
  }

  .offer-card {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    width: calc(100% - 54px);
    justify-content: space-between;
    gap: 7px;
    font-size: 12px;
  }

  .brand {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .hero {
    min-height: 704px;
    padding-top: 24px;
  }

  .hero-copy {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-mockup {
    width: min(100%, 368px);
  }

  .bonus-card h3 {
    font-size: 36px;
  }

  .old-price {
    font-size: 34px;
  }

  .offer-card li {
    font-size: 19px;
  }

  .price strong {
    font-size: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
