:root {
    --red:       #c0161c;
    --red-dark:  #8f0f14;
    --red-light: #f7e7e7;
    --navy:      #1a2340;
    --bg:        #f8f7f4;
    --white:     #ffffff;
    --ink:       #1a1a1a;
    --ink-mid:   #4a4a4a;
    --ink-soft:  #888;
    --border:    #e2ddd6;
    --ease:      0.25s ease;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    font-size: 17px;
  }

  /* ── ナビ ── */
  .nav {
    background: var(--white) !important;
    border-bottom: 1px solid var(--border);
    height: 116px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    padding: 0 48px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .nav__logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }
  .nav__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.2s ease;
  }
  .nav__logo-link:hover { opacity: 0.75; }
  /* ── ナビロゴ画像サイズ（PC） ── */
  body.lp-7habits header .nav__logo a img,
  body.lp-7habits header .nav__logo .nav__logo-link img,
  .nav__logo-link img {
    height: 80px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
  }
  .nav__logo-sep {
    display: block;
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
  }
  .nav__cta {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 3px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background var(--ease);
    white-space: nowrap !important;
    word-break: keep-all !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
  }
  .nav__cta-br { display: none; }
  .nav__cta:hover { background: var(--red-dark); }

  /* ── ヒーロー ── */
  .hero {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }
  .hero__left {
    padding: 64px 56px 64px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
  }
  .hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-light);
    color: var(--red);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
    width: fit-content;
  }
  .hero__title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
  }
  .hero__title span { color: var(--red); }
  .hero__desc {
    font-size: 16px;
    color: var(--ink-mid);
    line-height: 2;
    margin-bottom: 36px;
    max-width: 460px;
  }
  .hero__stats-label {
    font-size: 13px;
    color: var(--ink-mid);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.8;
  }
  .hero__stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .hero__stat {
    border-left: 3px solid var(--red);
    padding-left: 12px;
  }
  .hero__stat-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 3px;
  }
  .hero__stat-label {
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
  }

  /* ヒーロー右：写真 */
  .hero__right {
    position: relative;
    overflow: hidden;
  }
  .hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── セクション共通 ── */
  .section-wrap {
    padding: 72px 64px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.35;
  }
  .divider {
    width: 40px;
    height: 3px;
    background: var(--red);
    margin-bottom: 32px;
  }

  /* ── 提携セクション ── */
  .partner-bg {
    background: var(--white);
    border-top: 3px solid var(--red);
    border-bottom: 1px solid var(--border);
  }
  .partner-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  /* パートナーロゴ */
  .partner-logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    margin-top: 8px;
  }
  .partner-logo-group a {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.2s ease;
  }
  .partner-logo-group a:hover { opacity: 0.75; }
  .partner-logo-img {
    height: 56px;
    width: auto;
    display: block;
  }
    margin-top: 8px;
  }
  .partner-body p {
    font-size: 16px;
    color: var(--ink-mid);
    line-height: 2;
    margin-bottom: 14px;
  }
  .partner-body p:last-child { margin-bottom: 0; }

  /* ── ７つの習慣とは ── */
  .about-bg {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 56px;
    align-items: center;
  }
  .about__body {
    font-size: 16px;
    color: var(--ink-mid);
    line-height: 2;
    margin-bottom: 20px;
  }
  .about__nums {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .about__num-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    border-radius: 3px;
    padding: 14px 16px;
    text-align: center;
  }
  .about__num-val {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
  }
  .about__num-label {
    font-size: 11px;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  /* ── 書籍表紙（実画像） ── */
  .book-visual { display: flex; justify-content: center; align-items: center; }
  .book-cover-wrap {
    position: relative;
    width: 200px;
    flex-shrink: 0;
  }
  .book-cover-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px 8px 8px 3px;
    box-shadow: -5px 8px 24px rgba(0,0,0,0.22), 2px 2px 6px rgba(0,0,0,0.1);
  }
  .book-cover-badge {
    position: absolute;
    top: -12px;
    right: -14px;
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(192,22,28,0.4);
  }


  /* ── 3つのポイント ── */
  .points-bg { background: var(--white); border-bottom: 1px solid var(--border); }
  .points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .point-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    border-radius: 3px;
    padding: 28px 24px;
    transition: border-color var(--ease);
  }
  .point-card:hover { border-color: var(--red); }
  .point-num {
    font-size: 13px;
    color: var(--red);
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .point-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .point-body {
    font-size: 16px;
    color: var(--ink-mid);
    line-height: 1.9;
  }

  /* ── プログラム概要 ── */
  .program-bg { background: var(--bg); border-bottom: 1px solid var(--border); }

  /* セクションタイトル 装飾ドット */
  .section-title-decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
  }
  .section-title-decorated::before,
  .section-title-decorated::after {
    content: '';
    display: inline-flex;
    gap: 4px;
    width: 36px;
    height: 6px;
    background-image: radial-gradient(circle, var(--red) 2px, transparent 2px);
    background-size: 8px 6px;
    background-repeat: repeat-x;
    flex-shrink: 0;
  }
  .section-subtitle-center {
    text-align: center;
    font-size: 16px;
    color: var(--ink-mid);
    margin-bottom: 48px;
  }

  .program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* 詳細カード */
  .prog-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .prog-card-header {
    background: var(--red);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .prog-card-header svg { flex-shrink: 0; }
  .prog-card-header-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
  }
  .prog-card-body { padding: 0; }
  .program-row {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .program-row:last-child { border-bottom: none; }
  .program-row__label {
    background: var(--bg);
    color: var(--ink-mid);
    font-size: 14px;
    font-weight: 500;
    flex: 0 0 88px;
    padding: 13px 14px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
  }
  .program-row__val {
    color: var(--ink);
    flex: 1;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .price-row {
    background: var(--red-light);
    border-top: 1px solid #e8bfbf;
    padding: 16px 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .price-highlight__num {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--red);
  }
  .price-highlight__note { font-size: 13px; color: var(--ink-soft); }

  /* 習慣マップカード */
  .habit-map {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
  }
  .habit-map-header {
    background: var(--red);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .habit-map-header-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
  }
  .habit-map-body { padding: 22px; }
  .habit-map-img-wrap {
    text-align: center;
    margin-bottom: 16px;
  }
  .habit-map-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: inline-block;
  }
  .habit-map-desc {
    font-size: 13px;
    color: var(--ink-mid);
    line-height: 1.85;
  }
  .habit-map__title {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .habit-phase { margin-bottom: 18px; }
  .habit-phase:last-child { margin-bottom: 0; }
  .habit-phase__label {
    font-size: 14px;
    color: var(--red);
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .habit-phase__label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }
  .habit-phase__items { display: flex; flex-wrap: wrap; gap: 6px; }
  .habit-tag {
    background: var(--red-light);
    border: 1px solid #e8bfbf;
    border-radius: 2px;
    padding: 4px 10px;
    font-size: 13px;
    color: var(--red);
  }

  /* ── スケジュール ── */
  .schedule-bg { background: var(--white); border-bottom: 1px solid var(--border); }
  .schedule-note {
    font-size: 16px;
    color: var(--ink-mid);
    margin-bottom: 32px;
    margin-top: -24px;
  }
  .schedule-sub {
    margin-top: 20px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .program-days-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .program-day {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .program-day__header {
    background: var(--navy);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .day-badge {
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .program-day__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 700;
  }
  .program-day__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .program-module {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .program-module:last-child { padding-bottom: 0; border-bottom: none; }
  .module-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.5;
  }
  .module-desc {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.8;
  }
  .module-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .module-list li {
    font-size: 14px;
    color: var(--ink-mid);
    padding-left: 12px;
    position: relative;
    line-height: 1.6;
  }
  .module-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--red);
  }
  .program-module--closing .module-label { color: var(--red); }

  /* ── キャンペーンCTAセクション ── */
  .campaign-bg {
    background: var(--bg);
    border-top: 1px solid var(--border);
  }
  .campaign-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 88px 64px;
    text-align: center;
  }

  /* 提携バッジ */
  .campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(192,22,28,0.35);
    background: var(--red-light);
    color: var(--red);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 28px;
  }
  .campaign-badge-dot {
    width: 5px; height: 5px;
    background: var(--red);
    border-radius: 50%;
  }

  /* 見出し */
  .campaign-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
  }

  /* サブテキスト */
  .campaign-subtitle {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 2;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 仕切り線 */
  .campaign-rule {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 32px;
    opacity: 0.4;
  }

  /* 本文 */
  .campaign-body {
    font-size: 16px;
    color: var(--ink-mid);
    line-height: 2.1;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .campaign-body p { margin-bottom: 16px; }
  .campaign-body p:last-child { margin-bottom: 0; }

  /* 3カラム カードグリッド */
  .campaign-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }
  .campaign-card {
    background: var(--white);
    border: 1.5px solid var(--red);
    border-radius: 3px;
    padding: 32px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: box-shadow var(--ease);
  }
  .campaign-card:hover {
    box-shadow: 0 4px 16px rgba(192,22,28,0.1);
  }
  .campaign-card__icon {
    width: 36px; height: 36px;
    background: var(--red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .campaign-card__text {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.75;
    flex: 1;
  }
  .campaign-card__text strong {
    color: var(--red);
    font-weight: 500;
  }
  .campaign-card__arrow {
    align-self: flex-end;
    color: var(--red);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
  }

  /* クーポン帯 */
  .coupon-strip {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 36px;
  }
  .coupon-strip__left {
    background: var(--red);
    padding: 14px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }
  .coupon-strip__label {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
  }
  .coupon-strip__code {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.12em;
  }
  .coupon-strip__right {
    background: var(--white);
    padding: 14px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
  }
  .coupon-strip__discount {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--red);
  }
  .coupon-strip__note {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    text-align: left;
  }

  /* CTAボタン */
  .campaign-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-bottom: 14px;
  }
  .campaign-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .campaign-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--red);
    background: transparent;
    color: var(--red);
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 40px;
    border-radius: 999px;
    transition: background var(--ease), color var(--ease), transform var(--ease);
  }
  .campaign-btn:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-1px);
  }
  /* 塗りつぶし：お申込みボタン */
  .campaign-btn--primary {
    background: var(--red) !important;
    color: var(--white) !important;
    border-color: var(--red) !important;
  }
  .campaign-btn--primary:hover {
    background: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
  }
  .campaign-assurance {
    font-size: 14px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .campaign-assurance svg { flex-shrink: 0; }

  /* ── フッター ── */
  .footer {
    background: var(--navy);
    padding: 28px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .footer__supervision { font-size: 13px; color: rgba(255,255,255,0.6) !important; }
  .footer__copy { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer__links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .footer__links-label { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer__links-sep { font-size: 12px; color: rgba(255,255,255,0.2); }
  .footer__links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color var(--ease);
  }
  .footer__links a:hover { color: var(--white); }

  /* ── アニメーション ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero__kicker  { animation: fadeUp 0.5s ease 0.1s both; }
  .hero__title   { animation: fadeUp 0.5s ease 0.2s both; }
  .hero__desc    { animation: fadeUp 0.5s ease 0.3s both; }
  .hero__stats-label { animation: fadeUp 0.5s ease 0.35s both; }
  .hero__stats   { animation: fadeUp 0.5s ease 0.4s both; }

  /* ── レスポンシブ ── */
  @media (max-width: 860px) {
    .nav { padding: 0 12px; height: 70px !important; }
    .nav__logo { gap: 8px; }
    body.lp-7habits header .nav__logo a img,
    body.lp-7habits header .nav__logo .nav__logo-link img,
    .nav__logo-link img { height: 40px !important; width: auto !important; max-width: none !important; max-height: none !important; }
    .nav__logo-sep { height: 20px; }
    .nav__cta {
      white-space: normal !important;
      font-size: 11px !important;
      padding: 6px 10px !important;
      text-align: center !important;
      line-height: 1.4 !important;
      letter-spacing: 0 !important;
      flex-shrink: 0 !important;
    }
    .nav__cta-br { display: inline !important; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero__left { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }
    .hero__right { height: 240px; }
    .section-wrap { padding: 56px 24px; }
    .campaign-inner { padding: 56px 24px; }
    .campaign-cards { grid-template-columns: 1fr; }
    .coupon-strip { flex-direction: column; }
    .campaign-inner { text-align: left; }
    .campaign-inner .section-title-decorated { justify-content: flex-start; }
    .campaign-inner .section-subtitle-center { text-align: left; margin-left: 0; margin-right: 0; }
    .campaign-body { text-align: left; margin-left: 0; margin-right: 0; }
    .campaign-cta-wrap { align-items: flex-start; }
    .coupon-strip__right { text-align: left; }
    div[style*="justify-content:center"] { justify-content: flex-start !important; }
    .partner-inner { grid-template-columns: 1fr; gap: 24px; }
    .about-grid { grid-template-columns: 1fr; }
    .book-visual { order: -1; }
    .points-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .program-days-wrap { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .footer { padding: 24px; }
  }