:root {
  --ink: #081d49;
  --ink-soft: #1e315d;
  --navy: #002c5c;
  --navy-deep: #002452;
  --pink: #d6006f;
  --gold: #c8952f;
  --gold-soft: #d9ad55;
  --cream: #f4ecdf;
  --cream-2: #efe2d0;
  --paper: #fffdf8;
  --page-bg: #fbf7ef;
  --soft-page-bg:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 248, 0.94) 18%, rgba(255, 253, 248, 0.94) 82%, rgba(242, 232, 217, 0.84)),
    repeating-linear-gradient(0deg, rgba(8, 29, 73, 0.018) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(200, 149, 47, 0.018) 0 1px, transparent 1px 8px),
    var(--page-bg);
  --line: #e6dfd4;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(8, 29, 73, 0.12);
  --font-body: "Nunito", "Trebuchet MS", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Caveat", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--soft-page-bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
textarea {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.page-shell {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  background: var(--soft-page-bg);
  overflow: hidden;
}

.section-inner {
  width: min(100% - 96px, 1390px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 132px;
  padding: 0 49px;
  background: var(--white);
}

.brand {
  display: inline-grid;
  gap: 3px;
  flex: 0 0 auto;
  color: var(--ink);
  white-space: nowrap;
}

.brand-main {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-easy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 52px;
  color: #061a43;
  background: linear-gradient(180deg, #ffa52e, #ff9417);
  font-family: var(--font-script);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 7px 12px rgba(200, 149, 47, 0.18);
  transform: rotate(-6deg) translateY(1px);
}

.brand-name {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2.5px;
  line-height: 1;
}

.brand-deals {
  margin-left: 72px;
  color: rgba(8, 29, 73, 0.72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  color: #07183d;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.site-nav svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.1;
}

.nav-order,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(180deg, #082e63, #002656);
  border: 0;
  box-shadow: 0 12px 24px rgba(0, 39, 88, 0.18);
  font-weight: 900;
}

.nav-order {
  flex: 0 0 auto;
  width: 124px;
  height: 58px;
  margin-left: 28px;
  border-radius: 25px;
  font-size: 13px;
}

.button {
  gap: 13px;
  border-radius: 39px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.nav-order:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.hero {
  position: relative;
  min-height: 1018px;
  padding-left: 58px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.95) 36%, rgba(239, 226, 208, 0.62) 52%, rgba(225, 205, 180, 0.72) 100%);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 555px;
  padding-top: 72px;
}

.hero-copy > .hero-sale-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: 100%;
  min-height: 42px;
  margin: 0 0 18px;
  padding: 9px 18px 9px 10px;
  color: #082e63;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.78) 0 34%, rgba(255, 245, 213, 0.42) 42%, rgba(255, 255, 255, 0.66) 50%, rgba(255, 245, 213, 0.42) 58%, rgba(255, 255, 255, 0.78) 66%),
    linear-gradient(180deg, #fff4cf, #ffd97b);
  border: 1px solid rgba(200, 149, 47, 0.78);
  border-radius: 999px;
  box-shadow:
    0 12px 26px rgba(200, 149, 47, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-sale-badge strong {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--white);
  background: #082e63;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-sale-badge span {
  min-width: 0;
}

.hero h1,
.memory-band h2,
.how-it-works h2,
.confidence-section h2,
.bottom-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 67px;
  line-height: 1.08;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1.is-changing {
  opacity: 0.94;
  transform: translateY(2px);
}

.hero h1 i,
.memory-band h2 i,
.review-card h2 i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-left: 12px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
}

.hero h1 i::before,
.memory-band h2 i::before,
.review-card h2 i::before {
  content: "\2661";
  font-size: 58px;
  font-weight: 400;
}

.hero-copy > p {
  width: 514px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.62;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: 520px;
  margin-top: 50px;
}

.hero-benefits article {
  text-align: center;
}

.icon-circle {
  display: inline-grid;
  place-items: center;
  width: 67px;
  height: 67px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(8, 29, 73, 0.08);
}

.icon-circle svg {
  width: 43px;
  height: 43px;
  stroke-width: 1.8;
}

.hero-benefits h2 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-benefits p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.48;
}

.hero-review-benefit {
  display: none;
}

.hero-review-line {
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.hero-review-line .rating-stars {
  color: #f6ad00;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-action-panel {
  position: relative;
  z-index: 2;
  width: 520px;
  margin-top: 58px;
}

.hero-action-panel .hero-button {
  margin-top: 0;
}

.hero-button {
  width: 485px;
  height: 80px;
  margin-top: 58px;
  font-size: 22px;
}

.hero-trust-badge {
  display: grid;
  gap: 2px;
  width: fit-content;
  max-width: 240px;
  margin-top: 7px;
  padding: 3px 5px;
  color: #082e63;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  box-shadow: none;
}

.hero-trust-badge p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.15;
}

.hero-trust-badge svg {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  color: var(--ink);
  stroke-width: 2.2;
}

.hero-trust-badge img {
  flex: 0 0 auto;
  display: block;
  width: 40px;
  height: auto;
}

.hero-trust-badge span {
  min-width: 0;
}

.happy-note,
.made-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.happy-note {
  margin: 28px 0 0 25px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 0 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.hero-rating strong {
  font-size: 15px;
}

.hero-rating .rating-stars {
  font-size: 16px;
  letter-spacing: 1px;
}

.happy-note svg,
.made-note svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  stroke-width: 2.2;
}

.happy-note span,
.made-note span {
  min-width: 0;
}

.mobile-note-break {
  display: none;
}

.image-slot {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #f5eee4 0%, #e5d6c2 58%, #d1bca2 100%);
  overflow: hidden;
}

.image-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(8, 29, 73, 0.05);
  pointer-events: none;
}

.image-filled {
  background: #f4ecdf;
}

.image-filled img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-slot {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 520px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.57) 12%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 58% 45%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, #f0e5d6 0%, #dfc9ad 60%, #ccb18e 100%);
}

.hero-image-slot.image-slot::after {
  border-left: 0;
}

.hero-image-slot::before {
  content: "";
  position: absolute;
  left: 49%;
  bottom: 122px;
  width: 435px;
  height: 270px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 236, 223, 0.86)),
    linear-gradient(145deg, #f5eee4, #ded0bd);
  border: 12px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 38px rgba(8, 29, 73, 0.1);
  transform: rotate(8deg);
}

.hero-image-slot.image-filled::before {
  display: none;
}

.hero-image-slot img {
  object-position: 45% 50%;
  transform: scale(1.02);
  transform-origin: center;
}

.hero-image-slot .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 850ms ease;
  will-change: opacity;
}

.hero-image-slot .hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-image-slot > .hero-slide:nth-of-type(1) {
  object-position: 50% 48%;
}

.hero-image-slot > .hero-slide:nth-of-type(2) {
  object-position: 50% 45%;
}

.hero-image-slot > .hero-slide:nth-of-type(3) {
  object-position: 47% 48%;
}

.hero-image-slot > .hero-slide:nth-of-type(4) {
  object-position: 50% 45%;
}

.hero-image-slot > .hero-slide:nth-of-type(5) {
  object-position: 50% 48%;
}

.hero-image-slot > .hero-slide:nth-of-type(6) {
  object-position: 50% 46%;
}

.hero-image-slot > .hero-slide:nth-of-type(7) {
  object-position: 48% 45%;
}

.hero-image-slot > .hero-slide:nth-of-type(8) {
  object-position: 48% 50%;
}

.hero-image-slot > .hero-slide:nth-of-type(9) {
  object-position: 50% 50%;
}

.hero-image-slot > .hero-slide:nth-of-type(10) {
  object-position: 50% 48%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-slot .hero-slide {
    transition: none;
    opacity: 0;
  }

  .hero-image-slot .hero-slide.is-active {
    opacity: 1;
  }
}

.hero-image-slot.image-filled::after {
  z-index: 2;
  border: 0;
  background:
    radial-gradient(circle at 100% 100%, #dbc2a0 0 110px, rgba(219, 194, 160, 0) 132px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.72) 16%, rgba(255, 253, 248, 0) 38%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(130, 91, 45, 0.08));
}

.hero-image-offer {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.hero-image-offer {
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 42px);
  width: clamp(250px, 26vw, 354px);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(8, 29, 73, 0.22);
  transform: rotate(-1deg);
}

.hero-image-offer img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.hero-image-offer img {
  border-radius: 14px;
}

.thought-bubble {
  position: absolute;
  z-index: 3;
  top: 61px;
  right: 63px;
  display: grid;
  place-items: center;
  width: 337px;
  min-height: 210px;
  padding: 30px 42px 38px;
  color: #0d214c;
  background: #f3eadb;
  border-radius: 48% 52% 45% 55% / 44% 44% 56% 56%;
  box-shadow:
    -42px 39px 0 -28px #f3eadb,
    -72px 95px 0 -58px #f3eadb;
}

.thought-bubble::before,
.thought-bubble::after {
  content: "";
  position: absolute;
  background: #f3eadb;
  border-radius: 50%;
}

.thought-bubble::before {
  width: 120px;
  height: 92px;
  top: -1px;
  left: 62px;
}

.thought-bubble::after {
  width: 108px;
  height: 88px;
  top: 4px;
  right: 48px;
}

.thought-bubble p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 230px;
  font-family: var(--font-script);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.thought-bubble p.is-changing {
  opacity: 0.92;
  transform: translateY(3px);
}

.thought-bubble p::after {
  content: "\2661";
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.4;
  transform: translateY(11px);
}

.thought-bubble span {
  position: absolute;
  left: -36px;
  bottom: -38px;
  width: 32px;
  height: 32px;
  background: #f3eadb;
  border-radius: 50%;
}

.thought-bubble span::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 38px;
  width: 18px;
  height: 18px;
  background: #f3eadb;
  border-radius: 50%;
}

.memory-band {
  margin-top: 32px;
  min-height: 474px;
  padding: 35px 0 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 46% 28%, rgba(28, 84, 128, 0.58), transparent 26%),
    linear-gradient(90deg, #002f61 0%, #002855 47%, #002f61 100%);
  text-align: center;
}

.memory-band h2 {
  color: var(--white);
  font-size: 46px;
  line-height: 1.04;
}

.memory-band h2 i {
  width: 48px;
  height: 48px;
  margin-left: 8px;
}

.memory-band h2 i::before {
  font-size: 54px;
}

.memory-band > .section-inner > p {
  max-width: 760px;
  margin: 35px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
  margin-top: 42px;
}

.memory-grid article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.memory-grid svg {
  width: 56px;
  height: 56px;
  color: var(--gold-soft);
  stroke-width: 1.8;
}

.memory-grid h3 {
  margin: 19px 0 13px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.memory-grid p {
  max-width: 185px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.pricing-preview {
  position: relative;
  padding: 52px 0 58px;
  color: var(--navy-deep);
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(255, 253, 248, 0.96) 46%, rgba(244, 236, 223, 0.94)),
    repeating-linear-gradient(90deg, rgba(200, 149, 47, 0.028) 0 1px, transparent 1px 9px),
    var(--soft-page-bg);
  text-align: center;
}

.pricing-preview::before,
.pricing-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(100% - 96px, 1390px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 149, 47, 0.45), transparent);
  transform: translateX(-50%);
}

.pricing-preview::before {
  top: 0;
}

.pricing-preview::after {
  bottom: 0;
}

.pricing-kicker {
  width: fit-content;
  margin: 0 auto 11px;
  padding: 7px 15px;
  color: #082e63;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.74) 0 34%, rgba(255, 245, 213, 0.5) 42%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 245, 213, 0.5) 58%, rgba(255, 255, 255, 0.74) 66%),
    linear-gradient(180deg, #fff4cf, #ffd97b);
  border: 1px solid rgba(200, 149, 47, 0.62);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(200, 149, 47, 0.14);
}

.pricing-preview h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.08;
}

.pricing-preview h2 span {
  color: #a66a0f;
}

.pricing-subtitle {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 800;
}

.pricing-cards {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.14fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.price-card {
  position: relative;
  min-height: 154px;
  padding: 25px 18px 19px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(251, 245, 235, 0.96));
  border: 1px solid rgba(200, 149, 47, 0.22);
  border-radius: 8px;
  box-shadow:
    0 18px 34px rgba(8, 29, 73, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.price-card.is-featured {
  min-height: 184px;
  padding: 33px 22px 25px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(255, 248, 232, 0.98)),
    rgba(255, 250, 243, 0.98);
  border-color: rgba(200, 149, 47, 0.74);
  box-shadow:
    0 28px 48px rgba(8, 29, 73, 0.12),
    0 16px 30px rgba(200, 149, 47, 0.16),
    inset 0 0 0 1px rgba(200, 149, 47, 0.3);
  transform: translateY(-8px);
}

.price-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 25px;
  padding: 0 14px;
  color: var(--white);
  background: linear-gradient(180deg, #082e63, #002656);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(0, 39, 88, 0.16);
  transform: translateX(-50%);
}

.price-card.is-featured .price-ribbon {
  color: #082e63;
  background: linear-gradient(180deg, #fff4cf, #ffd97b);
  border: 1px solid rgba(200, 149, 47, 0.58);
  box-shadow: 0 12px 22px rgba(200, 149, 47, 0.2);
}

.price-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.price-card.is-featured h3 {
  font-size: 26px;
}

.old-price {
  width: fit-content;
  margin: 0 auto 1px;
  color: #8d7f6d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.sale-price {
  margin: 0;
  color: var(--navy-deep);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.08;
}

.price-card.is-featured .sale-price {
  color: #a66a0f;
  font-size: 42px;
}

.savings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin: 12px 0 0;
  padding: 0 13px;
  color: var(--white);
  background: linear-gradient(180deg, #082e63, #002656);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.price-card.is-featured .savings {
  min-height: 36px;
  padding-inline: 17px;
  color: #082e63;
  background: linear-gradient(180deg, #fff4cf, #ffd97b);
  border: 1px solid rgba(200, 149, 47, 0.58);
  font-size: 13px;
}

.pricing-note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
}

.pricing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 43px;
  margin-top: 19px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(180deg, #082e63, #002656);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 39, 88, 0.16);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.pricing-link svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.6;
}

.customize-section {
  position: relative;
  padding: 50px 0 58px;
  color: var(--navy-deep);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.97), rgba(248, 242, 232, 0.96)),
    var(--soft-page-bg);
  text-align: center;
}

.customize-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100% - 96px, 1390px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 149, 47, 0.36), transparent);
  transform: translateX(-50%);
}

.customize-kicker {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 6px 14px;
  color: #082e63;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.72) 0 34%, rgba(255, 245, 213, 0.52) 42%, rgba(255, 255, 255, 0.64) 50%, rgba(255, 245, 213, 0.52) 58%, rgba(255, 255, 255, 0.72) 66%),
    linear-gradient(180deg, #fff4cf, #ffd97b);
  border: 1px solid rgba(200, 149, 47, 0.58);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.customize-section h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
}

.customize-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 33px;
}

.customize-grid article {
  min-height: 174px;
  padding: 28px 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(251, 245, 235, 0.96));
  border: 1px solid rgba(200, 149, 47, 0.2);
  border-radius: 8px;
  box-shadow:
    0 18px 34px rgba(8, 29, 73, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.customize-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--navy-deep);
  background: linear-gradient(180deg, #fff4cf, #ffd97b);
  border: 1px solid rgba(200, 149, 47, 0.55);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(200, 149, 47, 0.16);
}

.customize-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 2.2;
}

.customize-grid h3 {
  margin: 18px 0 9px;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.customize-grid p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.customize-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 242px;
  min-height: 58px;
  margin-top: 31px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(180deg, #082e63, #002656);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 39, 88, 0.18);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.customize-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.7;
}

.how-it-works {
  padding: 38px 0 92px;
  background: var(--soft-page-bg);
}

.how-it-works h2 {
  font-size: 40px;
  line-height: 1.1;
  text-align: center;
}

.title-rule {
  width: 120px;
  height: 2px;
  margin: 17px auto 63px;
  background: var(--gold);
}

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 190px) 48px minmax(0, 190px) 48px minmax(0, 190px) 48px minmax(0, 190px);
  justify-content: center;
  align-items: start;
  gap: 36px;
}

.step-card {
  position: relative;
  justify-self: center;
  width: 100%;
}

.step-number {
  position: absolute;
  z-index: 2;
  top: -49px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--white);
  background: var(--navy-deep);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(8, 29, 73, 0.2);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.step-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(8, 29, 73, 0.03);
}

.step-image img {
  border-radius: inherit;
}

[data-image-slot="step-photo"] img {
  object-position: 50% 42%;
  transform: scale(1);
}

[data-image-slot="step-size"] img {
  object-position: 50% 45%;
}

[data-image-slot="step-print"] img {
  object-position: 44% 42%;
}

[data-image-slot="step-enjoy"] img {
  object-position: 50% 45%;
  transform: scale(1);
}

.step-card h3 {
  margin: 28px 0 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.step-card p {
  width: 190px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.step-arrow {
  display: grid;
  place-items: center;
  margin-top: 72px;
  color: var(--ink);
}

.step-arrow svg {
  width: 44px;
  height: 44px;
  stroke-width: 2.8;
}

.confidence-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.83fr) minmax(520px, 1.17fr);
  gap: 62px;
  padding: 36px 70px 70px 52px;
  background: var(--soft-page-bg);
}

.confidence-copy {
  padding-top: 30px;
}

.confidence-section h2 {
  font-size: 42px;
  line-height: 1.1;
}

.quality-list {
  display: grid;
  gap: 45px;
  margin-top: 50px;
}

.quality-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: start;
  gap: 26px;
}

.quality-list .icon-circle {
  width: 66px;
  height: 66px;
  background: #f8f5ef;
  box-shadow: none;
}

.quality-list .icon-circle svg {
  width: 45px;
  height: 45px;
}

.quality-list h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.quality-list p {
  max-width: 360px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

.review-card {
  min-height: 654px;
  padding: 50px 72px 45px;
  background:
    radial-gradient(circle at 88% 13%, rgba(255, 255, 255, 0.52), transparent 23%),
    linear-gradient(135deg, #f7f2ea, #eee1cf);
  border-radius: 8px;
}

.review-card h2 {
  font-size: 31px;
  line-height: 1.15;
  text-align: center;
}

.review-card h2 i {
  width: 42px;
  height: 42px;
  margin-left: 15px;
}

.review-card h2 i::before {
  font-size: 52px;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 31px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.rating-summary strong {
  font-size: 22px;
  font-weight: 900;
}

.rating-stars {
  position: relative;
  display: inline-block;
  color: #cfd5df;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
}

.rating-stars::before {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  inset: 0 auto auto 0;
  width: 94%;
  color: #f4b000;
  overflow: hidden;
  white-space: nowrap;
}

.review-count-link {
  color: #0067b1;
  font-size: 17px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-trust {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.review-list {
  display: grid;
  gap: 38px;
  margin-top: 38px;
}

.review-list article {
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: start;
  gap: 32px;
}

.review-avatar {
  width: 113px;
  height: 113px;
  border-radius: 50%;
}

.review-avatar img {
  border-radius: inherit;
}

[data-image-slot="review-1"] img {
  object-position: 43% 28%;
}

[data-image-slot="review-2"] img {
  object-position: 48% 36%;
}

[data-image-slot="review-3"] img {
  object-position: 50% 35%;
}

.stars {
  color: var(--gold);
  font-size: 21px;
  letter-spacing: 3px;
  line-height: 1;
}

.review-list blockquote {
  max-width: 440px;
  margin: 11px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.34;
}

.review-list cite {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}

.bottom-cta {
  position: relative;
  display: grid;
  grid-template-columns: 344px 1fr 360px;
  align-items: center;
  min-height: 319px;
  padding: 0 40px;
  background:
    linear-gradient(90deg, rgba(228, 211, 190, 0.98), rgba(249, 245, 238, 0.98) 35%, rgba(231, 213, 190, 0.98));
  overflow: hidden;
}

.bottom-decor {
  align-self: end;
  width: 316px;
  height: 252px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent),
    linear-gradient(160deg, #eee0cb, #d1b895);
}

.bottom-decor img {
  object-position: 54% 46%;
}

.bottom-copy {
  align-self: start;
  padding-top: 43px;
  text-align: center;
}

.bottom-cta h2 {
  font-size: 37px;
  line-height: 1.15;
}

.bottom-cta p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.bottom-button {
  display: flex;
  width: 444px;
  height: 68px;
  margin: 30px auto 0;
  font-size: 18px;
}

.bottom-copy .made-note {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 19px auto 0;
  font-size: 14px;
}

.bottom-canvas {
  justify-self: end;
  width: 333px;
  height: 208px;
  border: 10px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 34px rgba(8, 29, 73, 0.12);
}

.bottom-canvas img {
  object-position: 50% 43%;
  transform: scale(1);
}

.pre-footer-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pre-footer-trust article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 78px;
  color: var(--ink);
  background: #fffdf8;
  font-size: 14px;
  font-weight: 900;
}

.pre-footer-trust svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.9;
}

.faq-section {
  padding: 58px 0 62px;
  background: var(--soft-page-bg);
}

.faq-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 34px auto 0;
}

.faq-grid details {
  background: #f8f4ed;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid summary {
  position: relative;
  display: block;
  padding: 18px 48px 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

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

.faq-grid summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer {
  min-height: 132px;
  padding: 37px 50px 17px;
  background: #fbfaf6;
}

.footer-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1420px;
  margin: 0 auto;
}

.footer-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 16px;
  min-height: 50px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.footer-benefits article:first-child {
  border-left: 0;
}

.footer-benefits svg,
.flag-icon {
  width: 32px;
  height: 32px;
  margin-top: 2px;
  color: var(--ink);
}

.flag-icon {
  position: relative;
  display: block;
  background:
    linear-gradient(#b22234 0 7.69%, #fff 7.69% 15.38%, #b22234 15.38% 23.07%, #fff 23.07% 30.76%, #b22234 30.76% 38.45%, #fff 38.45% 46.14%, #b22234 46.14% 53.83%, #fff 53.83% 61.52%, #b22234 61.52% 69.21%, #fff 69.21% 76.9%, #b22234 76.9% 84.59%, #fff 84.59% 92.28%, #b22234 92.28%);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(8, 29, 73, 0.09);
}

.flag-icon::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 15px;
  height: 17px;
  background: #3c3b6e;
  border-radius: 2px 0 0 0;
}

.footer-benefits p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
}

.footer-benefits strong,
.footer-benefits span {
  display: block;
}

.footer-benefits strong {
  font-weight: 900;
}

.footer-benefits span {
  margin-top: 2px;
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-benefits .trustpilot-benefit {
  grid-template-columns: 1fr;
  gap: 5px;
  padding-inline: 20px;
}

.trustpilot-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.trustpilot-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  min-width: 0;
  margin: 0;
  color: #111827;
  white-space: nowrap;
}

.trustpilot-brand strong {
  display: inline;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.trustpilot-mark {
  display: inline-block !important;
  margin: 0;
  color: #00b67a !important;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
}

.trustpilot-mark::before {
  content: "\2605";
  font-size: 26px;
  line-height: 1;
}

.trustpilot-stars {
  display: block;
  width: 86px;
  max-width: 100%;
  height: auto;
}

.trustpilot-rating-label {
  display: none !important;
}

.trustpilot-benefit p span {
  margin-top: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
}

.footer-legal-links button,
.text-button {
  padding: 0;
  color: #28527c;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-layer {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 29, 73, 0.56);
}

.modal-layer[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 540px);
  max-height: min(88vh, 720px);
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(8, 29, 73, 0.28);
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--ink);
  background: #f7f2ea;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.modal-close svg {
  width: 17px;
  height: 17px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal-card h2 {
  margin: 0;
  padding-right: 38px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.16;
}

.modal-intro,
.legal-content p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.feedback-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.feedback-options label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 50px;
  padding: 11px;
  color: var(--ink);
  background: #f8f5ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.feedback-options input {
  accent-color: var(--navy);
  margin-top: 1px;
}

.feedback-card textarea {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  resize: vertical;
  font: 700 13px/1.35 var(--font-body);
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.feedback-submit {
  width: 176px;
  height: 44px;
  cursor: pointer;
  font-size: 13px;
}

.legal-card {
  width: min(100%, 600px);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1320px) {
  .site-header {
    min-height: 108px;
    padding-inline: 36px;
  }

  .brand-name {
    font-size: 23px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    min-height: 880px;
    padding-left: 42px;
  }

  .hero-copy {
    width: 495px;
    padding-top: 58px;
  }

  .hero-action-panel {
    width: 470px;
    margin-top: 50px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy > p,
  .hero-benefits {
    width: 470px;
  }

  .hero-image-slot {
    left: 465px;
  }

  .hero-image-offer {
    right: 26px;
    bottom: 26px;
    width: clamp(230px, 25vw, 320px);
  }

  .thought-bubble {
    right: 36px;
    transform: scale(0.9);
    transform-origin: top right;
  }

  .steps-grid {
    grid-template-columns: minmax(0, 168px) 32px minmax(0, 168px) 32px minmax(0, 168px) 32px minmax(0, 168px);
    justify-content: center;
    gap: 22px;
  }

  .step-number {
    top: -45px;
    width: 74px;
    height: 74px;
    font-size: 30px;
  }

  .step-arrow {
    margin-top: 64px;
  }

  .pricing-cards {
    gap: 18px;
  }

  .customize-grid {
    gap: 18px;
  }

  .customize-grid article {
    padding-inline: 22px;
  }

  .step-arrow svg {
    width: 36px;
  }

  .confidence-section {
    grid-template-columns: 0.88fr 1.12fr;
    padding-inline: 42px;
    gap: 36px;
  }

  .review-card {
    padding-inline: 48px;
  }

  .bottom-cta {
    grid-template-columns: 250px 1fr 280px;
    padding-inline: 28px;
  }

  .bottom-decor {
    width: 244px;
  }

  .bottom-canvas {
    width: 260px;
    height: 170px;
  }

  .footer-benefits article {
    padding-inline: 24px;
  }
}

@media (max-width: 980px) {
  .section-inner {
    width: min(100% - 44px, 720px);
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    padding: 24px 24px 18px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
    gap: 10px 20px;
  }

  .nav-order {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 0;
    background: linear-gradient(180deg, var(--paper), #eadbc9);
  }

  .hero-copy {
    width: auto;
    max-width: 650px;
    padding: 42px 24px 0;
  }

  .hero h1 {
    font-size: clamp(42px, 10vw, 64px);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-copy > p,
  .hero-benefits {
    width: auto;
    max-width: 560px;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .hero-button {
    width: min(100%, 485px);
  }

  .hero-action-panel {
    width: auto;
    max-width: 650px;
    margin-top: 28px;
    padding: 0 24px 38px;
  }

  .hero-image-slot {
    position: relative;
    inset: auto;
    height: 520px;
    margin-top: 34px;
  }

  .hero-image-offer {
    right: 24px;
    bottom: 28px;
    width: min(52vw, 310px);
  }

  .hero-image-slot::before {
    left: 30%;
    bottom: 72px;
  }

  .thought-bubble {
    top: auto;
    right: 24px;
    bottom: 230px;
  }

  .memory-grid,
  .footer-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .memory-grid {
    gap: 34px;
  }

  .pricing-preview {
    padding-top: 32px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .price-card.is-featured {
    transform: none;
  }

  .customize-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
    gap: 64px;
  }

  .step-card {
    max-width: 230px;
  }

  .step-arrow {
    display: none;
  }

  .confidence-section {
    grid-template-columns: 1fr;
    padding: 36px 24px 52px;
  }

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

  .bottom-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px 36px;
  }

  .bottom-copy {
    order: 1;
    padding-top: 0;
  }

  .bottom-decor {
    order: 2;
    justify-self: center;
    align-self: auto;
    width: min(100%, 320px);
    height: 210px;
  }

  .bottom-canvas {
    order: 3;
    justify-self: center;
    width: min(100%, 340px);
  }

  .pre-footer-trust {
    grid-template-columns: 1fr;
  }

  .pre-footer-trust article {
    min-height: 64px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .footer-benefits article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 10px 0;
  }

  .footer-benefits article:nth-child(-n + 2) {
    border-top: 0;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 118px;
  }

  .site-header {
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
    justify-items: center;
  }

  .brand-easy {
    width: 58px;
    height: 48px;
    font-size: 34px;
  }

  .brand-name {
    font-size: 20px;
    letter-spacing: 1.8px;
  }

  .brand-deals {
    margin-left: 60px;
    font-size: 8px;
    letter-spacing: 1px;
  }

  .nav-order {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding-inline: 20px;
    box-sizing: border-box;
    overflow: visible;
  }

  .hero-action-panel {
    display: grid;
    justify-items: center;
    width: 100vw;
    max-width: none;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 22px 0 26px;
    background: linear-gradient(180deg, #eadbc9, #efe4d5);
  }

  .hero-action-panel .hero-button {
    justify-self: center;
    width: min(calc(100vw - 48px), 320px);
    max-width: 320px;
    margin: 0;
  }

  .hero-copy > .hero-sale-badge {
    gap: 6px;
    width: 100%;
    min-height: 0;
    margin-bottom: 16px;
    padding: 8px 12px 8px 8px;
    border-radius: 14px;
    font-size: 11px;
    text-align: left;
    white-space: normal;
  }

  .hero-sale-badge strong {
    min-height: 20px;
    padding-inline: 7px;
    font-size: 9px;
  }

  .hero-sale-badge span {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-copy > p {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .hero-copy > .hero-intro {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100vw - 40px), 350px);
    max-width: 350px;
    margin: 42px 0 0;
    margin-left: clamp(0px, calc(100vw - 390px), 20px);
    gap: 12px;
    transform: none;
  }

  .hero-benefits article {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    min-height: 158px;
    padding: 15px 10px 13px;
    gap: 8px;
    background: rgba(255, 253, 248, 0.58);
    border: 1px solid rgba(200, 149, 47, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(8, 29, 73, 0.04);
    text-align: center;
  }

  .hero-benefits .icon-circle {
    grid-area: auto;
    width: 52px;
    height: 52px;
  }

  .hero-benefits .icon-circle svg {
    width: 32px;
    height: 32px;
  }

  .hero-benefits h2 {
    grid-area: auto;
    margin: 0;
    font-size: 12px;
    line-height: 1.18;
  }

  .hero-benefits p {
    grid-area: auto;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .hero-benefits .hero-review-benefit {
    display: grid;
  }

  .hero-review-benefit h2 {
    max-width: 130px;
    font-size: 12px;
    line-height: 1.18;
  }

  .hero-review-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 132px;
    gap: 5px;
  }

  .hero-button,
  .bottom-button {
    width: 100%;
    max-width: 330px;
    min-height: 58px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .hero-action-panel .hero-button {
    width: min(calc(100vw - 48px), 320px);
    max-width: 320px;
    margin: 0;
  }

  .hero-trust-badge {
    justify-self: center;
    width: min(calc(100vw - 48px), 320px);
    max-width: 320px;
    margin: 8px 0 0;
    padding: 0;
    background: transparent;
  }

  .hero-trust-badge p {
    width: fit-content;
    max-width: 225px;
    margin-inline: auto;
    padding: 3px 5px;
    align-items: center;
    background: rgba(255, 255, 255, 0.58);
    border-radius: 4px;
    font-size: 7px;
  }

  .hero-trust-badge img {
    width: 36px;
  }

  .happy-note {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    width: min(calc(100vw - 48px), 320px);
    max-width: 320px;
    margin: 26px 0 0;
    align-items: start;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 17px;
    line-height: 1.32;
  }

  .mobile-note-break {
    display: block;
  }

  .happy-note span {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-rating {
    width: min(calc(100vw - 48px), 320px);
    max-width: 320px;
    margin: 14px 0 0;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 13px;
  }

  .hero-image-offer {
    right: auto;
    bottom: 26px;
    left: 50%;
    width: min(72vw, 270px);
    border-radius: 11px;
    transform: translateX(-50%) rotate(0deg);
  }

  .hero-image-offer img {
    border-radius: 11px;
  }

  .hero-image-slot {
    width: 100vw;
    max-width: 100vw;
  }

  .thought-bubble {
    top: 54px;
    right: 20px;
    bottom: auto;
    left: auto;
    width: 150px;
    min-height: 108px;
    padding: 14px 14px 20px;
    transform: none;
    transform-origin: top right;
  }

  .thought-bubble p {
    max-width: 118px;
    font-size: 20px;
  }

  .thought-bubble p::after {
    font-size: 32px;
    transform: translateY(7px);
  }

  .memory-band h2,
  .how-it-works h2,
  .confidence-section h2,
  .bottom-cta h2,
  .faq-section h2 {
    font-size: 34px;
  }

  .memory-band {
    margin-top: 22px;
  }

  .memory-band .section-inner {
    width: 100%;
    padding-inline: 20px;
  }

  .pricing-preview {
    padding: 28px 0 112px;
  }

  .pricing-preview h2 {
    max-width: 340px;
    margin-inline: auto;
    font-size: 28px;
  }

  .pricing-preview h2 span {
    display: block;
  }

  .pricing-subtitle {
    font-size: 14px;
  }

  .pricing-cards {
    max-width: 330px;
    gap: 22px;
    margin-top: 28px;
  }

  .price-card {
    min-height: 148px;
    padding-inline: 14px;
  }

  .price-card.is-featured {
    min-height: 166px;
    padding: 30px 16px 22px;
  }

  .price-card h3 {
    font-size: 20px;
  }

  .price-card.is-featured h3 {
    font-size: 24px;
  }

  .sale-price {
    font-size: 31px;
  }

  .price-card.is-featured .sale-price {
    font-size: 38px;
  }

  .savings {
    max-width: 100%;
    padding-inline: 10px;
    font-size: 11px;
  }

  .pricing-note {
    width: min(100%, 330px);
    margin-inline: auto;
    line-height: 1.35;
  }

  .pricing-link {
    max-width: 300px;
    justify-content: center;
    line-height: 1.25;
  }

  .customize-section {
    padding: 34px 0 44px;
  }

  .customize-section h2 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 30px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .customize-grid {
    max-width: 330px;
    gap: 16px;
    margin-top: 24px;
  }

  .customize-grid article {
    min-height: 142px;
    padding: 22px 18px 20px;
  }

  .customize-button {
    width: min(100%, 270px);
    min-height: 54px;
    margin-top: 23px;
  }

  .memory-band h2 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 30px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .memory-band > .section-inner > p {
    max-width: 330px;
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .memory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100vw - 40px), 350px);
    max-width: 350px;
    margin: 30px auto 0;
    gap: 14px;
  }

  .memory-grid article {
    min-height: 158px;
    padding: 18px 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .memory-grid svg {
    width: 42px;
    height: 42px;
  }

  .memory-grid h3 {
    margin: 12px 0 8px;
    font-size: 12px;
    line-height: 1.18;
  }

  .memory-grid p {
    max-width: 132px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .site-footer {
    padding: 28px 20px 18px;
  }

  .footer-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
    max-width: 350px;
  }

  .quality-list article,
  .review-list article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .quality-list p {
    margin-inline: auto;
  }

  .review-card {
    padding: 34px 22px;
  }

  .review-list {
    gap: 36px;
  }

  .review-list blockquote {
    font-size: 16px;
  }

  .footer-benefits article,
  .footer-benefits article:nth-child(-n + 2) {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    min-height: 68px;
    padding: 14px 0px 14px;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-benefits article:first-child {
    border-top: 0;
  }

  .footer-benefits svg,
  .flag-icon {
    width: 30px;
    height: 30px;
  }

  .footer-benefits p {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .footer-benefits strong {
    font-size: 11px;
    line-height: 1.2;
  }

  .footer-benefits span {
    margin-top: 3px;
  }

  .footer-benefits .trustpilot-benefit {
    grid-column: 1 / -1;
    justify-self: center;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    width: min(100%, 250px);
    min-height: auto;
    margin-top: 20px;
    padding: 0;
    border-bottom: 0;
    text-align: center;
  }

  .trustpilot-row {
    justify-content: center;
    gap: 7px;
  }

  .trustpilot-brand strong {
    font-size: 13px;
  }

  .trustpilot-mark::before {
    font-size: 25px;
  }

  .trustpilot-stars {
    width: 92px;
  }

  .trustpilot-rating-label {
    display: block !important;
    margin-top: 5px !important;
    color: var(--ink-soft) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
  }

  .trustpilot-benefit p span:last-child {
    margin-top: 4px;
    font-size: 11px;
  }

  .faq-section {
    padding: 42px 0 48px;
  }

  .faq-grid {
    margin-top: 24px;
  }

  .faq-grid summary {
    padding: 16px 44px 16px 16px;
    font-size: 15px;
  }

  .faq-grid p {
    padding: 0 16px 18px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 40;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(230, 223, 212, 0.9);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(8, 29, 73, 0.2);
    backdrop-filter: blur(10px);
  }

  .mobile-sticky-cta strong,
  .mobile-sticky-cta span {
    display: block;
    text-align: center;
  }

  .mobile-sticky-cta > div {
    min-width: 0;
  }

  .mobile-sticky-cta strong {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
  }

  .mobile-sticky-cta span {
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    color: var(--white);
    background: linear-gradient(180deg, #082e63, #002656);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(0, 39, 88, 0.18);
    font-size: 14px;
    font-weight: 900;
  }

  /* Mobile app polish */
  body {
    padding-bottom: 132px;
    width: 100%;
    max-width: 100%;
    background: #f2e8da;
    font-size: 15px;
    overflow-x: hidden;
  }

  .page-shell {
    width: 100vw;
    background: #f2e8da;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header,
  .hero,
  .memory-band,
  .pricing-preview,
  .customize-section,
  .how-it-works,
  .confidence-section,
  .bottom-cta,
  .site-footer {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .section-inner {
    width: min(calc(100% - 32px), 360px);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 12px 16px 14px;
    background: rgba(255, 253, 248, 0.97);
    border-bottom: 1px solid rgba(230, 223, 212, 0.9);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 14px 34px rgba(8, 29, 73, 0.12);
    backdrop-filter: blur(14px);
  }

  .brand-easy {
    width: 48px;
    height: 40px;
    font-size: 29px;
  }

  .brand-name {
    font-size: 17px;
    letter-spacing: 1.5px;
  }

  .brand-deals {
    margin-left: 50px;
    font-size: 7px;
  }

  .nav-order {
    order: 2;
    width: min(100%, 248px);
    min-height: 52px;
    border-radius: 18px;
    font-size: 13px;
    box-shadow: 0 13px 26px rgba(0, 39, 88, 0.18);
  }

  .site-nav {
    order: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: calc(100vw - 32px);
    gap: 4px;
    margin: 0;
    justify-self: center;
  }

  .site-nav a {
    display: grid;
    min-width: 0;
    min-height: 50px;
    padding: 7px 4px;
    place-items: center;
    gap: 4px;
    background: #f7f1e8;
    border: 1px solid rgba(230, 223, 212, 0.8);
    border-radius: 15px;
    font-size: 8.5px;
    line-height: 1.08;
    text-align: center;
  }

  .site-nav a svg {
    width: 17px;
    height: 17px;
  }

  .site-nav a span {
    max-width: 100%;
    overflow: hidden;
    white-space: normal;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(242, 232, 218, 0.97) 58%, #ead8c2);
  }

  .hero-copy {
    width: 100vw;
    max-width: 100vw;
    padding: 24px 18px 0;
  }

  .hero-copy > .hero-sale-badge {
    width: 100%;
    margin-bottom: 20px;
    padding: 9px 10px;
    border-radius: 17px;
    box-shadow: 0 14px 26px rgba(200, 149, 47, 0.15);
    font-size: 10.5px;
  }

  .hero h1 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
    text-align: center;
  }

  .hero h1 i {
    width: 36px;
    height: 36px;
    margin-left: 6px;
  }

  .hero h1 i::before {
    font-size: 42px;
  }

  .hero-copy > .hero-intro {
    width: 100%;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
  }

  .hero-benefits {
    width: min(calc(100vw - 56px), 312px);
    max-width: 312px;
    margin: 28px 0 0 24px;
    gap: 10px;
  }

  .hero-benefits article {
    min-width: 0;
    min-height: 136px;
    padding: 14px 8px 12px;
    gap: 7px;
    background: rgba(255, 253, 248, 0.82);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(8, 29, 73, 0.08);
  }

  .hero-benefits .icon-circle {
    width: 46px;
    height: 46px;
    box-shadow: 0 8px 20px rgba(8, 29, 73, 0.08);
  }

  .hero-benefits .icon-circle svg {
    width: 27px;
    height: 27px;
  }

  .hero-benefits h2,
  .hero-review-benefit h2 {
    width: 100%;
    max-width: 130px;
    overflow-wrap: break-word;
    font-size: 11px;
    line-height: 1.16;
  }

  .hero-benefits p {
    max-width: 118px;
    font-size: 9.5px;
    line-height: 1.28;
    overflow-wrap: break-word;
  }

  .hero-review-line {
    max-width: 130px;
    gap: 4px;
  }

  .hero-image-slot {
    width: 100vw;
    max-width: 100vw;
    height: min(120vw, 470px);
    margin-top: 24px;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
  }

  .hero-image-slot.image-filled::after {
    background:
      radial-gradient(circle at 100% 100%, rgba(219, 194, 160, 0.52) 0 94px, rgba(219, 194, 160, 0) 124px),
      linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(130, 91, 45, 0.05));
  }

  .thought-bubble {
    top: 42px;
    right: auto;
    left: clamp(194px, 58vw, 216px);
    width: 132px;
    min-height: 94px;
    padding: 13px 13px 18px;
    box-shadow:
      -29px 29px 0 -20px #f3eadb,
      -52px 72px 0 -46px #f3eadb;
  }

  .thought-bubble::before {
    width: 56px;
    height: 44px;
    left: 30px;
  }

  .thought-bubble::after {
    width: 54px;
    height: 43px;
    right: 22px;
  }

  .thought-bubble p {
    max-width: 96px;
    font-size: 16px;
    line-height: 1.1;
  }

  .thought-bubble p::after {
    margin-left: 4px;
    font-size: 27px;
    transform: translateY(5px);
  }

  .hero-image-offer {
    bottom: 18px;
    width: min(72vw, 258px);
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(8, 29, 73, 0.18);
  }

  .hero-action-panel {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 18px 16px 24px;
    background: linear-gradient(180deg, #ead8c2, #f2e8da);
  }

  .hero-action-panel .hero-button,
  .hero-button,
  .bottom-button {
    width: min(100%, 348px);
    max-width: 348px;
    min-height: 60px;
    border-radius: 22px;
    font-size: 15px;
    box-shadow: 0 14px 28px rgba(0, 39, 88, 0.2);
  }

  .hero-trust-badge {
    width: min(100%, 300px);
    margin-top: 10px;
  }

  .memory-band {
    margin-top: 0;
    padding: 40px 0 46px;
    border-radius: 28px 28px 0 0;
  }

  .memory-band .section-inner {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
  }

  .memory-band h2 {
    max-width: 320px;
    font-size: 25px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .memory-band h2 i {
    width: 34px;
    height: 34px;
  }

  .memory-band h2 i::before {
    font-size: 38px;
  }

  .memory-band > .section-inner > p {
    max-width: 330px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.45;
  }

  .memory-grid {
    width: min(calc(100vw - 56px), 312px);
    max-width: 312px;
    margin: 24px 0 0 24px;
    gap: 10px;
  }

  .memory-grid article {
    min-width: 0;
    min-height: 142px;
    padding: 16px 9px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  }

  .memory-grid svg {
    width: 36px;
    height: 36px;
  }

  .memory-grid h3 {
    width: 100%;
    margin: 10px 0 7px;
    font-size: 11px;
    overflow-wrap: break-word;
  }

  .memory-grid p {
    max-width: 118px;
    font-size: 9.5px;
    overflow-wrap: break-word;
  }

  .pricing-preview,
  .customize-section,
  .how-it-works,
  .confidence-section,
  .faq-section {
    padding-block: 38px;
  }

  .pricing-preview,
  .customize-section,
  .how-it-works,
  .confidence-section {
    position: relative;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(246, 238, 226, 0.98)),
      var(--soft-page-bg);
  }

  .pricing-preview::before,
  .customize-section::before,
  .how-it-works::before,
  .confidence-section::before {
    content: "";
    position: absolute;
    inset: 12px 12px auto;
    height: calc(100% - 24px);
    border: 1px solid rgba(230, 223, 212, 0.82);
    border-radius: 28px;
    pointer-events: none;
  }

  .pricing-preview::after,
  .customize-section::after {
    display: none;
  }

  .pricing-preview .section-inner,
  .customize-section .section-inner,
  .how-it-works .section-inner {
    position: relative;
    z-index: 1;
    width: min(calc(100vw - 32px), 358px);
  }

  .pricing-preview h2,
  .customize-section h2,
  .how-it-works h2,
  .confidence-section h2,
  .bottom-cta h2,
  .faq-section h2 {
    max-width: 280px;
    margin-inline: auto;
    font-size: 23px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .pricing-preview h2 {
    max-width: 300px;
    font-size: 25px;
  }

  .pricing-cards,
  .customize-grid,
  .steps-grid,
  .faq-grid {
    width: min(calc(100vw - 56px), 312px);
    max-width: 312px;
    margin-left: 24px;
    margin-right: 0;
  }

  .price-card,
  .customize-grid article,
  .step-card,
  .faq-grid details {
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(8, 29, 73, 0.08);
  }

  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .price-card {
    min-width: 0;
    min-height: 132px;
    padding: 24px 10px 18px;
    border-radius: 20px;
  }

  .price-card.is-featured {
    grid-column: 1 / -1;
    order: -1;
    min-height: 154px;
    padding: 30px 16px 20px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 245, 223, 0.98));
    box-shadow:
      0 16px 36px rgba(214, 0, 111, 0.13),
      inset 0 0 0 1px rgba(214, 0, 111, 0.28);
    transform: none;
  }

  .price-card h3 {
    font-size: 18px;
  }

  .price-card.is-featured h3 {
    font-size: 22px;
  }

  .price-ribbon {
    top: -12px;
    font-size: 8px;
  }

  .sale-price {
    font-size: 28px;
  }

  .price-card.is-featured .sale-price {
    font-size: 34px;
  }

  .savings {
    padding-inline: 8px;
    font-size: 9px;
    white-space: normal;
  }

  .pricing-note {
    width: min(calc(100vw - 56px), 312px);
    margin-inline: auto;
    font-size: 10px;
  }

  .pricing-link {
    width: min(calc(100vw - 56px), 312px);
    min-height: 50px;
    margin-inline: auto;
    border-radius: 18px;
    font-size: 11px;
  }

  .customize-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .customize-grid article {
    min-width: 0;
    min-height: 126px;
    padding: 18px 14px;
  }

  .customize-grid article:last-child {
    grid-column: 1 / -1;
  }

  .customize-icon {
    width: 38px;
    height: 38px;
  }

  .customize-grid h3 {
    margin-top: 11px;
    font-size: 13px;
  }

  .customize-grid p {
    max-width: 116px;
    margin-inline: auto;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .customize-grid article:last-child p {
    max-width: 230px;
  }

  .customize-button {
    width: min(calc(100vw - 56px), 312px);
    border-radius: 18px;
  }

  .title-rule {
    margin-bottom: 46px;
  }

  .how-it-works h2 {
    max-width: 290px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .step-card {
    max-width: 210px;
    min-width: 0;
    width: 100%;
    min-height: 176px;
    padding: 12px 9px 16px;
    background: rgba(255, 253, 248, 0.82);
  }

  .step-number {
    position: static;
    width: 42px;
    height: 42px;
    margin: -32px auto 8px;
    border-width: 4px;
    font-size: 18px;
    transform: none;
  }

  .step-image {
    width: 86px;
    margin: 0 auto;
    border-radius: 16px;
  }

  .step-card h3 {
    margin: 12px 0 7px;
    font-size: 12px;
  }

  .step-card p {
    width: auto;
    max-width: 112px;
    font-size: 9.5px;
    line-height: 1.3;
  }

  .confidence-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 38px 16px;
  }

  .confidence-copy,
  .review-card {
    position: relative;
    z-index: 1;
    width: min(calc(100vw - 56px), 312px);
    margin-left: 8px;
    margin-right: 0;
    padding: 22px 14px;
    background: rgba(255, 253, 248, 0.86);
    border: 1px solid rgba(230, 223, 212, 0.82);
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(8, 29, 73, 0.08);
  }

  .confidence-section h2,
  .review-card h2 {
    margin-inline: auto;
    font-size: 26px;
    text-align: center;
  }

  .quality-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
    margin-top: 18px;
  }

  .quality-list article {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    min-width: 0;
    min-height: 142px;
    padding: 14px 8px 12px;
    background: #f8f2ea;
    border-radius: 18px;
    text-align: center;
  }

  .quality-list .icon-circle {
    width: 44px;
    height: 44px;
  }

  .quality-list .icon-circle svg {
    width: 27px;
    height: 27px;
  }

  .quality-list h3 {
    margin-top: 9px;
    font-size: 11px;
  }

  .quality-list p {
    max-width: 108px;
    margin-inline: auto;
    font-size: 9.5px;
    line-height: 1.32;
  }

  .review-card h2 {
    max-width: 270px;
  }

  .review-card h2 i {
    width: 28px;
    height: 28px;
    margin-left: 5px;
  }

  .review-card h2 i::before {
    font-size: 32px;
  }

  .review-card {
    min-height: auto;
    background:
      radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.7), transparent 24%),
      linear-gradient(180deg, #f9f3eb, #efe2d0);
  }

  .rating-summary {
    gap: 7px;
    margin-top: 14px;
    flex-wrap: wrap;
  }

  .rating-summary strong {
    font-size: 18px;
  }

  .rating-stars {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .review-count-link,
  .review-trust {
    font-size: 12px;
  }

  .review-list {
    gap: 12px;
    margin-top: 18px;
  }

  .review-list article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    justify-items: start;
    padding: 12px;
    background: rgba(255, 253, 248, 0.66);
    border-radius: 18px;
    text-align: left;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
  }

  .stars {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .review-list blockquote {
    max-width: 100%;
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.32;
  }

  .review-list cite {
    font-size: 10px;
  }

  .bottom-cta {
    padding: 30px 16px 38px;
    border-radius: 28px 28px 0 0;
  }

  .bottom-button {
    margin-inline: auto;
  }

  .footer-benefits {
    width: min(calc(100vw - 32px), 358px);
    max-width: 358px;
  }

  .mobile-sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
  }

  .mobile-sticky-cta strong,
  .mobile-sticky-cta span {
    text-align: left;
  }

  .mobile-sticky-cta a {
    height: 50px;
    border-radius: 17px;
    font-size: 14px;
  }

  /* Final mobile alignment repair */
  .hero-benefits,
  .memory-grid {
    width: min(calc(100vw - 48px), 360px);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-preview .section-inner,
  .customize-section .section-inner,
  .how-it-works .section-inner {
    width: min(calc(100vw - 32px), 390px);
    max-width: 390px;
    margin-inline: auto;
    padding-inline: 0;
    overflow: visible;
  }

  .pricing-cards,
  .customize-grid,
  .steps-grid {
    width: min(calc(100vw - 48px), 360px);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-note,
  .pricing-link,
  .customize-button {
    width: min(calc(100vw - 48px), 360px);
    max-width: 360px;
  }

  .pricing-preview h2,
  .customize-section h2,
  .how-it-works h2 {
    max-width: min(100%, 340px);
  }

  .confidence-section {
    justify-items: center;
    padding-inline: 16px;
  }

  .confidence-copy,
  .review-card {
    width: min(calc(100vw - 48px), 360px);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .quality-list {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .footer-benefits {
    margin-inline: auto;
  }

  .feedback-options {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .feedback-submit {
    width: 100%;
  }
}
