:root {
  color-scheme: light;
  --blue: #0a84ff;
  --blue-dark: #056ad2;
  --green: #18c215;
  --ink: #050608;
  --muted: #526070;
  --line: #dfe6ee;
  --panel: #f2f5f9;
  --white: #ffffff;
  --max: 944px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
}

body.cookie-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 46%, rgba(237, 252, 247, 0.86) 100%),
    radial-gradient(circle at 85% 40%, rgba(207, 247, 229, 0.78), transparent 36%),
    var(--white);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

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

.delivery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #151a21;
  font-size: 13px;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.delivery-link img {
  width: 32px;
  height: 22px;
  object-fit: cover;
}

.delivery-link strong {
  font-weight: 800;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 600;
}

.header-nav a {
  text-decoration: none;
}

.header-cta,
.discount-button,
.cookie-button {
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10, 132, 255, 0.22);
}

.header-cta {
  padding: 13px 25px;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  min-height: calc(100vh - 76px);
  gap: 18px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 52px 0 210px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 18px;
}

.rating-row img {
  width: 114px;
  height: auto;
  display: block;
}

.rating-row strong {
  font-weight: 900;
}

.rating-row span {
  max-width: 130px;
  line-height: 1.35;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(40px, 4.15vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

.subtitle {
  margin: 18px 0 20px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.18;
  font-weight: 900;
}

.discount-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  margin-bottom: 18px;
  font-size: 17px;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.26;
  font-weight: 900;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
}

.check-icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  display: inline-block;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(42deg);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  text-decoration: none;
}

.before-after {
  width: min(65vw, 780px);
  max-width: none;
  align-self: center;
  transform: translateX(26px);
  filter: drop-shadow(0 28px 60px rgba(42, 73, 94, 0.14));
}

.patch-product {
  position: absolute;
  width: min(24vw, 335px);
  right: 17%;
  bottom: 13%;
  filter: drop-shadow(0 24px 32px rgba(28, 55, 72, 0.22));
}

.cookie-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 18px 0 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -16px 40px rgba(23, 36, 52, 0.12);
}

.cookie-grid {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 36px;
  align-items: center;
}

.cookie-copy h2 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.15;
}

.cookie-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 500;
}

.cookie-copy a {
  color: var(--blue-dark);
  font-weight: 800;
}

.cookie-options {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--panel);
  color: #5b6573;
  font-size: 14px;
}

.cookie-options label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.cookie-options strong {
  margin-left: 2px;
  color: var(--blue);
  font-size: 12px;
}

.fake-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #c6d2df;
  border-radius: 6px;
  background: var(--white);
  display: inline-block;
  position: relative;
}

.fake-checkbox.active::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: rotate(42deg);
}

.cookie-actions {
  display: grid;
  gap: 8px;
}

.cookie-button {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  font-size: 15px;
}

.cookie-button.secondary {
  color: var(--ink);
  background: #dde1e7;
  box-shadow: none;
}

@media (max-width: 980px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

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

  .delivery-link,
  .header-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
    padding: 11px 16px;
    font-size: 14px;
  }

  .hero {
    min-height: calc(100vh - 68px);
  }

  .hero-grid {
    min-height: calc(100vh - 68px);
    grid-template-columns: 1fr;
    align-content: start;
  }

  .hero-copy {
    padding: 26px 0 280px;
  }

  .rating-row {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .rating-row img {
    width: 88px;
  }

  h1 {
    font-size: clamp(34px, 10.8vw, 48px);
    max-width: 420px;
  }

  .subtitle {
    margin: 12px 0 14px;
    font-size: 22px;
  }

  .discount-button {
    min-height: 48px;
    margin-bottom: 18px;
  }

  .benefit-list {
    max-width: 395px;
    font-size: 18px;
    gap: 11px;
  }

  .hero-visual {
    position: absolute;
    right: -148px;
    bottom: 64px;
    width: 640px;
    height: 400px;
    opacity: 0.94;
  }

  .before-after {
    width: 620px;
    transform: none;
  }

  .patch-product {
    width: 205px;
    right: 29%;
    bottom: 0;
  }

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

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

  .cookie-options {
    min-height: auto;
    padding: 12px;
    align-items: start;
    flex-wrap: wrap;
    gap: 12px;
  }

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

@media (max-width: 520px) {
  .page-shell {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(237, 252, 247, 0.9) 100%),
      var(--white);
  }

  .hero-copy {
    padding-bottom: 320px;
  }

  .hero-visual {
    right: -208px;
    bottom: 76px;
    width: 640px;
  }

  .cookie-panel {
    padding: 14px 0;
  }
}
