:root {
  --blue: #C98F8F;
  --blue-dark: #5A463D;
  --blue-ink: #5A463D;
  --blue-soft: #F7EFE8;
  --blue-pale: #FFF9F4;
  --green: #C98F8F;
  --green-dark: #B77A7A;
  --green-soft: #F7EFE8;
  --lp-navy-gradient: linear-gradient(135deg, #5A463D 0%, #B77A7A 100%);
  --lp-navy-bg: #5A463D;
  --heading: #5A463D;
  --text: #5A463D;
  --muted: #6F5B52;
  --soft: #FFF9F4;
  --border: #E8D8CC;
  --white: #FFFFFF;
  --shadow-sm: 0 8px 30px rgba(90, 70, 61, .07);
  --shadow-md: 0 18px 48px rgba(90, 70, 61, .12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --header-height: 76px;
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--text);
  background: #FFF9F4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
p, ul, ol, dl { margin-top: 0; }
h1, h2, h3, h4 { color: var(--heading); line-height: 1.4; letter-spacing: 0; margin-top: 0; }

::selection { color: var(--blue-dark); background: #F7EFE8; }

:focus-visible {
  outline: 3px solid rgba(201, 143, 143, .45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(232, 216, 204, .82);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(90, 70, 61, .08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--blue-dark);
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, #D9A8A3, var(--blue));
  border-radius: 12px 17px 12px 17px;
  box-shadow: 0 7px 16px rgba(201, 143, 143, .24);
  transform: rotate(-8deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}

.brand-mark::before { width: 7px; height: 7px; top: 10px; left: 9px; }
.brand-mark::after { width: 7px; height: 7px; top: 10px; right: 8px; }
.brand-mark span { width: 17px; height: 7px; left: 11px; bottom: 8px; border-radius: 2px 2px 12px 12px; }

.brand-copy { display: grid; line-height: 1.04; }
.brand-copy strong { font-size: 19px; letter-spacing: 0; }
.brand-copy small { margin-top: 3px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: 0; }

.global-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 700; }
.global-nav > a { position: relative; padding-block: 8px; transition: color .2s ease; }
.global-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.global-nav > a:hover { color: var(--blue); }
.global-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.global-nav .nav-cta { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 16px; color: var(--white); background: #C98F8F; border: 1px solid rgba(183,122,122,.16); border-radius: 999px; box-shadow: 0 9px 20px rgba(183,122,122,.2), inset 0 1px 0 rgba(255,255,255,.34); font-size: 14px; font-weight: 850; line-height: 1.35; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease; }
.global-nav .nav-cta::after { content: "›"; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: var(--white); background: rgba(255,255,255,.2); border-radius: 50%; font-size: 18px; font-weight: 700; line-height: 1; transition: transform .2s ease, background .2s ease; }
.global-nav .nav-cta:hover { color: var(--white); background: #B77A7A; box-shadow: 0 13px 26px rgba(183,122,122,.27), inset 0 1px 0 rgba(255,255,255,.42); filter: saturate(1.05); transform: translateY(-2px); }
.global-nav .nav-cta:hover::after { background: rgba(255,255,255,.28); transform: translateX(2px); }
.global-nav .nav-cta:active { box-shadow: 0 6px 15px rgba(183,122,122,.2), inset 0 2px 4px rgba(90,70,61,.1); transform: translateY(0); }
.global-nav .nav-cta:focus-visible { outline: 3px solid rgba(201,143,143,.35); outline-offset: 3px; }
.header-cta-short { display: none; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: 0;
  background-color: var(--blue-pale);
  background-image:
    linear-gradient(90deg,
      rgba(255,255,255,.99) 0%,
      rgba(255,255,255,.97) 34%,
      rgba(247,239,232,.86) 52%,
      rgba(247,239,232,.46) 68%,
      rgba(247,239,232,.08) 100%),
    url("../img/hero.webp"),
    url("../img/hero-placeholder.svg");
  background-position: center, right center, right center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::after { content: ""; position: absolute; z-index: -2; inset: auto 0 0; height: 110px; background: linear-gradient(to bottom, transparent, rgba(247,239,232,.42)); }

.hero-grid { display: block; }
.hero-copy { position: relative; z-index: 2; max-width: 620px; padding: 68px 0 30px; }
.eyebrow { display: flex; align-items: center; gap: 9px; width: fit-content; margin-bottom: 20px; color: var(--blue-dark); font-size: 14px; font-weight: 800; letter-spacing: 0; }
.eyebrow span { padding: 5px 11px; color: var(--white); background: var(--blue); border-radius: 999px; font-size: 12px; }
.hero h1 { margin-bottom: 27px; font-size: clamp(36px, 3.4vw, 52px); font-weight: 850; letter-spacing: 0; line-height: 1.38; }
.hero h1 > span { color: var(--blue); background: linear-gradient(transparent 72%, rgba(201,143,143,.15) 72%); }
.hero h1 .title-part { white-space: nowrap; }
.hero-lead { font-size: 16px; line-height: 1.9; }
.hero-lead p { margin-bottom: 13px; }
.hero-invitation { margin: 25px 0 22px; color: var(--blue-dark); font-weight: 800; font-size: 17px; }

.cta-unit { margin-top: 29px; text-align: center; }
.cta-unit-left { width: fit-content; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  padding: 15px 28px;
  border: 0;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.button-primary { color: var(--white); background: #C98F8F; box-shadow: 0 10px 24px rgba(201, 143, 143, .28), inset 0 1px rgba(255,255,255,.2); }
.button-primary:hover { color: var(--white); background: #B77A7A; box-shadow: 0 14px 30px rgba(183, 122, 122, .26); transform: translateY(-2px); }
.cta-note { margin: 9px 0 0; color: var(--blue-dark); font-size: 14px; font-weight: 700; letter-spacing: 0; }
.cta-note span { color: var(--green-dark); }

.hero-visual { position: relative; z-index: 1; display: none; align-self: center; padding: 12px 0; }
.hero-visual::before { content: ""; position: absolute; z-index: -1; inset: 29px -12px -2px 18px; background: rgba(247, 239, 232, .72); border: 1px solid rgba(201,143,143,.1); border-radius: 28px; }
.hero-visual picture { display: block; aspect-ratio: 1.08; background: var(--blue-soft); border: 1px solid rgba(232,216,204,.95); border-radius: 26px; box-shadow: 0 22px 52px rgba(90,70,61,.16); overflow: hidden; }
.hero-visual picture img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }

.hero-assurance { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 650px; margin: 0 0 48px; border: 1px solid rgba(232,216,204,.95); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 10px 30px rgba(90,70,61,.09); backdrop-filter: blur(8px); overflow: hidden; }
.hero-assurance > div { display: flex; align-items: center; justify-content: flex-start; gap: 11px; min-height: 78px; padding: 13px 15px; }
.hero-assurance > div + div { border-left: 1px solid var(--border); }
.assurance-icon { display: grid; place-items: center; flex: 0 0 auto; width: 44px; height: 44px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 14px; font-weight: 900; }
.hero-assurance p { display: grid; margin: 0; line-height: 1.45; }
.hero-assurance strong { color: var(--heading); font-size: 16px; }
.hero-assurance small { color: var(--muted); font-size: 14px; }

.section { padding: 108px 0; }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-blue { background: var(--blue-soft); }
.section-heading { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.section-kicker { margin-bottom: 12px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0; }
.section-heading h2 { margin-bottom: 19px; font-size: clamp(30px, 3vw, 40px); font-weight: 850; letter-spacing: 0; }
.section-heading > p:last-child { margin: 0; color: var(--text); }
.mobile-break { display: none; }
.text-narrow { max-width: 800px; margin-inline: auto; }
.center-copy { margin-top: 40px; text-align: center; }

.hero-image-view {
  padding: 0 0 48px;
  background: #FFF9F4;
}

.hero-image-inner {
  width: 100%;
  margin-inline: 0;
}

.hero-visual-picture {
  display: block;
}

.hero-visual-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  background: #FFFFFF;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

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

.hero-image-cta .button-primary {
  width: min(100%, 460px);
  min-width: 0;
}

.worry-section { background: linear-gradient(180deg, #fff 0%, #FFF9F4 100%); }
.worry-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1000px; margin-inline: auto; }
.worry-card { position: relative; min-height: 0; padding: 27px 31px 25px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 12px 34px rgba(90,70,61,.075); overflow: hidden; }
.worry-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--blue), #D9A8A3); }
.worry-card-icon { width: auto; height: auto; padding: 0; margin: 0 0 14px; background: none; border: 0; box-shadow: none; }
.worry-card-icon img { display: block; width: 84px; height: auto; aspect-ratio: 1; object-fit: contain; }
.worry-card h3 { margin-bottom: 8px; color: var(--blue-dark); font-size: 21px; }
.worry-card > p { max-width: 90%; margin: 0; color: var(--text); font-size: 16px; line-height: 1.78; }
.check-list { padding: 0; margin-bottom: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 16px; line-height: 1.75; }
.check-list li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--green-dark); font-weight: 900; }
.solution-bridge-section { padding-block: 96px; background: linear-gradient(180deg, #F7EFE8 0%, #F7EFE8 100%); }
.solution-bridge-card { max-width: 1120px; margin-inline: auto; padding: 56px 54px 46px; background: var(--white); border: 1px solid #E8D8CC; border-radius: 28px; box-shadow: 0 22px 58px rgba(90,70,61,.1); }
.solution-bridge-heading { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.solution-bridge-heading h2 { margin-bottom: 16px; color: var(--blue-dark); font-size: clamp(28px, 3vw, 39px); letter-spacing: 0; }
.solution-bridge-heading > p:last-child { margin: 0; color: var(--text); }
.solution-mobile-break { display: none; }
.solution-compare { display: grid; grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr); align-items: center; }
.solution-path { position: relative; height: 100%; padding: 31px 30px 28px; border-radius: 20px; }
.solution-path-usual { color: var(--muted); background: #FFF9F4; border: 1px solid #E8D8CC; }
.solution-path-toretama { color: var(--blue-dark); background: linear-gradient(155deg, #FFF9F4 0%, #F7EFE8 100%); border: 2px solid #D8B9AD; box-shadow: 0 14px 34px rgba(201,143,143,.12); overflow: hidden; }
.solution-path-toretama::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--blue), #C98F8F); }
.solution-path-label { width: fit-content; margin: 0 0 11px; padding: 5px 12px; color: #7A655C; background: #F7EFE8; border-radius: 999px; font-size: 12px; font-weight: 800; }
.solution-path-toretama .solution-path-label { color: var(--white); background: var(--blue); }
.solution-path h3 { margin-bottom: 24px; color: inherit; font-size: 22px; }
.solution-steps { display: grid; gap: 15px; padding: 0; margin: 0; list-style: none; }
.solution-steps li { position: relative; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: center; min-height: 54px; padding: 9px 13px; background: rgba(255,255,255,.72); border: 1px solid #E8D8CC; border-radius: 13px; }
.solution-steps li:not(:last-child)::after { content: "↓"; position: absolute; z-index: 2; left: 27px; bottom: -18px; color: #B39D92; font-size: 14px; font-weight: 900; line-height: 1; transform: translateX(-50%); }
.solution-steps li > span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--white); background: #B39D92; border-radius: 50%; font-size: 12px; font-weight: 900; }
.solution-steps strong { color: inherit; font-size: 16px; line-height: 1.55; }
.solution-path-toretama .solution-steps li { background: rgba(255,255,255,.9); border-color: #E8D8CC; }
.solution-path-toretama .solution-steps li:not(:last-child)::after { color: var(--blue); }
.solution-path-toretama .solution-steps li > span { background: var(--blue); }
.solution-path-toretama .solution-step-featured { border-color: #C98F8F; box-shadow: 0 6px 16px rgba(201,143,143,.08); }
.solution-step-featured strong > b { color: var(--blue); font-weight: 900; }
.solution-path-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid rgba(148,163,184,.28); font-size: 14px; line-height: 1.75; }
.solution-path-toretama .solution-path-note { color: var(--blue-dark); font-weight: 700; }
.solution-switch { display: grid; justify-items: center; gap: 6px; color: var(--blue); text-align: center; }
.solution-switch span { font-size: 12px; font-weight: 900; letter-spacing: 0; writing-mode: vertical-rl; }
.solution-switch b { display: grid; place-items: center; width: 42px; height: 42px; color: var(--white); background: var(--blue); border-radius: 50%; box-shadow: 0 8px 20px rgba(201,143,143,.23); font-size: 22px; }
.solution-conclusion { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 34px 0 0; color: var(--blue-dark); font-size: 16px; font-weight: 800; text-align: center; }
.solution-conclusion span { display: grid; place-items: center; flex: 0 0 auto; width: 28px; height: 28px; color: var(--white); background: var(--green); border-radius: 50%; font-size: 14px; box-shadow: 0 5px 14px rgba(201,143,143,.2); }

.design-checks { background: #FFF9F4; box-shadow: inset 0 1px 0 rgba(232,216,204,.45), inset 0 -1px 0 rgba(232,216,204,.45); }
.design-checks .section-kicker { color: #C98F8F; }
.design-checks .section-heading h2 { color: var(--heading); }
.design-checks .section-heading > p:last-child { color: var(--text); }
.design-checks-mobile-break { display: none; }
.design-checks-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.design-check-card { min-width: 0; padding: 28px 26px 25px; background: var(--white); border: 1px solid #E8D8CC; border-radius: 22px; box-shadow: 0 14px 32px rgba(90,70,61,.08); }
.design-check-card__icon { width: auto; height: auto; padding: 0; margin: 0 0 17px; background: none; border: 0; box-shadow: none; }
.design-check-card__icon img { display: block; width: 88px; height: auto; aspect-ratio: 1; object-fit: contain; }
.design-check-card h3 { margin: 0 0 10px; color: var(--blue-dark); font-size: 21px; line-height: 1.4; }
.design-check-card p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.75; }
.mini-cta { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); gap: 38px; align-items: center; margin-top: 46px; padding: 35px 38px; background: rgba(255,255,255,.98); border: 1px solid rgba(255,255,255,.22); border-radius: 28px; box-shadow: 0 20px 48px rgba(90,70,61,.22); }
.mini-cta__label { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 13px; padding: 6px 13px; color: #B77A7A; background: rgba(201,143,143,.1); border: 1px solid rgba(201,143,143,.13); border-radius: 999px; font-size: 14px; font-weight: 850; line-height: 1.4; }
.mini-cta h3 { margin: 0 0 11px; color: var(--blue-dark); font-size: clamp(24px, 2.35vw, 31px); line-height: 1.42; letter-spacing: 0; }
.mini-cta__content > p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.mini-cta__action { display: flex; flex-direction: column; align-items: center; min-width: 0; }
.mini-cta__action .button-primary { width: min(100%, 420px); min-width: 0; }
.mini-cta__note { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 13px; margin: 14px 0 0; color: var(--blue-dark); font-size: 14px; font-weight: 750; line-height: 1.6; }
.mini-cta__note span { display: inline-flex; align-items: center; gap: 5px; }
.mini-cta__note span::before { content: "✓"; display: grid; place-items: center; flex: 0 0 auto; width: 18px; height: 18px; color: var(--white); background: var(--green-dark); border-radius: 50%; font-size: 11px; font-weight: 900; line-height: 1; }

.plans-section { background: linear-gradient(180deg, #FFF9F4 0%, #fff 100%); }
.plans-section .section-heading { max-width: 920px; }
.plan-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; max-width: 1080px; margin-inline: auto; }
.plan-card { position: relative; display: flex; flex-direction: column; min-width: 0; height: 100%; padding: 37px 36px 34px; background: var(--white); border-radius: 26px; overflow: hidden; }
.plan-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; }
.plan-card--premium { border: 1px solid rgba(90,70,61,.18); box-shadow: 0 20px 50px rgba(90,70,61,.12); }
.plan-card--premium::before { background: linear-gradient(90deg, var(--blue-dark), var(--blue)); }
.plan-card--simple { background: #FFF9F4; border: 1px solid #E8D8CC; box-shadow: 0 15px 38px rgba(201,143,143,.085); }
.plan-card--simple::before { background: linear-gradient(90deg, #D9A8A3, #E8D8CC); }
.plan-card__label { width: fit-content; margin-bottom: 18px; padding: 7px 14px; border-radius: 999px; font-size: 14px; font-weight: 850; line-height: 1.4; }
.plan-card--premium .plan-card__label { color: var(--white); background: var(--blue-dark); }
.plan-card--simple .plan-card__label { color: var(--blue-dark); background: var(--blue-soft); border: 1px solid #E8D8CC; }
.plan-card h3 { margin-bottom: 22px; color: var(--blue-dark); font-size: 28px; line-height: 1.4; }
.plan-card__price { margin-bottom: 22px; padding: 10px 22px; background: #FFF9F4; border: 1px solid #E8D8CC; border-radius: 18px; }
.plan-card--simple .plan-card__price { background: #FFF9F4; }
.plan-card__price > div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid #E8D8CC; }
.plan-card__price > div:last-child { border-bottom: 0; }
.plan-card__price span { color: var(--text); font-size: 16px; font-weight: 800; }
.plan-card__price strong { color: var(--blue-dark); font-size: 34px; font-weight: 900; letter-spacing: 0; white-space: nowrap; }
.plan-card__price strong small { margin-left: 2px; font-size: 15px; }
.plan-card__recommend { margin-top: auto; padding: 20px 21px; background: #FFF9F4; border: 1px solid #E8D8CC; border-radius: 17px; }
.plan-card__recommend h4 { margin-bottom: 13px; color: var(--blue-dark); font-size: 19px; }
.plan-card__recommend ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.plan-card__recommend li { position: relative; padding-left: 28px; color: var(--text); font-size: 16px; line-height: 1.65; }
.plan-card__recommend li::before { content: "✓"; position: absolute; top: .1em; left: 0; color: var(--green-dark); font-weight: 900; }
.comparison-wrap { max-width: 1040px; margin: 52px auto 0; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); }
.comparison-scroll-hint { display: none; }
.comparison-table { width: 100%; border-collapse: collapse; table-layout: fixed; background: var(--white); }
.comparison-table caption { padding: 21px; color: var(--blue-dark); background: var(--blue-soft); border-bottom: 1px solid #E8D8CC; font-size: 23px; font-weight: 850; }
.comparison-table th, .comparison-table td { padding: 18px 20px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; vertical-align: middle; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table thead th { color: var(--heading); background: #FFF9F4; font-size: 16px; }
.comparison-table thead th:first-child, .comparison-table tbody th { width: 25%; }
.comparison-table tbody th { color: var(--heading); background: var(--soft); font-size: 16px; text-align: left; }
.comparison-table td { color: var(--text); font-size: 16px; line-height: 1.7; }
.comparison-table .premium-col { background: #FFF9F4; }
.comparison-table thead .premium-col { color: var(--blue-dark); background: #F7EFE8; box-shadow: inset 0 3px 0 var(--blue); }
.comparison-table strong { color: var(--blue-dark); font-size: 18px; }
.plan-advice { max-width: 940px; margin: 38px auto 0; padding: 31px 34px; text-align: center; background: linear-gradient(135deg, #F7EFE8, #fff); border: 1px solid #E8D8CC; border-radius: 24px; box-shadow: 0 12px 30px rgba(90,70,61,.065); }
.plan-advice__copy { display: flex; align-items: flex-start; justify-content: center; gap: 13px; }
.plan-advice__copy > span { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; color: var(--white); background: var(--blue); border-radius: 50%; font-weight: 900; }
.plan-advice__copy p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.plan-advice__copy strong { color: var(--blue-dark); font-size: 18px; }
.plan-advice__action { display: flex; flex-direction: column; align-items: center; margin-top: 24px; }
.plan-advice__action .button-primary { width: min(100%, 390px); min-width: 0; min-height: 62px; padding: 15px 24px; font-size: 16px; }
.plan-advice__action .cta-note { max-width: 100%; white-space: normal; text-align: center; }
.budget-preview { max-width: 1020px; margin: 44px auto 0; }
.budget-preview-card { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 38px; align-items: start; padding: 48px 60px; background: #FFFFFF; border: 1px solid #E8D8CC; border-radius: 28px; box-shadow: 0 22px 54px rgba(90,70,61,.11); }
.budget-preview-icon { display: grid; place-items: center; width: 92px; height: 92px; margin-top: 42px; color: #FFFFFF; background: #C98F8F; border: 10px solid #F7EFE8; border-radius: 50%; box-shadow: 0 16px 34px rgba(201,143,143,.2); font-size: 43px; font-weight: 900; line-height: 1; }
.budget-preview-content { min-width: 0; }
.budget-preview-kicker { margin: 0 0 13px; color: #B77A7A; font-size: 12px; font-weight: 900; letter-spacing: 0; line-height: 1.4; }
.budget-preview-content h2 { margin: 0 0 24px; color: #3f2a24; font-size: clamp(28px, 3vw, 39px); font-weight: 850; line-height: 1.45; }
.budget-preview-question { margin: 0 0 23px; padding: 18px 22px; color: #4a3028; background: #FDF3EE; border-left: 4px solid #C98F8F; border-radius: 0 14px 14px 0; }
.budget-preview-question p { margin: 0; color: #4a3028; font-size: 16px; font-weight: 850; line-height: 1.85; }
.budget-preview-label { margin: 0 0 20px; color: #B77A7A; font-size: 24px; font-weight: 900; line-height: 1.45; }
.budget-preview-text { display: grid; gap: 14px; }
.budget-preview-text p { margin: 0; color: #4a3028; font-size: 16px; line-height: 1.9; }
.budget-preview-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 30px; }
.budget-preview-cta .button-primary { width: min(100%, 450px); min-width: 0; min-height: 62px; padding: 15px 24px; font-size: 16px; }
.budget-preview-cta .cta-note { max-width: 100%; margin: 0; white-space: normal; text-align: left; }

.plan-detail { position: relative; overflow: hidden; }
.detail-premium { background: linear-gradient(180deg, #FFF9F4 0%, var(--blue-soft) 100%); }
.detail-economy { background: linear-gradient(180deg, #ffffff 0%, #F7EFE8 100%); }
.plan-detail-stack { display: grid; gap: 40px; }
.plan-detail-summary { max-width: 960px; margin-inline: auto; padding: 34px 36px 32px; background: rgba(255,255,255,.96); border: 1px solid rgba(90,70,61,.09); border-radius: 26px; box-shadow: 0 14px 34px rgba(90,70,61,.08); text-align: center; }
.plan-detail-summary h2 { margin-bottom: 15px; color: var(--blue-dark); font-size: clamp(30px, 4vw, 38px); line-height: 1.4; }
.plan-detail-lead { max-width: 780px; margin: 0 auto 24px; color: var(--text); font-size: 17px; font-weight: 500; line-height: 1.85; }
.plan-feature-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding: 0; margin: 0; list-style: none; text-align: left; }
.plan-feature-points li { position: relative; min-width: 0; padding: 16px 17px 16px 44px; color: var(--heading); background: var(--blue-pale); border: 1px solid rgba(201,143,143,.09); border-radius: 16px; font-size: 16px; font-weight: 750; line-height: 1.7; }
.plan-feature-points li::before { content: "✓"; position: absolute; top: 16px; left: 17px; color: var(--white); background: var(--blue); display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; font-size: 12px; font-weight: 900; line-height: 1; }
.detail-economy .plan-feature-points li { background: #FFF9F4; }
.detail-economy .plan-feature-points li::before { background: #B77A7A; }
.plan-works { min-width: 0; }
.plan-works .works-group-heading { margin-bottom: 30px; }
.plan-works .works-group-heading p { max-width: 680px; margin-inline: auto; }

.budget-note { position: relative; overflow: hidden; background: #FDF3EE; box-shadow: inset 0 1px 0 rgba(232,216,204,.48), inset 0 -1px 0 rgba(232,216,204,.48); }
.budget-note-grid { position: relative; display: grid; grid-template-columns: 150px minmax(0, 760px); justify-content: center; gap: 42px; max-width: 1080px; padding: 44px; background: rgba(255,255,255,.98); border: 1px solid #E8D8CC; border-radius: 28px; box-shadow: 0 18px 42px rgba(90,70,61,.1); }
.budget-note-icon { display: grid; place-items: center; width: 130px; height: 130px; margin-top: 45px; color: var(--white); background: var(--blue); border: 12px solid rgba(255,255,255,.72); border-radius: 50%; box-shadow: 0 16px 35px rgba(90,70,61,.15); font-size: 58px; font-weight: 900; }
.budget-note h2 { margin-bottom: 25px; font-size: 34px; }
.benefits-box { max-width: 1080px; margin-inline: auto; padding: 48px; background: rgba(255,255,255,.98); border: 1px solid #E8D8CC; border-radius: 28px; box-shadow: 0 18px 42px rgba(90,70,61,.1); }
.benefits-heading { max-width: 780px; margin: 0 auto 36px; text-align: center; }
.benefits-heading h2 { margin-bottom: 16px; color: var(--heading); font-size: clamp(30px, 3vw, 40px); line-height: 1.45; }
.benefits-heading > p:last-child { margin: 0; color: var(--text); font-size: 17px; line-height: 1.85; }
.benefit-cards { display: grid; grid-template-columns: 1fr; gap: 22px; }
.benefit-card { position: relative; min-width: 0; padding: 30px 28px 28px; background: #FFFFFF; border: 1px solid #E8D8CC; border-radius: 22px; box-shadow: 0 14px 32px rgba(90,70,61,.075); overflow: hidden; }
.benefit-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, #C98F8F, #E8D8CC); }
.benefit-card__label { display: inline-flex; width: fit-content; margin: 0 0 14px; padding: 6px 12px; color: #B77A7A; background: #F7EFE8; border: 1px solid #E8D8CC; border-radius: 999px; font-size: 13px; font-weight: 900; line-height: 1.4; }
.benefit-card h3 { margin: 0 0 16px; color: var(--blue-dark); font-size: 24px; line-height: 1.45; }
.benefit-card p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.82; }
.benefit-card p + p { margin-top: 13px; }
.benefit-card__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 12px; margin: 0 0 18px !important; padding: 15px 17px; color: var(--blue-dark); background: #FFF9F4; border: 1px solid #E8D8CC; border-radius: 16px; font-weight: 850; }
.benefit-card__price span { color: #8A6A60; text-decoration: line-through; text-decoration-thickness: 2px; }
.benefit-card__price b { color: #B77A7A; font-size: 20px; line-height: 1; }
.benefit-card__price strong { color: #B77A7A; font-size: 31px; font-weight: 900; line-height: 1.2; white-space: nowrap; }
.benefit-card__visual { display: block; margin: 20px 0 0; background: #FFF9F4; border: 1px solid #E8D8CC; border-radius: 16px; box-shadow: 0 10px 24px rgba(90,70,61,.08); overflow: hidden; }
.benefit-card__visual img { display: block; width: 100%; height: auto; }
.benefit-card__caption { margin-top: 13px !important; color: #7A554E !important; font-size: 14px !important; font-weight: 750; line-height: 1.75 !important; }
.benefits-note { margin: 24px 0 0; padding: 15px 18px; color: #60372f; background: #F7EFE8; border: 1px solid #E8D8CC; border-radius: 16px; font-size: 15px; font-weight: 850; line-height: 1.7; text-align: center; }
.benefits-box .cta-unit { margin-top: 28px; }

@media (max-width: 900px) {
  .benefits-box { padding: 38px 30px; }
  .benefit-cards { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .benefits-box { padding: 30px 20px; border-radius: 22px; }
  .benefits-heading { margin-bottom: 28px; text-align: left; }
  .benefits-heading h2 { font-size: 28px; }
  .benefits-heading > p:last-child { font-size: 16px; line-height: 1.8; }
  .benefit-card { padding: 25px 20px 23px; border-radius: 18px; }
  .benefit-card h3 { font-size: 21px; }
  .benefit-card__price { padding: 14px; }
  .benefit-card__price strong { font-size: 28px; }
  .benefit-card__visual { margin-top: 18px; border-radius: 14px; }
  .benefit-card__caption { font-size: 13.5px !important; }
  .benefits-note { text-align: left; }
}

.question-quote { padding: 17px 21px; color: var(--blue-dark); background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; font-weight: 700; }
.answer-lead { color: var(--blue); font-size: 23px; font-weight: 900; }

.voice { background: linear-gradient(180deg, #ffffff 0%, #FFF9F4 100%); overflow: hidden; }
.voice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 42px; }
.voice-card { position: relative; display: flex; flex-direction: column; min-width: 0; background: var(--white); border: 1px solid rgba(90,70,61,.1); border-radius: 24px; box-shadow: 0 16px 38px rgba(90,70,61,.09); overflow: hidden; }
.voice-card__visual { aspect-ratio: 4 / 3; background: var(--blue-soft); overflow: hidden; }
.voice-card__image { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.voice-card__body { display: flex; flex: 1; flex-direction: column; padding: 25px 25px 27px; }
.voice-card h3 { margin-bottom: 16px; color: var(--heading); font-size: 19px; line-height: 1.6; }
.voice-card blockquote { display: flex; flex: 1; flex-direction: column; gap: 12px; margin: 0; padding: 0; color: var(--text); font-size: 16px; line-height: 1.85; }
.voice-card blockquote p { margin: 0; }
.voice-card__quote { height: 48px; margin-bottom: 4px; color: rgba(201,143,143,.24); font-family: Georgia, "Times New Roman", serif; font-size: 76px; font-weight: 900; line-height: .82; }
.voice-card > p:not(.voice-card__name) { flex: 1; margin: 0; color: var(--text); font-size: 16px; line-height: 1.85; }
.voice-card__name { margin: 20px 0 0; padding-top: 14px; color: var(--blue-dark); border-top: 1px solid rgba(90,70,61,.12); font-size: 15px; font-weight: 850; line-height: 1.6; }
.voice-note { max-width: 760px; margin: 34px auto 0; color: var(--text); font-size: 16px; font-weight: 500; line-height: 1.85; text-align: center; }
.voice-cta { margin-top: 24px; text-align: center; }
.voice-cta .button-primary { width: min(100%, 400px); min-width: 0; min-height: 62px; }

.works-group-heading { max-width: 780px; margin: 0 auto 35px; text-align: center; }
.works-group-heading > span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0; }
.works-group-heading h3 { margin: 8px 0 14px; font-size: 28px; }
.works-group-heading p { color: var(--text); font-size: 16px; line-height: 1.75; }
.works-group-economy .works-group-heading > span { color: #8A6A60; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.work-card { display: flex; flex-direction: column; min-width: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.work-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.work-card picture { display: block; aspect-ratio: 16 / 10; background: var(--blue-soft); overflow: hidden; }
.work-card picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work-card:hover picture img { transform: scale(1.025); }
.work-body { display: flex; flex: 1; flex-direction: column; padding: 23px 23px 21px; }
.work-type { width: fit-content; margin-bottom: 9px; padding: 3px 9px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-size: 12px; font-weight: 800; }
.works-group-economy .work-type { color: #7A554E; background: #F7EFE8; }
.work-body h4 { margin-bottom: 9px; font-size: 21px; }
.work-body > p:not(.work-type) { flex: 1; margin-bottom: 20px; color: var(--text); font-size: 16px; line-height: 1.75; }
.work-body > a { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; color: var(--blue-dark); border-top: 1px solid var(--border); font-size: 15px; font-weight: 800; }
.work-body > a span { font-size: 18px; }

.flow { background: linear-gradient(180deg, #F7EFE8 0%, #E8D8CC 100%); }
.flow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 28px; margin-top: 36px; }
.flow-card { position: relative; min-width: 0; min-height: 228px; padding: 29px 25px 27px; background: var(--white); border: 1px solid rgba(90,70,61,.09); border-radius: 24px; box-shadow: 0 12px 30px rgba(90,70,61,.07); }
.flow-card::after { content: ""; position: absolute; z-index: 2; top: 42px; right: -29px; display: none; width: 29px; height: 2px; background: linear-gradient(90deg, rgba(201,143,143,.14), rgba(201,143,143,.5)); }
.flow-card:not(:nth-child(3n))::after { display: block; }
.flow-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 30px; margin-bottom: 16px; }
.flow-card__step { display: inline-flex; align-items: center; justify-content: center; padding: 7px 13px; color: var(--blue-dark); background: rgba(201,143,143,.1); border: 1px solid rgba(201,143,143,.1); border-radius: 999px; font-size: 14px; font-weight: 900; letter-spacing: 0; line-height: 1; }
.flow-card h3 { margin: 0 0 12px; color: var(--blue-dark); font-size: 21px; line-height: 1.45; }
.flow-card p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.flow-card--highlight { background: linear-gradient(180deg, #fff 0%, #FFF9F4 100%); border-color: rgba(201,143,143,.38); box-shadow: 0 16px 36px rgba(201,143,143,.12); }
.flow-card--highlight .flow-card__step { color: #B77A7A; background: rgba(201,143,143,.1); border-color: rgba(201,143,143,.16); }
.flow-card__badge { display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 6px 11px; color: #B77A7A; background: rgba(201,143,143,.12); border-radius: 999px; font-size: 13px; font-weight: 900; line-height: 1; white-space: nowrap; }
.flow-card__badge > span { display: grid; place-items: center; width: 17px; height: 17px; color: var(--white); background: var(--green-dark); border-radius: 50%; font-size: 10px; }
.flow-cta { max-width: 850px; margin: 40px auto 0; padding: 29px 28px 27px; text-align: center; background: rgba(255,255,255,.9); border: 1px solid rgba(201,143,143,.12); border-radius: 24px; box-shadow: 0 14px 34px rgba(90,70,61,.08); }
.flow-cta__lead { margin: 0 0 18px; color: var(--blue-dark); font-size: 21px; font-weight: 800; line-height: 1.5; }
.flow-cta .button-primary { width: min(100%, 420px); min-width: 0; }
.flow-cta .cta-note { max-width: 100%; white-space: normal; }

.faq-container { max-width: 920px; }
.faq-list { display: grid; gap: 14px; }
.faq-list details { background: var(--white); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 6px 22px rgba(90,70,61,.05); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-list details[open] { border-color: rgba(201,143,143,.28); box-shadow: 0 10px 28px rgba(90,70,61,.08); }
.faq-list summary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; min-height: 80px; padding: 21px 23px; color: var(--blue-dark); font-size: 18px; font-weight: 850; line-height: 1.6; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:focus-visible { outline: 3px solid rgba(201,143,143,.3); outline-offset: -3px; }
.faq-q, .faq-answer > span { display: grid; place-items: center; width: 40px; height: 40px; color: var(--white); background: var(--blue); border-radius: 12px; font-family: Arial, sans-serif; font-size: 14px; font-weight: 900; }
.faq-list summary i { position: relative; width: 30px; height: 30px; background: var(--blue-soft); border-radius: 50%; transition: background .2s ease; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 14px; left: 7px; width: 16px; height: 2px; background: var(--blue); border-radius: 2px; transition: transform .2s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details[open] summary i { background: #F7EFE8; }
.faq-list details[open] summary { color: var(--blue-dark); background: var(--blue-pale); }
.faq-list details[open] .faq-answer { animation: faq-answer-reveal .22s ease-out; }
.faq-answer { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 16px; padding: 23px 24px 26px; color: var(--text); border-top: 1px solid var(--border); font-size: 16px; line-height: 1.8; }
.faq-answer > span { color: var(--blue); background: var(--blue-soft); }
.faq-answer p { margin: 2px 0 0; }
.faq-answer__body { min-width: 0; }
.faq-answer__body p + p { margin-top: 12px; }
.faq-cta { margin: 38px auto 0; padding: 29px 26px 27px; text-align: center; background: linear-gradient(135deg, rgba(247,239,232,.9), rgba(255,255,255,.98)); border: 1px solid rgba(201,143,143,.14); border-radius: 24px; box-shadow: 0 14px 34px rgba(90,70,61,.08); }
.faq-cta__lead { margin: 0 0 19px; color: var(--blue-dark); font-size: 20px; font-weight: 800; line-height: 1.65; }
.faq-cta .button-primary { width: min(100%, 400px); min-width: 0; min-height: 62px; }
.faq-cta .cta-note { max-width: 100%; white-space: normal; }

@keyframes faq-answer-reveal {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list details[open] .faq-answer { animation: none; }
}

.creator { background: linear-gradient(180deg, #fff 0%, #FFF9F4 100%); }
.creator-box { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr); gap: 42px; align-items: center; margin-top: 38px; padding: 38px; background: var(--white); border: 1px solid rgba(90,70,61,.08); border-radius: 28px; box-shadow: 0 18px 42px rgba(90,70,61,.08); }
.creator-box__logo { display: flex; align-items: center; justify-content: center; min-width: 0; padding: 16px 4px; }
.creator-box__logo img { display: block; width: min(100%, 400px); height: auto; }
.creator-box__content { min-width: 0; }
.creator-box__label { display: inline-flex; align-items: center; justify-content: center; margin: 0 0 9px; padding: 5px 11px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-size: 13px; font-weight: 900; letter-spacing: 0; }
.creator-box__company { margin: 0 0 16px; color: var(--blue-dark); font-size: 22px; font-weight: 850; line-height: 1.5; }
.creator-box__text p { margin: 0 0 13px; color: var(--text); font-size: 16px; line-height: 1.85; }
.creator-box__text p:last-child { margin-bottom: 0; }
.creator-box__points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.creator-box__points li { display: flex; align-items: flex-start; gap: 9px; min-width: 0; padding: 13px 14px; color: var(--blue-dark); background: #FFF9F4; border: 1px solid rgba(201,143,143,.11); border-radius: 14px; font-size: 15px; font-weight: 750; line-height: 1.6; }
.creator-box__points li::before { content: "✓"; display: grid; flex: 0 0 auto; place-items: center; width: 20px; height: 20px; margin-top: 2px; color: var(--white); background: linear-gradient(135deg, #C98F8F, #B77A7A); border-radius: 50%; font-size: 12px; font-weight: 900; line-height: 1; }
.creator-cta { max-width: 850px; margin: 38px auto 0; padding: 28px 26px 26px; text-align: center; background: rgba(255,255,255,.92); border: 1px solid rgba(201,143,143,.12); border-radius: 24px; box-shadow: 0 14px 34px rgba(90,70,61,.07); }
.creator-cta__lead { margin: 0 0 18px; color: var(--blue-dark); font-size: 20px; font-weight: 800; line-height: 1.6; }
.creator-cta .button-primary { width: min(100%, 400px); min-width: 0; min-height: 62px; }
.creator-cta .cta-note { max-width: 100%; white-space: normal; }

.contact-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF9F4 0%, #F8EDE7 100%);
}
.contact-top {
  position: relative;
  padding: 72px 0 230px;
  background: linear-gradient(135deg, #F8EDE7 0%, #EFD8D2 100%);
}
.contact-top .contact-container { position: relative; z-index: 1; }
.contact-bottom { position: relative; z-index: 2; padding: 0 0 92px; background: #F8EDE7; }
.contact-bottom::before { content: ""; position: absolute; inset: 0 0 auto; height: 230px; background: linear-gradient(135deg, #F8EDE7 0%, #EFD8D2 100%); pointer-events: none; }
.contact-bottom .contact-container { position: relative; z-index: 1; }
.contact-container { max-width: 1080px; }
.contact-heading { max-width: 880px; margin-bottom: 0; }
.contact-section .section-kicker { margin-bottom: 18px; color: #B77A7A; font-size: 11.5px; letter-spacing: 0; }
.contact-heading h2 { margin-bottom: 17px; color: var(--heading); font-size: clamp(32px, 3.5vw, 44px); line-height: 1.45; letter-spacing: 0; text-shadow: none; }
.contact-heading > p:last-child { color: var(--text); font-size: 16px; line-height: 1.9; letter-spacing: 0; }
.contact-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-points li { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; color: var(--blue-dark); background: rgba(255,255,255,.72); border: 1px solid #E8D8CC; border-radius: 999px; box-shadow: 0 8px 20px rgba(90,70,61,.06); font-size: 14px; font-weight: 800; line-height: 1.5; }
.contact-points li::before { content: "✓"; color: #B77A7A; font-size: 14px; font-weight: 900; line-height: 1; }
.contact-lead-note { margin: 20px 0 0; color: var(--text); text-align: center; font-size: 16px; font-weight: 800; line-height: 1.8; letter-spacing: 0; }
.contact-card { position: relative; z-index: 2; max-width: 920px; margin: -170px auto 0; padding: 0 34px 36px; background: var(--white); border: 1px solid rgba(90,70,61,.08); border-radius: 28px 28px 12px 12px; box-shadow: 0 24px 65px rgba(90,70,61,.18); overflow: hidden; }
.form-heading { padding: 36px 0 27px; text-align: center; border-bottom: 1px solid var(--border); }
.form-heading > span { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px; padding: 5px 12px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 999px; font-size: 13px; font-weight: 850; }
.form-heading h3 { margin-bottom: 10px; color: var(--blue-dark); font-size: 28px; }
.form-heading p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.contact-form { padding-top: 31px; }
.form-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.form-wide { grid-column: 1 / -1; }
.form-field { min-width: 0; }
.form-field label { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 8px; color: var(--blue-dark); font-size: 16px; font-weight: 850; }
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="url"], .form-field select, .form-field textarea {
  width: 100%;
  color: var(--text);
  background: var(--white);
  border: 1px solid #E8D8CC;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.6;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="url"], .form-field select { min-height: 56px; padding: 13px 15px; }
.form-field select { cursor: pointer; }
.form-field textarea { display: block; min-height: 110px; padding: 13px 15px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #C98F8F; box-shadow: 0 0 0 3px rgba(201, 143, 143, .18); }
.form-field ::placeholder { color: #9A857A; opacity: 1; }
.required, .optional { display: inline-flex; align-items: center; justify-content: center; padding: 3px 8px; border-radius: 999px; font-size: 12px; font-weight: 850; line-height: 1.4; }
.required { color: #B77A7A; background: rgba(201,143,143,.12); }
.optional { color: var(--muted); background: rgba(90,70,61,.12); }
.form-submit { margin-top: 32px; text-align: center; }
.button-submit { width: min(100%, 420px); min-width: 0; }
.form-note { margin: 14px 0 0; color: var(--text); font-size: 15px; line-height: 1.75; }

.section-heading > p:last-child,
.worry-card > p,
.solution-bridge-heading > p:last-child,
.solution-path-note,
.design-check-card p,
.mini-cta__content > p,
.plan-advice__copy p,
.plan-detail-lead,
.works-group-heading p,
.work-body > p:not(.work-type),
.flow-card p,
.faq-answer,
.creator-box__text p,
.form-heading p,
.form-note {
  font-weight: 500;
}

.thanks-page { min-height: 100vh; background: radial-gradient(circle at 14% 10%, rgba(201,143,143,.18), transparent 30%), radial-gradient(circle at 88% 12%, rgba(201,143,143,.11), transparent 24%), linear-gradient(145deg, #F7EFE8 0%, #fff 48%, #F7EFE8 100%); }
.thanks-main { display: grid; min-height: 100vh; place-items: center; padding: 48px 20px; }
.thanks-card { width: min(100%, 720px); padding: 44px 48px 48px; text-align: center; background: rgba(255,255,255,.96); border: 1px solid rgba(201,143,143,.12); border-radius: 30px; box-shadow: 0 24px 70px rgba(90,70,61,.14); }
.thanks-logo { display: inline-block; width: min(100%, 320px); margin-bottom: 28px; }
.thanks-logo img { display: block; width: 100%; height: auto; }
.thanks-icon { display: grid; width: 64px; height: 64px; margin: 0 auto 18px; place-items: center; color: var(--white); background: linear-gradient(135deg, #D9A8A3, #B77A7A); border-radius: 50%; box-shadow: 0 14px 30px rgba(183,122,122,.25); font-size: 30px; font-weight: 900; }
.thanks-kicker { margin: 0 0 10px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: 0; }
.thanks-card h1 { margin: 0 0 22px; color: var(--heading); font-size: clamp(28px, 5vw, 40px); line-height: 1.4; }
.thanks-card__message { margin: 0; color: var(--text); font-size: 17px; line-height: 1.9; }
.thanks-card__assurance { margin: 22px 0 28px; padding: 14px 18px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 14px; font-size: 15px; font-weight: 750; line-height: 1.7; }
.thanks-button { width: min(100%, 360px); min-width: 0; }

.site-footer { padding: 30px 20px; color: var(--white); background: var(--lp-navy-bg); border-top: 1px solid rgba(255,255,255,.12); text-align: center; font-size: 14px; line-height: 1.8; }
.footer-simple p { margin: 4px 0; color: inherit; }

.page-top { position: fixed; right: 22px; bottom: 22px; z-index: 1000; display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: rgba(183,122,122,.88); border: 0; border-radius: 999px; box-shadow: 0 8px 22px rgba(183,122,122,.24); font-size: 22px; font-weight: 800; line-height: 1; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease; }
.page-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.page-top:hover { background: rgba(183,122,122,1); box-shadow: 0 10px 26px rgba(183,122,122,.28); }
.page-top:focus-visible { outline: 3px solid rgba(183,122,122,.28); outline-offset: 3px; }
.mobile-fixed-cta { display: none; }

@media (max-width: 767px) {
  body { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .page-top { display: none !important; }
  .mobile-fixed-cta { position: fixed; right: 14px; bottom: calc(13px + env(safe-area-inset-bottom)); left: 14px; z-index: 1100; isolation: isolate; display: grid; grid-template-columns: 36px minmax(0, 1fr) 34px; align-items: center; gap: 9px; min-height: 62px; padding: 8px 10px 8px 15px; color: var(--white); background: linear-gradient(180deg, #ECA4AE 0%, #DC8291 46%, #C9637C 100%); border: 1px solid rgba(255,255,255,.74); border-radius: 999px; box-shadow: 0 14px 30px rgba(183,122,122,.31), 0 3px 0 rgba(126,65,76,.18), inset 0 1px 0 rgba(255,255,255,.48), inset 0 -2px 0 rgba(126,65,76,.12); font-size: clamp(13.5px, 3.85vw, 15.5px); font-weight: 850; line-height: 1.25; text-align: center; text-decoration: none; text-shadow: 0 1px 3px rgba(90,70,61,.2); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease; }
  .mobile-fixed-cta::before { content: ""; position: absolute; inset: 3px; z-index: -1; border: 1px solid rgba(255,255,255,.34); border-radius: inherit; pointer-events: none; }
  .mobile-fixed-cta::after { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 22% 18%, rgba(255,255,255,.38), transparent 20%), linear-gradient(90deg, rgba(255,255,255,.16), transparent 36%); opacity: .9; pointer-events: none; }
  .mobile-fixed-cta__icon { display: grid; place-items: center; width: 36px; height: 36px; color: var(--white); filter: drop-shadow(0 2px 3px rgba(90,70,61,.18)); }
  .mobile-fixed-cta__icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2.35; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-fixed-cta__icon svg path:last-child { fill: currentColor; stroke: none; }
  .mobile-fixed-cta__text { min-width: 0; white-space: nowrap; letter-spacing: 0; }
  .mobile-fixed-cta__arrow { display: grid; place-items: center; width: 34px; height: 34px; color: #C9637C; background: rgba(255,255,255,.96); border-radius: 50%; box-shadow: 0 4px 10px rgba(90,70,61,.14), inset 0 -1px 0 rgba(183,122,122,.16); font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 900; line-height: 1; text-shadow: none; }
  .mobile-fixed-cta:hover,
  .mobile-fixed-cta:focus { color: var(--white); background: linear-gradient(180deg, #E797A4 0%, #D67788 45%, #B9536F 100%); box-shadow: 0 16px 32px rgba(183,122,122,.35), 0 3px 0 rgba(126,65,76,.18), inset 0 1px 0 rgba(255,255,255,.45), inset 0 -2px 0 rgba(126,65,76,.14); text-decoration: none; transform: translateY(-1px); }
  .mobile-fixed-cta:active { transform: translateY(0); box-shadow: 0 9px 22px rgba(183,122,122,.28), inset 0 1px 0 rgba(255,255,255,.4); }
  .mobile-fixed-cta:focus-visible { outline: 3px solid rgba(183,122,122,.3); outline-offset: 3px; }
  .hero-image-view { padding: 0 0 36px; }
  .hero-image-inner { width: 100%; }
  .hero-visual-image { border-radius: 0; box-shadow: none; }
  .hero-image-cta { margin-top: 18px; }
}

@media (max-width: 360px) {
  .mobile-fixed-cta { right: 10px; left: 10px; grid-template-columns: 31px minmax(0, 1fr) 30px; gap: 7px; min-height: 58px; padding: 7px 9px 7px 13px; font-size: 13px; }
  .mobile-fixed-cta__icon,
  .mobile-fixed-cta__arrow { width: 30px; height: 30px; }
  .mobile-fixed-cta__icon svg { width: 29px; height: 29px; }
  .mobile-fixed-cta__arrow { font-size: 27px; }
}

@media (max-width: 1080px) {
  .global-nav { gap: 20px; }
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: 20px; }
  .hero h1 { font-size: 42px; }
  .worry-grid { grid-template-columns: repeat(2, 1fr); }
  .worry-card { min-height: 0; }
}

@media (max-width: 920px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .menu-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; color: var(--blue-dark); background: transparent; border: 0; border-radius: 8px; cursor: pointer; }
  .menu-toggle-lines { display: grid; gap: 4px; width: 22px; }
  .menu-toggle-lines i { display: block; width: 100%; height: 2px; background: currentColor; border-radius: 1px; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle-label { font-size: 10px; font-weight: 800; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav { position: fixed; z-index: 999; top: var(--header-height); right: 0; left: 0; display: grid; align-content: start; gap: 0; max-height: calc(100vh - var(--header-height)); padding: 14px 20px 24px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--border); box-shadow: 0 18px 35px rgba(90,70,61,.13); overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); transition: .2s ease; }
  .global-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .global-nav > a:not(.nav-cta) { padding: 13px 10px; border-bottom: 1px solid var(--border); }
  .global-nav > a:not(.nav-cta)::after { display: none; }
  .global-nav .nav-cta { justify-self: center; width: min(100%, 360px); margin: 12px auto 0; padding: 12px 18px; text-align: center; border-radius: 999px; }
  .hero { display: block; min-height: 0; padding: 58px 0 0; background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%); }
  .hero-grid { display: grid; grid-template-columns: 1fr; max-width: 720px; }
  .hero-copy { max-width: none; padding: 0; text-align: center; }
  .eyebrow { margin-inline: auto; }
  .cta-unit-left { margin-inline: auto; }
  .hero-visual { display: block; width: min(100%, 620px); margin: 24px auto 0; padding: 0; }
  .hero-visual picture { aspect-ratio: 16 / 9; border-radius: 22px; box-shadow: 0 18px 42px rgba(90,70,61,.14); }
  .hero-visual picture img { object-position: 64% center; }
  .hero-assurance { width: 100%; max-width: none; margin: 30px 0 38px; border-radius: 20px; }
  .solution-bridge-card { padding: 48px 40px 40px; }
  .solution-compare { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .solution-switch { display: flex; align-items: center; justify-content: center; margin-block: 16px; }
  .solution-switch span { writing-mode: horizontal-tb; }
  .solution-switch b { width: 38px; height: 38px; font-size: 0; }
  .solution-switch b::after { content: "↓"; font-size: 19px; }
  .design-checks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-cta { grid-template-columns: 1fr; gap: 26px; }
  .mini-cta__action { align-items: flex-start; }
  .plan-cards { grid-template-columns: 1fr; max-width: 680px; }
  .plan-detail-stack { gap: 34px; }
  .plan-detail-summary { max-width: 760px; padding: 30px 28px; }
  .plan-feature-points { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .budget-note-grid { grid-template-columns: 110px minmax(0, 1fr); gap: 28px; padding: 36px; }
  .budget-note-icon { width: 100px; height: 100px; border-width: 9px; font-size: 46px; }
  .voice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-card:not(:nth-child(3n))::after { display: none; }
  .flow-card:nth-child(odd):not(:last-child)::after { display: block; }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creator-box { grid-template-columns: 1fr; gap: 25px; max-width: 760px; margin-inline: auto; padding: 32px; }
  .creator-box__logo { padding-block: 8px; }
  .creator-box__logo img { width: min(100%, 400px); }
  .creator-box__content { width: 100%; max-width: 680px; margin-inline: auto; }
}

@media (max-width: 680px) {
  :root { --radius: 16px; --radius-lg: 22px; }
  body { font-size: 16px; line-height: 1.85; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; }
  .menu-toggle-label { display: none; }
  .hero { padding-top: 34px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(30px, 8.6vw, 39px); line-height: 1.4; }
  .desktop-break { display: none; }
  .eyebrow { margin-bottom: 16px; font-size: 11px; }
  .eyebrow span { font-size: 10px; }
  .hero-lead { font-size: 13.5px; line-height: 1.76; text-align: left; }
  .hero-lead p { margin-bottom: 10px; }
  .hero-invitation { margin: 19px 0 18px; font-size: 15px; line-height: 1.7; }
  .button { width: 100%; min-height: 58px; padding: 14px 17px; border-radius: 12px; font-size: 15px; }
  .cta-unit-left { width: 100%; }
  .hero-visual { margin-top: 21px; padding: 0; }
  .hero-visual::before { inset: 16px -7px -7px 10px; border-radius: 22px; }
  .hero-visual picture { aspect-ratio: 3 / 2; border-radius: 20px; }
  .hero-visual picture img { object-position: 68% center; }
  .hero-assurance { grid-template-columns: 1fr; margin: 26px 0 28px; border-radius: 16px; }
  .hero-assurance > div { justify-content: flex-start; min-height: 77px; padding: 13px 24px; }
  .hero-assurance > div + div { border-top: 1px solid var(--border); border-left: 0; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 37px; }
  .section-heading h2 { margin-bottom: 14px; font-size: 28px; line-height: 1.42; }
  .section-heading > p:last-child { color: var(--text); font-size: 16px; line-height: 1.8; }
  .mobile-break { display: block; }
  .worry-grid { grid-template-columns: 1fr; gap: 14px; }
  .worry-card { min-height: 0; padding: 23px 22px 21px; }
  .worry-card > p { max-width: none; font-size: 16px; line-height: 1.75; }
  .worry-card-icon { margin-bottom: 12px; }
  .worry-card-icon img { width: 70px; }
  .solution-bridge-section { padding-block: 68px; }
  .solution-bridge-section .container { width: min(calc(100% - 20px), var(--container)); }
  .solution-bridge-card { padding: 37px 14px 30px; border-radius: 21px; }
  .solution-bridge-heading { margin-bottom: 30px; padding-inline: 7px; }
  .solution-bridge-heading h2 { margin-bottom: 13px; font-size: 28px; font-weight: 850; line-height: 1.42; }
  .solution-mobile-break { display: block; }
  .solution-bridge-heading > p:last-child { font-size: 16px; line-height: 1.8; }
  .solution-path { padding: 25px 18px 22px; border-radius: 17px; }
  .solution-path h3 { margin-bottom: 19px; font-size: 20px; }
  .solution-steps { gap: 13px; }
  .solution-steps li { grid-template-columns: 32px minmax(0, 1fr); gap: 10px; min-height: 52px; padding: 8px 11px; }
  .solution-steps li:not(:last-child)::after { left: 25px; bottom: -16px; }
  .solution-steps strong { font-size: 16px; }
  .solution-path-note { margin-top: 18px; padding-top: 15px; font-size: 14px; }
  .solution-switch { margin-block: 14px; }
  .solution-conclusion { align-items: flex-start; margin-top: 27px; padding-inline: 5px; font-size: 16px; line-height: 1.75; text-align: left; }
  .design-checks-grid { grid-template-columns: 1fr; gap: 16px; }
  .design-checks-mobile-break { display: block; }
  .design-check-card { padding: 23px 21px 21px; border-radius: 19px; }
  .design-check-card__icon { margin-bottom: 14px; }
  .design-check-card__icon img { width: 76px; }
  .design-check-card h3 { margin-bottom: 8px; font-size: 20px; }
  .design-check-card p { font-size: 16px; line-height: 1.75; }
  .mini-cta { gap: 22px; margin-top: 32px; padding: 27px 21px 25px; border-radius: 23px; }
  .mini-cta__label { margin-bottom: 11px; font-size: 14px; }
  .mini-cta h3 { margin-bottom: 10px; font-size: 24px; line-height: 1.45; }
  .mini-cta__content > p { font-size: 16px; line-height: 1.75; }
  .mini-cta__action { align-items: stretch; }
  .mini-cta__action .button-primary { width: 100%; max-width: none; }
  .mini-cta__note { display: grid; justify-content: start; gap: 6px; margin-top: 13px; font-size: 14px; }
  .center-copy { margin-top: 27px; text-align: left; }
  .plan-cards { gap: 18px; }
  .plan-card { padding: 30px 22px 26px; border-radius: 22px; }
  .plan-card__label { margin-bottom: 15px; font-size: 13px; }
  .plan-card h3 { margin-bottom: 18px; font-size: 24px; }
  .plan-card__price { margin-bottom: 18px; padding: 7px 16px; border-radius: 15px; }
  .plan-card__price > div { gap: 12px; padding: 12px 0; }
  .plan-card__price span { font-size: 14px; }
  .plan-card__price strong { font-size: 29px; }
  .plan-card__price > .price-row--discount {
    display: block;
  }
  .price-row--discount > span {
    display: block;
    width: 100%;
    margin-bottom: 7px;
    white-space: nowrap;
  }
  .price-row--discount .plan-card__discount-price {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    font-size: clamp(25px, 7.4vw, 29px);
    white-space: nowrap;
  }
  .price-row--discount .plan-card__discount-price em {
    font-size: 15.5px;
  }
  .price-row--discount .plan-card__discount-price em,
  .price-row--discount .plan-card__discount-price small {
    white-space: nowrap;
  }
  .plan-card__recommend { padding: 16px; }
  .plan-card__recommend h4 { font-size: 17px; }
  .comparison-scroll-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 42px 0 10px; color: var(--blue-dark); font-size: 14px; font-weight: 800; }
  .comparison-wrap { margin-top: 0; border-radius: 12px; overflow-x: auto; scrollbar-color: var(--blue) var(--blue-soft); scrollbar-width: thin; }
  .comparison-table { min-width: 720px; }
  .comparison-table th, .comparison-table td { padding: 15px 14px; }
  .comparison-table caption { text-align: left; }
  .comparison-table thead th:not(:first-child) { text-align: left; }
  .comparison-table thead th:first-child,
  .comparison-table tbody th { position: static; z-index: auto; left: auto; width: 160px; min-width: 160px; box-shadow: none; }
  .plan-advice { margin-top: 28px; padding: 24px 19px; text-align: left; border-radius: 19px; }
  .plan-advice__copy { justify-content: flex-start; gap: 11px; }
  .plan-advice__copy > span { width: 28px; height: 28px; }
  .plan-advice__copy p { font-size: 16px; line-height: 1.75; }
  .plan-advice__copy strong { font-size: 17px; }
  .plan-advice__action { align-items: stretch; margin-top: 21px; }
  .plan-advice__action .button-primary { width: 100%; max-width: none; }
  .plan-advice__action .cta-note { justify-content: flex-start; font-size: 14px; text-align: left; }
  .plan-detail-summary { padding: 26px 20px 24px; border-radius: 20px; text-align: left; }
  .plan-detail-summary h2 { font-size: 28px; }
  .plan-detail-lead { margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
  .plan-feature-points { gap: 10px; }
  .plan-feature-points li { padding: 14px 14px 14px 42px; font-size: 15px; line-height: 1.7; }
  .plan-feature-points li::before { top: 15px; left: 15px; }
  .budget-note-grid { grid-template-columns: 1fr; gap: 10px; padding: 24px 20px; border-radius: 22px; }
  .budget-note-icon { width: 76px; height: 76px; margin: 0; border-width: 6px; font-size: 34px; }
  .budget-note h2 { font-size: 28px; }
  .question-quote { padding: 15px 17px; }
  .answer-lead { font-size: 20px; }
  .voice-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 31px; }
  .voice-card { padding: 0; border-radius: 20px; }
  .voice-card__visual { aspect-ratio: 16 / 11; }
  .voice-card__body { padding: 22px 20px 23px; }
  .voice-card__quote { height: 42px; margin-bottom: 4px; font-size: 66px; line-height: .82; }
  .voice-card h3 { margin-bottom: 12px; font-size: 18px; line-height: 1.6; }
  .voice-card blockquote { gap: 10px; font-size: 16px; line-height: 1.8; }
  .voice-card > p:not(.voice-card__name) { font-size: 16px; line-height: 1.8; }
  .voice-note { margin-top: 28px; text-align: left; }
  .voice-cta .button-primary { width: 100%; }
  .works-group-heading { text-align: left; }
  .works-group-heading h3 { font-size: 24px; }
  .works-grid { grid-template-columns: 1fr; gap: 17px; }
  .work-body { padding: 20px; }
  .faq-list { gap: 11px; }
  .faq-list details { border-radius: 16px; }
  .faq-list summary { gap: 11px; min-height: 74px; padding: 17px 15px; font-size: 17px; line-height: 1.6; }
  .faq-q, .faq-answer > span { width: 34px; height: 34px; border-radius: 10px; font-size: 13px; }
  .faq-list summary i { width: 28px; height: 28px; }
  .faq-list summary i::before, .faq-list summary i::after { top: 13px; left: 7px; width: 14px; }
  .faq-answer { gap: 11px; padding: 19px 15px 22px; font-size: 16px; line-height: 1.8; }
  .faq-answer__body p + p { margin-top: 10px; }
  .faq-cta { margin-top: 30px; padding: 25px 18px 23px; border-radius: 20px; }
  .faq-cta__lead { margin-bottom: 17px; font-size: 19px; line-height: 1.65; }
  .faq-cta .button-primary { width: 100%; }
  .faq-cta .cta-note { justify-content: flex-start; text-align: left; }
  .creator-box { gap: 22px; margin-top: 30px; padding: 24px 20px; border-radius: 22px; }
  .creator-box__logo { padding: 5px 0 8px; }
  .creator-box__logo img { width: min(100%, 280px); }
  .creator-box__label { font-size: 12px; }
  .creator-box__company { margin-bottom: 14px; font-size: 19px; }
  .creator-box__text p { margin-bottom: 12px; font-size: 16px; line-height: 1.8; }
  .creator-box__points { grid-template-columns: 1fr; gap: 9px; margin-top: 21px; }
  .creator-box__points li { padding: 12px 13px; font-size: 16px; }
  .creator-cta { margin-top: 30px; padding: 25px 18px 23px; border-radius: 20px; }
  .creator-cta__lead { margin-bottom: 17px; font-size: 19px; }
  .creator-cta .button-primary { width: 100%; }
  .creator-cta .cta-note { justify-content: flex-start; text-align: left; }
}

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

/* Image-led first view */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero.hero-image-only {
  display: block;
  min-height: 0;
  padding: 0 0 30px;
  background: #fff;
}

.hero.hero-image-only::after { display: none; }

.hero-image-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-main-visual,
.hero-main-visual picture,
.hero-main-visual img {
  display: block;
  width: 100%;
}

.hero-main-visual img {
  height: auto;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-cta-area {
  width: min(calc(100% - 40px), 520px);
  margin: 24px auto 0;
  text-align: center;
}

.hero-cta-area .button { width: min(100%, 400px); }
.hero-cta-note { margin: 9px 0 0; color: var(--blue-dark); font-size: 14px; font-weight: 700; letter-spacing: 0; }
.hero-cta-note span { color: var(--green-dark); }

@media (max-width: 768px) {
  .hero.hero-image-only { padding: 0 0 24px; }

  .hero-image-container {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-main-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-cta-area {
    width: min(calc(100% - 32px), 420px);
    margin: 18px auto 0;
  }
  .hero-cta-area .button { width: 100%; }
  .hero-cta-note { margin-top: 8px; font-size: 14px; }
}

/* Premium CTA */
.button-primary {
  position: relative;
  isolation: isolate;
  min-width: 420px;
  min-height: 68px;
  padding: 18px 30px;
  color: #fff;
  background: #C98F8F;
  border: 1px solid rgba(183,122,122,.2);
  border-radius: 999px;
  box-shadow:
    0 16px 34px rgba(183,122,122,.25),
    0 4px 10px rgba(183,122,122,.12),
    inset 0 1px 0 rgba(255,255,255,.38);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
}

.button-primary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  right: 12px;
  left: 12px;
  height: 43%;
  background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,0));
  border-radius: 999px 999px 60% 60%;
  pointer-events: none;
}

.button-primary span,
.button-primary svg { position: relative; z-index: 1; }

.button-primary svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 7px;
  color: #fff;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  stroke-width: 2.5;
  transition: transform .22s ease, background .22s ease;
}

.button-primary:hover {
  color: #fff;
  background: #B77A7A;
  box-shadow:
    0 22px 42px rgba(183,122,122,.31),
    0 6px 14px rgba(183,122,122,.15),
    inset 0 1px 0 rgba(255,255,255,.46);
  filter: saturate(1.03);
  transform: translateY(-3px);
}

.button-primary:hover svg { background: rgba(255,255,255,.27); transform: translateX(2px); }

.button-primary:active {
  box-shadow:
    0 10px 24px rgba(183,122,122,.22),
    inset 0 2px 4px rgba(90,70,61,.12),
    inset 0 1px 0 rgba(255,255,255,.25);
  filter: none;
  transform: translateY(1px);
}

.button-primary:focus-visible {
  outline: 3px solid rgba(201,143,143,.42);
  outline-offset: 4px;
}

.cta-note,
.hero-cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  padding: 7px 14px;
  color: var(--blue-dark);
  background: rgba(247,239,232,.88);
  border: 1px solid rgba(201,143,143,.1);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
}

.cta-note > span,
.hero-cta-note > span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: linear-gradient(135deg, #C98F8F, #B77A7A);
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
}

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

.site-header .brand { gap: 0; }
.brand-logo { display: block; width: 245px; height: auto; }

@media (max-width: 1080px) {
  .brand-logo { width: 220px; }
}

@media (max-width: 768px) {
  .contact-heading h2 { font-size: clamp(28px, 8vw, 36px); line-height: 1.45; }
  .contact-heading p br { display: none; }
  .contact-top { padding: 56px 0 185px; }
  .contact-bottom { padding-bottom: 68px; }
  .contact-bottom::before { height: 190px; }
  .contact-points { justify-content: center; gap: 8px; margin: 24px 0 0; }
  .contact-points li { padding: 7px 12px; font-size: 13px; }
  .contact-lead-note { margin-top: 18px; font-size: 15px; line-height: 1.75; }
  .contact-lead-note br { display: none; }
  .contact-card { margin-top: -130px; padding: 0 20px 25px; border-radius: 24px 24px 10px 10px; }
  .thanks-main { padding: 24px 16px; }
  .thanks-card { padding: 32px 20px 34px; border-radius: 24px; }
  .thanks-logo { width: min(100%, 260px); margin-bottom: 24px; }
  .thanks-card__message { font-size: 16px; }
  .form-heading { padding: 28px 0 24px; }
  .form-heading h3 { font-size: 23px; }
  .form-heading p { font-size: 15px; }
  .contact-form { padding-top: 25px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-wide { grid-column: auto; }
  .form-field input[type="text"], .form-field input[type="email"], .form-field input[type="url"], .form-field select, .form-field textarea { font-size: 16px; }
  .form-submit { margin-top: 27px; }
  .form-note { font-size: 15px; }

  .flow-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
  .flow-card { min-height: 0; padding: 24px 21px 23px; border-radius: 20px; }
  .flow-card:nth-child(odd):not(:last-child)::after { display: none; }
  .flow-card:not(:last-child)::after { display: block; top: auto; right: auto; bottom: -19px; left: 34px; width: 2px; height: 19px; background: linear-gradient(180deg, rgba(201,143,143,.48), rgba(201,143,143,.14)); }
  .flow-card__top { margin-bottom: 14px; }
  .flow-card__step { padding: 7px 12px; font-size: 13px; }
  .flow-card h3 { margin-bottom: 9px; font-size: 20px; }
  .flow-card p { font-size: 16px; line-height: 1.75; }
  .flow-card__badge { padding: 6px 10px; font-size: 12px; }
  .flow-cta { margin-top: 32px; padding: 25px 19px 23px; border-radius: 21px; }
  .flow-cta__lead { margin-bottom: 16px; font-size: 20px; }
  .flow-cta .button-primary { width: 100%; }
  .flow-cta .cta-note { justify-content: flex-start; text-align: left; }

  .button-primary {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 16px 20px;
    font-size: 16px;
  }

  .button-primary svg { width: 28px; height: 28px; padding: 6px; }

  .cta-note,
  .hero-cta-note {
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 14px;
  }

  .brand-logo { width: 170px; }
}

@media (max-width: 480px) {
  .header-cta-full { display: none; }
  .header-cta-short { display: inline; }
}

/* Torepia piano-teacher landing page overrides */
body,
h1, h2, h3, h4,
.eyebrow,
.section-kicker,
.brand-copy small,
.flow-card__step,
.contact-section .section-kicker,
.thanks-kicker {
  letter-spacing: 0;
}

.site-header .brand { gap: 10px; }
.global-nav { gap: 22px; }
.global-nav .nav-cta { padding-inline: 14px; font-size: 13px; }
.global-nav .nav-cta::after { content: ">"; }
.button { max-width: 100%; white-space: normal; text-align: center; }
.button span { min-width: 0; }

.hero.hero-service {
  display: block;
  min-height: 0;
  padding: 88px 0 82px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 46%, rgba(255,249,244,.84) 100%),
    url("../img/hero.webp") right center / cover no-repeat;
}

.hero.hero-service::after { display: none; }

.hero-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  gap: 52px;
  align-items: center;
}

.hero-service-copy {
  max-width: 690px;
}

.hero-service h1 {
  margin-bottom: 24px;
  color: var(--heading);
  font-size: clamp(34px, 3.25vw, 50px);
  font-weight: 850;
  line-height: 1.42;
  letter-spacing: 0;
}

.hero-service .hero-lead {
  max-width: 640px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.hero-service .hero-lead p {
  overflow-wrap: anywhere;
  word-break: break-all;
}

.hero-service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.hero-service-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(201,143,143,.14);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(90,70,61,.06);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-service-points span::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #fff;
  background: linear-gradient(135deg, #C98F8F, #B77A7A);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.hero-service-visual {
  position: relative;
  min-width: 0;
}

.hero-service-visual picture {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--blue-soft);
  border: 1px solid rgba(90,70,61,.12);
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(90,70,61,.16);
  overflow: hidden;
}

.hero-service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-service-badge {
  position: absolute;
  right: 22px;
  bottom: -24px;
  min-width: 250px;
  padding: 16px 18px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(201,143,143,.14);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(90,70,61,.14);
}

.hero-service-badge strong,
.hero-service-badge span {
  display: block;
  line-height: 1.45;
}

.hero-service-badge strong {
  color: var(--muted);
  font-size: 14px;
  text-decoration: line-through;
}

.hero-service-badge span {
  color: #B77A7A;
  font-size: 20px;
  font-weight: 900;
}

.plan-card__special {
  width: fit-content;
  margin: -10px 0 14px;
  padding: 6px 12px;
  color: #B77A7A;
  background: rgba(201,143,143,.11);
  border: 1px solid rgba(201,143,143,.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.plan-card__price strong em {
  display: inline-block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: line-through;
}

.plan-card__discount-price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px 8px;
}

.plan-card__discount-price b {
  color: #B77A7A;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.plan-card__price strong.plan-card__price-text {
  max-width: 210px;
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.45;
  text-align: right;
  white-space: normal;
}

.plan-card__note {
  margin: -8px 0 18px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.75;
}

.budget-note .question-quote {
  border-left-color: var(--green);
}

.priority-benefit {
  padding-block: 88px;
  background:
    radial-gradient(circle at 12% 0%, rgba(201,143,137,.16), transparent 34%),
    linear-gradient(180deg, #fff8f4 0%, #f6ebe6 100%);
}

.priority-benefit-card {
  position: relative;
  isolation: isolate;
  max-width: 1080px;
  margin-inline: auto;
  padding: 48px;
  color: #4a3028;
  background: rgba(255,253,251,.97);
  border: 1px solid #ead7cf;
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(88,54,44,.1);
  overflow: hidden;
}

.priority-benefit-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #b78279, #e6b7ae, #c79d93);
}

.priority-benefit-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.priority-benefit-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 7px 14px;
  color: #62372f;
  background: #f3dfdb;
  border: 1px solid #e6c8c1;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.priority-benefit-heading h2 {
  margin-bottom: 16px;
  color: #3f2a24;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.42;
}

.priority-benefit-heading > p:last-child {
  margin: 0;
  color: #4a3028;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

.priority-benefit-body {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.priority-benefit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px;
  background: #fff8f5;
  border: 1px solid #edd9d1;
  border-radius: 20px;
}

.priority-benefit-copy p {
  margin: 0;
  color: #4a3028;
  font-size: 16px;
  line-height: 1.85;
}

.priority-benefit-copy p + p {
  margin-top: 14px;
}

.priority-benefit-note {
  padding: 14px 16px;
  color: #60372f !important;
  background: #f4e4df;
  border-left: 4px solid #b78279;
  border-radius: 12px;
  font-weight: 850;
}

.priority-benefit-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.priority-benefit-points article {
  min-width: 0;
  padding: 22px 18px 20px;
  background: #fffdfb;
  border: 1px solid #ead7cf;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(88,54,44,.07);
}

.priority-benefit-points article > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 13px;
  color: #fff;
  background: #9c675e;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.priority-benefit-points h3 {
  margin-bottom: 9px;
  color: #3f2a24;
  font-size: 18px;
  line-height: 1.48;
}

.priority-benefit-points p {
  margin: 0;
  color: #5d463f;
  font-size: 15px;
  line-height: 1.75;
}

.priority-benefit.priority-benefit--benefits {
  padding-block: 44px;
  background: linear-gradient(180deg, #FDF3EE 0%, #FFF9F4 100%);
}

.priority-benefit--benefits .priority-benefit-card {
  box-shadow: 0 18px 42px rgba(88,54,44,.085);
}

.benefits-preview-section {
  padding: 64px 0 44px;
  background: linear-gradient(180deg, #FFF9F4 0%, #fff 100%);
}

.budget-preview--benefits {
  margin-top: 0;
}

.priority-benefit--benefits + .budget-note {
  padding-top: 64px;
}

@media (max-width: 1080px) {
  .global-nav { gap: 15px; font-size: 14px; }
  .global-nav .nav-cta { padding-inline: 12px; }
  .budget-preview-card { grid-template-columns: 1fr; gap: 22px; padding: 42px 34px; }
  .budget-preview-icon { width: 76px; height: 76px; margin: 0 auto; border-width: 8px; font-size: 36px; }
  .priority-benefit-card { padding: 42px 34px; }
  .priority-benefit-body { grid-template-columns: 1fr; gap: 22px; }
  .priority-benefit-copy { padding: 26px; }
}

@media (max-width: 920px) {
  .hero.hero-service {
    padding: 60px 0 58px;
    background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
  }

  .hero-service-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 720px;
  }

  .hero-service-copy {
    max-width: none;
    text-align: center;
  }

  .hero-service .eyebrow,
  .hero-service-points,
  .hero-service .cta-unit-left {
    margin-inline: auto;
  }

  .hero-service .cta-unit-left {
    width: min(100%, 420px);
  }

  .hero-service .hero-lead {
    margin-inline: auto;
    text-align: left;
  }

  .hero-service-points {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .hero.hero-service { padding: 42px 0 48px; }

  .hero-service h1 {
    margin-bottom: 18px;
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.45;
  }

  .hero-service .hero-lead {
    font-size: 15.5px;
    line-height: 1.82;
  }

  .hero-service-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-service-points span {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-service-visual picture {
    border-radius: 18px;
  }

  .hero-service-badge {
    position: static;
    min-width: 0;
    margin: 12px auto 0;
    text-align: center;
  }

  .plan-card__price strong.plan-card__price-text {
    max-width: 170px;
    font-size: 16px;
  }

  .budget-preview {
    margin-top: 30px;
  }

  .budget-preview-card {
    gap: 18px;
    padding: 30px 20px 26px;
    border-radius: 22px;
  }

  .budget-preview-icon {
    width: 64px;
    height: 64px;
    margin-inline: 0;
    border-width: 7px;
    font-size: 30px;
  }

  .budget-preview-kicker {
    margin-bottom: 10px;
    font-size: 11.5px;
  }

  .budget-preview-content h2 {
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 1.5;
  }

  .budget-preview-question {
    margin-bottom: 20px;
    padding: 16px 17px;
    border-radius: 0 12px 12px 0;
  }

  .budget-preview-question p {
    font-size: 16px;
    line-height: 1.78;
  }

  .budget-preview-question br {
    display: none;
  }

  .budget-preview-label {
    margin-bottom: 16px;
    font-size: 21px;
    line-height: 1.48;
  }

  .budget-preview-text {
    gap: 12px;
  }

  .budget-preview-text p {
    font-size: 16px;
    line-height: 1.78;
  }

  .budget-preview-cta {
    align-items: stretch;
    margin-top: 21px;
  }

  .budget-preview-cta .button-primary {
    width: 100%;
    max-width: none;
  }

  .budget-preview-cta .cta-note {
    justify-content: flex-start;
    text-align: left;
  }

  .priority-benefit {
    padding-block: 70px;
  }

  .priority-benefit .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .priority-benefit-card {
    padding: 30px 20px 24px;
    border-radius: 20px;
  }

  .priority-benefit-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .priority-benefit-label {
    margin-inline: 0;
    font-size: 13px;
  }

  .priority-benefit-heading h2 {
    margin-bottom: 13px;
    font-size: 28px;
    line-height: 1.45;
  }

  .priority-benefit-heading > p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }

  .priority-benefit-copy {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .priority-benefit-copy p {
    font-size: 16px;
    line-height: 1.78;
  }

  .priority-benefit-note {
    padding: 13px 14px;
  }

  .priority-benefit-points {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .priority-benefit-points article {
    padding: 18px 16px 17px;
    border-radius: 16px;
  }

  .priority-benefit-points article > span {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .priority-benefit-points h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .priority-benefit.priority-benefit--benefits {
    padding-block: 38px;
  }

  .benefits-preview-section {
    padding: 48px 0 36px;
  }

  .priority-benefit--benefits + .budget-note {
    padding-top: 52px;
  }
}

@media (max-width: 680px) {
  .priority-benefit.priority-benefit--benefits {
    padding-block: 34px;
  }

  .benefits-preview-section {
    padding: 40px 0 32px;
  }

  .budget-preview--benefits {
    margin-top: 0;
  }

  .priority-benefit--benefits + .budget-note {
    padding-top: 48px;
  }
}
