:root {
  --green: #56ad77;
  --green-dark: #2c8e54;
  --green-soft: #e8f7ef;
  --mint: #dff5ea;
  --ink: #08152a;
  --text: #10223a;
  --muted: #5c6d86;
  --line: #dfe8ef;
  --bg: #ffffff;
  --soft: #f5f8fb;
  --shadow: 0 22px 70px rgba(8, 21, 42, .12);
  --radius: 26px;
  --container: 1360px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  text-rendering: optimizeLegibility
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted)
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.035em
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.4rem)
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.75rem)
}

h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem)
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto
}

.narrow {
  --container: 1040px
}

.center {
  text-align: center
}

.section-pad {
  padding: 92px 0
}

.soft-bg {
  background: var(--soft)
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 10px;
  z-index: 999
}

.skip-link:focus {
  left: 14px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 0;
  border-radius: 9px;
  padding: 15px 28px;
  min-height: 52px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  text-align: center
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(44, 142, 84, .24)
}

.btn-primary:hover {
  background: var(--green-dark)
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .4);
  background: transparent;
  color: #fff
}

.btn-small {
  padding: 10px 20px;
  min-height: 42px;
  font-size: .92rem
}

.btn-wide {
  width: 100%
}

.btn-hero {
  min-width: 210px;
  margin-top: 20px
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(8, 21, 42, .08);
  padding: 14px 0;
  backdrop-filter: blur(16px)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff
}

.site-header.is-scrolled .brand,
.site-header.nav-open .brand {
  color: var(--ink)
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-block;
  background: conic-gradient(from 0deg, #fff 0 18deg, transparent 18deg 36deg, #fff 36deg 54deg, transparent 54deg 72deg, #fff 72deg 90deg, transparent 90deg 108deg, #fff 108deg 126deg, transparent 126deg 144deg, #fff 144deg 162deg, transparent 162deg 180deg, #fff 180deg 198deg, transparent 198deg 216deg, #fff 216deg 234deg, transparent 234deg 252deg, #fff 252deg 270deg, transparent 270deg 288deg, #fff 288deg 306deg, transparent 306deg 324deg, #fff 324deg 342deg, transparent 342deg 360deg);
  position: relative
}

.brand-mark:after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: currentColor
}

.site-header.is-scrolled .brand-mark,
.site-header.nav-open .brand-mark {
  background: conic-gradient(from 0deg, var(--ink) 0 18deg, transparent 18deg 36deg, var(--ink) 36deg 54deg, transparent 54deg 72deg, var(--ink) 72deg 90deg, transparent 90deg 108deg, var(--ink) 108deg 126deg, transparent 126deg 144deg, var(--ink) 144deg 162deg, transparent 162deg 180deg, var(--ink) 180deg 198deg, transparent 198deg 216deg, var(--ink) 216deg 234deg, transparent 234deg 252deg, var(--ink) 252deg 270deg, transparent 270deg 288deg, var(--ink) 288deg 306deg, transparent 306deg 324deg, var(--ink) 324deg 342deg, transparent 342deg 360deg)
}

.brand-text {
  font-size: 1.35rem;
  letter-spacing: .01em
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-weight: 700
}

.main-nav a {
  font-size: .95rem;
  opacity: .92
}

.site-header.is-scrolled .main-nav,
.site-header.nav-open .main-nav {
  color: var(--ink)
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .15);
  padding: 10px;
  cursor: pointer
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 8px
}

.site-header.is-scrolled .menu-toggle span,
.site-header.nav-open .menu-toggle span {
  background: var(--ink)
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 0 58px;
  overflow: hidden;
  background: #100c0a
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .2)),
    url('../img/hero-bg.webp') center / cover no-repeat;
  filter: saturate(.94);
}

.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .04), rgba(0, 0, 0, .35) 55%, rgba(0, 0, 0, .58));
}

.hero-inner {
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 178px);
  justify-content: center
}

.rating-line {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 1.15rem;
  font-weight: 800
}

.rating-line .star,
.rating-inline span {
  color: var(--green);
  font-size: 1.35em
}

.hero-copy {
  max-width: 1350px;
  margin-inline: auto
}

.hero-copy h1 {
  background: rgba(28, 22, 30, .58);
  color: #fff;
  padding: 12px 28px 16px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .25)
}

.hero-copy p {
  max-width: 900px;
  margin: 14px auto 0;
  padding: 8px 26px;
  background: rgba(28, 22, 30, .52);
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(20vw, 470px);
  margin-top: auto;
  padding-top: 54px;
  text-align: left;
  align-items: end
}

.hero-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px
}

.hero-features li {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  gap: 14px
}

.hero-features span {
  font-size: 1.2em;
  color: #fff
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0
}

.benefit-card {
  padding: 34px 64px 28px;
  border-right: 1px solid var(--line)
}

.benefit-card:last-child {
  border-right: 0
}

.benefit-card h2 {
  font-size: 1.65rem;
  margin: 34px 0 12px;
  letter-spacing: -.03em
}

.benefit-card p {
  font-size: 1.03rem
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35), 0 7px 18px rgba(44, 142, 84, .22)
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.media-card {
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
  box-shadow: 0 16px 45px rgba(8, 21, 42, .08)
}

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

.story-copy h2,
.box-copy h2,
.offer-copy h2,
.experts-copy h2 {
  margin-bottom: 22px
}

.story-copy p {
  font-size: 1.16rem;
  color: #0e1728
}

.steps .section-heading h2,
.compare .section-heading h2 {
  margin-bottom: 48px
}

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

.step-card {
  text-align: center
}

.step-card .step-label {
  display: block;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px
}

.step-card img {
  width: 100%;
  height: 360px;
  object-fit: cover
}

.step-card h3 {
  font-weight: 900;
  margin: 24px 0 4px
}

.step-card p {
  font-size: 1.08rem;
  color: #0e1728;
  padding: 0 24px
}

.box-layout {
  grid-template-columns: 1.05fr .95fr
}

.number-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px
}

.number-list li {
  position: relative;
  padding: 4px 0 4px 46px;
  font-size: 1.15rem;
  color: #0e1728
}

.number-list li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: #fff;
  font-weight: 900
}

.number-list {
  counter-reset: item
}

.compare-table-wrap {
  overflow: auto
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
  text-align: center
}

.compare-table th {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 26px 24px;
  border-bottom: 1px solid #bfc8d2
}

.compare-table td {
  padding: 18px 24px;
  font-size: 1rem;
  color: #0e1728
}

.compare-table td:first-child {
  text-align: right;
  width: 35%;
  font-weight: 500
}

.highlight-col {
  border-left: 2px solid #20d5c8;
  border-right: 2px solid #20d5c8
}

.compare-table thead .highlight-col {
  border-top: 2px solid #20d5c8;
  border-radius: 28px 28px 0 0
}

.compare-table tbody tr:last-child .highlight-col {
  border-bottom: 2px solid #20d5c8;
  border-radius: 0 0 28px 28px
}

.yes,
.no {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900
}

.yes {
  background: #e4ea21;
  color: #0b290e
}

.no {
  background: #d7d7d7;
  color: #555
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  text-align: center
}

.seal {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #b7dacb;
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 2rem;
  line-height: .82;
  font-weight: 900;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .35)
}

.seal span {
  font-size: .5em
}

.trust-card h3 {
  font-weight: 900;
  margin-bottom: 18px
}

.trust-card p {
  font-size: 1.02rem;
  color: #0e1728
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.bonus-card {
  text-align: center
}

.bonus-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  border: 5px solid var(--green);
  border-bottom: 0
}

.bonus-title {
  background: var(--green);
  color: #fff;
  font-size: 1.37rem;
  font-weight: 900;
  line-height: 1.35;
  padding: 17px;
  border-radius: 0 0 20px 20px;
  min-height: 98px
}

.bonus-title strong {
  color: #0b0d12
}

.bonus-price {
  margin: 18px 0 12px;
  color: #0e1728;
  font-weight: 900
}

.bonus-price strong {
  display: block;
  color: #ff3c43;
  margin-top: 5px
}

.bonus-card p:last-child {
  text-align: left;
  color: #0e1728;
  font-size: .98rem;
  padding: 0 10px
}

.offer-grid {
  grid-template-columns: .95fr 1fr
}

.offer-copy h3 {
  text-align: center;
  margin: 26px 0 14px;
  font-weight: 900
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 14px
}

.check-list li {
  position: relative;
  padding-left: 42px
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4ea21;
  color: #0b290e;
  font-weight: 900
}

.experts-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center
}

.experts-copy p {
  font-size: 1.03rem;
  color: #0e1728
}

.expert-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.expert-cards figure {
  margin: 0;
  position: relative;
  overflow: hidden
}

.expert-cards img {
  width: 100%;
  height: 360px;
  object-fit: cover
}

.expert-cards figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 18px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .62));
  text-align: center
}

.expert-cards strong {
  display: block;
  font-size: 1.4rem
}

.expert-cards span {
  font-size: .8rem
}

.quality-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-width: 1060px;
  margin-inline: auto
}

.quality-card img {
  width: 100%;
  height: 610px;
  object-fit: cover
}

.quality-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: #fff;
  padding: 180px 20px 56px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .62))
}

.quality-overlay h2 {
  color: #fff;
  font-size: 2.45rem
}

.quality-points {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-top: 30px;
  font-weight: 900
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px
}

.review-card {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 7px 20px rgba(8, 21, 42, .04)
}

.review-card img {
  width: 100%;
  height: 320px;
  object-fit: cover
}

.review-card blockquote {
  margin: 0;
  padding: 30px 30px 16px;
  font-size: 1.18rem;
  line-height: 1.42;
  color: #0d1628
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 0 30px 30px;
  color: var(--muted)
}

.review-meta strong {
  color: #09152a
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.product-gallery {
  min-width: 0
}

.main-product-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 20px
}

.thumb-row {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  overflow: auto;
  padding-bottom: 4px
}

.thumb {
  border: 0;
  padding: 0;
  background: transparent;
  min-width: 96px;
  height: 96px;
  border-radius: 18px;
  overflow: hidden;
  opacity: .7;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 var(--green);
  transition: opacity .2s ease, transform .2s ease
}

.thumb.active {
  opacity: 1;
  box-shadow: inset 0 0 0 3px var(--green)
}

.thumb:hover {
  transform: translateY(-2px)
}

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

.product-info h2 {
  font-size: 3.2rem;
  margin: 18px 0 18px
}

.product-info>p {
  font-size: 1.08rem;
  color: #18304f;
  max-width: 600px
}

.rating-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem
}

.rating-inline a {
  text-decoration: underline;
  color: #50627c
}

.pack-preview {
  border: 1px solid #dbe5ed;
  border-radius: 30px;
  padding: 24px;
  margin: 48px 0 28px;
  display: grid;
  gap: 14px
}

.mini-pack {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  border: 1px solid #e4ebf1;
  border-radius: 16px;
  padding: 16px 16px;
  cursor: pointer
}

.mini-pack.selected {
  border-color: var(--green);
  background: #f8fffb
}

.mini-pack input {
  margin-top: 5px
}

.mini-pack strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 500
}

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

.mini-pack b {
  font-size: 1.1rem
}

.mini-pack em {
  font-size: .72rem;
  font-style: normal;
  background: var(--mint);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 4px 12px;
  margin-left: 8px
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: start
}

.checkout-title-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px
}

.checkout-title-row h2 {
  font-size: 2.8rem
}

.countdown {
  display: inline-flex;
  align-items: center;
  height: 50px;
  border-radius: 9px;
  background: var(--green-soft);
  color: #25783f;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: .07em;
  padding: 6px 18px;
  white-space: nowrap
}

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

.pack-card {
  display: grid;
  grid-template-columns: 110px 24px 1fr auto 28px;
  gap: 18px;
  align-items: center;
  border: 1px solid #dfe7ef;
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease
}

.pack-card.active {
  border-color: var(--green);
  background: #f9fffb;
  box-shadow: 0 14px 26px rgba(44, 142, 84, .08)
}

.pack-card img {
  width: 110px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover
}

.pack-card input {
  accent-color: var(--green)
}

.pack-content strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.05;
  font-weight: 500
}

.pack-content small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 7px
}

.pack-content em {
  font-size: .72rem;
  font-style: normal;
  background: var(--mint);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 5px 13px;
  margin-left: 12px;
  white-space: nowrap
}

.pack-price {
  display: grid;
  text-align: right
}

.pack-price b {
  font-size: 1.22rem;
  color: #267541
}

.pack-price del {
  color: #95a1b4
}

.checkmark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #bad4c5;
  color: #fff;
  font-weight: 900
}

.pack-card:not(.active) .checkmark {
  background: transparent;
  border: 1px solid #b7c5d4;
  color: transparent
}

.checkout-testimonials {
  border-top: 1px solid #dfe7ef;
  margin-top: 44px;
  padding-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.checkout-testimonials blockquote {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  color: #0e1728;
  font-size: 1.15rem
}

.checkout-testimonials span {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  color: #4d5e79
}

.request-form {
  background: #fff;
  border-radius: 0;
  padding: 50px 52px;
  box-shadow: 0 18px 60px rgba(8, 21, 42, .06)
}

.request-form h2 {
  font-size: 2.8rem
}

.request-form p {
  color: #0e1728
}

.summary-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0 20px
}

.summary-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: #0e1728
}

.summary-steps span:before {
  content: ""
}

.summary-steps span {
  font-size: 1.35rem
}

.summary-steps .active {
  color: #0e1728
}

.summary-steps span:first-child {
  background: transparent
}

.summary-steps span small {
  font-size: .82rem;
  color: #52627a;
  font-weight: 700
}

.summary-steps span::first-letter {
  display: grid
}

.selected-summary {
  background: #f6faf7;
  border: 1px solid #dcefe4;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 18px;
  color: #18304f;
  display: flex;
  justify-content: space-between;
  gap: 12px
}

.request-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #0e1728;
  font-weight: 800;
  font-size: .92rem
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid transparent;
  background: #f7f9fb;
  border-radius: 10px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: #0e1728;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease
}

.request-form textarea {
  resize: vertical;
  min-height: 96px
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(86, 173, 119, .13)
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 600 !important;
  color: #4d5e79 !important
}

.consent input {
  width: 18px !important;
  height: 18px !important;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--green)
}

.form-note {
  font-size: .86rem;
  text-align: center;
  margin-top: 12px !important;
  color: #64748b !important
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px
}

.faq-title h2 {
  font-size: 3rem
}

.faq-title p {
  margin-top: 22px;
  color: #0e1728;
  font-size: 1.05rem
}

.faq-title a {
  text-decoration: none
}

.faq-list details {
  border-bottom: 1px solid #dbe3ea
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-size: 1.18rem;
  color: #0e1728;
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.faq-list summary::-webkit-details-marker {
  display: none
}

.faq-list summary:after {
  content: "⌄";
  transition: transform .2s ease
}

.faq-list details[open] summary:after {
  transform: rotate(180deg)
}

.faq-list p {
  padding: 0 0 16px;
  color: #4c5d75
}
/* =========================
   Footer
========================= */

.site-footer {
  background: #58ad78;
  color: #fff;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.12fr 1.25fr 1.15fr;
  gap: 54px;
  padding: 54px 0 58px;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(1.25rem, 1.65vw, 1.8rem);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo img {
  width: 120px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-about p {
  max-width: 330px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.04rem;
  line-height: 1.65;
  font-weight: 700;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.footer-social a {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-links a::before {
  content: "✓";
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 700;
}

.footer-contact-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-icon img {
  width: 21px;
  height: 21px;
  display: block;
  object-fit: contain;
}

.footer-newsletter {
  display: grid;
  gap: 18px;
}

.footer-newsletter input {
  width: 100%;
  height: 50px;
  border: 0;
  outline: none;
  border-radius: 9px;
  background: #fff;
  color: #111827;
  padding: 0 22px;
  font-size: 1rem;
  font-weight: 500;
}

.footer-newsletter input::placeholder {
  color: #111827;
  opacity: 0.85;
}

.footer-newsletter button {
  width: 80%;
  min-width: 220px;
  height: 58px;
  border: 0;
  border-radius: 9px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.footer-bottom {
  padding: 18px 20px;
  background: #101010;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Desktop effects */
@media (min-width: 901px) {
  .footer-links a:hover,
  .footer-contact-row:hover {
    color: #fff;
    transform: translateX(6px);
  }

  .footer-newsletter button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(20, 60, 38, 0.2);
    background: #f5fff9;
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
  }

  .footer-subscribe {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 44px 0 46px;
  }

  .footer-subscribe {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo img {
    width: 60px;
  }

  .footer-newsletter button {
    width: 100%;
    min-width: 0;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  background: rgba(8, 21, 42, .75);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px
}

.preloader[hidden] {
  display: none
}

.preloader-box {
  width: min(430px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 42px 30px;
  text-align: center;
  box-shadow: var(--shadow)
}

.loader {
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 5px solid #dcefe4;
  border-top-color: var(--green);
  animation: spin .85s linear infinite;
  margin-bottom: 22px
}

.preloader-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 12px 38px rgba(8, 21, 42, .13)
}

.cookie-banner p {
  margin: 0;
  color: #31415a
}

.cookie-banner.is-hidden {
  display: none
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.thanks-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f8fb, #eaf8f0)
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px
}

.thanks-card {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 34px;
  padding: 58px;
  text-align: center;
  box-shadow: var(--shadow)
}

.thanks-brand {
  color: var(--ink);
  justify-content: center;
  margin-bottom: 28px
}

.thanks-brand .brand-mark {
  background: conic-gradient(from 0deg, var(--green) 0 18deg, transparent 18deg 36deg, var(--green) 36deg 54deg, transparent 54deg 72deg, var(--green) 72deg 90deg, transparent 90deg 108deg, var(--green) 108deg 126deg, transparent 126deg 144deg, var(--green) 144deg 162deg, transparent 162deg 180deg, var(--green) 180deg 198deg, transparent 198deg 216deg, var(--green) 216deg 234deg, transparent 234deg 252deg, var(--green) 252deg 270deg, transparent 270deg 288deg, var(--green) 288deg 306deg, transparent 306deg 324deg, var(--green) 324deg 342deg, transparent 342deg 360deg)
}

.success-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 3rem;
  font-weight: 900
}

.thanks-card h1 {
  font-size: 2.7rem;
  margin-bottom: 18px
}

.thanks-card p {
  font-size: 1.12rem
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px
}

.thanks-actions .btn-outline {
  border-color: var(--line);
  color: var(--ink)
}

.legal-page {
  background: #fff
}

.legal-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line)
}

.legal-header .brand {
  color: var(--ink)
}

.legal-header .brand-mark {
  background: conic-gradient(from 0deg, var(--green) 0 18deg, transparent 18deg 36deg, var(--green) 36deg 54deg, transparent 54deg 72deg, var(--green) 72deg 90deg, transparent 90deg 108deg, var(--green) 108deg 126deg, transparent 126deg 144deg, var(--green) 144deg 162deg, transparent 162deg 180deg, var(--green) 180deg 198deg, transparent 198deg 216deg, var(--green) 216deg 234deg, transparent 234deg 252deg, var(--green) 252deg 270deg, transparent 270deg 288deg, var(--green) 288deg 306deg, transparent 306deg 324deg, var(--green) 324deg 342deg, transparent 342deg 360deg)
}

.legal-main {
  max-width: 850px;
  padding: 70px 0
}

.legal-main h1 {
  font-size: 3rem;
  margin-bottom: 24px
}

.legal-main h2 {
  font-size: 1.6rem;
  margin: 28px 0 10px
}

.legal-main a {
  text-decoration: underline;
  color: var(--green-dark)
}

@media (max-width:1100px) {
  .main-nav {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .site-header .btn-small {
    margin-left: auto
  }

  .main-nav.is-open {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 76px;
    display: grid;
    gap: 0;
    background: #fff;
    color: var(--ink) !important;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow)
  }

  .main-nav.is-open a {
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f5
  }

  .main-nav.is-open a:last-child {
    border-bottom: 0
  }

  .benefit-card {
    padding: 30px
  }

  .split-grid,
  .experts-grid,
  .product-grid,
  .checkout-grid {
    gap: 38px
  }

  .checkout-grid {
    grid-template-columns: 1fr
  }

  .request-form {
    padding: 38px
  }

  .pack-card {
    grid-template-columns: 90px 20px 1fr auto 24px
  }

  .pack-card img {
    width: 90px;
    height: 86px
  }

  .hero-features {
    gap: 120px
  }

  .quality-card img {
    height: 520px
  }
}

@media (max-width:860px) {
  .section-pad {
    padding: 68px 0
  }

  .container {
    width: min(100% - 30px, var(--container))
  }

  .site-header {
    padding: 16px 0
  }

  .site-header .btn-small {
    display: none
  }

  .hero {
    min-height: 920px;
    padding-top: 100px
  }

  .hero-inner {
    min-height: 760px
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    padding: 12px 14px
  }

  .hero-copy p {
    font-size: 1rem
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    padding-top: 34px
  }

  .hero-features ul {
    gap: 14px
  }

  .hero-features li {
    justify-content: center
  }

  .benefits-grid,
  .steps-grid,
  .bonus-grid,
  .trust-grid,
  .review-grid,
  .split-grid,
  .experts-grid,
  .product-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

  .benefit-card {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .benefit-card:last-child {
    border-bottom: 0
  }

  .step-card img {
    height: 300px
  }

  .trust-grid {
    gap: 44px
  }

  .offer-grid,
  .box-layout {
    grid-template-columns: 1fr
  }

  .expert-cards {
    grid-template-columns: 1fr 1fr
  }

  .quality-card img {
    height: 430px
  }

  .quality-overlay h2 {
    font-size: 1.8rem
  }

  .quality-points {
    gap: 18px
  }

  .main-product-image {
    height: 480px
  }

  .checkout-title-row {
    display: grid
  }

  .checkout-testimonials {
    grid-template-columns: 1fr
  }

  .pack-card {
    grid-template-columns: 78px 1fr auto;
    gap: 12px
  }

  .pack-card img {
    width: 78px;
    height: 74px;
    grid-row: span 2
  }

  .pack-card input {
    display: none
  }

  .pack-price {
    grid-column: 3
  }

  .checkmark {
    grid-column: 3;
    grid-row: 2
  }

  .pack-content {
    grid-column: 2
  }

  .two-cols {
    grid-template-columns: 1fr
  }

  .footer-inner {
    display: grid
  }

  .cookie-banner {
    display: grid
  }

  .faq-title h2,
  .checkout-title-row h2,
  .product-info h2 {
    font-size: 2.35rem
  }
}

@media (max-width:560px) {
  h1 {
    font-size: 2.5rem
  }

  .section-pad {
    padding: 56px 0
  }

  .brand-text {
    font-size: 1.1rem
  }

  .hero {
    min-height: 850px
  }

  .rating-line {
    font-size: .95rem;
    margin-bottom: 18px
  }

  .hero-copy h1 {
    line-height: 1.12
  }

  .benefit-card {
    padding: 26px 4px
  }

  .steps .section-heading h2,
  .compare .section-heading h2 {
    margin-bottom: 30px
  }

  .step-card p {
    padding: 0
  }

  .story-copy p {
    font-size: 1.02rem
  }

  .number-list li {
    font-size: 1rem
  }

  .bonus-card img {
    height: 230px
  }

  .bonus-title {
    font-size: 1.05rem;
    min-height: auto
  }

  .expert-cards {
    grid-template-columns: 1fr
  }

  .quality-card {
    border-radius: 18px
  }

  .quality-card img {
    height: 360px
  }

  .quality-overlay {
    padding: 130px 14px 34px
  }

  .review-card img {
    height: 250px
  }

  .review-card blockquote {
    padding: 24px 22px 14px;
    font-size: 1.04rem
  }

  .review-meta {
    padding: 0 22px 24px
  }

  .main-product-image {
    height: 360px
  }

  .thumb {
    min-width: 76px;
    height: 76px
  }

  .pack-preview {
    padding: 14px;
    border-radius: 20px
  }

  .mini-pack {
    grid-template-columns: auto 1fr
  }

  .mini-pack b {
    grid-column: 2
  }

  .request-form {
    padding: 28px 18px
  }

  .selected-summary {
    display: grid
  }

  .checkout-title-row h2,
  .request-form h2,
  .product-info h2,
  .faq-title h2 {
    font-size: 2rem
  }

  .countdown {
    font-size: 1.1rem
  }

  .pack-card {
    padding: 12px
  }

  .pack-content em {
    display: inline-block;
    margin: 6px 0 0
  }

  .checkout-testimonials blockquote {
    font-size: 1rem;
    padding: 22px
  }

  .site-footer nav {
    display: grid
  }

  .thanks-card {
    padding: 38px 22px
  }

  .thanks-card h1 {
    font-size: 2rem
  }
}
/*  */
.hero-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.hero-points li + li {
  margin-top: 24px;
}

.hero-points img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
  display: block;
}
/*  */
.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  /* background: rgba(88, 176, 122, 0.12);
  border: 1px solid rgba(88, 176, 122, 0.35); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-pill img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
/*  */
.technology {
  background: #e7f5ee;
  overflow: hidden;
}

.technology-heading {
  max-width: 920px;
  margin: 0 auto 56px;
}

.technology-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #000;
}

.technology-heading h2 span {
  color: var(--green);
}

.technology-heading p {
  max-width: 760px;
  margin: 12px auto 0;
  color: #000;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.35;
  font-weight: 600;
}

.technology-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.technology-column {
  display: grid;
  gap: 18px;
}

.technology-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 126px;
  padding: 18px 22px 18px 18px;
  background: #fff;
  border: 1.5px solid var(--green);
  border-bottom-width: 4px;
  border-radius: 9px;
  box-shadow: 0 14px 32px rgba(44, 142, 84, 0.08);
}

.technology-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.technology-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.technology-card h3 {
  margin: 0 0 5px;
  color: var(--green);
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.015em;
}

.technology-card p {
  margin: 0;
  color: #000;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.technology-product {
  display: flex;
  align-items: center;
  justify-content: center;
}

.technology-product img {
  width: min(100%, 420px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(8, 21, 42, 0.22));
}

.technology-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.technology-action .btn {
  min-width: 180px;
  border-radius: 10px;
}
/*  */
@media (max-width: 1100px) {
  .technology-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .technology-product {
    order: -1;
  }

  .technology-product img {
    max-width: 360px;
  }

  .technology-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .technology {
    text-align: left;
  }

  .technology-heading {
    text-align: center;
    margin-bottom: 34px;
  }

  .technology-column {
    grid-template-columns: 1fr;
  }

  .technology-card {
    min-height: auto;
    align-items: flex-start;
    padding: 16px;
  }

  .technology-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .technology-icon img {
    width: 28px;
    height: 28px;
  }

  .technology-product img {
    max-width: 270px;
  }
}
/* =========================
   Reveal / Motion Animation
========================= */

.reveal,
.reveal-motion {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(.2, .8, .2, 1),
    filter 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible,
.reveal-motion.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Left / right movement specifically for technology section */
@media (min-width: 901px) {
  .technology-column:first-child .technology-card.reveal,
  .technology-column:first-child .technology-card.reveal-motion {
    transform: translate3d(-38px, 20px, 0) scale(0.985);
  }

  .technology-column:last-child .technology-card.reveal,
  .technology-column:last-child .technology-card.reveal-motion {
    transform: translate3d(38px, 20px, 0) scale(0.985);
  }

  .technology-column:first-child .technology-card.is-visible,
  .technology-column:last-child .technology-card.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* =========================
   Desktop hover / focus movement
========================= */

@media (min-width: 901px) {
  .technology-card,
  .feature-card,
  .step-card,
  .bonus-card,
  .testimonial-card,
  .guarantee-card,
  .package-card,
  .comparison-card {
    transition:
      transform 0.35s cubic-bezier(.2, .8, .2, 1),
      box-shadow 0.35s ease,
      border-color 0.35s ease,
      background-color 0.35s ease;
  }

  .technology-card:hover,
  .technology-card:focus-visible,
  .feature-card:hover,
  .feature-card:focus-visible,
  .step-card:hover,
  .step-card:focus-visible,
  .bonus-card:hover,
  .bonus-card:focus-visible,
  .testimonial-card:hover,
  .testimonial-card:focus-visible,
  .guarantee-card:hover,
  .guarantee-card:focus-visible,
  .package-card:hover,
  .package-card:focus-visible,
  .comparison-card:hover,
  .comparison-card:focus-visible {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 22px 48px rgba(22, 79, 48, 0.16);
    border-color: rgba(83, 174, 119, 0.95);
  }

  .technology-card:focus-visible,
  .feature-card:focus-visible,
  .step-card:focus-visible,
  .bonus-card:focus-visible,
  .testimonial-card:focus-visible,
  .guarantee-card:focus-visible,
  .package-card:focus-visible,
  .comparison-card:focus-visible {
    outline: 3px solid rgba(83, 174, 119, 0.35);
    outline-offset: 4px;
  }

  .technology-card:hover .technology-icon,
  .technology-card:focus-visible .technology-icon {
    transform: rotate(-4deg) scale(1.08);
  }

  .technology-icon {
    transition:
      transform 0.35s cubic-bezier(.2, .8, .2, 1),
      box-shadow 0.35s ease;
  }

  .technology-card:hover .technology-icon img,
  .technology-card:focus-visible .technology-icon img {
    transform: scale(1.12);
  }

  .technology-icon img {
    transition: transform 0.35s ease;
  }
}

/* =========================
   Floating product image
========================= */

@keyframes productSoftFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@media (min-width: 901px) {
  .technology-product img {
    animation: productSoftFloat 5.5s ease-in-out infinite;
  }

  .technology-product:hover img {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.025);
  }
}

/* =========================
   Respect reduced motion
========================= */

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-motion,
  .technology-card,
  .feature-card,
  .step-card,
  .bonus-card,
  .testimonial-card,
  .guarantee-card,
  .package-card,
  .comparison-card,
  .technology-product img,
  .technology-icon,
  .technology-icon img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
/*  */
.compare-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compare-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
/*  */
/* =========================
   Trust / Guarantee Blocks
========================= */

.trust {
  position: relative;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}

.trust-card {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 34px 28px 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(83, 174, 119, 0.18);
  box-shadow: 0 18px 44px rgba(15, 40, 27, 0.06);
  overflow: hidden;
  transition:
    transform 0.38s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease,
    background-color 0.38s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(83, 174, 119, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62));
  opacity: 0;
  transition: opacity 0.38s ease;
}

.trust-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -56px;
  top: -56px;
  border-radius: 50%;
  background: rgba(83, 174, 119, 0.12);
  transform: scale(0.5);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(.2, .8, .2, 1),
    opacity 0.35s ease;
}

.trust-card .seal {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(83, 174, 119, 0.13);
  border: 1px solid rgba(83, 174, 119, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.7),
    0 14px 28px rgba(83, 174, 119, 0.14);
  transition:
    transform 0.38s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.38s ease,
    background-color 0.38s ease;
}

.trust-card .seal img {
  width: 68px;
  height: 68px;
  display: block;
  object-fit: contain;
  transition: transform 0.38s cubic-bezier(.2, .8, .2, 1);
}

.trust-card h3 {
  margin: 0 0 14px;
  color: #132018;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.trust-card p {
  max-width: 360px;
  margin: 0 auto;
  color: #17241c;
  font-size: 1rem;
  line-height: 1.55;
}

/* Hover / Focus only for PC */
@media (min-width: 901px) {
  .trust-card:hover,
  .trust-card:focus-visible {
    transform: translateY(-10px) scale(1.018);
    border-color: rgba(83, 174, 119, 0.62);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 26px 64px rgba(15, 40, 27, 0.14);
  }

  .trust-card:hover::before,
  .trust-card:focus-visible::before {
    opacity: 1;
  }

  .trust-card:hover::after,
  .trust-card:focus-visible::after {
    opacity: 1;
    transform: scale(1);
  }

  .trust-card:hover .seal,
  .trust-card:focus-visible .seal {
    transform: translateY(-4px) rotate(-3deg) scale(1.07);
    background: rgba(83, 174, 119, 0.2);
    box-shadow:
      inset 0 0 0 6px rgba(255, 255, 255, 0.75),
      0 20px 36px rgba(83, 174, 119, 0.22);
  }

  .trust-card:hover .seal img,
  .trust-card:focus-visible .seal img {
    transform: scale(1.09) rotate(3deg);
  }
}

/* Staggered reveal delays */
.trust-card:nth-child(1) {
  --reveal-delay: 0ms;
}

.trust-card:nth-child(2) {
  --reveal-delay: 120ms;
}

.trust-card:nth-child(3) {
  --reveal-delay: 240ms;
}

/* Small idle motion for icons on desktop */
@keyframes sealSoftPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.035);
  }
}

@media (min-width: 901px) {
  .trust-card.is-visible .seal {
    animation: sealSoftPulse 4.5s ease-in-out infinite;
  }

  .trust-card:nth-child(2).is-visible .seal {
    animation-delay: 0.45s;
  }

  .trust-card:nth-child(3).is-visible .seal {
    animation-delay: 0.9s;
  }

  .trust-card:hover .seal,
  .trust-card:focus-visible .seal {
    animation-play-state: paused;
  }
}

@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-card {
    padding: 28px 22px;
  }

  .trust-card .seal {
    width: 78px;
    height: 78px;
  }

  .trust-card .seal img {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-card,
  .trust-card::before,
  .trust-card::after,
  .trust-card .seal,
  .trust-card .seal img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
/*  */
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #111827;
  font-size: 1rem;
  line-height: 1.35;
}

.check-list li img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
  display: block;
  margin-top: -1px;
}

.check-list li span {
  display: block;
}
.check-list li::before {
  content: none;
  display: none;
}
@media (min-width: 901px) {
  .check-list li {
    transition: transform 0.25s ease;
  }

  .check-list li img {
    transition: transform 0.25s ease;
  }

  .check-list li:hover {
    transform: translateX(6px);
  }

  .check-list li:hover img {
    transform: scale(1.12) rotate(-6deg);
  }
}
/*  */
/* =========================
   Modern FAQ Section
========================= */

.faq-modern {
  background: #fff;
  overflow: hidden;
}

.faq-modern__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.faq-modern__head h2 {
  margin: 0;
  color: #000;
  font-size: clamp(2.4rem, 4.4vw, 4.9rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.faq-modern__head h2 span {
  color: var(--green);
}

.faq-modern__head p {
  max-width: 720px;
  margin: 22px auto 0;
  color: #000;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.35;
  font-weight: 500;
}

.faq-modern__list {
  counter-reset: faq-counter;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 44px;
  align-items: start;
}

.faq-item {
  counter-increment: faq-counter;
  background: #e8f5ee;
  border: 1.5px solid var(--green);
  border-bottom: 4px solid var(--green);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(35, 119, 69, 0.06);
  transition:
    transform 0.32s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.32s ease,
    background-color 0.32s ease,
    border-color 0.32s ease;
}

.faq-item summary {
  position: relative;
  min-height: 64px;
  padding: 18px 62px 18px 24px;
  display: flex;
  align-items: center;
  color: #000;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.2;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: counter(faq-counter) ". ";
  margin-right: 6px;
  flex: 0 0 auto;
  color: #000;
  font-weight: 900;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px 24px;
  color: #17241c;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

/* Desktop animation / focus */
@media (min-width: 901px) {
  .faq-item:hover,
  .faq-item:focus-within {
    transform: translateY(-6px);
    background: #f1fbf6;
    border-color: #43a96d;
    box-shadow: 0 20px 46px rgba(35, 119, 69, 0.13);
  }

  .faq-item:hover summary::after,
  .faq-item:focus-within summary::after {
    transform: translateY(-50%) scale(1.12);
  }

  .faq-item[open]:hover summary::after,
  .faq-item[open]:focus-within summary::after {
    transform: translateY(-50%) rotate(180deg) scale(1.12);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .faq-modern__head {
    margin-bottom: 36px;
  }

  .faq-modern__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 16px 54px 16px 18px;
    font-size: 1.05rem;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item p {
    padding: 0 18px 20px;
  }
}
/*  */
/* =========================
   Memory CTA Banner — improved
========================= */

.memory-cta {
  background: #fff;
  padding: 70px 0;
  overflow: hidden;
}

.memory-cta__panel {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 54px 64px;
  box-shadow: 0 28px 80px rgba(15, 40, 27, 0.14);
}

.memory-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.memory-cta__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.memory-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 34%,
      rgba(255, 255, 255, 0.18) 58%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.memory-cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 45%, rgba(83, 174, 119, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.memory-cta__content {
  position: relative;
  width: min(560px, 100%);
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}

.memory-cta__content h2 {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(2.25rem, 4.1vw, 4.35rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.memory-cta__content h2 span {
  color: var(--green);
}

.memory-cta__content p {
  max-width: 560px;
  margin: 0 0 28px;
  color: #050505;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.35;
  font-weight: 600;
}

.memory-cta__content .btn {
  min-width: 285px;
  height: 58px;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(83, 174, 119, 0.28);
}

/* Desktop hover */
@media (min-width: 901px) {
  .memory-cta__panel {
    transition:
      transform 0.45s cubic-bezier(.2, .8, .2, 1),
      box-shadow 0.45s ease;
  }

  .memory-cta__bg img {
    transition: transform 0.9s cubic-bezier(.2, .8, .2, 1);
  }

  .memory-cta__panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 38px 95px rgba(15, 40, 27, 0.2);
  }

  .memory-cta__panel:hover .memory-cta__bg img {
    transform: scale(1.045);
  }

  .memory-cta__content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(83, 174, 119, 0.34);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .memory-cta {
    padding: 48px 0;
  }

  .memory-cta__panel {
    min-height: 520px;
    align-items: flex-start;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .memory-cta__bg img {
    object-position: center right;
  }

  .memory-cta__panel::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.86) 42%,
        rgba(255, 255, 255, 0.12) 74%,
        rgba(0, 0, 0, 0.14) 100%
      );
  }

  .memory-cta__content {
    width: 100%;
    max-width: 520px;
  }

  .memory-cta__content .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .memory-cta__panel {
    min-height: 470px;
    padding: 28px 20px;
    border-radius: 18px;
  }

  .memory-cta__content h2 {
    font-size: 2.35rem;
  }

  .memory-cta__content p {
    font-size: 1rem;
  }
}
/*  */
/* =========================================================
   Legal Pages
========================================================= */

.legal-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(88, 173, 120, 0.08), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(88, 173, 120, 0.06), transparent 30%),
    #ffffff;
  color: #0d1b12;
}

.legal-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(88, 173, 120, 0.22);
  box-shadow: 0 10px 28px rgba(15, 40, 27, 0.06);
}

.legal-header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #51665a;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
}

.breadcrumbs a {
  color: #2c8e54;
  text-decoration: none;
  font-weight: 900;
  transition: color 0.22s ease;
}

.breadcrumbs a:hover {
  color: #0d1b12;
}

.breadcrumbs span:last-child {
  color: #0d1b12;
}

.legal-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 76px;
}

.legal-main h1 {
  margin: 0 0 16px;
  color: #0d1b12;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.legal-updated {
  width: fit-content;
  margin: 0 0 36px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #e7f5ee;
  border: 1px solid rgba(88, 173, 120, 0.3);
  color: #51665a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
}

.legal-updated strong {
  color: #2c8e54;
  font-weight: 900;
}

.legal-main h2 {
  margin: 34px 0 12px;
  color: #0d1b12;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.legal-main p,
.legal-main li,
.legal-main address {
  color: #26332b;
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-main p {
  margin: 0 0 14px;
}

.legal-main ul {
  margin: 12px 0 22px;
  padding-left: 24px;
}

.legal-main li {
  margin-bottom: 8px;
}

.legal-main a {
  color: #2c8e54;
  font-weight: 800;
}

.legal-main address {
  margin-top: 14px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #e7f5ee;
  border: 1px solid rgba(88, 173, 120, 0.28);
  font-style: normal;
}

.legal-back {
  display: flex;
  justify-content: center;
  margin: 52px 0 0 !important;
}

.legal-back a {
  min-width: 190px;
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  background: #58ad78;
  color: #ffffff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(88, 173, 120, 0.25);
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}

.legal-back a:hover {
  background: #2c8e54;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(88, 173, 120, 0.34);
}

@media (max-width: 720px) {
  .legal-header .container {
    min-height: 64px;
  }

  .legal-main {
    padding: 42px 0 58px;
  }

  .legal-updated {
    margin-bottom: 28px;
  }

  .legal-main address {
    padding: 18px;
  }

  .legal-back a {
    width: 100%;
  }
}