:root {
  --white: #fff;
  --ink: #252427;
  --muted: #6f6870;
  --line: #eadce1;
  --blush: #fff4f6;
  --rose: #d85b7f;
  --rose-dark: #a63f60;
  --sage: #e9f3df;
  --green: #19ae35;
  --cream: #fff8df;
  --shadow: 0 18px 50px rgba(68, 46, 58, 0.14);
  --radius: 8px;
  --content: 1120px;
}

body {
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}

body.is-menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(55, 45, 51, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand,
.header-nav,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-dark);
  font-family: Inter, sans-serif;
}

.site-header.is-scrolled .brand-mark {
  background: var(--rose);
  color: var(--white);
}

.header-nav {
  gap: clamp(16px, 2.5vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  padding: 0 22px;
  background: var(--white);
  color: var(--rose-dark);
}

.site-header.is-scrolled .header-cta {
  background: var(--green);
  color: var(--white);
}

.button {
  min-width: 172px;
  padding: 0 26px;
}

.button:hover,
.header-cta:hover,
.gift-banner:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(25, 174, 53, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 94svh;
  overflow: hidden;
  padding: 130px clamp(20px, 6vw, 76px) 82px;
}

.hero-media,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(37, 25, 31, 0.72) 0%, rgba(37, 25, 31, 0.38) 45%, rgba(37, 25, 31, 0.04) 100%),
    linear-gradient(0deg, rgba(37, 25, 31, 0.52), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow,
.section-label {
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

.hero-copy {
  width: min(620px, 100%);
  margin-top: 22px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 500;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: clamp(76px, 9vw, 120px) clamp(20px, 5vw, 56px);
}

.section-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.section-label {
  margin-bottom: 12px;
  color: var(--rose-dark);
}

.lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.two-column,
.gift-layout,
.profile-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.worries {
  background: var(--blush);
}

.worry-list {
  display: grid;
  gap: 14px;
}

.worry-list li,
.check-list li {
  position: relative;
  padding: 18px 20px 18px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(87, 62, 72, 0.06);
  font-weight: 700;
}

.worry-list li::before,
.check-list li::before {
  position: absolute;
  left: 20px;
  color: var(--rose);
  content: "✓";
  font-weight: 800;
}

.concept {
  background: linear-gradient(180deg, var(--white), #f7fbf2);
}

.concept-grid,
.article-grid,
.voice-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.concept-grid,
.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-grid article,
.article-card,
.gift-note,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.concept-grid article {
  padding: 28px;
}

.card-number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--rose);
  font-family: Inter, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.concept-grid p,
.gift-note p,
.profile p,
.faq-list p,
.article-card h3,
.voice figcaption {
  color: var(--muted);
}

.gift {
  background: var(--cream);
}

.gift-text {
  min-width: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.gift-banner {
  display: block;
  margin-top: 30px;
  filter: drop-shadow(0 16px 24px rgba(25, 174, 53, 0.25));
  transition: transform 0.2s ease;
}

.gift-banner img {
  width: 100%;
}

.gift-note {
  padding: clamp(26px, 4vw, 42px);
}

.flow-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  counter-reset: flow;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.flow-list li::before {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: #46613e;
  content: counter(flow, decimal-leading-zero);
  counter-increment: flow;
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.article-card span,
.article-card h3 {
  display: block;
  padding-inline: 22px;
}

.article-card span {
  margin-top: 18px;
  color: var(--rose-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.article-card h3 {
  min-height: 88px;
  padding-top: 8px;
  padding-bottom: 22px;
}

.voice {
  background: #f5f6f7;
}

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

.voice figure {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.voice img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.voice figcaption {
  padding: 20px 22px 24px;
  font-weight: 700;
}

.profile-layout img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1.2;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.faq {
  background: var(--blush);
}

.faq-layout {
  align-items: start;
}

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

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 800;
}

.faq-list p {
  padding-bottom: 20px;
}

.closing-cta {
  padding: clamp(68px, 9vw, 104px) 20px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.closing-cta h2 {
  margin: 10px auto 28px;
}

.site-footer {
  padding: 34px 20px;
  background: #171619;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.footer-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.lp-narrow {
  width: min(760px, 100%);
}

.lp-band {
  padding: 22px 18px;
  background: var(--rose);
  color: var(--white);
  text-align: center;
  font-size: clamp(1.2rem, 3.8vw, 1.6rem);
  font-weight: 600;
}

.lp-empathy {
  background: var(--blush);
}

.lp-text-stack {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  color: var(--ink);
  font-weight: 600;
}

.lp-em {
  font-weight: 900;
  color: var(--rose-dark);
}

.lp-ribbon {
  background: #f5f0f5;
}

.lp-ribbon-badge {
  position: relative;
  margin-inline: auto;
  width: fit-content;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(216, 91, 127, 0.28);
}

.lp-ribbon-badge--image {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.lp-ribbon-badge-image {
  display: block;
  width: min(320px, 92vw);
  height: auto;
}

.lp-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.lp-offer {
  background: #fff8fc;
  padding-bottom: 0;
}

.lp-special-heading {
  text-align: center;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.6vw, 2rem);
}

.lp-special-heading p {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.6;
}

.lp-offer-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  text-align: center;
}

.lp-offer-label {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
}

.lp-offer-title {
  margin-top: 10px;
  font-size: clamp(1.5rem, 4.8vw, 2.2rem);
}

.lp-offer-subtitle {
  margin-top: 10px;
  font-weight: 900;
}

.lp-offer-image {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin: 0 auto;
}

.lp-book-area {
  margin-top: 22px;
  display: grid;
  place-items: center;
}

.lp-book-image {
  display: block;
  width: min(170px, 50%);
  height: auto;
  border-radius: 10px;
  box-shadow: none;
}

.lp-book-mockup {
  width: min(340px, 100%);
  border-radius: 10px;
  background: linear-gradient(135deg, #f0e8e8 0%, #e8d8d8 100%);
  padding: 24px 18px;
  box-shadow: -6px 6px 16px rgba(0, 0, 0, 0.16), inset -4px 0 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.lp-book-en {
  font-size: 0.72rem;
  color: rgba(37, 36, 39, 0.65);
}

.lp-book-title {
  margin-top: 10px;
  font-size: 1.55rem;
  font-weight: 900;
}

.lp-book-author {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(37, 36, 39, 0.72);
  font-weight: 800;
}

.lp-book-list {
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(37, 36, 39, 0.7);
  line-height: 1.7;
  text-align: left;
}

.lp-cta {
  margin-top: 24px;
  text-align: center;
}

.lp-cta--compact {
  margin-top: 0;
}

.lp-cta-btn {
  position: relative;
  display: block;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  padding: 12px 20px 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(25, 174, 53, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(25, 174, 53, 0.32);
}

.lp-cta-btn--image {
  display: inline-block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lp-cta-btn--image:hover {
  box-shadow: none;
}

.lp-cta-btn-image {
  display: block;
  width: min(380px, 100%);
  height: auto;
}

.lp-cta-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5d742;
  color: #2b2a2d;
  font-size: 0.82rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.lp-cta-sub {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

.lp-cta-main {
  display: block;
  font-size: 1.18rem;
  margin-top: 2px;
}

.lp-cta-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  opacity: 0.9;
}

.lp-cta-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(37, 36, 39, 0.72);
  text-align: left;
}

.lp-final-offer {
  padding: 48px 0 70px;
  background: #fff7fc;
  text-align: center;
}

.lp-offer + .lp-final-offer {
  padding-top: 0;
}

.lp-final-offer .lp-book-image {
  width: min(170px, 50%);
  height: auto;
  margin: 0 auto;
  display: block;
}

.lp-final-offer .lp-cta {
  margin-top: 24px;
}

.lp-final-offer .lp-qr-area {
  margin-top: 52px;
  text-align: center;
}

.lp-final-offer .lp-small-title {
  margin: 0 0 26px;
  color: #2c3042;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.lp-final-offer .lp-qr-image {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  object-fit: contain;
}

.lp-divider-title {
  margin-inline: auto;
  text-align: center;
}

.lp-divider-title h2 {
  display: inline-block;
  padding: 0 14px;
  position: relative;
}

.lp-divider-title h2::before,
.lp-divider-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 3px;
  background: var(--rose);
  transform: translateY(-50%);
}

.lp-divider-title h2::before {
  left: -48px;
}

.lp-divider-title h2::after {
  right: -48px;
}

.lp-steps-image {
  background-color: #e3eefa;
}

.lp-steps-image-img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-step-grid {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.lp-step-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 22px 18px;
}

.lp-step-label {
  text-align: center;
  font-weight: 900;
  color: var(--rose-dark);
  font-size: 1.3rem;
}

.lp-step-label span {
  font-size: 2.1rem;
}

.lp-step-desc {
  margin-top: 14px;
  text-align: center;
  font-weight: 900;
}

.lp-step-mockup {
  margin-top: 14px;
  border-radius: 12px;
  background: #f0f4f8;
  padding: 14px;
  color: rgba(37, 36, 39, 0.7);
}

.lp-mockup-msg {
  border: 1px solid rgba(37, 36, 39, 0.14);
  border-radius: 12px;
  background: var(--white);
  padding: 12px 14px;
  color: rgba(37, 36, 39, 0.88);
}

.lp-mockup-sender {
  display: inline-block;
  font-size: 0.82rem;
  color: rgba(37, 36, 39, 0.6);
}

.lp-mockup-link {
  color: #2f8f3f;
  font-weight: 900;
}

.lp-mockup-time {
  margin-top: 6px;
  text-align: right;
  font-size: 0.82rem;
  color: rgba(37, 36, 39, 0.5);
}

.lp-qr {
  background: var(--cream);
}

.lp-small-title {
  font-size: clamp(1.4rem, 3.6vw, 2rem);
}

.lp-qr-box {
  margin-top: 18px;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  border: 1px dashed rgba(37, 36, 39, 0.26);
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(37, 36, 39, 0.65);
  background: var(--white);
}

.lp-faq {
  background: var(--blush);
}

.lp-faq-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.lp-faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(87, 62, 72, 0.06);
  padding: 0 18px;
}

.lp-faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
}

.lp-faq-list p {
  padding-bottom: 18px;
  color: var(--muted);
  font-weight: 600;
}

.lp-profile {
  background: var(--white);
}

.lp-profile-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 26px 20px;
  text-align: center;
}

.lp-profile-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #e8dff0;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-size: 44px;
}

.lp-profile-name {
  font-weight: 900;
  font-size: 1.1rem;
}

.lp-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lp-stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(37, 36, 39, 0.62);
  font-weight: 800;
}

.lp-stat-value {
  display: block;
  margin-top: 4px;
  color: var(--rose-dark);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.2;
}

.lp-stat-unit {
  font-size: 0.88rem;
}

.lp-achievement-copy {
  margin-top: 26px;
  text-align: center;
  font-weight: 900;
}

.lp-achievement-strong {
  color: var(--rose-dark);
  font-size: 1.55rem;
}

.lp-spacer {
  height: 12px;
}

.first-view {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 28px 16px 22px;
  overflow: hidden;
  background-image: url("../image/first-view-background.png");
  background-size: cover;
  background-position: 50% 24%;
  background-repeat: no-repeat;
}

.first-view::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.92) 0%, rgba(255, 248, 239, 0.62) 48%, rgba(255, 255, 255, 0.92) 100%);
}

.first-view::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 55%;
  background: radial-gradient(closest-side, rgba(216, 91, 127, 0.14), rgba(216, 91, 127, 0));
  pointer-events: none;
}

.first-view-inner {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin: 0 auto;
}

.first-view-copy {
  margin: 10% 0;
  font-size: clamp(1rem, 6.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--ink);
  text-wrap: pretty;
  text-shadow: 0 10px 28px rgba(37, 36, 39, 0.12);
  text-align: center;
  padding: 10px 0 ;
}

.fv-br {
  display: block;
  content: "";
}

.copy-em {
  font-weight: 700;
  font-size: clamp(2.25rem, 6.2vw, 2.35rem);
}

.copy-em--num {
  font-size: clamp(2.55rem, 6.2vw, 2.35rem);
  color: var(--rose-dark);
}

.copy-em--marker {
  display: inline;
  padding: 0em 0.26em;
  border-radius: 8px;
  background: linear-gradient(transparent 70%, rgba(216, 91, 127, 0.24) 0);
  color: var(--rose-dark);
}

.achievement-card {
  margin-top: 500px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(234, 220, 225, 0.88);
  box-shadow: 0 18px 46px rgba(68, 46, 58, 0.16);
  overflow: hidden;
}

.achievement-image {
  display: block;
  width: min(240px, 55%);
  height: auto;
  object-fit: contain;
  margin:50px auto 0;

}

.achievement-body {
  padding: 18px 18px 20px;
}

.achievement-title {
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.45;
  color: var(--ink);
  text-align: center;
}

.achievement-name {
  margin: 8px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.achievement-text {
  margin: 12px 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.85;
  color: rgba(37, 36, 39, 0.92);
}

@media (min-width: 720px) {
  .first-view {
    padding: 54px 22px 44px;
    background-position: 50% 18%;
  }

  .first-view-inner {
    width: min(920px, 100%);
  }

  .fv-br {
    display: none;
  }

  .achievement-card {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    align-items: stretch;
    margin-top: 24px;
  }

  .achievement-image {
    width: min(320px, 90%);
    height: auto;
    margin: 16px auto;
    justify-self: center;
    align-self: center;
  }

  .achievement-body {
    padding: 22px 24px 24px;
  }

  .achievement-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .two-column,
  .gift-layout,
  .profile-layout,
  .faq-layout,
  .concept-grid,
  .article-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(37, 25, 31, 0.2) 0%, rgba(37, 25, 31, 0.78) 100%);
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .first-view {
    padding: 22px 14px 18px;
    background-position: 50% 28%;
  }

  .achievement-card {
    margin-top: 14px;
  }

  .achievement-body {
    padding: 16px 16px 18px;
  }

  .achievement-title {
    font-size: 1.45rem;
    line-height: 1.35;
  }

  .brand span:last-child {
    max-width: 9em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 106px 18px 56px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .section {
    padding-inline: 18px;
  }

  .worry-list li,
  .check-list li {
    padding-right: 16px;
  }

  .concept-grid article,
  .gift-note {
    padding: 22px;
  }

  .lp-divider-title h2::before,
  .lp-divider-title h2::after {
    width: 24px;
  }

  .lp-divider-title h2::before {
    left: -34px;
  }

  .lp-divider-title h2::after {
    right: -34px;
  }

  .lp-stats {
    grid-template-columns: 1fr;
  }
}
