/* custom.css - consolidated from inline <style> blocks in index.php on 2026-06-09 */

/* ===== block 1 ===== */
.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .hero-gradient {
            background: radial-gradient(circle at 70% 30%, #F0EBE3 0%, #FAF7F2 100%);
        }

/* ===== block 2 ===== */
@media (min-width: 768px) {
      .segments-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 960px !important;
      }
      .segments-grid > div {
        flex-direction: column;
      }
    }

/* ===== block 3 ===== */
body {
      min-height: max(884px, 100dvh);
      margin: 0;
      padding: 0;
    }
    /* Mobile-first базовые стили */
    .hero-photo-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      container-type: inline-size;
      display: flex;
      flex-direction: column;
    }
    .hero-photo {
      width: 100%;
      height: auto;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center 40%;
      display: block;
    }
    .hero-photo-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(44,24,16,0.65));
      padding: 40px 20px 20px;
    }
    .hero-photo-badges {
      position: static;
      z-index: 10;
      align-self: center;
      margin: 12px auto 4px;
      padding: 8px 18px;
      background: #FAF7F2;
      border: 1px solid #E3D5C8;
      border-radius: 999px;
      box-shadow: 0 2px 8px rgba(44,24,16,0.08);
      text-align: center;
    }
    @media (min-width: 768px) {
      .hero-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding: 0 16px;
        min-height: 560px;
        max-width: 1280px;
        margin: 0 auto;
      }
      .hero-content {
        width: 56%;
        padding: 48px 40px;
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .hero-photo-wrapper {
        width: 40%;
        position: relative;
        overflow: hidden;
        order: 2;
        align-self: center;
      }
      .hero-photo {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        object-position: center 30%;
        border-radius: 16px;
      }
      .hero-photo-caption {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        background: linear-gradient(transparent, rgba(44,24,16,0.65));
        padding: 40px 20px 20px;
      }
      .hero-photo-badges {
        gap: 8px;
      }
    }
  
    /* === Hero author block — full-width below hero-wrapper === */
    .hero-author-block {
      max-width: 1280px;
      margin: 0 auto;
      padding: 24px 20px 32px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .hero-author-name {
      font-family: 'Manrope', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: #2C1810;
      margin: 0 0 16px;
      letter-spacing: -0.01em;
    }

    .hero-author-trustbar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 16px 28px;
    }

    .hero-author-trustbar .trust-item {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
    }

    .hero-author-trustbar .trust-num {
      font-family: 'Manrope', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #6B2D5C;
      white-space: nowrap;
    }

    .hero-author-trustbar .trust-label {
      font-family: 'Manrope', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: rgba(44, 24, 16, 0.7);
      white-space: nowrap;
    }

    @media (max-width: 767px) {
      .hero-author-block {
        padding: 20px 16px 24px;
      }
      .hero-author-name {
        font-size: 18px;
        margin-bottom: 12px;
      }
      .hero-author-trustbar {
        gap: 10px 20px;
      }
      .hero-author-trustbar .trust-num {
        font-size: 16px;
      }
      .hero-author-trustbar .trust-label {
        font-size: 13px;
      }
    }

/* ===== block 4 ===== */
.segment-cta {
      display: block;
      width: 100%;
      padding: 14px 24px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      font-family: Manrope, sans-serif;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      margin-top: 8px;
      box-sizing: border-box;
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .segment-cta:active {
      transform: scale(0.97);
      box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    }
    .segment-cta-a {
      background: rgba(123,63,94,0.08);
      border: 1.5px solid #7B3F5E;
      color: #7B3F5E;
    }
    .segment-cta-b {
      background: rgba(200,168,75,0.08);
      border: 1.5px solid #C8A84B;
      color: #8B6A20;
    }
    .segment-cta-c {
      background: rgba(37,211,102,0.08);
      border: 1.5px solid #25D366;
      color: #1B7A3E;
    }

/* ===== block 5 ===== */
.fade-in-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* ===== block 6 ===== */
/* Hero banner (sprint-03 E) */
  .hero-banner-wrapper { width:100%; display:flex; justify-content:center; }
  .hero-banner { width:100%; max-width:480px; height:auto; display:block; border-radius:16px; }
  .hero-cta-row { display:flex; gap:12px; width:100%; max-width:440px; margin:4px auto 0; }
  .hero-btn { flex:1; padding:14px 16px; border-radius:10px; font-family:Manrope,sans-serif; font-size:15px; font-weight:700; text-align:center; text-decoration:none; box-sizing:border-box; display:flex; align-items:center; justify-content:center; line-height:1.2; cursor:pointer; }
  .hero-btn--date { background:#FAF7F2; border:1.5px solid #7B3F5E; color:#7B3F5E; }
  .hero-btn--primary { background:#7B3F5E; border:1.5px solid #7B3F5E; color:#fff; }
  .hero-cta-note { font-family:Manrope,sans-serif; font-size:12px; color:#8B6A50; margin:12px 0 0; max-width:440px; line-height:1.5; }
  @media (min-width:768px) {
    .hero-wrapper { flex-direction:column !important; align-items:center; min-height:auto; }
    .hero-content { width:100% !important; max-width:760px; }
    .hero-banner { max-width:520px; }
  }

/* ===== block 7 ===== */
.segment-comic {
  padding: 1.6rem 0;
  background: #FAF7F2;
}
.segment-comic .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.segment-comic__heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #2C1810;
  text-align: center;
  margin-bottom: 1.5rem;
}
.comic-subhead {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2C1810;
  text-align: center;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.comic-heading--green {
  font-size: 20px;
  color: #1B7A3E;
  text-transform: uppercase;
}
.segment-carousel-mobile {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}
.segment-carousel-mobile__track {
  display: flex;
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.segment-carousel-mobile__slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}
.segment-carousel-mobile__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.segment-carousel-mobile__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.segment-carousel-mobile__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(44, 24, 16, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.segment-carousel-mobile__dot[data-active="true"] {
  background: #7B3F5E;
}
@media (min-width: 769px) {
  .segment-carousel-mobile { display: none; }
}

/* Segment-C / Segment-B: desktop grid 4x2 -> 2x4 on narrow */
.segment-c-grid, .segment-b-grid, .segment-a-grid {
  display: none;
}
@media (min-width: 769px) {
  .segment-c-grid, .segment-b-grid, .segment-a-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
  }
  .segment-c-grid img, .segment-b-grid img, .segment-a-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(44, 24, 16, 0.08);
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .segment-c-grid, .segment-b-grid, .segment-a-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1101px) {
  .segment-a-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===== block 8 ===== */
.instructor-heading-bar {
    font-family: 'Manrope', sans-serif;
    font-size: 20px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: #C8A84B; text-align: center; margin-bottom: 24px;
  }
  .instructor-wrapper {
    max-width: 1280px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 24px;
  }
  .instructor-photo-col {
    width: 100%; max-width: 360px; margin: 0 auto;
  }
  .instructor-photo-col img {
    width: 100%; height: auto; border-radius: 16px; display: block;
  }
  .instructor-text-col {
    max-width: 560px; margin: 0 auto; text-align: left;
  }
  .instructor-creds {
    list-style: none; display: flex; flex-direction: column;
    gap: 12px; margin-bottom: 24px; padding: 0;
  }
  .instructor-creds li {
    display: flex; align-items: flex-start; gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px; line-height: 1.5; color: #6B5040;
  }
  .instr-check {
    flex-shrink: 0; width: 20px; height: 20px;
    background: #7B3F5E; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
  }
  .instr-check svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 2.5; fill: none; }
  .instructor-quote {
    background: #F0EBE3; border-left: 3px solid #7B3F5E;
    border-radius: 0 10px 10px 0; padding: 18px 20px; margin-bottom: 24px;
  }
  .instructor-quote p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px; font-style: italic; line-height: 1.65;
    color: #2C1810; margin-bottom: 10px;
  }
  .instructor-quote cite {
    font-family: 'Manrope', sans-serif;
    font-size: 12px; font-weight: 700; font-style: normal; color: #7B3F5E;
  }
  .instructor-cta {
    display: block; width: 100%; padding: 15px 20px;
    background: #7B3F5E; color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 700;
    text-align: center; border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.12s ease;
    box-sizing: border-box;
  }
  .instructor-cta:hover { background: #6B3050; transform: translateY(-1px); }
  .instructor-cta:active { transform: translateY(0); }
  @media (min-width: 768px) {
    .instructor-wrapper {
      flex-direction: row; align-items: center;
      gap: 40px; padding: 0 40px;
      min-height: 480px;
    }
    .instructor-photo-col {
      flex: 0 0 38%; max-width: none; margin: 0;
      order: 2;
    }
    .instructor-text-col {
      flex: 1; max-width: none; margin: 0;
      order: 1;
    }
  }

/* ===== block 9 ===== */
.reviews-wrap { max-width: 560px; margin: 0 auto; }
  .reviews-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 22px; font-weight: 700; text-align: center;
    color: #2C1810; margin-bottom: 6px; line-height: 1.3;
  }
  .reviews-subheading {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
    text-transform: uppercase; color: #8B6A50;
    text-align: center; margin-bottom: 28px;
  }
  .reviews-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
  .rv-card {
    background: #FAF7F2; border-radius: 14px; padding: 20px;
    border: 1.5px solid #EDE0D4;
  }
  .rv-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .rv-avatar {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.5px;
  }
  .rv-avatar--purple { background: #7B3F5E; }
  .rv-avatar--gold   { background: #C8A84B; }
  .rv-meta { flex: 1; }
  .rv-name {
    font-family: 'Manrope', sans-serif;
    font-size: 14px; font-weight: 700; color: #2C1810; line-height: 1.3;
  }
  .rv-city {
    font-family: 'Manrope', sans-serif;
    font-size: 12px; color: #8B6A50;
  }
  .rv-stars { color: #C8A84B; font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
  .rv-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px; line-height: 1.6; color: #6B5040;
  }
  .reviews-geo {
    background: #FAF7F2; border: 1.5px solid #EDE0D4; border-radius: 12px;
    padding: 14px 18px; text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 12px; color: #8B6A50; line-height: 1.6;
  }
  .reviews-geo strong { color: #2C1810; font-weight: 600; }

/* ===== block 10 ===== */
.program-section { max-width: 560px; margin: 0 auto; }
  .program-section .section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px; font-weight: 600; text-align: center;
    color: #7B3F5E; margin-bottom: 6px; line-height: 1.3;
  }
  .program-section .section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
    text-transform: uppercase; color: #8B6A50;
    text-align: center; margin-bottom: 24px;
  }
  .accordion { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
  .acc-item {
    background: #FAF7F2; border-radius: 12px; overflow: hidden;
    box-shadow: 0 1px 4px rgba(74,26,44,0.08);
    transition: box-shadow 0.2s ease;
  }
  .acc-item.is-open { box-shadow: 0 3px 12px rgba(74,26,44,0.14); }
  .acc-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 12px; padding: 16px 18px; cursor: pointer;
    user-select: none; -webkit-tap-highlight-color: transparent;
  }
  .acc-header:hover .acc-title { color: #7B3F5E; }
  .acc-header-left { flex: 1; }
  .acc-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 700; color: #2C1810;
    line-height: 1.35; margin-bottom: 8px; transition: color 0.15s;
  }
  .acc-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .badge-weeks {
    font-family: 'Manrope', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: #8B6A50;
    border: 1.5px solid #EDE0D4; border-radius: 20px;
    padding: 3px 10px; line-height: 1;
  }
  .acc-price {
    font-family: 'Manrope', sans-serif;
    font-size: 14px; font-weight: 700; color: #7B3F5E;
  }
  .acc-chevron {
    flex-shrink: 0; width: 20px; height: 20px; color: #8B6A50;
    transition: transform 0.25s ease; margin-top: 2px;
  }
  .is-open .acc-chevron { transform: rotate(180deg); }
  .acc-body { display: none; padding: 0 18px 18px; }
  .is-open .acc-body { display: block; }
  .acc-divider { height: 1px; background: #EDE0D4; margin-bottom: 14px; }
  .checklist {
    list-style: none; display: flex; flex-direction: column;
    gap: 9px; margin-bottom: 14px;
  }
  .checklist li {
    display: flex; align-items: flex-start; gap: 9px;
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px; line-height: 1.45; color: #6B5040;
  }
  .check-icon {
    flex-shrink: 0; width: 18px; height: 18px;
    background: #7B3F5E; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
  }
  .check-icon svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 2.5; fill: none; }
  .result-block {
    background: #F0EBE3; border-radius: 8px;
    padding: 11px 14px; display: flex; align-items: flex-start; gap: 8px;
  }
  .result-star { color: #C8A84B; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
  .result-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px; color: #6B5040; line-height: 1.5;
  }
  .result-label { font-weight: 700; color: #7B3F5E; }
  .panel-cta {
    display: block; width: 100%; margin-top: 14px; padding: 13px 20px;
    background: #7B3F5E; color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px; font-weight: 600;
    text-align: center; border: none; border-radius: 8px;
    cursor: pointer; text-decoration: none;
    transition: background 0.18s ease, transform 0.12s ease;
  }
  .panel-cta:hover { background: #6B3050; transform: translateY(-1px); }
  .panel-cta:active { transform: translateY(0); }
  .summary-card {
    background: #FAF7F2; border-radius: 14px; padding: 22px 20px;
    text-align: center;
    box-shadow: 0 3px 16px rgba(74,26,44,0.10);
    border: 1.5px solid #C8A84B;
  }
  .savings-badge {
    display: inline-block; background: #C8A84B; color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 700;
    border-radius: 20px; padding: 5px 14px; margin-bottom: 14px;
  }
  .summary-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px; font-weight: 600; color: #2C1810; margin-bottom: 10px;
  }
  .summary-old-price {
    font-family: 'Manrope', sans-serif;
    font-size: 15px; color: #8B6A50;
    text-decoration: line-through; margin-bottom: 6px;
  }
  .summary-price {
    font-family: 'Manrope', sans-serif;
    font-size: 32px; font-weight: 700; color: #2C1810; margin-bottom: 4px;
  }
  .summary-price span { font-size: 20px; vertical-align: super; font-weight: 600; }
  .summary-cta {
    display: block; width: 100%; margin-top: 18px; padding: 16px 20px;
    background: #7B3F5E; color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 600;
    text-align: center; border: none; border-radius: 8px;
    cursor: pointer; text-decoration: none;
    transition: background 0.18s ease, transform 0.12s ease;
  }
  .summary-cta:hover { background: #6B3050; transform: translateY(-1px); }
  .summary-note {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; color: #8B6A50; margin-top: 10px;
  }
  .couples-note {
    font-family: 'Manrope', sans-serif;
    font-size: 12px; color: #6B5040;
    background: #EDE0D4; border-radius: 6px;
    padding: 8px 12px; margin-top: 12px;
  }

/* ===== block 11 ===== */
.pricing-wrap { max-width: 560px; margin: 0 auto; }
  .pricing-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 22px; font-weight: 700; text-align: center;
    color: #2C1810; margin-bottom: 6px; line-height: 1.3;
  }
  .pricing-subheading {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
    text-transform: uppercase; color: #8B6A50;
    text-align: center; margin-bottom: 28px;
  }
  .pricing-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
  .pr-card {
    background: #fff; border-radius: 14px; padding: 32px 20px;
    position: relative;
  }
  .pr-card--featured {
    border: 2px solid #7B3F5E;
    box-shadow: 0 8px 32px rgba(74,26,44,0.12);
  }
  .pr-card--simple {
    border: 1.5px solid #EDE0D4;
  }
  .pr-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: #7B3F5E; color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; white-space: nowrap;
    border-radius: 20px; padding: 5px 16px;
    box-shadow: 0 2px 8px rgba(74,26,44,0.18);
  }
  .pr-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px; font-weight: 700; color: #2C1810; margin-bottom: 4px;
  }
  .pr-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 13px; color: #8B6A50; margin-bottom: 16px;
  }
  .pr-price-block { margin-bottom: 18px; }
  .pr-old-price {
    font-family: 'Manrope', sans-serif;
    font-size: 14px; color: #8B6A50;
    text-decoration: line-through; margin-bottom: 4px;
  }
  .pr-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
  .pr-price {
    font-family: 'Manrope', sans-serif;
    font-size: 30px; font-weight: 700; color: #2C1810;
  }
  .pr-savings {
    font-family: 'Manrope', sans-serif;
    font-size: 11px; font-weight: 700; color: #C8A84B;
    letter-spacing: 0.8px; text-transform: uppercase;
  }
  .pr-features {
    list-style: none; display: flex; flex-direction: column;
    gap: 10px; margin-bottom: 20px;
  }
  .pr-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px; line-height: 1.45; color: #6B5040;
  }
  .pr-check {
    flex-shrink: 0; width: 20px; height: 20px;
    background: #7B3F5E; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
  }
  .pr-check svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 2.5; fill: none; }
  .pr-check--gold { background: #C8A84B; }
  .pr-cta {
    display: block; width: 100%; padding: 15px 20px;
    background: #7B3F5E; color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 700;
    text-align: center; border-radius: 10px;
    text-decoration: none; letter-spacing: 0.3px;
    transition: background 0.18s ease, transform 0.12s ease;
    box-sizing: border-box;
  }
  .pr-cta:hover { background: #6B3050; transform: translateY(-1px); }
  .pr-cta:active { transform: translateY(0); }
  .pr-cta--outline {
    background: #FAF7F2; color: #7B3F5E;
    border: 2px solid #7B3F5E;
  }
  .pr-cta--outline:hover { background: #7B3F5E; color: #fff; }
  .pricing-installment {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px; color: #8B6A50; margin-bottom: 12px;
    text-align: center;
  }
  .pricing-couple {
    background: #F0EBE3; border-radius: 10px;
    padding: 14px 20px; text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 13px; font-weight: 600; color: #2C1810;
  }

/* ===== block 12 ===== */
.faq-wrap { max-width: 560px; margin: 0 auto; }
  .faq-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 22px; font-weight: 700; text-align: center;
    color: #2C1810; margin-bottom: 24px; line-height: 1.3;
  }
  .faq-list { display: flex; flex-direction: column; gap: 8px; }
  .faq-item {
    background: #FAF7F2; border-radius: 12px; overflow: hidden;
    box-shadow: 0 1px 4px rgba(74,26,44,0.07);
  }
  .faq-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 17px 18px; cursor: pointer;
    user-select: none; -webkit-tap-highlight-color: transparent;
    border: none; background: none; width: 100%; text-align: left;
  }
  .faq-question {
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 600; color: #2C1810; line-height: 1.4;
  }
  .faq-chevron {
    flex-shrink: 0; width: 20px; height: 20px; color: #8B6A50;
    transition: transform 0.25s ease;
  }
  .faq-item.is-open .faq-chevron { transform: rotate(180deg); }
  .faq-body { display: none; padding: 0 18px 16px; }
  .faq-item.is-open .faq-body { display: block; }
  .faq-divider { height: 1px; background: #EDE0D4; margin-bottom: 12px; }
  .faq-answer {
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px; line-height: 1.6; color: #8B6A50;
  }

/* ===== block 13 ===== */
.msg-wrap { max-width: 560px; margin: 0 auto; }
  .msg-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 22px; font-weight: 700; text-align: center;
    color: #2C1810; margin-bottom: 6px; line-height: 1.3;
  }
  .msg-subheading {
    font-family: 'Manrope', sans-serif;
    font-size: 12px; font-weight: 600; color: #8B6A50;
    text-align: center; margin-bottom: 28px;
  }
  .msg-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 15px 20px; box-sizing: border-box;
    background: #FAF7F2; border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 700; color: #2C1810;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.12s ease;
  }
  .msg-btn:active { transform: scale(0.98); }
  .msg-btn-wa  { border: 2px solid #25D366; margin-bottom: 12px; }
  .msg-btn-wa:hover  { background: rgba(37,211,102,0.05); }
  .msg-btn-tg  { border: 2px solid #229ED9; }
  .msg-btn-tg:hover  { background: rgba(34,158,217,0.05); }
  .msg-btn-ig  { border: 2px solid #C13584; }
  .msg-btn-ig:hover  { background: rgba(193,53,132,0.05); }
  .msg-row { display: flex; gap: 10px; margin-bottom: 24px; }
  .msg-row .msg-btn { flex: 1; font-size: 14px; }
  .msg-trust {
    font-family: 'Manrope', sans-serif;
    font-size: 12px; color: #8B6A50; text-align: center;
  }

/* ===== block 14 ===== */
/* === SECTION 13 — FOOTER === */
  .ft-section {
    background: #F0EBE3;
    border-top: 1px solid #EDE0D4;
    padding: 32px 20px 48px;
    font-family: 'Manrope', sans-serif;
  }
  .ft-logo { height: 36px; display: block; margin-bottom: 12px; }
  .ft-tagline {
    color: #6B5040;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 20px;
    line-height: 1.5;
  }
  .ft-nav { list-style: none; margin: 0 0 0; padding: 0; }
  .ft-nav a {
    color: #7B3F5E;
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    display: inline-block;
  }
  .ft-nav a:hover { text-decoration: underline; }
  .ft-copyright {
    color: #8B6A50;
    font-size: 12px;
    margin: 20px 0 0;
  }
  .ft-disclaimer {
    color: #B0A090;
    font-size: 11px;
    font-style: italic;
    max-width: 340px;
    margin: 16px 0 0;
    line-height: 1.6;
  }

/* ===== segment blocks (A/B/C shared structure) — pilot: segment-a ===== */
.seg { padding:48px 24px; }
.seg-inner { max-width:560px; margin:0 auto; }
.seg--purple { --seg-accent:#7B3F5E; --seg-bullet:#7B3F5E; background:#FAF7F2; }
.seg-kicker { font-size:22px; font-weight:700; color:#7B3F5E; text-transform:uppercase; letter-spacing:0.08em; margin:0 0 12px; font-family:Manrope,sans-serif; }
.seg-subhead { font-size:12px; text-transform:uppercase; letter-spacing:0.12em; font-weight:700; margin:0 0 20px; font-family:Manrope,sans-serif; line-height:1.4; color:#C8A84B; }
.seg-italic { font-size:14px; font-style:italic; color:#7B3F5E; line-height:1.6; margin:0 0 20px; font-family:Manrope,sans-serif; background:#FAF7F2; border-left:3px solid #7B3F5E; border-radius:0 8px 8px 0; padding:16px 20px; }
.seg-list { list-style:none; padding:0; margin:0 0 20px; display:flex; flex-direction:column; gap:12px; }
.seg-item { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:#6B5040; line-height:1.6; }
.seg-bullet { color:var(--seg-bullet); font-size:18px; line-height:1.4; flex-shrink:0; }
.seg-callout { background:#F0EBE3; border-left:3px solid var(--seg-accent); border-radius:0 8px 8px 0; padding:16px 20px; margin:0 0 24px; font-size:14px; color:#6B5040; line-height:1.6; }

/* ===== segment-b modifier + income box ===== */
.seg--gold { --seg-accent:#C8A84B; --seg-bullet:#C8A84B; background:#FBF8EE; }
.seg-incomebox { background:#FBF8EE; border:1.5px solid var(--seg-accent); border-radius:10px; padding:16px 20px; margin:0 0 24px; }
.seg-income-main { font-size:15px; font-weight:700; color:#2C1810; margin:0 0 6px; font-family:Manrope,sans-serif; }
.seg-income-sub { font-size:13px; color:#6B5040; margin:0; line-height:1.6; }
.seg-income-strong { color:#2C1810; }

/* ===== segment-c modifier + lead / chips / pull-quote ===== */
.seg--green { --seg-accent:#1B7A3E; --seg-bullet:#25D366; background:#F0FAF4; }
.seg-lead { font-size:14px; font-weight:700; color:#2C1810; line-height:1.6; margin:0 0 12px; font-family:Manrope,sans-serif; }
.seg-chips { display:flex; flex-wrap:wrap; gap:8px; margin:0 0 20px; }
.seg-chip { background:#E8F5E9; color:var(--seg-accent); border-radius:20px; padding:4px 12px; font-size:13px; font-family:Manrope,sans-serif; }
.seg-quote { background:#FAF7F2; border-left:3px solid var(--seg-bullet); border-radius:0 8px 8px 0; padding:16px 20px; margin:0; }
.seg-quote p { font-size:14px; font-style:italic; color:#2C1810; line-height:1.65; margin:0; font-family:Manrope,sans-serif; }

/* ===== program section divider ===== */
.prog-divider { display:flex; align-items:center; gap:12px; padding:8px 0; margin:4px 0; }
.prog-divider-line { flex:1; height:1px; background:#EDE0D4; }
.prog-divider-label { font-family:Manrope,sans-serif; font-size:22px; font-weight:600; letter-spacing:1.2px; text-transform:uppercase; color:#8B6A50; white-space:nowrap; }
@media (max-width:480px) {
  .prog-divider-label { font-size:15px; letter-spacing:0.6px; }
  .seg-kicker { font-size:17px; }
  .kick-22 { font-size:17px !important; }
}

/* ===== segment-B gallery: top padding -20% (scoped) ===== */
.segment-comic[data-segment="b"] { padding-top:1.28rem; }

/* ===== hero h1 — mobile 24px, desktop 48px, uppercase ===== */
#hero-h1 { font-size:24px; text-transform:uppercase; }
@media (min-width:768px) { #hero-h1 { font-size:48px; } }

/* ===== program accordion subtitle ===== */
.acc-subtitle { font-family:Manrope,sans-serif; font-size:13px; color:#8B6A50; line-height:1.55; margin:0 0 16px; }

/* ===== mobile menu ===== */
.mobile-menu {
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  transition: all 0.3s ease-out;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 40;
  padding-top: 12px;
}

.mobile-menu.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

/* ===== anchor scroll offset for sticky header ===== */
html {
  scroll-behavior: smooth;
}
section[id], div[id] {
  scroll-margin-top: 100px;
}
@media (min-width: 768px) {
  section[id], div[id] {
    scroll-margin-top: 0;
  }
}

/* Anchor scroll offset — jumps land below the sticky header */
html { scroll-padding-top: 88px; }
