@font-face {
  font-family: "Noto Color Emoji Local";
  src: url("assets/noto-color-emoji-check-cross.woff2") format("woff2");
  font-display: block;
  font-style: normal;
  font-weight: 400;
}

:root {
  --navy: #061a30;
  --navy-2: #0b2747;
  --blue: #163a67;
  --blue-bright: #23598e;
  --ink: #102d49;
  --muted: #657385;
  --paper: #fbf8f2;
  --sand: #eee3d2;
  --white: #ffffff;
  --gold: #e4b45e;
  --gold-light: #f8dda0;
  --gold-deep: #ac721d;
  --line: rgb(16 45 73 / 16%);
  --line-light: rgb(255 255 255 / 17%);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 1vw, 1.07rem);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p, h1, h2, h3, figure, blockquote, dl, dd { margin-top: 0; }
strong { font-weight: 750; }
ul { padding-left: 1.2rem; }
li + li { margin-top: .75rem; }
.container { width: min(calc(100% - 96px), 1220px); margin-inline: auto; }
.section { position: relative; padding-block: clamp(105px, 9vw, 148px); overflow: hidden; }

h1, h2, h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 700;
  text-wrap: balance;
}
h1 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(3.8rem, 5.1vw, 5.35rem);
  letter-spacing: -.045em;
  line-height: .94;
}
h1 span { color: var(--gold-light); }
h2 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(3.35rem, 5.3vw, 5.8rem);
  letter-spacing: -.04em;
  line-height: .98;
}
h3 {
  color: var(--ink);
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  letter-spacing: -.035em;
  line-height: 1;
}
.section-kicker {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-kicker--gold { color: var(--gold); }

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px 29px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: 800 .88rem/1.3 var(--sans);
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.button::before {
  position: absolute;
  top: -80%;
  left: -45%;
  width: 32%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 55%), transparent);
  content: "";
  transform: rotate(18deg);
  transition: left 500ms ease;
}
.button:hover { transform: translateY(-2px); filter: saturate(1.08); }
.button:hover::before { left: 120%; }
.button--gold {
  border-color: rgb(255 240 196 / 38%);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 48%, #c8892e 100%);
  box-shadow: 0 18px 42px rgb(172 114 29 / 28%), inset 0 1px 0 rgb(255 255 255 / 48%);
  color: #12283d;
}
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 5px; }

.hero {
  position: relative;
  min-height: min(92svh, 840px);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.hero__backdrop { position: absolute; z-index: -3; inset: 0; }
.hero__backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__backdrop::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(6 26 48 / 99%) 0%, rgb(6 26 48 / 95%) 31%, rgb(6 26 48 / 58%) 56%, rgb(6 26 48 / 4%) 85%),
    linear-gradient(0deg, rgb(6 26 48 / 94%) 0%, transparent 32%);
  content: "";
}
.hero__inner {
  position: relative;
  display: flex;
  min-height: min(92svh, 840px);
  align-items: center;
}
.hero__copy { width: min(60%, 715px); padding: 92px 0 132px; }
.hero__mark { width: 205px; height: 103px; margin: 0 0 14px -7px; overflow: hidden; }
.hero__mark img { width: 198px; max-width: none; transform: translateY(-49px); }
.eyebrow {
  margin-bottom: 21px;
  color: var(--gold);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero__lead { max-width: 625px; margin: 26px 0 28px; color: rgb(255 255 255 / 83%); font-size: clamp(1rem, 1.25vw, 1.18rem); line-height: 1.5; }
.hero__proofs {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  color: rgb(255 255 255 / 78%);
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}
.hero__proofs li { position: relative; margin: 0; padding-left: 15px; }
.hero__proofs li::before { position: absolute; top: .43em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); content: ""; }
.scope-note { margin: 15px 0 0; color: rgb(255 255 255 / 52%); font-size: .72rem; }

.research-section-lead { max-width: 690px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }

.research-journey { background: var(--navy); color: var(--white); }
.research-journey h2 { max-width: 900px; color: var(--white); }
.research-journey .research-section-lead { color: rgb(255 255 255 / 72%); }
.research-timeline { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 58px; }
.research-timeline::before { position: absolute; top: 30px; right: 8%; left: 8%; height: 1px; background: rgb(228 180 94 / 42%); content: ""; }
.research-step { position: relative; margin: 0; padding: 0 20px 25px; }
.research-step__num { position: relative; z-index: 1; display: grid; width: 62px; height: 62px; place-items: center; margin-bottom: 24px; border: 1px solid var(--gold); border-radius: 50%; background: var(--navy); color: var(--gold-light); font: 700 1.25rem/1 var(--serif); }
.research-step__period { color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.research-step h3 { margin: 8px 0 12px; color: var(--white); font-size: 1.55rem; line-height: 1.16; }
.research-step p { margin: 0; color: rgb(255 255 255 / 72%); font-size: .9rem; }
.research-journey-summary { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 54px; padding: 28px 30px; border: 1px solid rgb(228 180 94 / 28%); background: rgb(255 255 255 / 3.5%); }
.research-journey-summary p { max-width: 700px; margin: 0; color: rgb(255 255 255 / 84%); }
.research-journey-summary strong { color: var(--white); }
.research-journey-summary .button { flex: 0 0 auto; }

.research-inside { background: #ede7dc; }
.research-inside-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.research-inside-head > div { max-width: 760px; }
.research-inside-head h2 { max-width: 760px; }
.research-inside-head .research-section-lead { max-width: 430px; margin-bottom: 5px; }
.research-products { display: grid; gap: 24px; margin-top: 56px; }
.research-product { display: grid; min-height: 440px; grid-template-columns: 1fr .92fr; overflow: hidden; background: var(--paper); box-shadow: 0 18px 52px rgb(16 29 47 / 8%); }
.research-product__copy { padding: 52px; }
.research-product__kicker { color: var(--gold-deep); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.research-product h3 { margin: 10px 0 12px; color: var(--ink); font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1.08; }
.research-product__sub { margin: 0 0 24px; color: var(--ink); font-weight: 800; }
.research-product ul { margin: 0; padding: 0; list-style: none; }
.research-product li { position: relative; margin: 10px 0; padding-left: 20px; color: #566071; }
.research-product li::before { position: absolute; top: .72em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); content: ""; }
.research-product__visual { position: relative; display: grid; min-height: 380px; place-items: center; margin: 0; overflow: hidden; background: var(--navy-2); }
.research-product__visual img { position: relative; z-index: 1; max-width: 86%; max-height: 365px; object-fit: contain; filter: drop-shadow(0 24px 25px rgb(0 0 0 / 32%)); }
.research-product__visual figcaption { position: absolute; z-index: 2; bottom: 20px; left: 22px; padding: 7px 10px; border: 1px solid rgb(228 180 94 / 25%); background: rgb(5 15 30 / 82%); color: var(--gold-light); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.bank { background: linear-gradient(120deg, #f8f3ea, var(--sand)); }
.bank::after { position: absolute; right: -30px; bottom: -45px; color: rgb(22 58 103 / 5%); content: "AOCP"; font: 800 clamp(8rem, 18vw, 16rem)/1 var(--sans); letter-spacing: -.08em; }
.bank__inner { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; gap: 10%; }
.bank__heading h2 { margin-bottom: 30px; }
.bank__heading > p:last-child { max-width: 430px; color: var(--muted); }
.bank__copy { color: var(--muted); font-size: 1.06rem; }
.bank__copy > p { max-width: 620px; }
.bank__close { max-width: 660px; margin: 34px 0 0; color: var(--blue); font: 700 clamp(1.45rem, 2.3vw, 2.1rem)/1.3 var(--serif); }

.qualification { background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 100%); color: rgb(255 255 255 / 72%); }
.qualification__glow { position: absolute; top: -220px; right: -180px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgb(228 180 94 / 22%) 0%, transparent 68%); }
.qualification__inner { position: relative; max-width: 1080px; }
.qualification h2 { max-width: 760px; color: var(--white); }
.qualification__intro { max-width: 780px; margin: 30px 0 0; color: rgb(255 255 255 / 72%); }
.qualification__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 65px; border: 1px solid rgb(228 180 94 / 32%); }
.qualification__columns > div { min-height: 300px; padding: 40px 44px; background: rgb(255 255 255 / 4%); }
.qualification__columns > div + div { border-left: 1px solid rgb(228 180 94 / 28%); }
.qualification__columns h3 { margin-bottom: 28px; color: var(--white); font: 700 1.25rem/1.3 var(--sans); letter-spacing: -.02em; }
.qualification__columns li { color: rgb(255 255 255 / 66%); }
.qualification__columns li::marker { color: var(--gold); }
.emoji { display: inline-block; margin-right: 7px; font-family: "Noto Color Emoji Local", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", sans-serif; font-size: .92em; font-style: normal; line-height: 1; vertical-align: -.05em; }

.authority { background: var(--paper); }
.authority__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 9%; align-items: center; }
.authority__portrait { position: relative; width: 100%; margin: 0; }
.authority__portrait img { position: relative; z-index: 2; width: 100%; aspect-ratio: 1.22; object-fit: cover; object-position: 75% 48%; box-shadow: 0 35px 65px rgb(6 26 48 / 20%); }
.authority__frame { position: absolute; z-index: 1; right: -20px; bottom: -20px; left: 20px; height: 88%; border: 2px solid var(--gold); }
.authority__copy h2 { color: var(--blue); }
.authority__role { margin-top: 27px; color: var(--ink); font: 700 clamp(1.35rem, 2.1vw, 1.85rem)/1.28 var(--serif); }
.authority__copy > p:last-child { color: var(--muted); }

.offer { background: linear-gradient(140deg, var(--navy) 0%, var(--blue) 78%, #214e7b 100%); color: rgb(255 255 255 / 72%); }
.offer__glow { position: absolute; right: -120px; bottom: -330px; width: 750px; height: 750px; border-radius: 50%; background: radial-gradient(circle, rgb(228 180 94 / 25%) 0%, transparent 68%); }
.offer__inner { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 7%; align-items: center; }
.offer h2 { color: var(--white); }
.offer-list { margin: 50px 0 0; }
.offer-list div { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 17px 0; border-top: 1px solid var(--line-light); }
.offer-list div:last-child { border-bottom: 1px solid var(--line-light); }
.offer-list dt strong,
.offer-list dt span { display: block; }
.offer-list dt { color: var(--white); }
.offer-list dt span { margin-top: 4px; color: rgb(255 255 255 / 52%); font-size: .78rem; }

.offer-list dd { margin: 0; color: rgb(255 255 255 / 70%); text-align: right; white-space: nowrap; }
.offer-list dd small { display: block; color: rgb(255 255 255 / 43%); font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; }
.offer-list dd del { text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
.offer-list__bonus { background: rgb(228 180 94 / 8%); }
.offer-list__bonus dt strong { color: var(--gold-light); }
.offer__purchase { padding: 42px 34px; border: 1px solid rgb(228 180 94 / 42%); background: rgb(255 255 255 / 6%); box-shadow: 0 30px 70px rgb(0 0 0 / 18%); backdrop-filter: blur(8px); }
.promo-label { margin-bottom: 18px; color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.countdown { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 24px; border: 1px solid #e96870; background: linear-gradient(145deg, #b8202c 0%, #7c101a 100%); box-shadow: 0 16px 34px rgb(77 5 13 / 34%), inset 0 1px 0 rgb(255 255 255 / 18%); }
.countdown div { padding: 13px 7px; text-align: center; }
.countdown div + div { border-left: 1px solid rgb(255 255 255 / 24%); }
.countdown strong { display: block; color: var(--white); font: 700 1.6rem/1 var(--serif); }
.countdown span { display: block; margin-top: 6px; color: rgb(255 255 255 / 78%); font-size: .52rem; text-transform: uppercase; }
.anchor-price { margin: 0 0 9px; color: rgb(255 255 255 / 50%); font-size: .78rem; text-align: center; }
.anchor-price del { color: rgb(255 255 255 / 76%); text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
.price { margin: 0; color: var(--gold-light); font: 700 clamp(4.7rem, 7.5vw, 7.7rem)/.9 var(--serif); letter-spacing: -.055em; text-align: center; white-space: nowrap; }
.price--installment { letter-spacing: 0; }
.price--installment .price__terms { display: block; margin-bottom: 4px; color: rgb(255 255 255 / 67%); font: 800 .63rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.price--installment strong { display: block; color: var(--gold-light); font: 700 clamp(4rem, 6.5vw, 6.6rem)/.86 var(--serif); letter-spacing: -.055em; }
.price--installment .price__currency { display: inline; color: inherit; font-size: .42em; letter-spacing: -.02em; vertical-align: .58em; }
.price--installment .price__amount { display: inline; color: inherit; font: inherit; letter-spacing: inherit; }
.cash-price { margin: 8px 0 0; color: rgb(255 255 255 / 58%); font-size: .76rem; text-align: center; }
.cash-price strong { color: rgb(255 255 255 / 82%); font-weight: 700; }
.saving { margin: 15px 0 0; color: rgb(255 255 255 / 72%); font-size: .8rem; text-align: center; }
.saving strong { color: var(--gold-light); }
.deadline { margin: 9px 0 24px; color: rgb(255 255 255 / 48%); font-size: .69rem; line-height: 1.45; text-align: center; }
.promo-expired { margin-bottom: 25px; padding: 18px; border: 1px solid rgb(228 180 94 / 38%); color: var(--gold-light); text-align: center; }
.hotmart { margin: 15px 0 0; color: rgb(255 255 255 / 52%); font-size: .72rem; text-align: center; }
.offer__purchase .button { width: 100%; }

.guarantee { background: linear-gradient(120deg, #f8f3ea, var(--sand)); }
.guarantee__inner { display: grid; grid-template-columns: 210px 1fr; gap: 70px; align-items: center; max-width: 1020px; }
.guarantee__seal { display: flex; width: 190px; aspect-ratio: 1; flex-direction: column; align-items: center; justify-content: center; border: 2px solid var(--gold-deep); border-radius: 50%; background: rgb(255 255 255 / 46%); box-shadow: 0 24px 60px rgb(16 45 73 / 10%); color: var(--blue); }
.guarantee__seal strong { font: 700 5.2rem/.8 var(--serif); }
.guarantee__seal span { margin-top: 15px; font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.guarantee h2 { color: var(--blue); }
.guarantee__inner > div:last-child > p:not(.section-kicker) { max-width: 720px; color: var(--muted); }

.faq { background: linear-gradient(130deg, var(--paper), #f1e8da); }
.faq__inner { max-width: 960px; }
.faq h2 { margin-bottom: 52px; }
.accordion__item { border-top: 1px solid var(--line); }
.accordion__item:last-child { border-bottom: 1px solid var(--line); }
.accordion__item h3 { margin: 0; }
.accordion button { display: flex; width: 100%; min-height: 78px; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 0; border: 0; background: transparent; color: var(--ink); font: 750 clamp(1rem, 1.3vw, 1.18rem)/1.35 var(--sans); text-align: left; cursor: pointer; }
.accordion button span { color: var(--gold-deep); font: 700 1.8rem/1 var(--serif); }
.accordion__panel { max-width: 780px; padding: 0 60px 27px 0; color: var(--muted); }
.accordion__panel p { margin: 0; }

.closing { background: linear-gradient(145deg, #071a2e, var(--blue)); color: rgb(255 255 255 / 72%); }
.closing__light { position: absolute; top: -250px; left: -180px; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgb(228 180 94 / 18%) 0%, transparent 70%); }
.closing__inner { position: relative; max-width: 940px; }
.closing h2 { max-width: 850px; color: var(--white); }
.closing__inner > p { max-width: 720px; }
.closing__inner > p:first-of-type { margin-top: 40px; }
.closing .button { margin-top: 25px; }
.closing blockquote { max-width: 820px; margin: 55px 0 40px; padding: 28px 32px; border: 1px solid rgb(228 180 94 / 38%); background: rgb(255 255 255 / 5%); color: var(--gold-light); font: 700 clamp(1.6rem, 2.5vw, 2.35rem)/1.23 var(--serif); }

.footer { padding-block: 55px; background: #03111f; color: rgb(255 255 255 / 47%); font-size: .68rem; line-height: 1.7; }
.footer .container { max-width: 980px; }
.footer p { margin-bottom: 10px; }

@media (max-width: 1050px) {
  .container { width: min(calc(100% - 56px), 920px); }
  h1 { font-size: clamp(3.8rem, 7vw, 5.55rem); }
  .hero__copy { width: 67%; }
  .offer__inner { gap: 6%; }
  .offer__purchase { padding: 42px 30px; }
}

@media (max-width: 899px) {
  .container { width: min(calc(100% - 42px), 740px); }
  .section { padding-block: 88px; }
  .hero,
  .hero__inner { min-height: 100dvh; }
  .hero__backdrop img { object-position: center top; }
  .hero__backdrop::after { background: linear-gradient(180deg, transparent 0%, transparent 24%, rgb(6 26 48 / 34%) 32%, var(--navy) 47%, var(--navy) 100%); }
  .hero__inner { display: block; }
  .hero__copy { display: flex; width: 100%; min-height: 100dvh; flex-direction: column; justify-content: center; padding: clamp(188px, 34dvh, 300px) 0 calc(22px + env(safe-area-inset-bottom)); }
  .hero__mark { position: absolute; top: 40px; left: 0; width: 150px; height: 72px; margin: 0; }
  .hero__mark img { width: 144px; transform: translateY(-35px); }

  .research-timeline { grid-template-columns: 1fr 1fr; gap: 34px 8px; }
  .research-timeline::before { display: none; }
  .research-journey-summary { align-items: flex-start; flex-direction: column; }
  .research-inside-head { display: block; }
  .research-inside-head .research-section-lead { max-width: 690px; margin-top: 22px; }
  .research-product { grid-template-columns: 1fr; }
  .research-product__visual { min-height: 350px; }
  .bank__inner { grid-template-columns: 1fr; gap: 45px; }
  .bank__close { grid-column: 1; }
  .authority__grid { grid-template-columns: 1fr; gap: 64px; }
  .authority__portrait { max-width: 700px; }
  .offer__inner { grid-template-columns: 1fr; gap: 58px; }
  .offer__purchase { max-width: 600px; }
}

@media (max-width: 767px) {
  body { font-size: 1rem; }
  .container { width: calc(100% - 40px); }
  h1 { font-size: clamp(2.25rem, 10.3vw, 2.75rem); line-height: .95; }
  h2 { font-size: clamp(2.55rem, 11vw, 3.55rem); line-height: 1; }
  h3 { font-size: clamp(2.1rem, 9.2vw, 2.9rem); }
  .button { width: 100%; min-height: 56px; padding: 14px 18px; }
  .hero,
  .hero__inner,
  .hero__copy { min-height: 100dvh; }
  .hero__mark { width: 145px; height: 69px; }
  .hero__mark img { width: 139px; transform: translateY(-34px); }
  .hero__lead { margin: 18px 0; font-size: .9rem; line-height: 1.4; }
  .hero__proofs { gap: 8px; margin: 0 0 20px; font-size: .64rem; line-height: 1.3; }
  .hero__proofs li { padding-left: 11px; }
  .hero__proofs li::before { width: 5px; height: 5px; }
  .section-kicker { font-size: .6rem; }
  .research-section-lead { font-size: 1rem; }
  .research-timeline { grid-template-columns: 1fr; gap: 36px; }
  .research-step { display: grid; grid-template-columns: 52px 1fr; gap: 0 18px; padding: 0; }
  .research-step__num { grid-row: 1; width: 52px; height: 52px; margin: 0; font-size: 1rem; }
  .research-step__copy { grid-column: 2; grid-row: 1; }
  .research-step h3 { font-size: 1.45rem; }
  .research-journey-summary { padding: 24px; }
  .research-product__copy { padding: 32px 25px; }
  .research-product h3 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .research-product li { font-size: .94rem; }
  .research-product__visual { min-height: 300px; }
  .research-product__visual img { max-height: 280px; }
  .qualification__columns { grid-template-columns: 1fr; margin-top: 45px; }
  .qualification__columns > div { min-height: 0; padding: 30px 25px; }
  .qualification__columns > div + div { border-top: 1px solid rgb(228 180 94 / 28%); border-left: 0; }
  .authority__portrait img { aspect-ratio: 1.08; object-position: 73% 48%; }
  .authority__frame { right: -10px; bottom: -12px; left: 12px; }
  .offer-list div { grid-template-columns: 1fr; gap: 7px; }
  .offer-list dd { text-align: left; }
  .offer__purchase { padding: 34px 22px; }
  .price { font-size: clamp(4.25rem, 20vw, 5.7rem); }
  .price.price--installment { font-size: inherit; }
  .price--installment strong { font-size: clamp(3.7rem, 18vw, 5rem); }
  .countdown strong { font-size: 1.35rem; }
  .countdown span { font-size: .46rem; }
  .guarantee__inner { grid-template-columns: 1fr; gap: 35px; }
  .guarantee__seal { width: 145px; }
  .guarantee__seal strong { font-size: 4rem; }
  .faq h2 { margin-bottom: 38px; }
  .accordion button { min-height: 70px; padding: 17px 0; font-size: .96rem; }
  .accordion__panel { padding-right: 18px; }
  .closing blockquote { padding: 23px 21px; font-size: 1.65rem; }
}

@media (max-width: 340px) {
  .container { width: calc(100% - 32px); }
  .hero,
  .hero__inner,
  .hero__copy { min-height: 100dvh; }
  .hero__copy { padding: 170px 0 16px; }
  h1 { font-size: 1.95rem; }
  .hero__mark { top: 38px; width: 135px; height: 64px; }
  .hero__mark img { width: 129px; transform: translateY(-31px); }
  .hero__lead { margin: 15px 0; font-size: .76rem; line-height: 1.28; }
  .hero__proofs { gap: 5px; margin: 0 0 16px; font-size: .64rem; line-height: 1.22; }
  .hero__proofs li { padding-left: 9px; }
  .button { min-height: 50px; font-size: .78rem; }
  .countdown div { padding-inline: 4px; }
  .countdown strong { font-size: 1.2rem; }
  .research-product__copy { padding-inline: 21px; }
  .research-product__visual { min-height: 270px; }
}

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