    :root {
      --green: #00412f;
      --green-2: #086247;
      --orange: #ff5b0a;
      --orange-2: #ff7a1f;
      --line-green: #06c755;
      --ink: #151515;
      --muted: #5c625f;
      --line: #d7ddd9;
      --soft: #f6f8f5;
      --cream: #fbf8f1;
      --white: #fff;
      --shadow: 0 16px 40px rgba(0, 34, 23, .09);
      --radius: 8px;
      --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
      --sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: var(--sans);
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    main#top {
      scroll-margin-top: 82px;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

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

    button,
    input,
    select {
      font: inherit;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      border-bottom: 1px solid rgba(0, 65, 47, .12);
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
      transition: box-shadow .25s ease, background .25s ease;
    }

    .site-header.is-scrolled {
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 10px 24px rgba(0, 34, 24, .08);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-weight: 900;
      font-size: clamp(1.85rem, 3vw, 2.65rem);
      line-height: 1;
      color: #222;
      text-shadow: 0 2px 0 rgba(0, 0, 0, .08);
    }

    .brand-logo {
      width: clamp(142px, 14vw, 196px);
      height: auto;
      display: block;
      object-fit: contain;
    }

    .brand-mark {
      position: relative;
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
    }

    .brand-mark::before {
      content: "";
      position: absolute;
      inset: 8px;
      border: 8px solid var(--orange);
      border-bottom-color: #0b6fab;
      border-radius: 50%;
      transform: rotate(14deg);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--orange);
      left: 2px;
      top: 5px;
      box-shadow: 32px 0 0 var(--orange);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--green);
      font-size: .94rem;
      font-weight: 800;
    }

    .nav a {
      padding: 8px 0;
      border-bottom: 2px solid transparent;
    }

    .nav a:hover {
      border-color: var(--orange);
    }

    .nav .btn {
      min-height: 44px;
      padding: 9px 18px;
      gap: 10px;
      font-size: .9rem;
      box-shadow: none;
    }

    .nav .btn-arrow {
      width: 12px;
      height: 12px;
      border-width: 2px;
    }

    .hamburger {
      display: none;
      width: 48px;
      height: 48px;
      border: 0;
      background: transparent;
      color: var(--green);
      cursor: pointer;
      position: relative;
    }

    .hamburger span,
    .hamburger::before,
    .hamburger::after {
      content: "";
      position: absolute;
      left: 8px;
      right: 8px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
      box-shadow: 0 3px 8px rgba(0, 65, 47, .18);
    }

    .hamburger::before {
      top: 13px;
    }

    .hamburger span {
      top: 23px;
    }

    .hamburger::after {
      top: 33px;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      background: #fff;
    }

    .mobile-menu a {
      display: block;
      padding: 16px 20px;
      border-bottom: 1px solid var(--line);
      color: var(--green);
      font-weight: 800;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 62px;
      padding: 16px 30px;
      border: 2px solid transparent;
      border-radius: 999px;
      font-weight: 900;
      line-height: 1.25;
      text-align: center;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(255, 91, 10, .22);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 100%);
      box-shadow: 0 12px 26px rgba(255, 91, 10, .2);
    }

    .btn-outline {
      color: var(--green);
      background: #fff;
      border-color: var(--green);
    }

    .btn-arrow {
      width: 18px;
      height: 18px;
      border-top: 3px solid currentColor;
      border-right: 3px solid currentColor;
      transform: rotate(45deg);
      flex: 0 0 auto;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: clamp(54px, 6vw, 82px) 0 64px;
      border-bottom: 1px solid rgba(0, 65, 47, .08);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .72) 47%, rgba(255, 255, 255, .34) 100%),
        radial-gradient(circle at 80% 34%, rgba(0, 65, 47, .08), transparent 29rem);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      z-index: 0;
      inset: 0;
      background-image: url("assets/hero-gym-illustration.png");
      background-repeat: no-repeat;
      background-position: 70% center;
      background-size: cover;
      pointer-events: none;
    }

    @media (min-width: 981px) and (max-width: 1366px) {
      .hero::after {
        background-position: 70% center;
        background-size: cover;
      }

      .hero::before {
        background:
          linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .76) 49%, rgba(255, 255, 255, .36) 100%),
          radial-gradient(circle at 82% 34%, rgba(0, 65, 47, .07), transparent 25rem);
      }
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: block;
    }

    .hero-content {
      width: min(100%, 760px);
    }

    @media (min-width: 981px) {
      .hero-content {
        width: 100%;
      }

      .hero-mobile-stage > .eyebrow,
      .hero-mobile-stage > h1,
      .hero-mobile-stage > .hero-lead,
      .hero-mobile-stage > .hero-copy {
        max-width: 760px;
      }

      .hero-mobile-metrics,
      .hero-actions,
      .trust-row {
        width: min(100%, 760px);
        margin-inline: auto;
      }

      .hero-actions,
      .trust-row {
        justify-content: center;
      }
    }

    .eyebrow {
      color: var(--green);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 18px;
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--orange);
    }

    .hero h1,
    .section-title {
      margin: 0;
      color: var(--green);
      font-family: var(--serif);
      font-weight: 800;
      line-height: 1.25;
      text-shadow: 0 2px 0 rgba(0, 65, 47, .08);
      text-wrap: balance;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 6.3vw, 5.25rem);
      line-height: 1.18;
    }

    .hero-mobile-stage {
      position: relative;
    }

    .accent {
      color: var(--orange);
    }

    .hero-lead {
      margin: 26px 0 0;
      max-width: 720px;
      font-size: clamp(1.08rem, 1.65vw, 1.34rem);
      font-weight: 700;
      line-height: 1.9;
    }

    .hero-copy {
      margin: 18px 0 0;
      max-width: 620px;
      color: #262a28;
      font-size: 1rem;
      line-height: 1.95;
    }

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

    .hero-actions .btn-primary {
      width: min(100%, 720px);
      font-size: clamp(1.1rem, 2.1vw, 1.5rem);
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 22px;
      margin-top: 24px;
      color: var(--green);
      font-weight: 800;
    }

    .trust-row span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .check-dot {
      width: 24px;
      height: 24px;
      border: 2px solid var(--green);
      border-radius: 50%;
      position: relative;
      flex: 0 0 auto;
    }

    .check-dot::after {
      content: "";
      position: absolute;
      left: 6px;
      top: 5px;
      width: 8px;
      height: 5px;
      border-left: 2px solid var(--green);
      border-bottom: 2px solid var(--green);
      transform: rotate(-45deg);
    }

    .hero-visual {
      display: none;
      position: relative;
      min-height: 520px;
    }

    .hero-visual > svg {
      display: none;
    }

    .hero-art-image {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 20px 30px rgba(0, 48, 34, .1));
    }

    .hero-mobile-asset {
      display: none;
    }

    .hero-mobile-metrics {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 760px;
      border-top: 1px solid rgba(0, 65, 47, .15);
      background: rgba(255, 255, 255, .72);
    }

    .hero-mobile-metrics div {
      min-height: 136px;
      display: grid;
      align-content: start;
      justify-items: center;
      padding: 18px 18px 10px;
      border-right: 1px solid rgba(0, 65, 47, .15);
      text-align: center;
      font-weight: 800;
    }

    .hero-mobile-metrics div:last-child {
      border-right: 0;
    }

    .hero-mobile-metrics strong {
      display: block;
      color: var(--green);
      font-size: clamp(1rem, 1.7vw, 1.25rem);
      line-height: 1.35;
    }

    .hero-mobile-metrics span {
      display: block;
      font-size: .9rem;
      line-height: 1.7;
    }

    .hero-metrics {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 6px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      overflow: hidden;
      border: 1px solid rgba(0, 65, 47, .14);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .hero-metrics div {
      min-height: 106px;
      display: grid;
      place-items: center;
      padding: 16px 10px;
      background: linear-gradient(180deg, #fff 0%, #f8faf8 100%);
      text-align: center;
    }

    .hero-metrics strong {
      display: block;
      color: var(--green);
      font-family: var(--serif);
      font-size: clamp(1.5rem, 2.4vw, 2.25rem);
      line-height: 1.1;
    }

    .hero-metrics span {
      display: block;
      margin-top: 6px;
      font-size: .9rem;
      font-weight: 800;
    }

    .hero-feature-icon {
      width: 66px;
      height: 66px;
      margin: 0 auto 14px;
      color: var(--green);
      stroke-width: 3;
    }

    section {
      padding: clamp(64px, 9vw, 104px) 0;
      scroll-margin-top: 92px;
    }

    .section-head {
      margin-bottom: 34px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
    }

    .section-title {
      font-size: clamp(2.15rem, 4.2vw, 3.75rem);
    }

    .section-sub {
      margin: 14px 0 0;
      max-width: 680px;
      font-size: clamp(1rem, 2vw, 1.18rem);
      color: #202422;
      font-weight: 650;
      text-wrap: pretty;
    }

    .center {
      text-align: center;
      justify-content: center;
    }

    .center .section-sub {
      margin-inline: auto;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      max-width: 1040px;
      margin-inline: auto;
    }

    .problem-illustration-panel {
      display: none;
    }

    .problem-thumb {
      position: relative;
      width: 118px;
      height: 94px;
      overflow: hidden;
      border-radius: 4px;
      background-color: transparent;
      background-image: url("assets/problem-illustrations-natural.png");
      background-repeat: no-repeat;
      background-size: 260% 250%;
      flex: 0 0 auto;
    }

    .problem-thumb img {
      display: none;
    }

    .problem-thumb-1 {
      background-position: 0% 0%;
    }

    .problem-thumb-2 {
      background-position: 100% 0%;
    }

    .problem-thumb-3 {
      background-position: 0% 100%;
    }

    .problem-thumb-4 {
      background-position: 100% 100%;
    }

    .problem-card,
    .reason-card,
    .trainer-card,
    .voice-card,
    .price-card,
    .faq-item,
    .form-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .92);
      box-shadow: 0 8px 28px rgba(0, 24, 16, .05);
    }

    .problem-card {
      min-height: 196px;
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 18px;
      align-items: center;
      padding: 24px;
    }

    .problem-ill {
      width: 150px;
      aspect-ratio: 3 / 2;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-radius: 6px;
      background-color: transparent;
      background-image: url("assets/problem-illustrations-natural.png");
      background-repeat: no-repeat;
      background-size: 200% 200%;
      filter: none;
    }

    .problem-ill svg {
      display: none;
    }

    .problem-ill-1 {
      background-position: 0% 0%;
    }

    .problem-ill-2 {
      background-position: 100% 0%;
    }

    .problem-ill-3 {
      background-position: 0% 100%;
    }

    .problem-ill-4 {
      background-position: 100% 100%;
    }

    .line-art {
      color: var(--green);
    }

    .line-art svg,
    svg.line-art {
      stroke: currentColor;
      stroke-width: 2.3;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .generated-icon {
      display: block;
      flex: 0 0 auto;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }

    .sheet-icon {
      background-repeat: no-repeat;
      background-size: 300% 100%;
    }

    .sheet-icon-1 {
      background-position: 0% 50%;
    }

    .sheet-icon-2 {
      background-position: 50% 50%;
    }

    .sheet-icon-3 {
      background-position: 100% 50%;
    }

    .grid-sheet-icon {
      background-repeat: no-repeat;
      background-size: 300% 200%;
    }

    .grid-icon-1 {
      background-position: 0% 0%;
    }

    .grid-icon-2 {
      background-position: 50% 0%;
    }

    .grid-icon-3 {
      background-position: 100% 0%;
    }

    .grid-icon-4 {
      background-position: 0% 100%;
    }

    .grid-icon-5 {
      background-position: 50% 100%;
    }

    .grid-icon-6 {
      background-position: 100% 100%;
    }

    .reason-sheet {
      background-image: url("assets/reason-icons-natural.png");
    }

    .service-sheet {
      background-image: url("assets/service-icons-natural.png");
    }

    .plan-sheet {
      background-image: url("assets/plan-trust-icons.png");
    }

    .avatar-sheet {
      background-image: url("assets/avatar-advisor-natural.png");
    }

    .problem-card > svg {
      display: none;
    }

    .problem-card svg {
      width: 98px;
      height: 88px;
    }

    .problem-card .problem-ill svg {
      width: 100%;
      height: 100%;
    }

    .problem-card h3,
    .reason-card h3,
    .trainer-info h3,
    .price-card h3,
    .flow-step h3,
    .voice-card h3 {
      margin: 0;
      color: var(--green);
      font-size: clamp(1.08rem, 1.65vw, 1.38rem);
      line-height: 1.45;
    }

    .problem-card p,
    .reason-card p,
    .trainer-info p,
    .flow-step p,
    .voice-card p,
    .price-card p {
      margin: 0;
      color: #252927;
      overflow-wrap: anywhere;
    }

    .solution {
      background: linear-gradient(180deg, #fff 0%, #f7faf7 100%);
    }

    .solution-grid {
      display: block;
      margin-inline: auto;
    }

    .solution-grid > div:last-child {
      width: 100%;
      max-width: 820px;
      margin-inline: auto;
    }

    .solution-visual {
      display: none;
    }

    .solution-list {
      width: 100%;
      max-width: 720px;
      margin-inline: auto;
      display: grid;
      gap: 0;
      border-top: 1px solid var(--line);
    }

    .solution-item {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      align-items: center;
      justify-content: center;
      padding: 24px 0;
      border-bottom: 1px solid var(--line);
    }

    .solution-icon {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      color: var(--green);
    }

    .solution-icon img {
      display: block;
      width: 70px;
      height: 70px;
      object-fit: contain;
    }

    .solution-icon svg {
      display: none;
    }

    .solution-icon .generated-icon {
      display: none;
    }

    .solution-icon-img {
      width: 58px;
      height: 58px;
      background-image: url("assets/reason-icons-natural.png");
    }

    .support-mini-grid {
      margin-top: 28px;
      margin-inline: auto;
      width: 100%;
      max-width: 760px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .88);
    }

    .support-mini {
      min-width: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 6px;
      align-items: center;
      justify-items: center;
      padding: 22px 18px;
      border-right: 1px solid var(--line);
      text-align: center;
    }

    .support-mini:last-child {
      border-right: 0;
    }

    .support-mini-icon {
      width: 70px;
      height: 70px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #edf3ef;
      color: var(--green);
    }

    .support-mini-icon img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      display: block;
    }

    .support-mini-icon svg {
      display: none;
      width: 45px;
      height: 45px;
      stroke: currentColor;
      stroke-width: 2.35;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .support-mini h3 {
      margin: 0;
      color: var(--green);
      font-size: clamp(1rem, 1.8vw, 1.25rem);
      line-height: 1.35;
    }

    .support-mini p {
      margin: 6px 0 0;
      color: #252927;
      font-size: .92rem;
      line-height: 1.65;
    }

    .audience {
      background: #fff;
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .audience-card,
    .anti-fit {
      min-width: 0;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .94);
      box-shadow: 0 8px 28px rgba(0, 24, 16, .045);
    }

    .audience-card h3,
    .anti-fit h3 {
      margin: 0;
      color: var(--green);
      font-size: clamp(1.08rem, 1.8vw, 1.32rem);
      line-height: 1.45;
    }

    .audience-card p,
    .anti-fit p {
      margin: 10px 0 0;
      color: #252927;
      font-weight: 700;
      line-height: 1.75;
    }

    .anti-fit {
      margin-top: 18px;
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
      gap: 18px;
      align-items: center;
      border-color: rgba(255, 91, 10, .28);
      background: linear-gradient(90deg, #fff 0%, #fff8f3 100%);
    }

    .anti-fit .tag {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 10px;
      padding: 4px 10px;
      border-radius: 999px;
      color: var(--orange);
      background: rgba(255, 91, 10, .08);
      font-size: .82rem;
      font-weight: 900;
    }

    .reasons-grid {
      display: grid;
      gap: 16px;
    }

    .reason-card {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 28px;
      align-items: center;
      padding: 26px;
    }

    .reason-card .number {
      color: var(--orange);
      font-family: Georgia, serif;
      font-size: clamp(2.7rem, 5vw, 4.4rem);
      line-height: 1;
    }

    .reason-art {
      width: 170px;
      height: 170px;
      justify-self: center;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(180deg, rgba(241, 246, 242, .96) 0%, rgba(234, 242, 237, .9) 100%);
      box-shadow: inset 0 0 0 1px rgba(0, 65, 47, .045);
    }

    .reason-art > svg {
      display: none;
    }

    .reason-icon {
      width: min(112px, 66%);
      height: auto;
      aspect-ratio: 640 / 819;
      background-image: url("assets/reason-icons-natural.png");
      background-size: 300% 100%;
      background-repeat: no-repeat;
    }

    .reason-text {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 22px;
      align-items: start;
    }

    .stats-bar {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(0, 65, 47, .11);
      background: linear-gradient(90deg, #f8faf7, #fff);
    }

    .stats-bar div {
      padding: 24px;
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .stats-bar div:last-child {
      border-right: 0;
    }

    .stats-bar strong {
      display: block;
      color: var(--green);
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1;
    }

    .stats-bar span {
      font-weight: 800;
      color: #303431;
    }

    .trainer {
      background: #fff;
    }

    .trainer-card {
      position: relative;
      display: grid;
      grid-template-columns: minmax(310px, .82fr) 1fr;
      gap: 28px;
      align-items: stretch;
      min-height: 560px;
      padding: 44px 44px 56px;
      overflow: visible;
    }

    .trainer-illustration {
      position: relative;
      min-height: 460px;
      display: grid;
      align-items: end;
      justify-items: center;
      overflow: visible;
      border-radius: 0;
      background: transparent;
    }

    .trainer-illustration > svg {
      display: none;
    }

    .trainer-photo {
      width: auto;
      max-width: 98%;
      max-height: 520px;
      margin: 0 0 -16px;
      object-fit: contain;
      filter: drop-shadow(0 14px 22px rgba(0, 48, 34, .12));
    }

    .speech {
      position: absolute;
      left: 14px;
      bottom: -28px;
      width: min(560px, calc(100vw - 72px));
      padding: 20px 24px;
      border: 2px solid var(--green);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .95);
      color: var(--green);
      font-family: var(--serif);
      font-size: clamp(1.1rem, 2vw, 1.45rem);
      font-weight: 800;
      line-height: 1.55;
      box-shadow: 0 12px 24px rgba(0, 48, 34, .08);
    }

    .speech::before {
      content: "";
      position: absolute;
      left: 18px;
      top: -15px;
      width: 28px;
      height: 28px;
      background: inherit;
      border-left: 2px solid var(--green);
      border-top: 2px solid var(--green);
      transform: rotate(45deg);
    }

    .trainer-info {
      display: grid;
      align-content: center;
      gap: 18px;
      padding: 10px 0 28px;
    }

    .trainer-name {
      color: var(--green);
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.2;
    }

    .trainer-name small {
      display: inline-block;
      margin-left: 12px;
      color: var(--muted);
      font-family: var(--sans);
      font-size: 1rem;
      font-weight: 700;
    }

    .trainer-points {
      display: grid;
      gap: 16px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .trainer-points li {
      display: block;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(0, 65, 47, .12);
    }

    .trainer-points li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .service-grid {
      margin-top: 54px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      border: 0;
      border-radius: var(--radius);
      padding: 12px 10px;
      text-align: center;
      background: transparent;
      box-shadow: none;
    }

    .service-card h3 {
      margin: 0 0 6px;
      color: var(--green);
      font-size: clamp(1.12rem, 1.8vw, 1.42rem);
      line-height: 1.4;
    }

    .service-card p {
      margin: 0;
      color: #252927;
      font-size: .95rem;
      font-weight: 700;
      line-height: 1.7;
    }

    .service-card > svg {
      display: none;
    }

    .service-icon {
      width: min(104px, 72%);
      height: auto;
      aspect-ratio: 657 / 797;
      margin: 0 auto 14px;
      display: block;
      background-repeat: no-repeat;
      background-size: 300% 100%;
    }

    .trainer-testimonial {
      margin-top: 24px;
      display: grid;
      grid-template-columns: 118px 1fr;
      gap: 22px;
      align-items: center;
      padding: 20px 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .94);
      box-shadow: 0 8px 24px rgba(0, 24, 16, .045);
    }

    .trainer-voice-avatar {
      width: 98px;
      height: 98px;
      object-fit: contain;
      display: block;
      justify-self: center;
    }

    .trainer-testimonial p {
      margin: 0;
      color: #222;
      font-size: clamp(1rem, 2vw, 1.22rem);
      font-weight: 800;
      line-height: 1.8;
    }

    .trainer-testimonial span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-weight: 700;
    }

    .flow {
      background: linear-gradient(180deg, #f7faf7 0%, #fff 100%);
    }

    .flow-list {
      position: relative;
      display: grid;
      gap: 0;
    }

    .flow-illustration-panel {
      display: none;
    }

    .flow-illustration-panel img {
      width: 100%;
      max-height: 780px;
      object-fit: contain;
    }

    .flow-list::before {
      content: "";
      position: absolute;
      top: 34px;
      bottom: 34px;
      left: 36px;
      width: 3px;
      background: linear-gradient(var(--green), rgba(0, 65, 47, .18));
    }

    .flow-step {
      position: relative;
      display: grid;
      grid-template-columns: 88px 150px 1fr;
      gap: 26px;
      align-items: center;
      padding: 26px 0 26px 0;
      border-bottom: 1px solid var(--line);
    }

    .flow-num {
      z-index: 1;
      width: 74px;
      height: 74px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--green);
      font-size: 2rem;
      font-weight: 900;
    }

    .flow-art {
      color: var(--green);
    }

    .flow-art svg {
      display: none;
    }

    .flow-thumb {
      width: 132px;
      height: auto;
      aspect-ratio: 1 / 1;
      background-image: url("assets/flow-icons-image2-natural.png");
      background-repeat: no-repeat;
      background-size: 200% 200%;
    }

    .flow-thumb-1 {
      background-position: 0% 0%;
    }

    .flow-thumb-2 {
      background-position: 100% 0%;
    }

    .flow-thumb-3 {
      background-position: 0% 100%;
    }

    .flow-thumb-4 {
      background-position: 100% 100%;
    }

    .assurance {
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 2px solid var(--green);
      border-radius: var(--radius);
      background: linear-gradient(90deg, #fff 0%, var(--cream) 100%);
      overflow: hidden;
    }

    .assurance div {
      display: grid;
      place-items: center;
      min-height: 112px;
      padding: 18px;
      border-right: 1px solid rgba(0, 65, 47, .18);
      text-align: center;
      color: var(--green);
      font-weight: 900;
    }

    .assurance div:last-child {
      border-right: 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
      margin-top: 10px;
    }

    .price-card {
      position: relative;
      display: grid;
      align-content: start;
      justify-items: center;
      gap: 16px;
      min-width: 0;
      padding: 34px 22px 28px;
      border: 1px solid rgba(0, 65, 47, .18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .96);
      text-align: center;
      box-shadow: 0 16px 38px rgba(0, 34, 24, .06);
    }

    .price-card.featured {
      border: 2px solid var(--orange);
      box-shadow: 0 18px 42px rgba(255, 91, 10, .12);
    }

    .badge {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      margin: 0;
      padding: 6px 16px;
      border-radius: 999px;
      color: #fff;
      background: var(--orange);
      font-size: .9rem;
      font-weight: 900;
      line-height: 1.2;
      white-space: nowrap;
    }

    .price-card h3 {
      margin: 0;
      color: var(--green);
      font-family: var(--serif);
      font-size: clamp(1.55rem, 2.5vw, 2.1rem);
      letter-spacing: 0;
      line-height: 1.25;
    }

    .price-card h3 + p {
      margin: -6px 0 4px;
      color: #222;
      font-weight: 800;
    }

    .price {
      width: 100%;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      color: #050707;
      font-size: clamp(1.9rem, 3vw, 2.65rem);
      font-weight: 900;
      line-height: 1.1;
      white-space: nowrap;
    }

    .price small {
      font-size: 1rem;
      font-weight: 700;
    }

    .price + p {
      margin: -4px 0 4px;
      font-weight: 800;
    }

    .price-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
      width: 100%;
      font-size: .92rem;
      font-weight: 700;
      text-align: left;
    }

    .price-list li {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 8px;
      min-width: 0;
      line-height: 1.55;
      overflow-wrap: anywhere;
    }

    .price-list li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
    }

    .campaign {
      margin-top: 28px;
      display: block;
      width: 100%;
      min-width: 0;
      padding: clamp(20px, 3vw, 28px) clamp(18px, 4vw, 34px);
      border-radius: var(--radius);
      border: 1px solid rgba(0, 65, 47, .08);
      background: linear-gradient(90deg, #fbf7ee, #fffaf2 58%, #fff);
      color: var(--green);
      overflow: hidden;
      text-align: center;
    }

    .campaign > svg {
      display: none;
    }

    .campaign-icon {
      display: none;
      width: 64px;
      height: 64px;
      background-image: url("assets/plan-trust-icons.png");
    }

    .campaign strong {
      display: block;
      font-family: var(--serif);
      font-size: clamp(1.55rem, 2.8vw, 2.35rem);
      line-height: 1.25;
      overflow-wrap: anywhere;
    }

    .campaign span {
      display: block;
      max-width: 720px;
      margin: 6px auto 0;
      color: #222;
      font-size: clamp(.9rem, 2.1vw, 1rem);
      font-weight: 700;
      line-height: 1.7;
      overflow-wrap: anywhere;
    }

    .campaign div {
      min-width: 0;
    }

    .price-copy {
      margin: 18px 0 0;
      max-width: 820px;
      color: #151817;
      font-size: clamp(1rem, 1.8vw, 1.18rem);
      font-weight: 700;
      line-height: 1.9;
    }

    .voices {
      background: linear-gradient(180deg, #fff 0%, #f8faf8 100%);
    }

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

    .voice-card {
      min-width: 0;
      padding: 26px;
      display: grid;
      grid-template-columns: minmax(132px, 160px) minmax(0, 1fr);
      gap: 22px;
      align-items: center;
    }

    .voice-card > svg {
      display: none;
    }

    .voice-avatar {
      width: min(100%, 150px);
      height: 300px;
      color: var(--green);
      border-radius: 0;
      background: transparent;
      object-fit: contain;
      object-position: center center;
      justify-self: center;
      align-self: center;
    }

    .voice-card h3 {
      font-size: clamp(1.08rem, 2vw, 1.38rem);
      line-height: 1.55;
    }

    .voice-card p {
      font-weight: 700;
      line-height: 1.75;
    }

    .voice-card p + p {
      margin-top: 18px;
    }

    .result-panel {
      margin-top: 28px;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
      text-align: center;
    }

    .result-title {
      font-size: clamp(2rem, 4.8vw, 3.65rem);
      line-height: 1.28;
    }

    .result-title span {
      display: block;
    }

    .before-after {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 1fr 90px 1fr;
      gap: 20px;
      align-items: center;
    }

    .result-panel .before-after {
      display: none;
    }

    .result-illustration {
      width: 100%;
      margin-top: 24px;
      max-height: 460px;
      object-fit: contain;
    }

    .before-after svg {
      width: 100%;
      min-height: 180px;
      color: var(--green);
    }

    .arrow-big {
      color: var(--orange);
      font-size: clamp(3rem, 7vw, 5rem);
      font-weight: 900;
      line-height: 1;
    }

    .result-metrics {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid var(--line);
    }

    .result-metrics div {
      padding: 18px;
      background: #fbfcfb;
      font-weight: 900;
    }

    .result-metrics strong {
      display: block;
      color: var(--orange);
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.1;
    }

    .faq-wrap {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 74px;
      display: grid;
      grid-template-columns: 50px 1fr 34px;
      gap: 12px;
      align-items: center;
      padding: 18px 24px;
      border: 0;
      background: #fff;
      color: var(--green);
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      font-weight: 900;
      text-align: left;
      cursor: pointer;
    }

    .faq-q {
      color: var(--orange);
      font-size: 1.6rem;
      font-weight: 900;
    }

    .faq-toggle {
      position: relative;
      width: 28px;
      height: 28px;
    }

    .faq-toggle::before,
    .faq-toggle::after {
      content: "";
      position: absolute;
      inset: 13px 4px auto;
      height: 2px;
      background: var(--green);
    }

    .faq-toggle::after {
      transform: rotate(90deg);
      transition: transform .2s ease;
    }

    .faq-item.is-open .faq-toggle::after {
      transform: rotate(0deg);
    }

    .faq-answer {
      display: none;
      grid-template-columns: 50px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      padding: 0 24px 24px;
      border-top: 1px solid var(--line);
      background: #fff;
    }

    .faq-item.is-open .faq-answer {
      display: grid;
    }

    .faq-a {
      color: var(--green);
      font-size: 1.6rem;
      font-weight: 900;
    }

    .faq-answer p {
      margin: 18px 0 0;
    }

    .access {
      background: var(--soft);
    }

    .access-grid {
      display: grid;
      grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
      gap: clamp(28px, 5vw, 64px);
      align-items: center;
    }

    .access-copy {
      min-width: 0;
    }

    .access-address {
      margin-top: 24px;
      color: var(--ink);
      font-style: normal;
      font-weight: 700;
      line-height: 1.9;
    }

    .access-address strong {
      display: block;
      margin-bottom: 8px;
      color: var(--green);
      font-family: var(--serif);
      font-size: clamp(1.3rem, 2.4vw, 1.75rem);
      line-height: 1.45;
    }

    .access-hours {
      margin: 14px 0 0;
      color: #444b47;
      font-weight: 700;
    }

    .access-actions {
      margin-top: 24px;
    }

    .access-actions .btn {
      width: min(100%, 360px);
    }

    .map-frame {
      position: relative;
      width: 100%;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #e8ece9;
      box-shadow: var(--shadow);
    }

    .map-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 860px) {
      .access-grid {
        grid-template-columns: 1fr;
      }

      .access-copy {
        text-align: center;
      }

      .access-actions {
        display: flex;
        justify-content: center;
      }

      .map-frame {
        width: min(100%, 680px);
        margin-inline: auto;
      }
    }

    @media (max-width: 520px) {
      .map-frame {
        aspect-ratio: 4 / 3;
      }

      .access-address {
        font-size: .92rem;
      }
    }

    .reservation {
      background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
    }

    .form-card {
      max-width: 980px;
      margin-inline: auto;
      padding: clamp(22px, 5vw, 52px);
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      gap: 18px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field label {
      color: var(--green);
      font-weight: 900;
    }

    .required {
      margin-left: 8px;
      padding: 2px 7px;
      border: 1px solid var(--orange);
      border-radius: 6px;
      color: var(--orange);
      font-size: .78rem;
      line-height: 1;
    }

    .control {
      width: 100%;
      min-height: 64px;
      border: 1px solid #cfd6d1;
      border-radius: var(--radius);
      padding: 16px 18px;
      background: #fff;
      color: var(--ink);
    }

    .control:focus {
      outline: 3px solid rgba(255, 91, 10, .18);
      border-color: var(--orange);
    }

    .date-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-note {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
      color: var(--green);
      font-weight: 900;
    }

    .form-note div {
      display: grid;
      place-items: center;
      min-height: 62px;
      padding: 12px 10px;
      border: 1px solid rgba(0, 65, 47, .16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .82);
      text-align: center;
    }

    .form-submit {
      width: 100%;
      margin-top: 24px;
      border: 0;
      cursor: pointer;
      font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    }

    .confirm-modal {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: none;
      place-items: center;
      padding: 22px;
      background: rgba(0, 24, 16, .42);
    }

    .confirm-modal.is-open {
      display: grid;
    }

    .confirm-dialog {
      width: min(640px, 100%);
      max-height: min(760px, calc(100dvh - 44px));
      overflow: auto;
      padding: clamp(22px, 4vw, 34px);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 24px 60px rgba(0, 24, 16, .22);
    }

    .confirm-dialog h3,
    .reservation-thanks h3 {
      margin: 0;
      color: var(--green);
      font-family: var(--serif);
      font-size: clamp(1.55rem, 3vw, 2.3rem);
      line-height: 1.35;
    }

    .confirm-list {
      display: grid;
      gap: 0;
      margin: 22px 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .confirm-list div {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      border-bottom: 1px solid var(--line);
    }

    .confirm-list div:last-child {
      border-bottom: 0;
    }

    .confirm-list dt,
    .confirm-list dd {
      margin: 0;
      padding: 12px 14px;
      line-height: 1.7;
    }

    .confirm-list dt {
      background: #f7faf7;
      color: var(--green);
      font-weight: 900;
    }

    .confirm-list dd {
      overflow-wrap: anywhere;
      font-weight: 700;
    }

    .confirm-note {
      margin: 0;
      color: var(--muted);
      font-size: .9rem;
      font-weight: 700;
    }

    .confirm-actions {
      margin-top: 22px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .confirm-actions .btn {
      width: 100%;
      min-height: 56px;
      cursor: pointer;
    }

    .reservation-thanks {
      max-width: 840px;
      margin: 0 auto;
      padding: clamp(28px, 5vw, 52px);
      border: 1px solid rgba(0, 65, 47, .14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .95);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .reservation-thanks[hidden] {
      display: none;
    }

    .reservation-thanks p {
      margin: 18px auto 0;
      max-width: 680px;
      font-size: clamp(1rem, 2vw, 1.18rem);
      font-weight: 800;
      line-height: 1.9;
    }

    .reservation-thanks .btn {
      margin-top: 24px;
      width: min(100%, 420px);
    }

    .section-cta {
      margin-top: 30px;
      display: grid;
      gap: 14px;
      justify-items: center;
    }

    .section-cta .btn {
      width: min(100%, 760px);
    }

    .safety-note {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--green);
      font-weight: 800;
      text-align: center;
    }

    .site-footer {
      padding: 40px 0;
      border-top: 1px solid var(--line);
      background: #fff;
      color: var(--green);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
    }

    .footer-info {
      justify-self: end;
      color: #343a36;
      font-size: .95rem;
      text-align: right;
    }

    .footer-social {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }

    .social-link {
      width: 44px;
      height: 44px;
      display: inline-grid;
      place-items: center;
      border: 1px solid rgba(0, 65, 47, .18);
      border-radius: 50%;
      background: #fff;
      color: var(--green);
      font-weight: 900;
      box-shadow: 0 8px 20px rgba(0, 34, 24, .06);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .social-link:hover {
      transform: translateY(-2px);
      border-color: var(--orange);
      background: #fff8f3;
    }

    .social-link svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
    }

    .social-note {
      font-size: .78rem;
      letter-spacing: 0;
      line-height: 1;
    }

    .back-to-top {
      position: fixed;
      right: clamp(16px, 3vw, 32px);
      bottom: clamp(16px, 3vw, 32px);
      z-index: 50;
      width: 64px;
      height: 64px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-items: center;
      justify-content: center;
      place-items: center;
      border: 1px solid rgba(0, 65, 47, .18);
      border-radius: 50%;
      background: linear-gradient(180deg, #fff 0%, #f5faf7 100%);
      color: var(--green);
      box-shadow: 0 12px 28px rgba(0, 34, 24, .16);
      font-size: .72rem;
      font-weight: 900;
      letter-spacing: .08em;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .back-to-top::before {
      content: "";
      width: 10px;
      height: 10px;
      border-top: 2px solid currentColor;
      border-left: 2px solid currentColor;
      transform: rotate(45deg);
      margin-top: 4px;
    }

    .back-to-top:hover {
      box-shadow: 0 16px 34px rgba(0, 34, 24, .2);
      transform: translateY(-2px);
    }

    .back-to-top.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top.is-visible:hover {
      transform: translateY(-2px);
    }

    .back-to-top:focus-visible {
      outline: 3px solid rgba(255, 91, 10, .28);
      outline-offset: 3px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s ease;
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 980px) {
      .container {
        width: min(100% - 32px, 760px);
      }

      .nav {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .mobile-menu.is-open {
        display: block;
      }

      .header-inner {
        min-height: 74px;
      }

      .hero-grid,
      .solution-grid,
      .trainer-card {
        grid-template-columns: 1fr;
      }

      .trainer-card {
        gap: 24px;
        min-height: auto;
        padding: 30px 28px 34px;
        overflow: hidden;
      }

      .trainer-illustration {
        min-height: 430px;
      }

      .trainer-photo {
        max-width: 72%;
        max-height: 440px;
        margin-bottom: 0;
      }

      .speech {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: -14px;
      }

      .trainer-info {
        width: min(100%, 680px);
        justify-self: center;
        padding: 0;
      }

      .service-grid {
        margin-top: 30px;
      }

      .audience-grid,
      .anti-fit {
        grid-template-columns: 1fr;
      }

      .solution-grid {
        justify-items: center;
        gap: 28px;
        text-align: center;
      }

      .solution-grid > div:last-child {
        max-width: 720px;
      }

      .solution-grid .section-sub {
        margin-inline: auto;
      }

      .hero h1 {
        font-size: clamp(2.35rem, 9vw, 5.3rem);
      }

      .hero {
        padding: 34px 0 48px;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .82) 66%, #fff 100%),
          radial-gradient(circle at 86% 42%, rgba(0, 65, 47, .08), transparent 18rem);
      }

      .hero::after {
        display: none;
      }

      .hero .eyebrow {
        display: none;
      }

      .hero-mobile-stage {
        min-height: 560px;
        overflow: hidden;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, .84) 0%, rgba(255, 255, 255, .66) 36%, rgba(255, 255, 255, .48) 62%, rgba(255, 255, 255, .9) 88%, #fff 100%),
          url("assets/hero-gym-illustration.png");
        background-repeat: no-repeat;
        background-size: 100% 100%, auto 100%;
        background-position: center, 68% center;
      }

      .hero-mobile-stage h1,
      .hero-mobile-stage .hero-lead,
      .hero-mobile-stage .hero-copy {
        position: relative;
        z-index: 2;
      }

      .hero-visual {
        display: none;
      }

      .hero-mobile-asset {
        display: none;
        position: absolute;
        z-index: 1;
        top: 232px;
        right: -160px;
        width: 116%;
        max-width: none;
        margin: 0;
        filter: drop-shadow(0 16px 24px rgba(0, 48, 34, .1));
      }

      .hero-mobile-metrics {
        display: grid;
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        bottom: 0;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 0;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, .9);
        box-shadow: none;
      }

      .hero-mobile-metrics div {
        min-height: 138px;
        display: grid;
        align-content: start;
        place-items: center;
        padding: 10px 8px 4px;
        border-right: 1px solid var(--line);
        background: transparent;
        text-align: center;
        font-weight: 800;
      }

      .hero-mobile-metrics div:last-child {
        border-right: 0;
      }

      .hero-mobile-metrics strong {
        display: block;
        color: var(--green);
        font-family: var(--serif);
        font-size: .88rem;
        line-height: 1.28;
      }

      .hero-mobile-metrics span {
        font-size: .69rem;
        line-height: 1.55;
      }

      .hero-feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
        stroke-width: 3.1;
      }

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

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

      .problem-card {
        grid-template-columns: 112px 1fr;
        gap: 14px;
        align-items: center;
        min-height: auto;
        padding: 16px;
      }

      .problem-ill {
        width: 104px;
      }

      .support-mini-grid {
        width: min(100%, 720px);
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .support-mini {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
        padding: 18px 12px;
        text-align: center;
      }

      .support-mini-icon {
        width: 58px;
        height: 58px;
      }

      .support-mini-icon img {
        width: 40px;
        height: 40px;
      }

      .support-mini h3 {
        font-size: .95rem;
      }

      .support-mini p {
        font-size: .78rem;
        line-height: 1.55;
      }

      .solution-visual {
        display: none;
      }

      .solution-icon svg,
      .solution-icon .generated-icon {
        display: none;
      }

      .flow-art svg {
        display: none;
      }

      .flow-thumb {
        display: block;
      }

      .solution-icon img {
        width: 66px;
        height: 66px;
      }

      .reason-card {
        grid-template-columns: 132px 1fr;
        gap: 16px;
        padding: 18px;
      }

      .reason-art {
        width: 126px;
        height: 126px;
      }

      .reason-icon {
        width: min(84px, 66%);
        height: auto;
        aspect-ratio: 640 / 819;
      }

      .reason-text {
        grid-template-columns: 54px 1fr;
        gap: 12px;
      }

      .reason-card .number {
        font-size: 2.35rem;
      }

      .flow-step {
        grid-template-columns: 70px 96px 1fr;
        gap: 14px;
      }

      .flow-illustration-panel {
        display: none;
      }

      .flow-thumb {
        width: 94px;
        height: auto;
        aspect-ratio: 1 / 1;
      }

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

      .before-after {
        grid-template-columns: 1fr;
      }

      .voice-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
        align-items: center;
      }

      .voice-avatar {
        width: 140px;
        height: 260px;
        justify-self: center;
      }

      .arrow-big {
        transform: rotate(90deg);
      }

      .faq-answer {
        grid-template-columns: 42px minmax(0, 1fr);
      }

    }

    @media (max-width: 860px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .price-card {
        width: 100%;
        max-width: 460px;
        justify-self: center;
      }
    }

    @media (max-width: 760px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .price-card {
        width: 100%;
        max-width: 430px;
        justify-self: center;
      }

      .campaign {
        padding: 22px 18px;
        text-align: center;
      }

      .service-grid {
        width: min(100%, 460px);
        grid-template-columns: 1fr;
        gap: 12px;
        margin-inline: auto;
      }

      .service-card {
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        grid-template-areas:
          "icon title"
          "icon text";
        gap: 4px 14px;
        align-items: center;
        width: 100%;
        padding: 10px 4px;
        text-align: left;
      }

      .service-icon {
        grid-area: icon;
        width: 68px;
        margin: 0;
        justify-self: center;
      }

      .service-card h3 {
        grid-area: title;
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.35;
      }

      .service-card p {
        grid-area: text;
        font-size: .86rem;
        line-height: 1.55;
      }

      .voices-grid {
        width: min(100%, 560px);
        grid-template-columns: 1fr;
        margin-inline: auto;
      }

      .voice-card {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
        padding: 18px;
      }

      .voice-avatar {
        width: 96px;
        height: 198px;
        justify-self: center;
      }

      .voice-card h3 {
        font-size: 1rem;
        line-height: 1.55;
      }

      .voice-card p {
        font-size: .86rem;
        line-height: 1.65;
      }

      .result-panel {
        width: min(100%, 560px);
        margin-inline: auto;
        padding: 24px 18px;
      }

      .result-title {
        font-size: clamp(1.72rem, 7vw, 2.15rem);
        line-height: 1.35;
      }

      .result-illustration {
        max-height: 320px;
        margin-top: 18px;
      }

      .result-metrics div {
        min-width: 0;
        padding: 14px 8px;
        font-size: .82rem;
      }
    }

    @media (max-width: 640px) {
      .brand {
        gap: 10px;
        font-size: 2rem;
      }

      .brand-logo {
        width: 150px;
      }

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

      .brand-mark::before {
        inset: 7px;
        border-width: 7px;
      }

      .brand-mark::after {
        width: 10px;
        height: 10px;
        box-shadow: 27px 0 0 var(--orange);
      }

      .hero {
        padding-top: 34px;
      }

      .hero h1 {
        line-height: 1.32;
        font-size: clamp(2.12rem, 12vw, 3.6rem);
      }

      .hero-lead {
        font-size: 1rem;
        line-height: 1.8;
      }

      .hero-copy {
        font-size: .92rem;
        line-height: 1.9;
      }

      section {
        padding: 56px 0;
      }

      .section-head {
        margin-bottom: 26px;
      }

      .section-title {
        font-size: clamp(2rem, 10.5vw, 3.05rem);
        line-height: 1.3;
      }

      .section-sub {
        font-size: .94rem;
        line-height: 1.9;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .trust-row {
        display: grid;
      }

      .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
      }

      .stats-bar,
      .assurance,
      .result-metrics,
      .form-note {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .hero-metrics div,
      .stats-bar div,
      .assurance div,
      .result-metrics div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .stats-bar div,
      .assurance div,
      .result-metrics div {
        border-right: 1px solid var(--line);
        border-bottom: 0;
      }

      .hero-metrics div:last-child,
      .stats-bar div:last-child,
      .assurance div:last-child,
      .result-metrics div:last-child {
        border-right: 0;
        border-bottom: 0;
      }

      .section-head {
        display: block;
      }

      .problem-card {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: start;
        gap: 10px;
        padding: 14px 10px 16px;
        min-height: 214px;
        text-align: center;
      }

      .problem-ill {
        width: min(128px, 100%);
      }

      .problem-card h3 {
        font-size: .92rem;
      }

      .problem-card p {
        font-size: .74rem;
        line-height: 1.55;
      }

      .problem-thumb {
        width: 48px;
        height: 52px;
      }

      .problem-card svg {
        width: 78px;
        height: 72px;
      }

      .problem-card .problem-ill svg {
        width: 100%;
        height: 100%;
      }

      .support-mini {
        padding: 18px 20px;
      }

      .support-mini-icon {
        width: 58px;
        height: 58px;
      }

      .support-mini-icon img {
        width: 40px;
        height: 40px;
      }

      .support-mini h3 {
        font-size: .95rem;
      }

      .support-mini p {
        font-size: .76rem;
        line-height: 1.45;
      }

      .solution-list {
        width: min(100%, 420px);
      }

      .solution-item {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
        padding: 20px 0;
        text-align: center;
      }

      .solution-icon {
        width: 58px;
        height: 58px;
        margin-inline: auto;
      }

      .solution-icon img {
        width: 46px;
        height: 46px;
      }

      .support-mini-grid {
        width: min(100%, 420px);
        grid-template-columns: 1fr;
      }

      .support-mini {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .support-mini:last-child {
        border-bottom: 0;
      }

      .trainer-card,
      .result-panel {
        padding: 20px;
      }

      .trainer-card {
        gap: 18px;
      }

      .trainer-illustration {
        min-height: 390px;
      }

      .trainer-photo {
        max-width: 86%;
        max-height: 390px;
      }

      .speech {
        padding: 16px 18px;
        font-size: 1.02rem;
        line-height: 1.6;
      }

      .trainer-testimonial {
        grid-template-columns: 82px 1fr;
        gap: 12px;
        padding: 16px 14px;
      }

      .service-grid {
        margin-top: 22px;
      }

      .trainer-voice-avatar {
        width: 74px;
        height: 74px;
      }

      .reason-card {
        grid-template-columns: 112px 1fr;
        padding: 14px;
      }

      .reason-art {
        width: 112px;
        height: 112px;
      }

      .reason-icon {
        width: min(74px, 66%);
        height: auto;
        aspect-ratio: 640 / 819;
      }

      .reason-text {
        grid-template-columns: 46px 1fr;
        gap: 14px;
      }

      .reason-card h3,
      .service-card h3,
      .price-card h3,
      .voice-card h3 {
        font-size: .9rem;
      }

      .reason-card p,
      .service-card p,
      .price-card p,
      .voice-card p {
        font-size: .76rem;
        line-height: 1.6;
      }

      .voice-card h3 {
        font-size: 1rem;
        line-height: 1.5;
      }

      .voice-card p {
        font-size: .84rem;
        line-height: 1.65;
      }

      .trainer-illustration {
        min-height: 370px;
      }

      .trainer-name small {
        display: block;
        margin: 8px 0 0;
      }

      .flow-step {
        grid-template-columns: 58px 76px 1fr;
        gap: 14px;
      }

      .flow-num {
        width: 54px;
        height: 54px;
        font-size: 1.55rem;
      }

      .flow-list::before {
        left: 26px;
      }

      .flow-thumb {
        width: 82px;
        height: auto;
        aspect-ratio: 1 / 1;
      }

      .flow-art svg {
        display: none;
        width: 72px;
        height: 66px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .price-card {
        width: 100%;
        max-width: 430px;
        justify-self: center;
        padding: 28px 18px 22px;
        gap: 12px;
      }

      .price-card.featured {
        border-width: 2px;
      }

      .badge {
        top: -13px;
        font-size: .82rem;
        padding: 5px 14px;
      }

      .price-card h3 {
        font-size: 1.45rem;
      }

      .price-card h3 + p,
      .price + p {
        font-size: .86rem;
      }

      .price {
        font-size: 2rem;
        white-space: normal;
      }

      .price small {
        font-size: .95rem;
      }

      .price-list {
        font-size: .86rem;
      }

      .campaign {
        padding: 22px 16px;
        text-align: center;
      }

      .price-copy {
        font-size: .94rem;
        line-height: 1.8;
      }

      .service-grid {
        gap: 12px;
      }

      .service-card {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 4px 12px;
        padding: 10px 4px;
      }

      .service-icon {
        width: 62px;
        height: auto;
        aspect-ratio: 657 / 797;
      }

      .service-card h3 {
        font-size: 1rem;
        line-height: 1.35;
      }

      .service-card p {
        font-size: .82rem;
        line-height: 1.55;
      }

      .stats-bar div,
      .assurance div,
      .result-metrics div {
        min-height: 88px;
        padding: 14px 8px;
        font-size: .82rem;
      }

      .stats-bar strong,
      .result-metrics strong {
        font-size: 1.85rem;
      }

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

      .form-note {
        gap: 8px;
        border-top: 0;
      }

      .form-note div {
        min-height: 54px;
        padding: 10px 6px;
        text-align: center;
        font-size: .78rem;
      }

      .form-note div:last-child {
        border-right: 0;
      }

      .faq-question {
        grid-template-columns: 36px 1fr 26px;
        padding: 16px;
      }

      .faq-answer {
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 0 16px 18px;
      }

      .footer-inner {
        display: grid;
        justify-items: center;
        text-align: center;
      }

      .footer-info {
        justify-self: center;
        font-size: .84rem;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .back-to-top {
        width: 54px;
        height: 54px;
        right: 14px;
        bottom: 14px;
        font-size: .64rem;
      }

    }

    @media (max-width: 430px) {
      .container {
        width: min(100% - 28px, 760px);
      }

      .header-inner {
        min-height: 66px;
      }

      .brand-logo {
        width: 136px;
      }

      .hamburger {
        width: 44px;
        height: 44px;
      }

      .hero {
        padding: 28px 0 42px;
      }

      .hero-mobile-stage {
        min-height: 610px;
        background-size: 100% 100%, auto 100%;
        background-position: center, 69% center;
      }

      .hero-mobile-metrics div {
        min-height: 126px;
        padding: 8px 5px 4px;
      }

      .hero-feature-icon {
        width: 42px;
        height: 42px;
      }

      .hero-mobile-metrics strong {
        font-size: .8rem;
      }

      .hero-mobile-metrics span {
        font-size: .63rem;
        line-height: 1.5;
      }

      .btn {
        min-height: 56px;
        padding-inline: 18px;
        gap: 10px;
        font-size: .95rem;
      }

      .btn-arrow {
        width: 14px;
        height: 14px;
        border-width: 2px;
      }

      .problem-grid {
        gap: 10px;
      }

      .problem-card {
        min-height: 198px;
        padding: 12px 8px 14px;
      }

      .problem-ill {
        width: min(112px, 100%);
      }

      .reason-card {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        text-align: center;
      }

      .reason-text {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .trainer-card {
        padding: 18px 14px 20px;
      }

      .trainer-illustration {
        min-height: 334px;
      }

      .trainer-photo {
        max-width: 94%;
        max-height: 330px;
      }

      .speech {
        width: 100%;
        margin-top: -4px;
        padding: 14px 15px;
        font-size: .98rem;
      }

      .trainer-info {
        gap: 14px;
      }

      .trainer-name {
        font-size: clamp(1.75rem, 9vw, 2.3rem);
      }

      .trainer-points li {
        padding-bottom: 12px;
      }

      .trainer-testimonial {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
      }

      .flow-step {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 8px 14px;
        align-items: start;
        padding: 22px 0;
      }

      .flow-num {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
      }

      .flow-list::before {
        left: 24px;
      }

      .flow-art {
        grid-column: 2;
        grid-row: 1;
        justify-self: start;
      }

      .flow-thumb {
        width: 70px;
      }

      .flow-step > div:last-child {
        grid-column: 2;
        grid-row: 2;
      }

      .price-card {
        max-width: 100%;
      }

      .campaign {
        padding: 20px 14px;
      }

      .voice-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 18px 16px;
      }

      .voice-avatar {
        width: 118px;
        height: 232px;
      }

      .result-panel {
        padding: 22px 14px;
      }

      .result-title {
        font-size: clamp(1.55rem, 8vw, 2rem);
      }

      .result-metrics strong {
        font-size: 1.55rem;
      }

      .date-row {
        grid-template-columns: 1fr;
      }

      .control {
        min-height: 58px;
        padding: 14px 14px;
      }

      .form-card {
        padding: 20px 14px;
      }

      .confirm-actions {
        grid-template-columns: 1fr;
      }

      .confirm-list div {
        grid-template-columns: 1fr;
      }

      .confirm-list dt {
        padding-bottom: 4px;
      }

      .confirm-list dd {
        padding-top: 4px;
      }

      .faq-question {
        grid-template-columns: 30px 1fr 22px;
        gap: 8px;
        padding: 15px 12px;
        font-size: .95rem;
      }

      .faq-answer {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 8px;
        padding: 0 12px 16px;
      }
    }

    @media (max-width: 360px) {
      .container {
        width: min(100% - 22px, 760px);
      }

      .brand-logo {
        width: 124px;
      }

      .hero-mobile-stage {
        min-height: 640px;
        background-size: 100% 100%, auto 100%;
        background-position: center, 70% center;
      }

      .hero-mobile-metrics div {
        min-height: 118px;
      }

      .hero-mobile-metrics strong {
        font-size: .73rem;
      }

      .hero-mobile-metrics span {
        font-size: .58rem;
      }

      .problem-grid {
        grid-template-columns: 1fr;
      }

      .problem-card {
        min-height: auto;
        grid-template-columns: 84px minmax(0, 1fr);
        justify-items: start;
        text-align: left;
      }

      .problem-ill {
        width: 78px;
      }

      .assurance,
      .result-metrics,
      .form-note {
        grid-template-columns: 1fr;
      }

      .assurance div,
      .result-metrics div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .assurance div:last-child,
      .result-metrics div:last-child {
        border-bottom: 0;
      }

      .form-note div,
      .form-note div:last-child {
        border-right: 1px solid rgba(0, 65, 47, .16);
      }
    }

    .legal-note {
      margin: 16px auto 0;
      color: #626965;
      font-size: .82rem;
      line-height: 1.75;
      text-align: center;
    }

    .result-panel .legal-note {
      max-width: 700px;
    }

    .consent-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 20px;
      color: #3f4742;
      font-size: .9rem;
      line-height: 1.75;
    }

    .consent-row input {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      margin-top: 3px;
      accent-color: var(--green);
    }

    .consent-row a,
    .footer-legal a {
      color: var(--green);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .form-privacy-note {
      margin: 10px 0 0;
      color: #69706c;
      font-size: .78rem;
      line-height: 1.7;
    }

    .form-error {
      margin: 16px 0 0;
      padding: 12px 14px;
      border: 1px solid #d85a4f;
      border-radius: 10px;
      background: #fff4f2;
      color: #9d2f26;
      font-size: .92rem;
      font-weight: 700;
      line-height: 1.6;
    }

    .form-error[hidden] {
      display: none;
    }

    .confirm-actions .btn:disabled {
      cursor: wait;
      opacity: .62;
    }

    .footer-legal {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 22px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      font-size: .86rem;
    }

    @media (max-width: 760px) {
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-legal {
        width: 100%;
        gap: 8px 16px;
        text-align: center;
      }

      .result-metrics {
        grid-template-columns: 1fr;
      }

      .result-metrics div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .result-metrics div:last-child {
        border-bottom: 0;
      }

      .result-metrics strong {
        overflow-wrap: anywhere;
      }
    }

    /* Official LINE contact buttons */
    .btn-line {
      color: #fff;
      background: var(--line-green);
      border-color: var(--line-green);
      box-shadow: 0 12px 26px rgba(6, 199, 85, .2);
    }

    .btn-line:hover {
      background: #05b94f;
      border-color: #05b94f;
      box-shadow: 0 16px 30px rgba(6, 199, 85, .26);
    }

    .line-mark {
      width: 36px;
      height: 30px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 10px;
      color: var(--line-green);
      background: #fff;
      font-size: .58rem;
      font-weight: 950;
      letter-spacing: -.03em;
      line-height: 1;
    }

    .hero-actions .btn-line {
      font-size: clamp(1.02rem, 1.75vw, 1.28rem);
    }

    .btn-line-subtle {
      color: #048d3e;
      background: #fff;
      border-color: rgba(6, 199, 85, .65);
      box-shadow: none;
    }

    .btn-line-subtle .line-mark {
      color: #fff;
      background: var(--line-green);
    }

    .btn-line-subtle:hover {
      color: #fff;
      background: var(--line-green);
      border-color: var(--line-green);
    }

    .btn-line-subtle:hover .line-mark {
      color: var(--line-green);
      background: #fff;
    }

    .line-contact-card {
      width: min(100%, 920px);
      margin: 0 auto 28px;
      padding: 24px 28px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 28px;
      border: 1px solid rgba(6, 199, 85, .3);
      border-radius: 16px;
      background: linear-gradient(120deg, rgba(6, 199, 85, .09), #fff 64%);
      box-shadow: 0 14px 34px rgba(0, 65, 47, .07);
    }

    .line-contact-copy {
      min-width: 0;
    }

    .line-contact-label {
      display: inline-block;
      margin-bottom: 5px;
      color: #048d3e;
      font-size: .82rem;
      font-weight: 900;
    }

    .line-contact-copy strong {
      display: block;
      color: var(--green);
      font-size: clamp(1.05rem, 2vw, 1.32rem);
      line-height: 1.5;
    }

    .line-contact-copy p {
      margin: 7px 0 0;
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.7;
    }

    .line-contact-card .btn {
      min-height: 58px;
      padding: 14px 24px;
      white-space: nowrap;
    }

    @media (max-width: 980px) {
      .line-contact-card {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .line-contact-card .btn {
        width: min(100%, 480px);
        justify-self: center;
      }
    }

    @media (max-width: 760px) {
      .line-contact-card {
        padding: 22px 18px;
        gap: 18px;
        border-radius: 12px;
      }

    }

    @media (max-width: 430px) {
      .hero h1 {
        font-size: clamp(2rem, 9.6vw, 2.7rem);
        line-height: 1.35;
      }

      .line-contact-copy p {
        font-size: .84rem;
      }

    }

    /* PALFIT typography system: clean, practical, and human */
    :root {
      --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
      --sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    }

    body {
      font-feature-settings: normal;
      font-kerning: normal;
      line-height: 1.86;
      letter-spacing: .008em;
    }

    .nav,
    .mobile-menu a,
    .btn {
      font-weight: 700;
      letter-spacing: .01em;
    }

    .eyebrow {
      margin-bottom: 16px;
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .045em;
    }

    .speech,
    .trainer-name,
    .price-card h3,
    .campaign strong,
    .stats-bar strong,
    .hero-metrics strong,
    .confirm-dialog h3,
    .reservation-thanks h3 {
      font-family: var(--sans);
      text-shadow: none;
    }

    .hero h1,
    .section-title {
      font-family: var(--serif);
      text-shadow: none;
    }

    .hero h1 {
      max-width: 720px;
      font-size: clamp(2.7rem, 5.9vw, 4.95rem);
      font-weight: 700;
      line-height: 1.28;
      letter-spacing: .005em;
    }

    .section-title {
      font-size: clamp(2rem, 3.7vw, 3.25rem);
      font-weight: 700;
      line-height: 1.42;
      letter-spacing: .005em;
    }

    .solution-grid > div:last-child {
      max-width: 980px;
    }

    .responsive-title .title-line {
      display: block;
    }

    .responsive-title .title-wrap {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      column-gap: .12em;
      row-gap: 0;
    }

    .responsive-title .title-phrase {
      display: inline-block;
      white-space: nowrap;
    }

    .section-head.center .responsive-title .title-wrap,
    .result-title .title-wrap {
      justify-content: center;
    }

    .solution .responsive-title {
      text-align: center;
    }

    .solution .responsive-title .title-wrap {
      justify-content: center;
    }

    .result-subtitle span {
      display: block;
    }

    .result-panel > .section-sub {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

    .section-head {
      display: block;
      text-align: center;
    }

    .section-head > div {
      width: 100%;
      margin-right: auto;
      margin-left: auto;
    }

    .section-head .section-sub,
    .section-head .price-copy {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

    .section-head .responsive-title .title-wrap {
      justify-content: center;
    }

    .solution-grid > div:last-child > .section-sub,
    .access-copy > .section-title,
    .access-copy > .section-sub {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

    .result-illustration {
      width: min(100%, 820px);
      height: auto;
      max-height: none;
      margin: 20px auto 0;
      object-fit: contain;
    }

    .result-metrics {
      margin-top: 18px;
    }

    .section-sub {
      margin-top: 12px;
      color: #39413d;
      font-size: clamp(1rem, 1.55vw, 1.12rem);
      font-weight: 400;
      line-height: 1.92;
    }

    .hero-lead {
      margin-top: 24px;
      font-size: clamp(1.04rem, 1.5vw, 1.25rem);
      font-weight: 600;
      line-height: 1.8;
    }

    .hero-copy {
      margin-top: 14px;
      color: #343a37;
      font-size: 1rem;
      font-weight: 400;
      line-height: 2;
    }

    .problem-card h3,
    .reason-card h3,
    .trainer-info h3,
    .price-card h3,
    .flow-step h3,
    .voice-card h3,
    .service-card h3,
    .support-mini h3,
    .audience-card h3,
    .anti-fit h3,
    .line-contact-copy strong {
      font-weight: 700;
      letter-spacing: .005em;
    }

    .problem-card p,
    .reason-card p,
    .trainer-info p,
    .flow-step p,
    .voice-card p,
    .price-card p,
    .service-card p,
    .support-mini p,
    .audience-card p,
    .anti-fit p,
    .price-copy,
    .trainer-testimonial p {
      font-weight: 400;
      line-height: 1.8;
    }

    .hero-mobile-metrics,
    .trust-row,
    .stats-bar span,
    .assurance div,
    .field label,
    .faq-question,
    .line-contact-label {
      font-weight: 700;
    }

    .hero-mobile-metrics span,
    .legal-note,
    .form-privacy-note,
    .footer-info,
    .footer-legal {
      letter-spacing: .01em;
    }

    .trainer-name {
      font-size: clamp(1.9rem, 3.4vw, 2.8rem);
      font-weight: 700;
      letter-spacing: 0;
    }

    .speech {
      font-size: clamp(1.04rem, 1.7vw, 1.28rem);
      font-weight: 600;
      letter-spacing: .005em;
    }

    .price-card h3,
    .campaign strong {
      font-weight: 700;
      letter-spacing: .005em;
    }

    .price,
    .stats-bar strong,
    .result-metrics strong,
    .flow-num,
    .reason-card .number {
      font-family: var(--sans);
      font-variant-numeric: tabular-nums;
      font-weight: 700;
      letter-spacing: -.01em;
    }

    .voice-card p + p {
      margin-top: 14px;
    }

    .voice-card p strong {
      color: var(--green);
      font-weight: 600;
    }

    .result-title {
      font-size: clamp(1.9rem, 4.1vw, 3.2rem);
      line-height: 1.45;
    }

    .faq-question {
      font-size: clamp(1rem, 1.55vw, 1.18rem);
      letter-spacing: .005em;
    }

    @media (max-width: 760px) {
      body {
        line-height: 1.84;
        letter-spacing: 0;
      }

      .eyebrow {
        font-size: .78rem;
        letter-spacing: .035em;
      }

      .hero h1 {
        font-size: clamp(2.05rem, 10.4vw, 3.25rem);
        line-height: 1.38;
        letter-spacing: 0;
      }

      .section-title {
        font-size: clamp(1.8rem, 8.2vw, 2.55rem);
        line-height: 1.48;
        letter-spacing: 0;
      }

      .responsive-title .title-wrap {
        column-gap: .08em;
      }

      .result-illustration {
        width: 100%;
        height: auto;
        max-height: none;
        margin-top: 14px;
      }

      .result-metrics {
        margin-top: 14px;
      }

      .section-sub,
      .hero-copy {
        font-size: .92rem;
      }

      .btn {
        font-size: .94rem;
        letter-spacing: .015em;
      }
    }

    @media (max-width: 430px) {
      .hero h1 {
        font-size: clamp(2rem, 9.5vw, 2.65rem);
        line-height: 1.42;
      }

      .section-title {
        font-size: clamp(1.72rem, 8vw, 2.25rem);
      }

      .responsive-title .title-wrap {
        row-gap: .04em;
      }

      .result-panel {
        padding-block: 18px;
      }

      .result-illustration {
        margin-top: 12px;
      }
    }
