:root {
  --paper: #f5efe6;
  --paper-deep: #e9dfd0;
  --ink: #373a34;
  --soft-ink: #686b64;
  --teal: #063f40;
  --teal-2: #0f5658;
  --teal-pale: #e4f1ee;
  --orange: #ef6d2f;
  --rule: rgba(55, 58, 52, 0.16);
  --white: #fffdf8;

  /* 字體系統：全站只用兩套 */
  --font-serif: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;  /* 標題、大數字、價格 */
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif; /* 內文、權益、功能點、CTA */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
p, blockquote, figure, dl, dd { margin: 0; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--teal);
  color: white;
  text-decoration: none;
  transform: translateY(-170%);
}
.skip-link:focus { transform: translateY(0); }

h1, h2, blockquote {
  font-family: var(--font-serif);
  letter-spacing: 0.01em;
}
h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 1.24;
  font-weight: 700;
  text-wrap: balance;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 540px;
  margin-top: 34px;
  padding: 23px 36px;
  color: white;
  background: linear-gradient(135deg, var(--teal), #0a5554);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 32px rgba(6, 63, 64, 0.22);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.09em;
  cursor: pointer;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, filter 0.18s ease-out;
}
.button span { display: inline-block; font-size: 1.8rem; line-height: 0; transform: translateY(0.06em); transition: transform 0.18s ease-out; }
.button:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

/* CTA 動態：引導點擊（hover 上浮＋箭頭前推、按下回饋、週期光澤掃過） */
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(6, 63, 64, 0.32);
  filter: brightness(1.06);
}
.button:hover span { transform: translateX(5px) translateY(0.06em); }
.button:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 10px 24px rgba(6, 63, 64, 0.24);
}
@media (prefers-reduced-motion: no-preference) {
  .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    /* Safari：偽元素 transform 動畫需明確合成提示才會跑 */
    -webkit-transform: translateX(-260%) skewX(-18deg);
    transform: translateX(-260%) skewX(-18deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    pointer-events: none;
    -webkit-animation: cta-sheen 5s ease-in-out infinite;
    animation: cta-sheen 5s ease-in-out infinite;
  }
  @-webkit-keyframes cta-sheen {
    0%, 58% { -webkit-transform: translateX(-260%) skewX(-18deg); }
    100% { -webkit-transform: translateX(430%) skewX(-18deg); }
  }
  @keyframes cta-sheen {
    0%, 58% { transform: translateX(-260%) skewX(-18deg); }
    100% { transform: translateX(430%) skewX(-18deg); }
  }
}
.hero .button {
  display: inline-block;
  width: 26rem;
  min-width: 0;
  text-align: center;
  font-size: 1.22rem;
}

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(40px, 1fr) minmax(0, 55%) minmax(0, 45%);
  align-items: stretch;
  padding: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.94) 0 18%, rgba(255,255,255,0.5) 34%, transparent 58%),
    radial-gradient(circle at 72% 64%, rgba(255,255,255,0.7), transparent 42%),
    linear-gradient(90deg, #f5efe6 0%, #fbf7f0 48%, #f5efe6 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% 0 38%;
  height: 48%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.58));
  transform: skewY(-7deg);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  width: min(100%, 900px);
  justify-self: end;
  align-self: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 48px;
}
.brand-lockup .brand-logo { width: auto; }
.brand-lockup .brand-logo--storm { height: 1.95rem; }
.brand-lockup .brand-logo--wsj { height: 1.2rem; }
.brand-lockup span {
  color: #9b9b91;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
}
.hero__offer {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.75vw, 1.85rem);
  font-weight: 600;
}
.hero__offer strong {
  color: var(--orange);
  font-size: 1.55em;
  letter-spacing: 0.03em;
}
.limit-pill {
  display: inline-block;
  width: 26rem;
  margin-top: 28px;
  padding: 11px 24px;
  text-align: center;
  border: 1px solid rgba(55, 58, 52, 0.26);
  background: rgba(255, 253, 248, 0.62);
  color: #575a53;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.hero blockquote {
  position: relative;
  margin-top: 40px;
  padding-left: 58px;
  color: #4d524b;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  font-weight: 600;
  font-style: italic;
}
.hero blockquote::before,
.hero blockquote::after {
  position: absolute;
  color: #5d625c;
  font-size: 3rem;
  line-height: 1;
}
.hero blockquote::before { content: "“"; left: 0; top: -10px; }
.hero blockquote::after { content: "”"; margin-left: 18px; }

.hero__visual {
  position: relative;
  z-index: 1;
  grid-column: 3;
  align-self: stretch;
  height: 100%;
  overflow: hidden;
}
.hero__scene {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* 淡入漸層已烤進合圖 PNG，不需 CSS mask */
}
.hero__life {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
  opacity: 1;
  filter: none;
}
/* 體脂計已合進 hero-merged.png，隱藏原本分離圖層 */
.hero__scale { display: none; }
.hero__visual figcaption {
  position: absolute;
  right: 10%;
  bottom: 6%;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 6px;
  color: #2f322c;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(245, 239, 230, 0.92), 0 0 6px rgba(245, 239, 230, 0.7);
}
/* tokuyo LOGO 圖尺寸 */
.hero__visual figcaption .tokuyo-logo {
  width: 132px;
  height: auto;
}

.section { padding: 72px 24px; }
.measure {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}
.trust {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 10%, rgba(255,255,255,0.96) 0 16%, rgba(255,255,255,0.46) 45%, transparent 68%),
    radial-gradient(circle at 98% 10%, rgba(255,255,255,0.84), transparent 32%),
    linear-gradient(180deg, #fffdf8 0%, #f3eee6 100%);
  border-bottom: 8px solid var(--teal);
}
.trust::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -16%;
  width: 46%;
  height: 72%;
  border-top: 1px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  box-shadow:
    -18px -20px 0 -19px rgba(255,255,255,0.58),
    -46px -48px 0 -47px rgba(255,255,255,0.42);
  transform: rotate(-12deg);
  pointer-events: none;
}
.trust .measure {
  position: relative;
  z-index: 1;
}
.trust h2 {
  font-size: clamp(2.05rem, 3vw, 3.25rem);
  line-height: 1.32;
}
.wide-break { display: none; }
@media (min-width: 821px) {
  .wide-break { display: inline; }
}
.m-break { display: none; }
@media (max-width: 820px) {
  .m-break { display: initial; }
}
.trust .measure p {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--soft-ink);
  font-weight: 400;
  line-height: 1.85;
}
.proof__grid {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 48px));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof__grid div {
  min-height: 216px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 8px 34px;
  text-align: center;
}
.proof__grid div + div { border-left: 1px solid var(--rule); }
.proof dt,
.proof__grid dt {
  font-family: var(--font-serif);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: auto;
  color: #20231f;
  font-size: clamp(3rem, 4.8vw, 5.1rem);
  font-weight: 700;
  line-height: 1;
}
.proof__icon {
  display: block;
  width: auto;
  height: 60px;
  margin-bottom: 8px;
  object-fit: contain;
}
.proof__icon--laurel {
  height: 70px;
}
.proof__icon--trophy {
  height: 66px;
}
.proof__label {
  margin-top: 2px;
  color: #343730;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.proof__number {
  display: block;
}
.proof dd,
.proof__grid dd {
  color: #54574f;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.62;
}
.source-note {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  text-align: center;
  color: #8b8d86;
  font-size: 0.92rem;
}

.benefits {
  position: relative;
  display: grid;
  grid-template-columns: minmax(48px, 1fr) minmax(560px, 780px) minmax(380px, 620px) minmax(40px, 1fr);
  gap: 34px;
  min-height: 710px;
  overflow: hidden;
  padding: 76px 0;
  color: white;
  background:
    radial-gradient(circle at 82% 50%, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, #073435, #0a4a4b 54%, #052c2d);
}
/* 移除：圖片已自帶左緣羽化，遮罩會在 42% 處製造可見直線接縫 */
.benefits__copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: center;
}
.eyebrow {
  margin-bottom: 12px;
  color: #d7e2de;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.benefits h2 { padding-bottom: 18px; }
.benefits h2 span {
  color: var(--orange);
  font-size: 1.18em;
  font-weight: 700;
}
.benefits__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.benefits__list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 18px 0;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--teal);
  font-family: var(--font-serif);
  font-weight: 700;
}
.benefits strong { display: block; margin-bottom: 6px; font-family: var(--font-sans); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.03em; }
.benefits p { color: rgba(255,255,255,0.8); font-size: 1.05rem; font-weight: 400; }
.benefits__visual {
  position: relative;
  z-index: 0;
  grid-column: 3 / 5;
  align-self: stretch;
}
.benefits__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: none;
  /* 羽化左／上／下邊緣，融入深綠底、消除銳利邊角（右側維持出血） */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 20%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 20%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
}

.gift {
  display: grid;
  grid-template-columns: minmax(52px, 1fr) minmax(540px, 720px) minmax(360px, 620px) minmax(40px, 1fr);
  align-items: center;
  gap: 34px;
  min-height: auto;
  padding: 72px 0;
  background:
    radial-gradient(circle at 80% 32%, rgba(255,255,255,0.8), transparent 30%),
    linear-gradient(110deg, #ecf5f1, #d9ebe8 56%, #c9dfdd);
}
.gift__copy { grid-column: 2; }
.gift__eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gift__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  font-weight: 700;
  line-height: 1.25;
}
.gift__headline span {
  color: var(--orange);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.gift__headline .gift-logo {
  display: inline-block;
  height: 1.05em;
  width: auto;
  vertical-align: -0.16em;
  margin: 0 0.18em;
}
.gift__lead {
  margin-top: 18px;
  color: #616a65;
  font-weight: 400;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}
.feature-grid li {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding-top: 24px;
  text-align: center;
}
.feature-grid li::before {
  content: "";
  width: min(100%, 170px);
  height: 1px;
  background: rgba(55, 58, 52, 0.14);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.feature-grid strong { font-family: var(--font-sans); font-weight: 700; }
.feature-grid span {
  max-width: 14em;
  color: #6f7771;
  font-size: 0.92rem;
  line-height: 1.62;
}
.no-break { white-space: nowrap; }
.gift figure {
  grid-column: 3 / 5;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  opacity: 0.92;
}
.gift figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* 生活照：左／上／下羽化融入淺底，右側出血 */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 18%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 18%),
    linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
}

.final-cta {
  padding: 70px 24px 62px;
  text-align: center;
  background: #fffdf8;
}
.limit-line {
  color: #5b5f59;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.final-cta h2 {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 3.45rem);
}
.final-cta strong {
  color: var(--orange);
  font-size: 1.25em;
}
.final-note {
  margin: 16px auto 0;
  max-width: 640px;
  color: var(--soft-ink);
  font-weight: 400;
}
.assurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin: 34px 0 0;
  padding: 0;
  color: #6b6f68;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.assurance li + li { border-left: 1px solid var(--rule); padding-left: 28px; }

.notes {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 56px 24px 76px;
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 18%, var(--paper-deep) 100%);
}
.notes::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 54px;
  left: 50%;
  width: min(860px, calc(100% - 48px));
  transform: translateX(-50%);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(55, 58, 52, 0.08);
  box-shadow: 0 18px 42px rgba(55, 58, 52, 0.05);
}
.notes__title {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.notes__list {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 1.45em;
  color: var(--soft-ink);
  font-size: 0.92rem;
  line-height: 1.9;
}
.notes__list li { margin-bottom: 10px; padding-left: 0.2em; }
.notes__list li:last-child { margin-bottom: 0; }
.notes__list strong { color: var(--orange); font-weight: 700; }
.notes__list a { color: var(--teal); text-decoration: underline; }

@media (max-width: 820px) {
  html, body { overflow-x: hidden; }
  body { font-size: 16px; }
  h1 { font-size: clamp(2rem, 9.2vw, 2.75rem); line-height: 1.18; white-space: normal; }
  h2 { font-size: clamp(1.8rem, 7vw, 2.45rem); }
  .final-cta h2 { font-size: clamp(1.45rem, 5.6vw, 1.95rem); }
  .final-cta strong { font-size: 1.12em; }
  .button { width: 100%; min-width: 0; max-width: 100%; padding: 18px 22px; }
  .hero .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 16px 18px;
    font-size: 1.04rem;
    white-space: nowrap;
  }
  .hero .button span {
    flex: 0 0 auto;
    font-size: 1.55rem;
  }

  .hero {
    display: block;
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 28px 22px 0;
  }
  .hero__content {
    min-height: auto;
    display: block;
    padding: 0;
  }
  .brand-lockup { position: static; margin-bottom: 34px; gap: 10px; }
  .brand-lockup .brand-logo--storm { height: 1.65rem; }
  .brand-lockup .brand-logo--wsj { height: 1.02rem; }
  .brand-lockup span { font-size: 1.05rem; }
  .hero__offer { margin-top: 16px; font-size: 1rem; line-height: 1.65; }
  .hero__offer strong { font-size: 1.38em; }
  .limit-pill {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-top: 20px;
    padding: 12px 14px;
    text-align: left;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }
  .hero blockquote {
    margin-top: 32px;
    padding-left: 34px;
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero__visual {
    min-height: 320px;
    margin: 20px -22px 0;
  }
  .hero__scene {
    width: 100%;
    top: 0;
    height: 100%;
  }
  .hero__life {
    width: 100%;
    height: 100%;
    object-position: 62% center;
    border-radius: 0;
    opacity: 1;
  }
  .hero__visual { min-height: 320px; margin-bottom: 0; }
  .hero__visual figcaption { right: 8%; bottom: 5%; font-size: 0.78rem; }

  .section { padding: 58px 22px; }
  .trust { padding: 50px 22px 44px; }
  .trust h2 { font-size: clamp(1.7rem, 6.4vw, 2.2rem); line-height: 1.3; }
  .trust .measure p { margin-top: 16px; font-size: 1rem; line-height: 1.72; }
  .proof__grid {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .proof__grid div {
    display: grid;
    grid-template-columns: 76px 1fr;
    column-gap: 22px;
    align-items: center;
    text-align: left;
    min-height: auto;
    padding: 24px 18px;
  }
  .proof__grid div + div { border-left: 0; border-top: 1px solid rgba(55, 58, 52, 0.14); }
  .proof__grid dt { display: contents; }
  .proof__grid div > .proof__icon,
  .proof__grid div > .proof__icon--laurel,
  .proof__grid div > .proof__icon--trophy {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
    height: auto;
    margin: 0;
    object-fit: contain;
    opacity: 0.88;
  }
  .proof__icon--laurel { width: 60px; }
  .proof__icon--trophy { width: 50px; }
  .proof__grid div:nth-child(3) .proof__icon { width: 52px; }
  .proof__number {
    grid-column: 2;
    grid-row: 1;
    display: block;
    font-size: 46px;
    line-height: 1;
    text-align: left;
  }
  .proof__label { display: none; }
  .proof__grid dd {
    grid-column: 2;
    grid-row: 2;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
    text-align: left;
  }
  .source-note { margin-top: 18px; font-size: 13px; line-height: 1.5; text-align: center; }

  .benefits {
    display: block;
    min-height: auto;
    padding: 58px 22px 52px;
  }
  .benefits::after { display: none; }
  .benefits__copy,
  .benefits__list {
    width: 100%;
    max-width: 100%;
  }
  .benefits__list {
    margin-top: 18px;
  }
  .benefits__list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }
  .benefits__list li > div {
    min-width: 0;
  }
  .benefits strong {
    margin-bottom: 4px;
    font-size: 1.34rem;
    line-height: 1.28;
  }
  .benefits p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
  .benefits strong,
  .benefits p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .benefit-icon { width: 34px; height: 34px; font-size: 0.72rem; }
  .benefits__visual {
    display: none;
  }

  .gift {
    display: block;
    min-height: auto;
    padding: 58px 22px 42px;
    overflow: hidden;
    max-width: 100%;
  }
  .gift__copy,
  .gift__headline,
  .gift__lead {
    max-width: 100%;
  }
  .gift__headline {
    font-size: clamp(1.75rem, 7.1vw, 2.25rem);
    line-height: 1.34;
    overflow-wrap: break-word;
  }
  .gift__headline .gift-logo {
    height: 0.9em;
    margin: 0 0.1em;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }
  .feature-grid li {
    padding: 18px 4px;
    gap: 6px;
  }
  .feature-grid li::before {
    width: min(100%, 220px);
  }
  .feature-grid strong {
    font-size: 1.06rem;
    line-height: 1.42;
  }
  .feature-grid span {
    max-width: 17em;
    font-size: 0.95rem;
    line-height: 1.58;
  }
  .gift figure {
    width: calc(100% + 32px);
    height: 390px;
    margin: 18px -16px 0;
    opacity: 0.92;
  }
  .gift figure img {
    width: 100%;
    height: 100%;
    margin-inline: auto;
    object-fit: cover;
    object-position: center bottom;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 7%, #000 94%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 7%, #000 94%, transparent 100%);
    mask-composite: intersect;
  }

  .assurance { gap: 10px 16px; font-size: 0.86rem; }
  .assurance li + li { padding-left: 16px; }

  .notes { padding: 42px 20px 58px; }
  .notes::before {
    top: 28px;
    bottom: 34px;
    width: calc(100% - 32px);
  }
  .notes__title {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 0.98rem;
  }
  .notes__list {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.82;
    padding-left: 1.3em;
  }
  .notes__list li { margin-bottom: 9px; }
}
