    :root {
      --c-blue: #7DACDB;
      --c-blue-dark: #5591c9;
      --c-blue-mid: #5e9dce;
      --c-dark: #1D1D2E;
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Wix Madefor Text', sans-serif;
      background: #fff;
      color: var(--c-dark);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─── HEADER ─── */
    header {
      position: fixed; top: 0; left: 0; right: 0; width: 100%;
      z-index: 200;
      transition: transform .35s cubic-bezier(.22,1,.36,1);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0,0,0,.08);
    }
    body { padding-top: 72px; }
    #about, #services, #programs-cards, #reviews, #consultation, #faq { scroll-margin-top: 90px; }
    .header-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 60px;
      display: flex; align-items: center; height: 72px; gap: 0;
    }
    .logo { display:flex; align-items:center; flex-shrink:0; text-decoration:none; }
    .logo-img { height: 64px; width: auto; display:block; transition: transform .3s cubic-bezier(.22,1,.36,1); }
    .logo:hover .logo-img { transform: scale(1.05); }
    nav { margin-left: auto; margin-right: 24px; }
    nav ul { display:flex; gap:22px; align-items:center; list-style:none; }
    nav a {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size:14px; font-weight:500; color:var(--c-dark);
      text-decoration:none; position:relative; padding-bottom:2px;
      transition: color .2s;
      white-space: nowrap;
    }
    nav a::after {
      content:''; position:absolute; left:0; bottom:-1px;
      width:0; height:2px; background:var(--c-blue);
      border-radius:2px; transition:width .25s;
    }
    nav a:hover { color:var(--c-blue); }
    nav a:hover::after { width:100%; }
    .btn-cta {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size:14px; font-weight:600;
      background:var(--c-blue); color:#fff;
      padding:10px 22px; border-radius:40px;
      text-decoration:none;
      transition: background .2s, transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s;
      box-shadow: 0 4px 14px rgba(125,172,219,.35);
      white-space:nowrap;
    }
    .btn-cta:hover { background:#4e8ec5; transform: translateY(-1px); box-shadow: 0 7px 20px rgba(125,172,219,.40); }
    .btn-cta:active { transform: scale(.96); }



    /* ─── FULL-PAGE FLOWING CONTOUR ─── */
    .page-full-contour {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      pointer-events: none;
      z-index: 50;        /* sits above sections, below header (200) */
      overflow: hidden;
    }
    .page-full-contour svg {
      width: 100%; height: 100%;
      opacity: .055;
    }
    @media (prefers-reduced-motion: no-preference) {
      .page-full-contour svg {
        animation: page-flow 24s ease-in-out infinite alternate;
        transform-origin: center 60%;
      }
    }
    @keyframes page-flow {
      0%   { transform: translateY(-28px) scaleX(1.00); }
      50%  { transform: translateY(0px)   scaleX(1.01); }
      100% { transform: translateY(28px)  scaleX(1.00); }
    }

    /* ─── CONTOUR ANIMATIONS ─── */
    @keyframes contour-spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes contour-float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50%       { transform: translateY(-18px) rotate(4deg); }
    }
    @keyframes contour-drift {
      0%, 100% { transform: translateX(0px) rotate(0deg); }
      50%       { transform: translateX(14px) rotate(-3deg); }
    }
    @media (prefers-reduced-motion: no-preference) {
    .programs-contour   { animation: contour-drift 22s ease-in-out infinite; }
    }

    /* services contour */
    /* reviews contour */
    /* faq contour */
    /* ─── BLOCK 1: INTRO ─── */
    .intro {
      background: #fff;
      padding: 80px 0 90px;
      position: relative;
      overflow: hidden;
    }
    /* Contour background for hero */
    .intro-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
      display: flex;
      align-items: center;
      gap: 60px;
    }

    /* LEFT: text */
    .intro-text { flex: 1; min-width: 0; }

    .intro-tagline {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 35px; font-weight: 800;
      line-height: 1.3; letter-spacing: 0.02em;
      color: var(--c-dark); margin-bottom: 16px;
    }
    .intro-sub {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 22px; font-weight: 700;
      line-height: 1.4; color: var(--c-blue);
      margin-bottom: 44px;
    }
    .intro-greeting {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 35px; font-weight: 800;
      line-height: 1.3; letter-spacing: 0.02em;
      color: var(--c-dark); margin-bottom: 4px;
    }
    .intro-name {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 35px; font-weight: 800;
      line-height: 1.1; letter-spacing: 0.02em;
      color: var(--c-dark); margin-bottom: 8px;
    }
    .intro-profession {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 16px; font-weight: 400;
      color: #333333; line-height: 1.5;
      margin-bottom: 20px;
    }
    .intro-bio p {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 16px; font-weight: 400;
      color: #444444; line-height: 1.6;
      margin-bottom: 14px;
    }
    .intro-bio p:last-child { margin-bottom: 0; }

    /* Stats row */
    .intro-stats {
      display: flex; gap: 36px;
      margin-top: 36px;
      padding-top: 32px;
      border-top: 1px solid rgba(0,0,0,.12);
    }
    .stat-item { display: flex; flex-direction: column; }
    .stat-num {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 40px; font-weight: 800;
      color: var(--c-blue); line-height: 1;
      margin-bottom: 5px;
      letter-spacing: -0.02em;
    }
    .stat-label {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 13px; font-weight: 500;
      color: #777; line-height: 1.3;
      letter-spacing: .3px;
    }

    /* RIGHT: photo */
    .intro-photo { flex-shrink: 0; width: 420px; }
    .photo-frame {
      background: var(--c-blue);
      border-radius: 24px;
      overflow: hidden;
      width: 100%;
      line-height: 0;
    }
    .photo-frame img {
      width: 100%; height: auto; display: block; object-fit: cover;
    }
  
    /* ─── MARQUEE ─── */
    .marquee-strip {
      background: linear-gradient(90deg, var(--c-blue-mid) 0%, var(--c-blue) 50%, var(--c-blue-mid) 100%);
      padding: 16px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-track {
      display: inline-flex;
      animation: marquee 30s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-item {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 15px; font-weight: 700;
      color: #fff;
      padding: 0 32px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .marquee-dot {
      display: inline-block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,.6);
      vertical-align: middle;
      margin: 0 8px;
    }

    /* ─── SERVICES ─── */
    .services {
      background: #fff;
      padding: 90px 0 100px;
      position: relative;
      overflow: hidden;
    }
    .services-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 60px;
    }
    .services-head {
      text-align: center;
      margin-bottom: 60px;
    }
    .services-head h2 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 38px; font-weight: 800;
      color: var(--c-dark); letter-spacing: 0.02em;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .services-head p {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 17px; font-weight: 400;
      color: #555; line-height: 1.6;
      max-width: 640px; margin: 0 auto;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .svc-card {
      background: var(--c-blue);
      background: linear-gradient(145deg, var(--c-blue) 0%, var(--c-blue-mid) 100%);
      border-radius: 22px;
      padding: 28px 28px 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
      transition: box-shadow .30s, transform .30s;
      box-shadow: 0 4px 18px rgba(125,172,219,.22);
    }
    .svc-card:hover {
      box-shadow: 0 14px 52px rgba(77,140,194,.42);
      transform: translateY(-5px);
    }

    /* Background number watermark */
    .svc-num {
      position: absolute;
      top: -10px; right: 16px;
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 110px; font-weight: 800;
      color: rgba(255,255,255,.10);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      letter-spacing: -4px;
    }

    /* Icon + Title row */
    .svc-head {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,.28);
      position: relative;
    }
    .svc-icon {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: transform .35s cubic-bezier(.22,1,.36,1);
    }
    .svc-icon svg { width: 23px; height: 23px; stroke: #fff; }
    .svc-icon img { transition: transform .35s cubic-bezier(.22,1,.36,1); }
    .svc-card:hover .svc-icon { transform: scale(1.1) rotate(-6deg); }

    .svc-card h3 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 17px; font-weight: 800;
      color: #fff; line-height: 1.3;
    }

    /* List */
    .svc-card ul {
      list-style: none;
      display: flex; flex-direction: column; gap: 0;
    }
    .svc-card li {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15px; font-weight: 400;
      color: rgba(255,255,255,.93); line-height: 1.55;
      padding: 8px 0 8px 20px;
      position: relative;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .svc-card li:last-child { border-bottom: none; padding-bottom: 0; }
    .svc-card li::before {
      content: '•';
      position: absolute; left: 3px; top: 8px;
      font-size: 15px;
      color: rgba(255,255,255,.65);
      line-height: 1.55;
    }

    /* ─── PROGRAMS ─── */
    .programs {
      background: var(--c-blue);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    .programs-contour {
      position: absolute;
      bottom: -100px; left: -80px;
      width: 580px; height: 580px;
      pointer-events: none;
      opacity: .08;
    }
    .programs-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 60px;
      display: flex; align-items: center; gap: 64px;
    }
    .programs-text {
      flex: 1 1 0; min-width: 0;
    }
    .programs-heading {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 40px; font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 40px;
    }
    .programs-list {
      display: flex; flex-direction: column; gap: 0;
    }
    .prog-item {
      padding: 22px 0;
      border-bottom: 1px solid rgba(255,255,255,.30);
    }
    .prog-item:first-child { padding-top: 0; }
    .prog-item:last-child { border-bottom: none; padding-bottom: 0; }
    .prog-item h3 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 18px; font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .prog-item p {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15px; font-weight: 400;
      color: rgba(255,255,255,.88);
      line-height: 1.6;
    }
    .programs-photo {
      flex: 0 0 auto;
      width: 390px;
    }
    .photo-frame {
      background: #fff;
      border-radius: 28px;
      overflow: hidden;
    }
    .photo-frame img {
      display: block;
      width: 100%;
      height: auto;
    }

    /* ─── PROGRAMS CARDS ─── */
    .prog-cards {
      background: #fff;
      padding: 80px 0 90px;
    }
    .prog-cards-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 60px;
    }
    .prog-cards-group { margin-bottom: 60px; }
    .prog-cards-group:last-child { margin-bottom: 0; }
    .prog-cards-group-title {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 28px; font-weight: 800;
      color: var(--c-dark);
      margin-bottom: 28px;
    }
    .prog-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pc-card {
      border: 1px solid #E2E9F3;
      border-radius: 22px;
      padding: 32px 28px 36px;
      display: flex; flex-direction: column;
      position: relative;
      background: #fff;
      transition: box-shadow .30s, transform .30s, border-color .30s;
    }
    .pc-card:hover {
      box-shadow: 0 12px 40px rgba(11,42,82,.12);
      transform: translateY(-4px);
      border-color: #C8DDEF;
    }
    .pc-card.featured {
      border-color: var(--c-blue);
      border-width: 2px;
      box-shadow: 0 6px 28px rgba(125,172,219,.22);
      background: linear-gradient(160deg, #f5faff 0%, #fff 60%);
    }
    .pc-card.featured:hover {
      box-shadow: 0 14px 44px rgba(125,172,219,.30);
    }
    .pc-badge-popular {
      position: absolute; top: 20px; right: 20px;
      background: var(--c-blue); color: #fff;
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: .5px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 20px;
    }
    .pc-category {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--c-blue); margin-bottom: 10px;
    }
    .pc-card h3 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 22px; font-weight: 800;
      color: var(--c-dark); line-height: 1.25;
      margin-bottom: 10px;
    }
    .pc-desc {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 14px; color: #666;
      line-height: 1.55; margin-bottom: 20px;
    }
    .pc-divider {
      height: 1px; background: #EBEBF0;
      margin-bottom: 18px;
    }
    .pc-features {
      list-style: none;
      display: flex; flex-direction: column; gap: 10px;
      flex: 1; margin-bottom: 24px;
    }
    .pc-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 14px; color: #444; line-height: 1.4;
    }
    .pc-features li svg {
      flex-shrink: 0; margin-top: 1px;
    }
    .pc-btn {
      display: block; width: 100%; text-align: center;
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 13px; font-weight: 600; letter-spacing: .3px;
      padding: 14px 20px; border-radius: 50px;
      text-decoration: none; cursor: pointer;
      transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s cubic-bezier(.22,1,.36,1);
    }
    .pc-btn:active { transform: scale(.96); }
    .pc-btn-outline {
      border: 1.5px solid #D0DCE8; color: var(--c-dark);
      background: transparent;
    }
    .pc-btn-outline:hover { background: var(--c-dark); color: #fff; border-color: var(--c-dark); transform: translateY(-1px); }
    .pc-btn-fill {
      background: var(--c-blue); color: #fff; border: 2px solid var(--c-blue);
      box-shadow: 0 4px 14px rgba(125,172,219,.35);
    }
    .pc-btn-fill:hover { background: #4e8ec5; border-color: #4e8ec5; box-shadow: 0 6px 20px rgba(125,172,219,.40); transform: translateY(-1px); }

    /* ─── CONTACT FORM ─── */
    .contact {
      background: #F5F8FC;
      padding: 90px 0;
    }
    .contact-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 60px;
      display: flex; flex-wrap: wrap; align-items: flex-start; gap: 60px 80px;
    }
    .contact-info {
      flex: 1 1 320px;
      padding-top: 8px;
    }
    .contact-tag {
      display: inline-block;
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 12px; font-weight: 600;
      letter-spacing: 1.2px; text-transform: uppercase;
      color: var(--c-blue); margin-bottom: 16px;
    }
    .contact-info h2 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 38px; font-weight: 800;
      color: var(--c-dark); line-height: 1.2;
      margin-bottom: 18px;
    }
    .contact-info p {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15px; color: #666;
      line-height: 1.65; margin-bottom: 36px;
    }
    .contact-links {
      display: flex; flex-direction: column; gap: 14px;
    }
    .contact-link {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none;
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15px; font-weight: 500; color: var(--c-dark);
      transition: color .2s;
    }
    .contact-link:hover { color: var(--c-blue); }
    .contact-link-icon {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-link-icon.tg { background: #E8F3FB; }
    .contact-link-icon.ig { background: #FBE8F3; }
    .contact-link-icon svg { width: 22px; height: 22px; }

    /* Form */
    .contact-form-wrap {
      flex: 2 1 380px; min-width: 300px;
      background: #fff;
      border-radius: 24px;
      padding: 44px 44px 48px;
      box-shadow: 0 4px 32px rgba(0,0,0,.07);
    }
    .contact-form-wrap h3 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 22px; font-weight: 800;
      color: var(--c-dark); margin-bottom: 28px;
    }
    .form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-bottom: 16px;
    }
    .form-field {
      display: flex; flex-direction: column; gap: 6px;
      margin-bottom: 16px;
    }
    .form-field:last-of-type { margin-bottom: 0; }
    .form-field label {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 13px; font-weight: 600; color: #555;
    }
    .form-field input,
    .form-field textarea {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15px; color: var(--c-dark);
      background: #F5F8FC;
      border: 1.5px solid #E8EDF5;
      border-radius: 12px;
      padding: 13px 16px;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      width: 100%;
    }
    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--c-blue);
      box-shadow: 0 0 0 3px rgba(125,172,219,.15);
    }
    .form-field textarea {
      height: 120px; resize: none;
    }
    .form-submit {
      margin-top: 24px;
      display: flex; align-items: center; gap: 20px;
      flex-wrap: wrap;
    }
    .form-btn {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15px; font-weight: 600;
      background: var(--c-blue); color: #fff;
      border: none; border-radius: 50px;
      padding: 14px 40px; cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .form-btn:hover { background: #5b96cc; transform: translateY(-1px); }
    .form-note {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 12px; color: #999;
      line-height: 1.5;
    }

    /* ─── REVIEWS ─── */
    .reviews {
      background: #fff;
      padding: 90px 0;
      overflow: hidden;
      position: relative;
    }
    .reviews-head {
      max-width: 1200px; margin: 0 auto 48px; padding: 0 60px;
      text-align: center;
    }
    .reviews-head h2 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 38px; font-weight: 800; color: var(--c-dark);
      margin-bottom: 12px;
    }
    .reviews-head p {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 16px; color: #777;
    }
    .reviews-track-wrap {
      display: flex; flex-direction: column; gap: 20px;
      overflow: hidden; width: 100%;
    }
    .reviews-track {
      display: flex; gap: 16px;
      width: max-content;
    }
    .reviews-track.row1 { animation: rev-left 60s linear infinite; }
    .reviews-track.row2 { animation: rev-right 55s linear infinite; }
    .reviews-track:hover { animation-play-state: paused; }
    @keyframes rev-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes rev-right {
      0%   { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
    .rev-card {
      flex-shrink: 0;
      width: 185px;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(0,0,0,.10);
      transition: transform .25s, box-shadow .25s;
      cursor: pointer;
    }
    .rev-card:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 30px rgba(0,0,0,.16);
    }
    .rev-card img {
      display: block; width: 100%; height: auto;
    }

    /* ─── FAQ ─── */
    .faq {
      background: #F5F8FC;
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    .faq-inner {
      max-width: 860px; margin: 0 auto; padding: 0 60px;
    }
    .faq-head {
      text-align: center; margin-bottom: 52px;
    }
    .faq-head h2 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 38px; font-weight: 800; color: var(--c-dark);
      margin-bottom: 12px;
    }
    .faq-head p {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 16px; color: #777;
    }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 22px 28px;
      cursor: pointer; user-select: none;
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 17px; font-weight: 700; color: var(--c-dark);
      border: none; background: none; width: 100%; text-align: left;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--c-blue); }
    .faq-icon {
      flex-shrink: 0;
      width: 32px; height: 32px; border-radius: 50%;
      background: #EBF3FB;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .3s;
    }
    .faq-icon svg { width: 16px; height: 16px; stroke: var(--c-blue); transition: transform .3s; }
    .faq-item.open .faq-icon { background: var(--c-blue); }
    .faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .25s ease;
      padding: 0 28px;
    }
    .faq-item.open .faq-a { max-height: 400px; padding: 0 28px 24px; }
    .faq-a p {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15px; color: #555; line-height: 1.7;
      border-top: 1px solid #F0F4F8; padding-top: 18px;
    }

    /* ─── FOOTER ─── */
    footer.site-footer {
      background: var(--c-blue);
      padding: 64px 0 36px;
    }
    /* ─── REVEAL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0;
      transform: translateX(-32px);
      transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-left { transition: none; opacity: 1; transform: none; }
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 60px;
    }
    .footer-top {
      display: flex; align-items: flex-start;
      justify-content: space-between; gap: 48px;
      padding-bottom: 44px;
      border-bottom: 1px solid rgba(255,255,255,.22);
      flex-wrap: wrap;
    }
    .footer-brand { flex: 0 0 auto; }
    .footer-logo {
      height: 60px; width: auto; display: block; margin-bottom: 18px;
    }
    .footer-tagline {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 13px; color: rgba(255,255,255,.90);
      line-height: 1.65; max-width: 220px;
    }
    .footer-nav {
      display: flex; gap: 64px; flex-wrap: wrap;
    }
    .footer-nav-col h4 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: rgba(255,255,255,.60); margin-bottom: 16px;
    }
    .footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-nav-col a {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 14px; color: rgba(255,255,255,.92);
      text-decoration: none; transition: color .2s;
    }
    .footer-nav-col a:hover { color: #fff; }
    .footer-social {
      display: flex; gap: 10px; align-items: center;
    }
    .footer-social a {
      width: 38px; height: 38px; border-radius: 9px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.30);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; transition: background .2s, border-color .2s, transform .25s cubic-bezier(.22,1,.36,1);
    }
    .footer-social a:hover { background: rgba(255,255,255,.32); border-color: rgba(255,255,255,.55); transform: translateY(-3px); }
    .footer-social svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .footer-bottom {
      margin-top: 32px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 12px; color: rgba(255,255,255,.72);
    }
    .footer-legal {
      display: flex; gap: 20px; flex-wrap: wrap;
    }
    .footer-legal a {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 12px; color: rgba(255,255,255,.78);
      text-decoration: none; transition: color .2s;
    }
    .footer-legal a:hover { color: #fff; }

    /* ══════════════════════════════════════════════
       HAMBURGER BUTTON + MOBILE NAV OVERLAY
    ══════════════════════════════════════════════ */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px; height: 40px;
      border: none; background: transparent;
      cursor: pointer; gap: 5px;
      padding: 4px;
      border-radius: 8px;
      transition: background .2s;
    }
    .hamburger:hover { background: rgba(125,172,219,.12); }
    .hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--c-dark);
      border-radius: 2px;
      transition: transform .3s, opacity .3s, width .3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(255,255,255,.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      z-index: 199;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      opacity: 0;
      transform: scale(.97);
      transition: opacity .3s, transform .3s;
    }
    .mobile-nav-overlay.open {
      display: flex;
      opacity: 1;
      transform: scale(1);
    }
    .mobile-nav-overlay a {
      font-family: "Wix Madefor Display", sans-serif;
      font-size: 28px; font-weight: 700;
      color: var(--c-dark); text-decoration: none;
      padding: 10px 24px;
      border-radius: 12px;
      transition: color .2s, background .2s;
    }
    .mobile-nav-overlay a:hover { color: var(--c-blue); background: rgba(125,172,219,.08); }
    .mobile-nav-overlay .mob-cta {
      margin-top: 20px;
      background: var(--c-blue);
      color: #fff !important;
      font-size: 18px !important;
      padding: 14px 40px !important;
      border-radius: 40px;
      box-shadow: 0 4px 18px rgba(125,172,219,.35);
    }

    /* ══════════════════════════════════════════════
       TABLET (900px)
    ══════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .header-inner { padding: 0 24px; }
      .intro-inner { padding: 0 32px; gap: 40px; }
      .intro-photo { width: 300px; }
      .services-inner { padding: 0 32px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .programs-inner { padding: 0 32px; gap: 36px; }
      .programs-photo { width: 280px; }
      .prog-cards-inner { padding: 0 32px; }
      .prog-cards-grid { grid-template-columns: repeat(2, 1fr); }
      .prog-cards-grid > *:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        margin: 0 auto;
      }
      .faq-inner { padding: 0 32px; }
      .footer-inner { padding: 0 32px; }
      .footer-nav { gap: 40px; }
    }

    /* ══════════════════════════════════════════════
       MOBILE (640px)
    ══════════════════════════════════════════════ */
    @media (max-width: 640px) {
      /* HEADER */
      .header-inner { padding: 0 18px; height: 60px; }
      body { padding-top: 60px; }
      nav { display: none; }
      .btn-cta { display: none; }
      .hamburger { display: flex; margin-left: auto; }

      /* INTRO */
      .intro { padding: 36px 0 52px; }
      .intro-inner { flex-direction: column-reverse; padding: 0 18px; gap: 28px; align-items: stretch; }
      .intro-photo { width: 100%; max-width: 300px; margin: 0 auto; }
      .intro-tagline { font-size: 22px; margin-bottom: 10px; }
      .intro-sub { font-size: 16px; margin-bottom: 28px; }
      .intro-greeting { font-size: 24px; }
      .intro-name { font-size: 24px; }
      .intro-profession { font-size: 14px; }
      .intro-bio p { font-size: 14px; }
      .intro-stats { gap: 20px; padding-top: 24px; margin-top: 24px; flex-wrap: wrap; }
      .stat-num { font-size: 30px; }

      /* MARQUEE */
      .marquee-item { font-size: 13px; padding: 0 18px; }

      /* SERVICES */
      .services { padding: 56px 0 64px; }
      .services-inner { padding: 0 18px; }
      .services-head { margin-bottom: 32px; }
      .services-head h2 { font-size: 24px; white-space: normal; line-height: 1.3; }
      .services-head p { font-size: 15px; }
      .services-grid { grid-template-columns: 1fr; gap: 14px; }
      .svc-card { padding: 22px 22px 26px; gap: 12px; }
      .svc-num { font-size: 80px; }

      /* PROGRAMS OVERVIEW */
      .programs { padding: 56px 0; }
      .programs-inner { flex-direction: column; padding: 0 18px; gap: 32px; }
      .programs-heading { font-size: 24px; margin-bottom: 24px; }
      .programs-photo { width: 100%; max-width: 300px; margin: 0 auto; }

      /* PROGRAM CARDS */
      .prog-cards { padding: 56px 0 64px; }
      .prog-cards-inner { padding: 0 18px; }
      .prog-cards-grid { grid-template-columns: 1fr; gap: 14px; }
      .prog-cards-grid > *:last-child:nth-child(odd) { max-width: 100%; margin: 0; }
      .prog-cards-group { margin-bottom: 40px; }
      .prog-cards-group-title { font-size: 20px; }
      .pc-card { padding: 22px 18px 26px; }

      /* REVIEWS */
      .reviews { padding: 56px 0; }
      .reviews-head { padding: 0 18px 32px; }
      .reviews-head h2 { font-size: 24px; }
      .reviews-head p { font-size: 15px; }
      .rev-card { width: 190px; }

      /* FAQ */
      .faq { padding: 56px 0; }
      .faq-inner { padding: 0 18px; }
      .faq-head { margin-bottom: 28px; }
      .faq-head h2 { font-size: 24px; }
      .faq-q { font-size: 14px; padding: 16px 12px; }
      .faq-a p { font-size: 14px; padding: 0 12px 16px; }

      /* CONTACT / CONSULTATION FORM */
      .contact { padding: 56px 0; }
      .contact-inner {
        flex-direction: column;
        padding: 0 18px;
        gap: 40px;
      }
      .contact-info { flex: none; width: 100%; }
      .contact-info h2 { font-size: 24px; }
      .contact-form-wrap {
        padding: 28px 20px 32px;
        border-radius: 18px;
      }
      .contact-form-wrap h3 { font-size: 18px; margin-bottom: 20px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .form-field input,
      .form-field textarea { font-size: 16px; } /* prevent iOS zoom */

      /* LOGO — slightly bigger on mobile */
      .logo-img { height: 56px; }

      /* FOOTER */
      footer.site-footer { padding: 44px 0 28px; }
      .footer-inner { padding: 0 20px; }
      .footer-top { flex-direction: column; gap: 32px; padding-bottom: 32px; }
      .footer-brand { width: 100%; }
      .footer-tagline { max-width: 100%; font-size: 14px; }
      .footer-social { margin-top: 20px; }
      .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        width: 100%;
      }
      .footer-nav-col { min-width: 0; }
      .footer-nav-col:last-child { grid-column: 1 / -1; }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 24px;
      }
      .footer-copy { font-size: 11px; }
      .footer-legal { flex-wrap: wrap; gap: 10px; }
      .footer-legal a { font-size: 11px; }

      /* DISABLE PARALLAX ON MOBILE */
      .intro-photo { transform: none !important; }

      /* CONTOUR SUBTLE ON MOBILE */
      .page-full-contour svg { opacity: .03; }
    }


    /* ── SCROLL TO TOP ── */
    .scroll-top-btn {
      position: fixed; bottom: 28px; right: 24px; z-index: 300;
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--c-blue); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(125,172,219,.42);
      opacity: 0; transform: translateY(12px);
      transition: opacity .3s, transform .3s, background .2s;
      pointer-events: none;
    }
    .scroll-top-btn.visible {
      opacity: 1; transform: translateY(0); pointer-events: auto;
    }
    .scroll-top-btn:hover { background: #5a99cc; }
    .scroll-top-btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

    /* ── LEGAL / TEXT PAGES (privacy, offer, refunds, etc.) ── */
    .legal-page { background: #fff; padding: 70px 0 100px; }
    .legal-page-inner { max-width: 780px; margin: 0 auto; padding: 0 60px; }
    .legal-page-inner h1 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 34px; font-weight: 800; color: var(--c-dark);
      line-height: 1.25; margin-bottom: 28px;
    }
    .legal-page-inner .legal-updated {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 13px; color: #888; margin: -18px 0 28px;
    }
    .legal-page-inner h2 {
      font-family: 'Wix Madefor Display', sans-serif;
      font-size: 20px; font-weight: 800; color: var(--c-dark);
      line-height: 1.3; margin: 36px 0 14px;
    }
    .legal-page-inner p {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15.5px; color: #444; line-height: 1.75;
      margin-bottom: 14px;
    }
    .legal-page-inner ul {
      margin: 0 0 14px; padding-left: 22px;
    }
    .legal-page-inner li {
      font-family: 'Wix Madefor Text', sans-serif;
      font-size: 15.5px; color: #444; line-height: 1.75;
      margin-bottom: 8px;
    }
    .legal-contact {
      margin-top: 40px; padding: 28px 30px;
      background: #F5F8FC; border: 1px solid #E7EDF6; border-radius: 18px;
    }
    .legal-contact h2 { margin-top: 0; }
    .legal-contact p { margin-bottom: 8px; }
    .legal-contact a { color: var(--c-blue-dark); text-decoration: none; }
    .legal-contact a:hover { text-decoration: underline; }

    @media (max-width: 640px) {
      .legal-page { padding: 44px 0 64px; }
      .legal-page-inner { padding: 0 20px; }
      .legal-page-inner h1 { font-size: 26px; }
      .legal-page-inner h2 { font-size: 18px; }
      .legal-contact { padding: 22px 20px; }
    }
