    :root {
      --bg-burgundy: #600016;
      --accent-blue: #82B6FF;
      --text-cream: #FCF6F0;

      --about-bg: #FCF6F0;

      --program-bg-top: #E7F2FF;
      --program-bg-bottom: #FBF5EF;
      --program-card-bg: #FCF6F0;
      --program-text: #1F1F1F;
      --program-muted: #555555;

      --benefits-light: #E6F1FF;
      --benefits-dark: #650015;
    }

    html {
      font-size: calc(100vw / 1440 * 10);
      scroll-behavior: smooth;
    }

    @media (max-width: 768px) {
      html { font-size: calc(100vw / 390 * 10); }
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      padding: 0;
      background: var(--bg-burgundy);
      color: var(--text-cream);
       font-family: "Sansation", -apple-system, BlinkMacSystemFont;
      font-size: 1.4rem;
      transition: background 0.2s ease;
    }

    body.no-scroll { overflow: hidden; }

    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; }

    .page-wrapper { min-height: 100vh; overflow: hidden; }

    .about,
    .program,
    .benefits,
    .pricing,
    .reviews,
    .signup,
    .site-footer {
      font-family: "Sansation", -apple-system, BlinkMacSystemFont, system-ui;
      font-weight: 300;
      font-style: normal;
    }

    .about h2, .about h3,
    .program h2, .program h3,
    .benefits h2, .benefits h3,
    .pricing h2, .pricing h3,
    .reviews h2, .reviews h3,
    .signup h2, .signup h3,
    .site-footer h2, .site-footer h3 {
      font-family: "Sansation", -apple-system, BlinkMacSystemFont;
      font-weight: 400;
      font-style: normal;
    }

    .tariff-name,
    .tariff-subtitle,
    .signup-label,
    .reviews-count,
    .footer-title,
    .footer-cta {
      font-family: "Sansation", -apple-system, BlinkMacSystemFont,  system-ui;
    }

    .site-header {
      width: 100vw;
      padding: 6.1rem 6rem 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      z-index: 20;
      margin-bottom: 1.5rem;
    }

    .main-nav {
      display: flex;
      gap: 2.8rem;
      font-size: 1.4rem;
      letter-spacing: 0.03em;
    }

    .nav-link {
      position: relative;
      padding-bottom: 0;
      color: rgba(252, 246, 240, 0.6);
      transition: color 0.25s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 0;
      background: transparent;
    }

    .nav-link:hover { color: var(--text-cream); }

    .nav-link.active {
      font-weight: 400;
      color: var(--text-cream);
    }

    .header-socials {
      position: absolute;
      right: 6rem;
      display: flex;
      align-items: center;
      gap: 1.4rem;
    }

    .header-socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.2rem;
      height: 2.2rem;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .header-socials img { max-width: 100%; display: block; }

    .header-socials a:hover {
      transform: translateY(-0.1rem);
      opacity: 0.8;
    }

    .burger {
      display: none;
      margin-left: auto;
      width: 3.6rem;
      height: 2.2rem;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      position: relative;
      z-index: 30;
    }

    .burger-line {
      position: absolute;
      left: 0;
      width: 100%;
      height: 0.2rem;
      background: var(--text-cream);
      border-radius: 999px;
      transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
    }

    .burger-line:nth-child(1) { top: 0; }
    .burger-line:nth-child(2) { top: 1rem; }
    .burger-line:nth-child(3) { bottom: 0; }

    .burger.is-open .burger-line:nth-child(1) { top: 1rem; transform: rotate(45deg); }
    .burger.is-open .burger-line:nth-child(2) { opacity: 0; }
    .burger.is-open .burger-line:nth-child(3) { bottom: auto; top: 1rem; transform: rotate(-45deg); }

    .top-divider {
      width: 100vw;
      border: none;
      margin: 0 0 0.4rem;
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--bg-burgundy);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 7rem 2.4rem 3rem;
      gap: 3rem;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-1rem);
      transition: opacity 0.25s ease, transform 0.25s ease;
      z-index: 25;
    }

    .mobile-menu.is-open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: none;
      border: none;
      color: var(--text-cream);
      font-size: 3rem;
      line-height: 1;
      cursor: pointer;
    }

    .mobile-menu-nav {
      display: flex;
      flex-direction: column;
      gap: 1.6rem;
      font-size: 1.8rem;
    }

    .mobile-menu-nav a {
      padding-bottom: 0.4rem;
      border-bottom: 0.1rem solid rgba(252, 246, 240, 0.25);
    }

    .mobile-menu-socials {
      margin-top: auto;
      display: flex;
      justify-content: flex-start;
      gap: 1.8rem;
    }

    .mobile-menu-socials img { display: block; }

    .hero {
      width: 100vw;
      padding: 4.2rem 6rem 0rem;
      position: relative;
    }

    .hero-title {
      margin: 0 0 2rem;
      font-family: "Sansation Light", system-ui, sans-serif;
      font-weight: 300;
      font-style: italic;
      font-size: 14rem;
      line-height: 1.02;
      letter-spacing: 0.04em;
      text-align: center;
    }

    .hero-text-mobile {
      display: none;
      max-width: 34rem;
      margin: 0 auto 2.4rem;
      font-size: 1.6rem;
      line-height: 1.5;
      text-align: center;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.4rem 3.2rem;
      border-radius: 999rem;
      border: none;
      background: var(--accent-blue);
      color: #fff;
      font-size: 1.4rem;
      font-weight: 400;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      white-space: nowrap;
    }

    .hero-btn-mobile { display: none; margin: 0 auto 3rem; }

    .hero-grid {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) auto minmax(0, 0.9fr);
      column-gap: 4rem;
      align-items: stretch;
    }

    .hero-left {
      max-width: 36rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding-bottom: 7rem;
      margin-top: 0;
      align-items: flex-start;
    }

    .hero-left-text {
      font-size: 2.4rem;
      line-height: 120%;
     align-content margin: 0 0 3.2rem; 
		    font-weight: 300;
    }

    .hero-btn-desktop { display: inline-flex; }

    .hero-photo-wrap {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      z-index: 2;
      margin-top: -4.6rem;
    }

    .hero-photo {
         width: clamp(32rem, 25vw, 44rem);
    height: auto;
    display: block;
    margin-top: 2rem !important;
    }

    .hero-right {
      font-size: 2.4rem;
      line-height: 120%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
		 
    }

    .hero-right-line {
      margin: 0;
      white-space: nowrap;
          font-family: "Sansation", -apple-system, BlinkMacSystemFont;

      font-size: 2.4rem;
      font-weight: 300;
    }

    .hero-right-line + .hero-right-line { margin-top: 0.4rem; }

    .hero-decor {
      position: absolute;
      right: 3rem;
      bottom: 3rem;
      width: clamp(18rem, 19vw, 24rem);
      opacity: 0.9;
      z-index: 1;
    }

    .hero-decor img {
      width: 100%;
      display: block;
      margin-left: 4rem;
      margin-bottom: -5rem;
    }

    .about {
      width: 100vw;
      background: var(--about-bg);
      color: #222222;
      padding: 5rem 6rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .about-inner { width: 100%; margin: 0; }

    .about-top {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      column-gap: 5rem;
      align-items: start;
    }

    .about-heading {
      font-size: 5rem;
      margin: 0 0 2rem;
      color: #141414;
    }

    .about-text { font-size: 1.6rem; line-height: 1.6; z-index:2; }

    .about-text p {
      margin: 0 0 1.2rem;
      font-size: 2.3rem;
      line-height: 120%;
      font-weight: 300;
    }

    .about-text p:last-child { margin-bottom: 0; }

    .about-photo-main { justify-self: end; z-index: 22; position: relative; }

    .about-photo-main img {
      display: block;
      width: 50rem;
      max-width: 100%;
      border-radius: 0.6rem;
    }

    .about-bottom {
      position: relative;
      margin-top: 3rem;
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 3rem;
      align-items: end;
    }

    .about-photo-small { position: relative; z-index: 2; }

    .about-photo-small img {
      display: block;
      width: 25rem;
      max-width: 100%;
      border-radius: 0.6rem;
      
    }

    .about-line {
      position: absolute;
      left: -6rem;
      bottom: 0.2rem;
      width: calc(100vw + 12rem);
      z-index: 1;
      pointer-events: none;
    }

    .about-line img { width: 100%; display: block; }

    .about-themes {
      justify-self: end;
      max-width: 47rem;
      z-index: 2;
    }

    .about-themes-title { font-size: 2.2rem; margin: 0 0 1.2rem; font-weight: 500; }

    .about-themes-text { font-size: 2.2rem; line-height: 120%; margin: 0; }

    .about-mobile { display: none; }
    .about-mobile-collage { display: none; }
    .about-mobile-themes { display: none; }

    .program {
      width: 100vw;
      background: linear-gradient(180deg, var(--program-bg-top) 0%, var(--program-bg-bottom) 100%);
      color: var(--program-text);
      padding: 6rem 6rem 7rem;
    }

    .program-inner { width: 100%; }

    .program-title {
      margin: 0 auto 4rem;
      text-align: center;
      font-size: 3.4rem;
      line-height: 1.3;
      font-weight: 400;
    }

    .program-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.05fr);
      column-gap: 4.2rem;
      align-items: stretch;
    }

    .program-photo-card { border-radius: 2.4rem; align-self: flex-start; z-index: 11; }
    .program-photo-card img { display: block; width: 100%; border-radius: 10px; }

    .program-content { display: flex; flex-direction: column; gap: 1.8rem; }

    .program-intro {
      position: relative;
      background: var(--program-card-bg);
      border-radius: 10px;
      padding: 2.3rem 2.3rem;
      font-size: 2.2rem;
      line-height: 120%;
      color: var(--program-muted);
    }

    .program-intro b { color: var(--program-text); }

    .program-clip {
      position: absolute;
      right: -3.2rem;
      top: -1.2rem;
      width: 9rem;
      pointer-events: none;
    }

    .program-clip img { width: 100%; display: block; }

    .accordion { display: flex; flex-direction: column; gap: 1.2rem; }

    .accordion-item {
      background: var(--program-card-bg);
      border-radius: 10px;
      padding: 1.8rem 2.4rem;
      color: var(--program-text);
      box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.04);
    }

    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.6rem;
      cursor: pointer;
      font-size: 2.2rem;
    }

    .accordion-title { flex: 1; }

    .accordion-arrow { width: 2rem; height: 2rem; position: relative; flex-shrink: 0; }

    .accordion-arrow::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 1rem;
      height: 1rem;
      border-right: 0.16rem solid var(--program-text);
      border-bottom: 0.16rem solid var(--program-text);
      transform: translate(-50%, -60%) rotate(45deg);
      transition: transform 0.2s ease;
    }

    .accordion-item.is-open .accordion-arrow::before {
      transform: translate(-50%, -40%) rotate(-135deg);
    }

    .accordion-body {
      font-size: 2.2rem;
      line-height: 1.6;
      margin-top: 1.4rem;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.25s ease, opacity 0.25s ease;
    }

    .accordion-item.is-open .accordion-body { max-height: 50rem; opacity: 1; }

    .accordion-list { margin: 0.6rem 0 0; padding: 0; list-style: none; }
    .accordion-list li { margin-bottom: 0.4rem; }
    .accordion-list li:last-child { margin-bottom: 0; }

    .benefits {
      width: 100vw;
      background: #FCF6F0;
      padding: 5.5rem 6rem 7rem;
      position: relative;
      overflow: visible;
    }

    .benefits-bg { position: absolute; pointer-events: none; z-index: 0; }
    .benefits-bg-left { top: -18rem; left: 0; width: 62rem; }
    .benefits-bg-right { bottom: 4rem; right: -77rem; width: 100%; }
    .benefits-bg img { width: 100%; display: block; }

    .benefits-inner { position: relative; z-index: 1; width: 100%; }

    .benefits-title {
      margin: 0 0 4rem;
      text-align: center;
      font-size: 4rem;
      color: #111;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      column-gap: 3.4rem;
      row-gap: 5rem;
      justify-items: center;
    }

    .benefits-card {
      position: relative;
      max-width: 40rem;
      width: 100%;
      padding: 2.4rem 2.4rem;
      border-radius: 10px;
      box-shadow: 0 1.8rem 3.8rem rgba(0, 0, 0, 0.14);
      font-size: 2.2rem;
      line-height: 140%;
      color: #111;
    }

    .benefits-card--light { background: var(--benefits-light); }
    .benefits-card--dark { background: var(--benefits-dark); color: #fff; }

    .benefits-clip {
      position: absolute;
      top: -1.2rem;
      right: -3rem;
      width: 7.4rem;
      pointer-events: none;
    }

    .benefits-clip img { width: 100%; display: block; }
    .benefits-card-text { margin: 0; }

    .benefits-card:nth-child(1) { transform: rotate(-4deg); }
    .benefits-card:nth-child(2) { transform: rotate(3deg); }
    .benefits-card:nth-child(3) { transform: rotate(-3deg); }
    .benefits-card:nth-child(4) { transform: rotate(-4deg); }
    .benefits-card:nth-child(5) { transform: rotate(3deg); }
    .benefits-card:nth-child(6) { transform: rotate(-3deg); }

    .pricing {
      width: 100vw;
      background: #FCF6F0;
      padding: 6rem 6rem 8rem;
    }

    .pricing-inner { width: 100%; }

    .pricing-title {
      margin: 0 0 1.6rem;
      text-align: center;
      font-size: 4rem;
      color: #111;
    }

    .pricing-subtitle {
      max-width: 72rem;
      margin: 0 auto 4.4rem;
      text-align: center;
      font-size: 2.2rem;
      line-height: 120%;
      color: #555;
    }

    .tariff-list { display: flex; flex-direction: column; gap: 3.6rem; }
    .tariff { width: 100%; }

    .tariff-layout { position: relative; margin: 0 auto; }
    .tariff-bg { position: relative; }

    .tariff-bg img {
      display: block;
      width: 100%;
      height: auto;
      pointer-events: none;
      user-select: none;
    }

    .tariff-bg--mobile { display: none; }

    .tariff-content {
      position: absolute;
      inset: 0;
      padding: 3.4rem 4.4rem 3.6rem;
      display: flex;
      align-items: stretch;
      justify-content: flex-start;
      pointer-events: none;
    }

    .tariff-inner {
      max-width: 58%;
      display: flex;
      flex-direction: column;
      pointer-events: auto;
      color: #000;
    }

    .tariff--dark .tariff-inner { color: #fff; }

    .tariff-name {
      margin: 0 0 1.2rem;
      font-size: 3.5rem;
      font-weight: 400;
    }

    .tariff-desc {
      margin: 0 0 1.6rem;
      font-size: 2.4rem;
      line-height: 120%;
    }

    .tariff-subtitle {
      margin: 0 0 0.8rem;
      font-size: 2.2rem;
      font-weight: 600;
    }

    .tariff-bullets {
      margin: 0;
      padding-left: 0;
      list-style: none;
      font-size: 2.2rem;
      line-height: 120%;
    }

    .tariff-bullets li { margin-bottom: 0.2rem; }

    .tariff-bottom {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 2.8rem;
      justify-content: space-between;
    }

    .tariff-price { font-size: 5rem; font-weight: 700; }

    .tariff-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.4rem 3.6rem;
      border-radius: 9999px;
      border: none;
      background: #00000000;
      color: #000;
      font-size: 3.5rem;
      font-weight: 700;
      cursor: pointer;
      font-style: italic;
      white-space: nowrap;
    }

    .reviews {
      width: 100vw;
      background: #FCF6F0;
      padding: 6rem 6rem 7.5rem;
    }

    .reviews-inner {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
      column-gap: 5rem;
      align-items: flex-start;
    }

    .reviews-left {
      display: flex;
      flex-direction: column;
      gap: 4rem;
      align-items: flex-start;
      margin-top: 0.8rem;
    }

    .reviews-title { margin: 0; font-size: 3.2rem; color: #111; }
    .reviews-count { font-size: 6.4rem; font-weight: 300; color: #111; }

    .reviews-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.4rem 3.4rem;
      border-radius: 9999px;
      border: none;
      background: var(--accent-blue);
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      white-space: nowrap;
    }

    .reviews-right { display: flex; flex-direction: column; gap: 2.4rem; }

    .reviews-slider { overflow: hidden; width: 100%; }
    .reviews-track { display: flex; transition: transform 0.35s ease; will-change: transform; }

    .reviews-page { min-width: 100%; padding-left: 1.2rem; }

    .review-card { padding: 2.4rem 0 2.4rem; border-top: 0.1rem solid rgba(0, 0, 0, 0.18); }

    .review-stars { display: flex; gap: 0.4rem; margin-bottom: 2.4rem; }
    .review-stars img { width: 1.8rem; height: 1.8rem; display: block; }

    .review-name {
      margin: 0 0 1.8rem;
      font-size: 1.8rem;
      font-weight: 600;
      color: #111;
      font-family: "Sansation", sans-serif;
    }

    .review-text { margin: 0; font-size: 1.6rem; line-height: 150%; color: #555; }

    .reviews-controls {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding-left: 1.2rem;
      margin-top: 0.8rem;
    }

    .reviews-progress {
      flex: 1;
      height: 0.2rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .reviews-progress-inner {
      width: 50%;
      height: 100%;
      background: #111;
      border-radius: inherit;
      transition: width 0.3s ease;
    }

    .reviews-arrows { display: flex; align-items: center; gap: 1rem; }

    .reviews-arrow {
      width: 3.6rem;
      height: 3.6rem;
      border-radius: 50%;
      border: 0.1rem solid #111;
      background: #ffffff00;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .reviews-arrow--next { background: #111; color: #fff; }

    .reviews-arrow-icon { position: relative; width: 1.2rem; height: 1.2rem; }

    .reviews-arrow-icon::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 0.8rem;
      height: 0.8rem;
      border-right: 0.15rem solid currentColor;
      border-bottom: 0.15rem solid currentColor;
      transform: translate(-50%, -50%) rotate(135deg);
    }

    .reviews-arrow--next .reviews-arrow-icon::before {
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    .reviews-arrow:hover { transform: translateY(-0.1rem); }

    .signup {
      width: 100vw;
      background: #FCF6F0;
      padding: 0 6rem 0rem;
      position: relative;
      overflow: hidden;
    }

    .signup-line {
      position: absolute;
      left: -6rem;
      top: 0.2rem;
      width: calc(100vw + 12rem);
      pointer-events: none;
      z-index: 0;
    }

    .signup-line img { width: 100%; display: block; }

    .signup-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      column-gap: 5rem;
      align-items: center;
    }

    .signup-card {
      max-width: 58rem;
      background: #600016;
      color: #fff;
      border-radius: 15px;
      padding: 4rem;
     
    }

    .signup-title { margin: 0 0 1.2rem; font-size: 4.5rem; }

    .signup-subtitle {
      margin: 0 0 3rem;
      font-size: 2.2rem;
      line-height: 120%;
      color: rgba(255, 255, 255, 0.85);
      text-align: center;
    }

    .signup-form { margin: 0; }

    .signup-form-row { display: flex; gap: 2.4rem; margin-bottom: 2.2rem; }

    .signup-field { flex: 1; display: flex; flex-direction: column; }

    .signup-input,
    .signup-select,
    .signup-textarea {
      width: 100%;
      border: none;
      border-bottom: 0.1rem solid rgba(255, 255, 255, 0.6);
      background: transparent;
      padding: 0.4rem 0;
      font-size: 1.5rem;
      color: #fff;
      outline: none;
      font-family: inherit;
    }

    .signup-input::placeholder,
    .signup-textarea::placeholder { color: rgba(255, 255, 255, 0.6); }

    .signup-select {
      padding-right: 2.4rem;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      cursor: pointer;
    }

    .signup-select-wrap { position: relative; }

    .signup-select-wrap::after {
      content: "";
      position: absolute;
      right: 0.4rem;
      top: 50%;
      width: 0.8rem;
      height: 0.8rem;
      border-right: 0.14rem solid rgba(255, 255, 255, 0.8);
      border-bottom: 0.14rem solid rgba(255, 255, 255, 0.8);
      transform: translateY(-50%) rotate(45deg);
      pointer-events: none;
    }

    .signup-textarea { min-height: 5.2rem; resize: vertical; }

    .signup-submit-wrap { margin-top: 3rem; text-align: center; }

    .signup-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.6rem 3.8rem;
      border-radius: 9999px;
      border: none;
      background: #82B6FF;
      color: #fff;
      font-size: 1.6rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .signup-photo-wrap { display: flex; justify-content: center; align-items: center; }

    .signup-photo-inner { position: relative; border-radius: 1.6rem; overflow: hidden; }

    .signup-photo-inner img {
      display: block;
      width: clamp(36rem, 38vw, 51rem);
      height: auto;
      margin-bottom: 17rem;
    }

    .site-footer {
      width: 100vw;
      background: var(--bg-burgundy);
      color: var(--text-cream);
      padding: 4.8rem 6rem 3.4rem;
      border-top: 0.1rem solid rgba(252, 246, 240, 0.35);
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-title {
      margin: 0;
      font-style: italic;
      font-weight: 300;
      font-size: 4.6rem;
      letter-spacing: 0.04em;
    }

    .footer-right { display: flex; align-items: center; gap: 2.4rem; }

    .footer-socials { display: flex; align-items: center; gap: 1.4rem; }

    .footer-socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.2rem;
      height: 2.2rem;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .footer-socials img { max-width: 100%; display: block; }

    .footer-socials a:hover { transform: translateY(-0.1rem); opacity: 0.8; }

    .footer-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1.3rem 3.4rem;
      border-radius: 9999px;
      border: none;
      background: var(--accent-blue);
      color: #fff;
      font-size: 1.4rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .footer-nav {
      margin: 0 0 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 2.6rem;
      font-size: 1.4rem;
    }

    .footer-link {
      position: relative;
      padding-bottom: 0;
      color: rgba(252, 246, 240, 0.6);
      transition: color 0.2s ease;
    }

    .footer-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 0;
      background: transparent;
    }

    .footer-link:hover { color: var(--text-cream); }

    .footer-link.footer-link--active {
      font-weight: 400;
      color: var(--text-cream);
    }

    .footer-divider {
      border: none;
      border-top: 0.1rem solid rgba(252, 246, 240, 0.35);
      margin: 0 0 1.6rem;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 1.3rem;
      opacity: 0.9;
      gap: 2rem;
    }

    .footer-bottom-left { white-space: nowrap; }
    .footer-bottom-right { white-space: nowrap; }

    @media (max-width: 768px) {
		.edu-text{
			font-size: 13.5px;
		}
      .site-header {
        padding: 2rem 2rem 0rem;
        justify-content: space-between;
      }

      .main-nav { display: none; }
      .header-socials { display: none; }
      .burger { display: block; }
      .top-divider { margin-bottom: 0.2rem; }

      .hero { padding: 3.6rem 2rem 0rem; }

      .hero-title { font-size: 3.2rem; margin-bottom: 2.2rem; }

      .hero-text-mobile { display: block; }
      .hero-btn-mobile { display: inline-flex; }

      .hero-grid {
        margin-top: 3.2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .signup-photo-inner img {
        margin-bottom: 0rem;
      }

      .signup-photo-wrap {
        justify-content: center;
        display: none;
      }

      .hero-left, .hero-right { display: none; }

      .hero-photo-wrap { margin-top: 0; }

      .hero-photo {
        width: clamp(28rem, 81vw, 38rem);
        margin-top: -1rem !important;
      }

      .hero-decor img { display: none; }

      .hero-decor {
        right: 1.2rem;
        bottom: 2.4rem;
        width: 14rem;
        opacity: 0.7;
      }

      .about { padding: 2rem 2rem 2.4rem; }

      .about-top { grid-template-columns: 1fr; row-gap: 0; }

      .about-heading { font-size: 2rem; margin: 0 0 1.6rem; }

      .about-text p {
        margin: 0 0 1.2rem;
        font-size: 1.4rem;
        line-height: 120%;
      }

      .about-photo-main { display: none; }
      .about-bottom { display: none; }

      .about-mobile { display: block; }

      .about-mobile-collage {
        display: block;
        position: relative;
        width: 100%;
        height: 34rem;
        margin-top: 1.6rem;
        margin-bottom: 1.2rem;
      }

      .about-mobile-line {
        position: absolute;
        left: -12%;
        bottom: 4.8rem;
        width: 124%;
        height: auto;
        z-index: 1;
        pointer-events: none;
      }

      .about-mobile-main {
        position: absolute;
        right: -2.4rem;
        top: -0.8rem;
        width: 18.8rem;
        max-width: 72%;
        height: auto;
        z-index: 3;
        border-radius: 0.8rem;
      }

      .about-mobile-small {
        position: absolute;
        left: -1.2rem;
        bottom: 3.6rem;
        width: 16.2rem;
        max-width: 52%;
        height: auto;
        z-index: 2;
        border-radius: 0.8rem;
      }

      .about-mobile-themes {
        display: block;
        text-align: center;
        padding-bottom: 0.6rem;
        margin-top: -4rem;
      }

      .about-mobile-themes .about-themes-title {
        font-size: 1.6rem;
        margin: 0 0 0.8rem;
        color: #141414;
      }

      .about-mobile-themes .about-themes-text {
        font-size: 1.6rem;
        line-height: 120%;
        margin: 0 auto;
        max-width: 32rem;
        color: #141414;
      }

      .program { padding: 5rem 2rem 6rem; }
      .program-title { font-size: 1.8rem; margin-bottom: 3rem; }
      .program-grid { display: flex; flex-direction: column; gap: 3rem; }
      .program-content { order: 1; }
      .program-photo-card { order: 2; border-radius: 2rem; }
      .program-photo-card img { border-radius: 1.6rem; }
      .program-intro { padding: 2rem 1.8rem; font-size: 1.4rem; }
      .accordion-title { flex: 1; font-size: 1.4rem; }
      .accordion-list { font-size: 1.4rem; }
      .program-clip { right: 1.6rem; top: -1.4rem; width: 6rem; }
      .accordion-item { padding: 1.6rem 1.8rem; }

      .benefits { padding: 4.4rem 2rem 6rem; }
      .benefits-title { font-size: 1.8rem; margin-bottom: 3rem; }
      .benefits-grid { display: flex; flex-direction: column; gap: 3rem; }
      .benefits-card-text { margin: 0; font-size: 1.6rem; line-height: 120%; }
      .benefits-card { max-width: 100%; padding: 1rem 2rem; }
      .benefits-bg-left { top: -14rem; left: -6rem; width: 48rem; }
      .benefits-bg-right { bottom: -16rem; right: -10rem; width: 52rem; }

      .pricing { padding: 0.8rem 2rem 0.8rem; }
      .pricing-title { font-size: 1.8rem; }
      .tariff-name { font-size: 1.8rem; }
      .tariff-desc { margin: 0 0 1.6rem; font-size: 1.4rem; line-height: 120%; }
      .tariff-subtitle { margin: 0 0 0.8rem; font-size: 1.4rem; font-weight: 600; }
      .tariff-bullets { font-size: 1.4rem; line-height: 120%; }
      .tariff-price { font-size: 3rem; font-weight: 700; }
      .pricing-subtitle { margin-bottom: 3.4rem; font-size: 1.4rem; }
      .tariff-layout { max-width: 34rem; }
      .tariff-bg--desktop { display: none; }
      .tariff-bg--mobile { display: block; }
      .tariff-content { padding: 3rem 2.6rem 2.8rem; justify-content: flex-start; }
      .tariff-inner { max-width: 100%; }
      .tariff-bottom { margin-top: 2rem;   gap: 1.4rem; }
      .tariff-btn { width: 100%; justify-content: center; font-size: 1.8rem; }

      .reviews { padding: 5rem 2rem 6.5rem; }
      .reviews-inner { display: flex; flex-direction: column; gap: 3.6rem; }
      .reviews-left { align-items: flex-start; gap: 2rem; }
      .reviews-title { font-size: 2.4rem; }
      .reviews-count { font-size: 4.8rem; }
      .reviews-cta { width: 100%; justify-content: center; }
      .reviews-page { padding-left: 0; }
      .review-card { padding: 2rem 0 2.4rem; }
      .review-text { max-width: 100%; }
      .reviews-controls { padding-left: 0; margin-top: 0.4rem; }
      .reviews-progress { height: 0.24rem; }
      .reviews-arrow { width: 3.4rem; height: 3.4rem; }

      .signup { padding: 0 2rem 1rem; }
      .signup-line { left: -10%; top: 3rem; width: 120%; }
      .signup-inner { display: flex; flex-direction: column; gap: 3.2rem; padding-top: 4.6rem; }
      .signup-card { max-width: 100%; padding: 3rem 2rem 3.2rem; }
      .signup-title { font-size: 2.6rem; }
      .signup-subtitle { margin-bottom: 2.4rem; }
      .signup-form-row { flex-direction: column; gap: 1.6rem; margin-bottom: 1.8rem; }
      .signup-submit-wrap { margin-top: 2.6rem; }
      .signup-submit { width: 100%; justify-content: center; }
      .signup-photo-wrap { justify-content: center; }
      .signup-photo-inner img { width: clamp(24rem, 80vw, 30rem); }

      .site-footer { padding: 4rem 2rem 3rem; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 2.4rem; margin-bottom: 2.4rem; }
      .footer-title { font-size: 3.4rem; }
      .footer-right { width: 100%; justify-content: space-between; }
      .footer-cta { padding-inline: 2.4rem; }
      .footer-nav { gap: 1.8rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
    }

    .reviews-inner { align-items: stretch; }
    .reviews-left { height: 100%; }
    .reviews-left-bottom { margin-top: auto; }














/* ===== Buttons hover: opacity 0.7 ===== */
.hero-btn,
.tariff-btn,
.reviews-cta,
.footer-cta,
.signup-submit,
.reviews-arrow,
.mobile-close,
.burger {
  transition: opacity .2s ease;
}

.hero-btn:hover,
.tariff-btn:hover,
.reviews-cta:hover,
.footer-cta:hover,
.signup-submit:hover,
.reviews-arrow:hover,
.mobile-close:hover,
.burger:hover {
  opacity: .8;
}

/* щоб працювало на <a class="tariff-btn"> так само */
a.tariff-btn:hover {
  opacity: .7;
}

/* для клавіатури (корисно) */
.hero-btn:focus-visible,
.tariff-btn:focus-visible,
.reviews-cta:focus-visible,
.footer-cta:focus-visible,
.signup-submit:focus-visible,
.reviews-arrow:focus-visible,
.mobile-close:focus-visible,
.burger:focus-visible {
  opacity: .8;
}


.accordion-title.has-dot{
  display:flex;
  align-items:center;
  gap:12px; /* відступ між крапкою і текстом */
}

.accordion-title.has-dot::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#7aa9ff; /* постав свій колір */
  flex:0 0 8px;
}

/*  */
/* HEADER (щоб текст був по центру по висоті) */
.accordion-item{
  padding: 0 2.4rem;              /* тільки боки */
}

.accordion-header{
  padding: 1.8rem 0;              /* рівно зверху/знизу */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}


/* BODY — padding тільки коли відкрито */
.accordion-body{
  margin: 0;                      /* важливо */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;                     /* <-- закрито: НУЛЬ */
  transition: max-height .25s ease, opacity .25s ease, padding .25s ease;
}

.accordion-item.is-open .accordion-body{
  max-height: 50rem;
  opacity: 1;
  padding: 1.4rem 0 1.8rem;       /* <-- відкрито: з’являється */
}








/* Блог */


/* ===== BLOG (3 cards) ===== */
.home-blog{
  width:100%;
  background:#FCF6F0; /* як в попередніх світлих блоках */
  padding: 6rem 6rem 6rem;
  color:#111;
  font-family: "Sansation", -apple-system, BlinkMacSystemFont, system-ui;
}

.home-blog-inner{ width:100%; }

.home-blog-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 2rem;
  margin-bottom: 3.6rem;
}

.home-blog-title{
  margin:0;
  font-size: 4rem;
  font-weight: 400;
  color:#111;
}

.home-blog-more{
 display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 3.4rem;
    border-radius: 9999px;
    border: none;
    background: var(--accent-blue);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.home-blog-more:hover{ opacity:.7; }

.home-blog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 3.4rem;
}

.home-blog-card{
  display:block;
  background:#fff;
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 1.8rem 3.8rem rgba(0,0,0,.12);
  transition: transform .2s ease, opacity .2s ease;
}
.home-blog-card:hover{ transform: translateY(-.4rem); opacity:.9; }

.home-blog-thumb{
  width:100%;
  aspect-ratio: 16/9;
  background:#eee;
  overflow:hidden;
}
.home-blog-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.home-blog-thumb-placeholder{
  width:100%;
  height:100%;
  background: linear-gradient(135deg,#e9e9e9,#f5f5f5);
}

.home-blog-meta{
  padding: 2rem 2.2rem 2.4rem;
}

.home-blog-date{
  font-size: 1.4rem;
  opacity:.7;
  margin-bottom: .8rem;
}

.home-blog-card-title{
  font-size: 2.2rem;
  line-height: 120%;
  color:#111;
}

.home-blog-empty{
  font-size: 2rem;
  opacity:.7;
}

@media (max-width: 768px){
  .home-blog{ padding: 4.8rem 2rem 5.2rem; }
  .home-blog-title{ font-size: 2.4rem; }
  .home-blog-more{ padding: 1rem 2rem; font-size: 1.4rem; }
  .home-blog-grid{ grid-template-columns: 1fr; gap: 2.2rem; }
  .home-blog-card-title{ font-size: 1.8rem; }
}


@media (max-width: 768px) {
  .hero-btn-mobile{
    display: flex;              /* було inline-flex */
    width: fit-content;         /* щоб не розтягувалась */
    margin: 0 auto 3rem;        /* центрування */
  }
}

/*  */
/* Крапка зліва — тільки коли item відкритий */
.accordion-title{
  position: relative;
}

/* показуємо крапку лише в .is-open */
.accordion-item.is-open .accordion-title::before{
  content:"";
  position:absolute;
  left: -1.2rem;          /* зсув вліво (під себе піджени) */
  top: 50%;
  transform: translateY(-50%);
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: var(--accent-blue); /* або свій колір */
}

/* моб — трошки ближче */
@media (max-width: 768px){
  .accordion-item.is-open .accordion-title::before{
    left: -1.6rem;
    width: .7rem;
    height: .7rem;
  }
}
/* 2 */




.hero{
  position: relative;
}

.hero-start{
  position: absolute;
  left: 5.5rem;        
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
  pointer-events: none;
}

.hero-start-label{
  font-family: "Sansation", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  opacity: .9;
}

.hero-start-date{
  margin-top: 6px;
  font-family: "Sansation", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: .02em;
}

@media (max-width: 768px){
  .hero-start{
    position: static;
    transform: none;
    margin: 10px 0 12px;
    width: 100%;
    text-align: center;
    pointer-events: auto;
  }

  .hero-start-date{
    font-size: 22px;
  }
}











:root{
  --cream-box: #F6EFE8;   
  --brand-red: #7A1F2D;   
}

.program-start{
  margin: 2.125rem auto 3.25rem;
  width: max-content;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;

  padding: 1.875rem 3.5rem;
  border-radius: 1.625rem;

  background: var(--cream-box);
  border: 0.0625rem solid rgba(0,0,0,.10);
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.10);
}

.program-startss{
  margin: 0rem 0rem 2.125rem;
  width: max-content;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;

  padding: 1.875rem 3.5rem;      
  border-radius: 1.625rem;

  background: var(--cream-box);
  border: 0.0625rem solid rgba(0,0,0,.10);
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.10);
}

.program-start-label{
  font-family: "Sansation", sans-serif;
  font-size: 1.125rem;        
  font-weight: 500;
  color: rgba(0,0,0,.65);
}

.program-start-date{
  font-family: "Sansation", sans-serif;
  font-size: 2.75rem;            
  font-weight: 700;
  color: var(--brand-red);        
  letter-spacing: 0.0375rem;
  line-height: 1;
}

/* моб */
@media (max-width: 48rem){
  .program-start{
    margin: 1.375rem auto 2.125rem;
    padding: 1.375rem 1.75rem;
    border-radius: 1.375rem;
  }
  .program-start-label{ font-size: 1rem; }
  .program-start-date{ font-size: 2.125rem; }
}









:root{
  --cream-box: #F6EFE8;  
  --brand-red: #7A1F2D;  
}

.hero-start{
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 6px;

  padding: 18px 26px;  
  border-radius: 18px;

  background: var(--cream-box);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.hero-start-label{
  font-family: "Sansation", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0,0,0,.70);
}

.hero-start-date{
  font-family: "Sansation", sans-serif;
  font-size: 38px;        
  font-weight: 700;
  color: var(--brand-red); 
  line-height: 1;
  letter-spacing: .4px;
}
.hero-start--desktop{ display: none; }
.hero-start--mobile{ display: flex; }

/* ПК */
@media (min-width: 769px){
  .hero-start--mobile{ display: none; }
  .hero-start--desktop{
    display: flex;
    align-items: flex-start;
    margin: 18px 0 20px; 
  }
}

/* моб */
@media (max-width: 768px){
  .hero-start--mobile{
    margin: 18px auto 18px;
    align-items: center;
  }
}