:root {
      --navy: #211E52;
      --navy-soft: #5C588C;
      --purple: #9C8FE8;
      --purple-deep: #7A6BDB;
      --lavender: #F4F1FC;
      --mint: #5FD9BD;
      --mint-deep: #3FC1A4;
      --pink: #F5A9C8;
      --paper: #FFFFFF;
      --line: #E7E1F7;
      --radius-lg: 32px;
      --radius-md: 22px;
      --shadow: 0 20px 44px -20px rgba(33, 30, 82, 0.22);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: clip;
      scroll-padding-top: 80px;
      width: 100%;
    }

    body {
      margin: 0;
      background:
        radial-gradient(ellipse 80% 40% at 15% 10%, rgba(227, 243, 252, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(200, 192, 240, 0.6) 0%, transparent 65%),
        radial-gradient(ellipse 70% 60% at 50% 55%, rgba(233, 230, 251, 0.8) 0%, transparent 75%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(214, 206, 248, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse 60% 45% at 90% 85%, rgba(195, 235, 250, 0.65) 0%, transparent 65%),
        linear-gradient(160deg, #daf0fa 0%, #e8e4f8 35%, #dbd4f4 65%, #cbe9f9 100%);
      background-attachment: fixed;
      min-height: 100vh;
      color: var(--navy);
      font-family: 'Quicksand', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: clip;
      position: relative;
    }

    /* floating cloud blobs */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image:
        radial-gradient(ellipse 38% 22% at 8% 18%, rgba(255, 255, 255, 0.55) 0%, transparent 100%),
        radial-gradient(ellipse 28% 16% at 72% 8%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 45% 20% at 90% 55%, rgba(255, 255, 255, 0.38) 0%, transparent 100%),
        radial-gradient(ellipse 35% 18% at 5% 75%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
        radial-gradient(ellipse 30% 14% at 55% 92%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 1.5px, transparent 2.5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px);
      background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 10% 15%, 68% 72%;
      background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat;
      background-size: auto, auto, auto, auto, auto, 220px 220px, 160px 160px;
    }

    /* shimmer overlay to unify bg */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background: linear-gradient(45deg,
          rgba(156, 143, 232, 0.06) 0%,
          rgba(95, 217, 189, 0.04) 40%,
          rgba(245, 169, 200, 0.05) 70%,
          rgba(156, 143, 232, 0.06) 100%);
    }

    h1,
    h2,
    h3,
    .display {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin: 0;
      color: var(--navy);
    }

    .caption {
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      font-size: 0.74rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--purple-deep);
    }

    a {
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding-left: clamp(20px, 5vw, 40px);
      padding-right: clamp(20px, 5vw, 40px);
      position: relative;
    }

    section {
      padding: 88px 0;
    }

    @media (max-width:720px) {
      section {
        padding: 52px 0;
      }
    }

    @media (max-width:480px) {
      section {
        padding: 44px 0;
      }
    }

    :focus-visible {
      outline: 3px solid var(--mint-deep);
      outline-offset: 3px;
      border-radius: 6px;
    }

    /* decorative blobs */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(2px);
      z-index: 0;
      pointer-events: none;
    }

    .sparkle {
      position: absolute;
      z-index: 1;
      pointer-events: none;
    }

    /* butterfly decorations (echoes logo wings) */
    .butterfly-deco {
      position: absolute;
      pointer-events: none;
      z-index: 1;
      opacity: 0.22;
    }

    @keyframes flutter {
      0% {
        transform: translateY(0) rotate(-5deg) scaleX(1);
      }

      25% {
        transform: translateY(-10px) rotate(2deg) scaleX(0.96);
      }

      50% {
        transform: translateY(-18px) rotate(6deg) scaleX(1);
      }

      75% {
        transform: translateY(-8px) rotate(-1deg) scaleX(0.97);
      }

      100% {
        transform: translateY(0) rotate(-5deg) scaleX(1);
      }
    }

    @keyframes flutter2 {
      0% {
        transform: translateY(0) rotate(4deg) scaleX(1);
      }

      30% {
        transform: translateY(-14px) rotate(-3deg) scaleX(0.95);
      }

      60% {
        transform: translateY(-6px) rotate(7deg) scaleX(1);
      }

      100% {
        transform: translateY(0) rotate(4deg) scaleX(1);
      }
    }

    @keyframes flutter3 {
      0% {
        transform: translateY(0) rotate(-2deg) scale(1);
      }

      40% {
        transform: translateY(-20px) rotate(5deg) scale(0.94);
      }

      70% {
        transform: translateY(-9px) rotate(-4deg) scale(1);
      }

      100% {
        transform: translateY(0) rotate(-2deg) scale(1);
      }
    }

    @keyframes driftAcross {
      0% {
        transform: translateX(0) translateY(0) rotate(-6deg);
      }

      33% {
        transform: translateX(18px) translateY(-22px) rotate(4deg);
      }

      66% {
        transform: translateX(-8px) translateY(-12px) rotate(-2deg);
      }

      100% {
        transform: translateX(0) translateY(0) rotate(-6deg);
      }
    }

    .butterfly-deco.animate {
      animation: flutter 6.2s ease-in-out infinite;
    }

    .butterfly-deco.animate2 {
      animation: flutter2 8.5s ease-in-out infinite;
    }

    .butterfly-deco.animate3 {
      animation: flutter3 5.8s ease-in-out infinite;
    }

    .butterfly-deco.animate4 {
      animation: driftAcross 10s ease-in-out infinite;
    }

    /* global ambient butterflies */
    .bf-ambient {
      position: fixed;
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      animation: bfFloat linear infinite;
    }

    @keyframes bfFloat {
      0% {
        transform: translateX(0) translateY(0) rotate(-8deg);
        opacity: 0;
      }

      5% {
        opacity: 0.14;
      }

      30% {
        transform: translateX(60px) translateY(-50px) rotate(6deg);
      }

      55% {
        transform: translateX(120px) translateY(-20px) rotate(-4deg);
      }

      80% {
        transform: translateX(180px) translateY(-70px) rotate(8deg);
        opacity: 0.14;
      }

      95% {
        opacity: 0;
      }

      100% {
        transform: translateX(240px) translateY(-10px) rotate(-5deg);
        opacity: 0;
      }
    }

    /* photo carousel (hero) */
    .photo-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 440px;
      background: var(--lavender);
      z-index: 2;
      display: flex;
      flex-direction: column;
    }

    .photo-slide-wrap {
      position: relative;
      flex: 1;
      min-height: 250px;
    }

    .photo-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .photo-slide.active {
      opacity: 1;
    }

    .photo-slide.broken {
      display: none;
    }

    .photo-card.no-photo .photo-slide-wrap {
      background: linear-gradient(135deg, var(--purple), var(--mint));
    }

    .photo-card.no-photo::after {
      content: '📸';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      opacity: 0.55;
      z-index: 1;
    }

    /* .photo-ring {
      position: absolute;
      top: -36px;
      right: -36px;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      border: 20px solid var(--mint);
      opacity: 0.9;
      z-index: 3;
    } */

    .photo-dots {
      position: absolute;
      top: 18px;
      left: 20px;
      display: flex;
      gap: 6px;
      z-index: 4;
    }

    .photo-dots span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.55);
      transition: background .3s ease;
    }

    .photo-dots span.active {
      background: var(--paper);
    }

    .photo-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.85);
      color: var(--navy);
      font-size: 1.3rem;
      font-weight: 800;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 16px -4px rgba(33, 30, 82, 0.35);
      transition: background .2s ease, transform .2s ease;
    }

    .photo-arrow:hover {
      background: var(--paper);
      transform: translateY(-50%) scale(1.08);
    }

    .photo-arrow.prev {
      left: 14px;
    }

    .photo-arrow.next {
      right: 14px;
    }

    @media (max-width:600px) {
      .photo-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.05rem;
      }

      .photo-arrow.prev {
        left: 8px;
      }

      .photo-arrow.next {
        right: 8px;
      }
    }

    .photo-caption {
      background: rgba(33, 30, 82, 0.95);
      color: var(--paper);
      padding: 24px;
      z-index: 4;
    }

    .photo-caption .caption {
      color: var(--mint) !important;
    }

    .photo-caption h4 {
      color: var(--paper);
      font-size: 1.15rem;
      margin: 6px 0 12px;
      font-family: 'Baloo 2';
    }

    @media (max-width:600px) {
      .photo-card {
        min-height: 340px;
      }

      /* .photo-ring {
        width: 90px;
        height: 90px;
        border-width: 14px;
        top: -24px;
        right: -24px;
      } */

      .photo-caption {
        padding: 16px 18px;
      }
    }

    /* ---------- NAV ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
    }

    header.scrolled {
      background: rgba(255, 255, 255, 0.96);
      border-bottom-color: var(--line);
      box-shadow: 0 12px 30px -18px rgba(33, 30, 82, 0.35);
    }

    header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--mint));
      opacity: 0;
      transition: opacity .3s ease;
    }

    header.scrolled::before {
      opacity: 1;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px clamp(20px, 5vw, 40px);
      max-width: 1180px;
      margin: 0 auto;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand img {
      height: 44px;
      width: auto !important;
      object-fit: contain;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand-text strong {
      font-family: 'Baloo 2';
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--navy);
    }

    .brand-text span {
      font-size: 0.68rem;
      color: var(--navy-soft);
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--navy);
      position: relative;
    }

    .nav-links a:not(.btn)::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      height: 2px;
      width: 0;
      background: var(--mint-deep);
      transition: width .25s ease;
    }

    .nav-links a:not(.btn):hover::after {
      width: 100%;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
      border: 2px solid var(--navy);
      cursor: pointer;
      font-family: 'Quicksand', sans-serif;
      font-size: 0.92rem;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .btn-primary {
      background: var(--navy);
      color: var(--paper);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 0 -4px var(--mint);
    }

    .btn-mint {
      background: var(--mint-deep);
      color: var(--paper);
      border-color: var(--mint-deep);
    }

    .btn-mint:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 0 -4px var(--purple);
    }

    .btn-ghost {
      background: transparent;
      color: var(--navy);
    }

    .btn-ghost:hover {
      background: var(--lavender);
    }

    /* ---------- HERO ---------- */
    .hero {
      padding-top: 64px;
      padding-bottom: 40px;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--lavender);
      border: 1px solid var(--line);
      padding: 8px 16px;
      border-radius: 999px;
      margin-bottom: 22px;
      max-width: 100%;
    }

    .hero .hook {
      font-size: clamp(2.6rem, 5.2vw, 4.4rem);
      margin-bottom: 6px;
    }

    .hero .hook .grad {
      background: linear-gradient(90deg, var(--purple-deep), var(--mint-deep));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero .subhook {
      font-family: 'Baloo 2';
      font-weight: 600;
      font-size: 1.25rem;
      color: var(--purple-deep);
      margin: 6px 0 20px;
    }

    .hero p.lead {
      font-size: 1.08rem;
      color: var(--navy-soft);
      max-width: 480px;
      margin-bottom: 30px;
      font-weight: 500;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .avatars {
      display: flex;
    }

    .avatars span {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 3px solid var(--paper);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--paper);
      margin-left: -10px;
    }

    .avatars span:first-child {
      margin-left: 0;
    }

    .hero-proof small {
      color: var(--navy-soft);
      font-weight: 700;
    }

    /* whiteboard card */
    .board {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 22px;
      position: relative;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      z-index: 2;
    }

    .board-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 14px;
      border-bottom: 2px dashed var(--line);
      margin-bottom: 18px;
    }

    .board-top strong {
      font-family: 'Baloo 2';
      font-size: 1.05rem;
    }

    .board-bubble {
      background: var(--navy);
      color: var(--paper);
      padding: 8px 14px;
      border-radius: 14px;
      border-bottom-right-radius: 2px;
      font-size: 0.78rem;
      font-weight: 700;
    }

    #word-stage {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 260px;
    }

    .word-emoji {
      font-size: 4.4rem;
      animation: float 2.4s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .word-label {
      font-family: 'Baloo 2';
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--navy);
      background: var(--lavender);
      padding: 8px 26px;
      border-radius: 16px;
      border: 2px solid var(--line);
    }

    .word-say {
      font-size: 0.9rem;
      color: var(--mint-deep);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .board-dots {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-top: 10px;
    }

    .board-dots span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--line);
      transition: background .3s ease;
    }

    .board-dots span.active {
      background: var(--mint-deep);
    }

    /* ---------- STAT STRIP ---------- */
    /* ---------- TRUST BADGES ---------- */
    .trust-strip {
      padding: 30px 0;
      background: linear-gradient(180deg, var(--lavender) 0%, var(--paper) 100%);
      border-bottom: 1px solid var(--line);
    }

    .trust-strip .wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 7px 20px 7px 7px;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--navy);
      box-shadow: 0 8px 20px -12px rgba(33, 30, 82, 0.35);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .trust-badge:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px -10px rgba(33, 30, 82, 0.3);
      border-color: var(--purple);
    }

    .trust-badge .ic {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      background: var(--lavender);
      flex-shrink: 0;
    }

    .trust-strip .wrap span.trust-badge:nth-child(1) .ic {
      background: #EDE9FB;
    }

    .trust-strip .wrap span.trust-badge:nth-child(2) .ic {
      background: #E6FBF5;
    }

    .trust-strip .wrap span.trust-badge:nth-child(3) .ic {
      background: #FDEAF1;
    }

    .trust-strip .wrap span.trust-badge:nth-child(4) .ic {
      background: #FFF3D9;
    }

    .trust-badge a {
      color: var(--purple-deep);
      text-decoration: none;
      font-weight: 800;
    }

    .trust-badge a:hover {
      color: var(--mint-deep);
    }

    @media (max-width:600px) {
      .trust-strip .wrap {
        gap: 10px;
      }

      .trust-badge {
        font-size: 0.76rem;
        padding: 8px 14px;
      }
    }

    .stats {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--lavender);
      position: relative;
      z-index: 1;
    }

    .stats .wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      padding: 34px 24px;
    }

    .stat h3 {
      font-size: 2.1rem;
      color: var(--purple-deep);
    }

    .stat p {
      margin: 6px 0 0;
      color: var(--navy-soft);
      font-weight: 700;
      font-size: 0.88rem;
    }

    @media (max-width:720px) {
      .stats .wrap {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ---------- SECTION HEADS ---------- */
    .section-head {
      max-width: 620px;
      margin-bottom: 52px;
    }

    .section-head h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      margin: 12px 0 12px;
    }

    .section-head p {
      color: var(--navy-soft);
      font-size: 1.02rem;
      font-weight: 500;
    }

    .center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    /* ---------- WHY ---------- */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .why-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 26px 22px;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .why-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .why-card h3 {
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .why-card p {
      margin: 0;
      color: var(--navy-soft);
      font-size: 0.9rem;
      font-weight: 500;
      line-height: 1.5;
    }

    @media (max-width:960px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    /* ---------- HOW ---------- */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .step {
      position: relative;
      padding-top: 8px;
    }

    .step .num {
      font-family: 'Baloo 2';
      font-size: 2.4rem;
      font-weight: 800;
      color: transparent;
      -webkit-text-stroke: 2px var(--purple);
    }

    .step h3 {
      margin: 10px 0 8px;
      font-size: 1.12rem;
    }

    .step p {
      color: var(--navy-soft);
      font-size: 0.92rem;
      line-height: 1.5;
      margin: 0;
      font-weight: 500;
    }

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

    /* ---------- PRICING ---------- */
    .price-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .price-card2 {
      position: relative;
      overflow: hidden;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: transform .25s ease;
    }

    .price-card2:hover {
      transform: translateY(-4px);
    }

    .price-ribbon {
      position: absolute;
      top: 20px;
      right: -42px;
      background: var(--mint-deep);
      color: var(--paper);
      padding: 6px 50px;
      transform: rotate(35deg);
      font-family: 'Quicksand', sans-serif;
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      box-shadow: 0 4px 10px rgba(33, 30, 82, 0.2);
    }

    .price-card2.offline .price-ribbon,
    .price-card2.onsite .price-ribbon {
      background: var(--pink);
      color: var(--navy);
    }

    .price-top {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .price-badge {
      font-family: 'Quicksand', sans-serif;
      font-weight: 800;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      background: var(--lavender);
      color: var(--purple-deep);
      padding: 6px 14px;
      border-radius: 999px;
    }

    .price-card2.offline .price-badge,
    .price-card2.onsite .price-badge {
      background: #FDEAF1;
      color: #C2478B;
    }

    .price-card2 h3 {
      font-size: 1.3rem;
    }

    .price-amount-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      flex-wrap: wrap;
    }

    .price-old {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy-soft);
      text-decoration: line-through;
      text-decoration-color: var(--pink);
      text-decoration-thickness: 2px;
      opacity: 0.7;
    }

    .price-new {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      font-size: 2.1rem;
      color: var(--mint-deep);
    }

    .price-card2.offline .price-new,
    .price-card2.onsite .price-new {
      color: #C2478B;
    }

    .price-new small {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy-soft);
    }

    .price-save {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      background: var(--lavender);
      color: var(--purple-deep);
      font-size: 0.78rem;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 999px;
      animation: price-pulse 1.8s infinite;
    }

    .price-card2.offline .price-save,
    .price-card2.onsite .price-save {
      background: #FDEAF1;
      color: #C2478B;
      animation-name: price-pulse-pink;
    }

    @keyframes price-pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(63, 193, 164, 0.35);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(63, 193, 164, 0);
      }
    }

    @keyframes price-pulse-pink {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(194, 71, 139, 0.3);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(194, 71, 139, 0);
      }
    }

    .price-schedule {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .price-schedule li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
      background: var(--lavender);
      padding: 10px 14px;
      border-radius: 12px;
    }

    .price-card2.offline .price-schedule li,
    .price-card2.onsite .price-schedule li {
      background: #FDEAF1;
    }

    .price-schedule li span:last-child {
      color: var(--navy-soft);
      font-weight: 500;
      text-align: right;
      white-space: nowrap;
    }

    .price-note {
      font-size: 0.78rem;
      color: var(--navy-soft);
      font-weight: 500;
      line-height: 1.5;
      margin: 0;
    }

    .price-card2 .btn {
      margin-top: auto;
    }

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

      .price-ribbon {
        top: 14px;
        right: -46px;
      }
    }

    /* ---------- TRIAL BANNER ---------- */
    .trial-banner {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy) 0%, var(--purple-deep) 100%);
      border-radius: var(--radius-lg);
      padding: 52px 40px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .trial-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.14);
      color: var(--mint);
      font-family: 'Quicksand', sans-serif;
      font-weight: 800;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 8px 18px;
      border-radius: 999px;
      margin-bottom: 18px;
    }

    .trial-hook {
      font-family: 'Baloo 2', sans-serif;
      font-weight: 800;
      color: var(--paper);
      font-size: clamp(2.2rem, 6vw, 3.6rem);
      margin: 0 0 14px;
      line-height: 1.05;
    }

    .trial-hook .grad2 {
      background: linear-gradient(90deg, var(--mint), var(--pink));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .trial-sub {
      color: #C9C4EE;
      font-size: 1.05rem;
      font-weight: 500;
      max-width: 520px;
      margin: 0 auto 28px;
    }

    .trial-note {
      color: #9B95CE;
      font-size: 0.82rem;
      font-weight: 600;
      margin-top: 16px;
    }

    @media (max-width:600px) {
      .trial-banner {
        padding: 40px 22px;
      }
    }

    /* ---------- QUIZ ---------- */
    .quiz-card {
      max-width: 640px;
      margin: 0 auto;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }

    .quiz-progress {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 22px;
    }

    .quiz-progress span {
      width: 32px;
      height: 6px;
      border-radius: 999px;
      background: var(--line);
      transition: background .3s ease;
    }

    .quiz-progress span.active {
      background: var(--mint-deep);
    }

    .quiz-question {
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      text-align: center;
      margin: 0 0 22px;
    }

    .quiz-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .quiz-opt {
      font-family: 'Quicksand', sans-serif;
      font-size: 0.94rem;
      font-weight: 700;
      color: var(--navy);
      background: var(--lavender);
      border: 2px solid var(--line);
      border-radius: 16px;
      padding: 16px 14px;
      cursor: pointer;
      transition: all .2s ease;
      text-align: center;
    }

    .quiz-opt:hover {
      border-color: var(--purple);
      transform: translateY(-2px);
    }

    .quiz-back {
      display: block;
      margin: 20px auto 0;
      background: none;
      border: none;
      color: var(--navy-soft);
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
    }

    .quiz-back:hover {
      color: var(--purple-deep);
    }

    .quiz-result {
      text-align: center;
    }

    .quiz-result-icon {
      font-size: 2.8rem;
      margin-bottom: 8px;
    }

    .quiz-result-label {
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--purple-deep);
      margin: 0 0 8px;
    }

    .quiz-result-level {
      font-size: 1.6rem;
      margin-bottom: 10px;
    }

    .quiz-result-desc {
      color: var(--navy-soft);
      font-size: 0.94rem;
      font-weight: 500;
      line-height: 1.55;
      max-width: 460px;
      margin: 0 auto 22px;
    }

    .quiz-result-ctas {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .quiz-restart {
      background: none;
      border: none;
      color: var(--navy-soft);
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      text-decoration: underline;
    }

    .quiz-restart:hover {
      color: var(--purple-deep);
    }

    @media (max-width:600px) {
      .quiz-card {
        padding: 26px 20px;
      }

      .quiz-options {
        grid-template-columns: 1fr;
      }
    }

    /* ---------- PROGRAM ---------- */
    .program-card {
      background: linear-gradient(135deg, var(--lavender) 0%, #ffffff 60%);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .program-card h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
    }

    .program-card ul {
      list-style: none;
      margin: 16px 0 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .program-card li {
      font-size: 0.94rem;
      font-weight: 600;
      color: var(--navy-soft);
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .program-card li::before {
      content: '✓';
      color: var(--mint-deep);
      font-weight: 800;
      flex-shrink: 0;
    }

    .age-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .age-pill {
      background: var(--paper);
      border: 2px solid var(--purple);
      color: var(--purple-deep);
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.85rem;
    }

    .program-visual {
      background: var(--paper);
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      height: 340px !important;
      min-height: 340px !important;
      max-height: 340px !important;
      overflow: hidden !important;
      justify-content: flex-end;
      box-sizing: border-box;
      contain: layout size;
    }

    .mini-bubble {
      padding: 12px 16px;
      border-radius: 16px;
      font-size: 0.88rem;
      font-weight: 600;
      max-width: 85%;
    }

    .mini-bubble.kid {
      background: var(--lavender);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }

    .mini-bubble.tutor {
      background: var(--navy);
      color: var(--paper);
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }

    .typing-indicator {
      display: none;
      align-items: center;
      gap: 4px;
      padding: 12px 16px;
      background: var(--line);
      border-radius: 16px;
      width: fit-content;
    }

    .typing-indicator.kid {
      border-bottom-left-radius: 4px;
      align-self: flex-start;
      background: var(--lavender);
    }

    .typing-indicator.tutor {
      border-bottom-right-radius: 4px;
      align-self: flex-end;
      background: var(--navy);
    }

    .typing-indicator.tutor span {
      background: rgba(255, 255, 255, 0.5);
    }

    .typing-indicator span {
      width: 6px;
      height: 6px;
      background: var(--navy-soft);
      border-radius: 50%;
      animation: typingBounce 1.4s infinite ease-in-out;
    }

    .typing-indicator span:nth-child(1) {
      animation-delay: 0s;
    }

    .typing-indicator span:nth-child(2) {
      animation-delay: 0.2s;
    }

    .typing-indicator span:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes typingBounce {

      0%,
      80%,
      100% {
        transform: translateY(0);
      }

      40% {
        transform: translateY(-6px);
      }
    }

    .msg-hidden {
      display: none;
    }

    .msg-appear {
      animation: msgPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes msgPop {
      0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .msg-disappear {
      animation: msgHide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes msgHide {
      0% {
        opacity: 1;
        transform: scale(1);
        max-height: 100px;
        margin-bottom: 14px;
        padding: 12px 16px;
      }

      100% {
        opacity: 0;
        transform: scale(0.9);
        max-height: 0;
        margin-bottom: 0;
        padding: 0 16px;
        overflow: hidden;
        border: none;
      }
    }

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

    /* ---------- GALLERY SLIDER ---------- */
    .gallery-slider-wrap {
      position: relative;
      overflow: hidden;
      padding-bottom: 8px;
    }

    .gallery-counter {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 10;
      background: rgba(33, 30, 82, 0.72);
      backdrop-filter: blur(4px);
      color: var(--paper);
      font-family: 'Quicksand', sans-serif;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.03em;
      padding: 6px 14px;
      border-radius: 999px;
    }

    .gallery-track {
      display: flex;
      height: 100%;
      transition: transform 0.55s cubic-bezier(0.45, 0, 0.15, 1);
      gap: 20px;
    }

    .gallery-slide {
      flex: 0 0 calc(33.333% - 13.33px);
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      /* inset ring stays visible even with overflow:hidden — no more disappearing top border */
      box-shadow: var(--shadow), inset 0 0 0 3px rgba(255,255,255,0.75);
      aspect-ratio: 4/3;
      background: var(--lavender);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .gallery-slide:hover {
      transform: translateY(-4px);
      /* keep the inset ring visible on hover */
      box-shadow: 0 26px 50px -18px rgba(33, 30, 82, 0.4), inset 0 0 0 3px rgba(255,255,255,0.9);
    }

    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }

    .gallery-slide:hover img {
      transform: scale(1.08);
    }

    .gallery-slide.no-img img {
      display: none;
    }

    .gallery-slide.no-img::before {
      content: '📸';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      background: linear-gradient(135deg, var(--purple), var(--mint));
      opacity: 0.6;
    }

    .gallery-overlay {
      position: absolute;
      inset: auto 0 0 0;
      padding: 28px 32px;
      background: linear-gradient(to top, rgba(33, 30, 82, 0.9), rgba(33, 30, 82, 0.18) 65%, transparent);
      color: var(--paper);
      z-index: 2;
    }

    .gallery-tag {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.85;
    }

    .gallery-overlay h4 {
      color: var(--paper);
      font-size: 1.15rem;
      margin: 6px 0 0;
      font-family: 'Baloo 2';
    }

    /* controls (arrows + dots) at the bottom */
    .gallery-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 24px;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 10px 20px;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 20px -8px rgba(33, 30, 82, 0.12);
    }

    /* arrow buttons — light glass style matching site palette */
    .gallery-arrow {
      position: relative;
      z-index: 10;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--line);
      cursor: pointer;
      background: var(--paper);
      color: var(--purple-deep);
      font-size: 1.05rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px -4px rgba(33, 30, 82, 0.18);
      transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
      flex-shrink: 0;
    }

    .gallery-arrow:hover {
      background: var(--purple-deep);
      color: var(--paper);
      border-color: var(--purple-deep);
      transform: scale(1.1);
      box-shadow: 0 6px 18px -4px rgba(122, 107, 219, 0.45);
    }

    .gallery-arrow:active {
      transform: scale(0.95);
    }

    .gallery-arrow.prev,
    .gallery-arrow.next {
      left: auto;
      right: auto;
    }

    /* dot indicators */
    .gallery-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 0;
    }

    .gallery-dots span {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--line);
      transition: all .3s ease;
      cursor: pointer;
    }

    .gallery-dots span:hover {
      background: var(--purple);
    }

    .gallery-dots span.active {
      background: var(--purple-deep);
      width: 20px;
    }

    @media (max-width: 720px) {
      .gallery-slide {
        flex: 0 0 100%;
      }

      .gallery-track {
        gap: 0;
      }
    }

    @media (max-width: 600px) {
      .gallery-controls {
        gap: 10px;
        margin-top: 16px;
        padding: 8px 14px;
      }

      .gallery-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
      }

      .gallery-overlay {
        padding: 18px 20px;
      }
    }

    /* ---------- FAQ ---------- */
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--paper);
      overflow: hidden;
      transition: box-shadow .25s ease;
    }

    .faq-item.open {
      box-shadow: var(--shadow);
    }

    .faq-q {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 22px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: 'Baloo 2', sans-serif;
      font-size: 1.02rem;
      font-weight: 600;
      color: var(--navy);
    }

    .faq-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--lavender);
      color: var(--purple-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.15rem;
      transition: transform .3s ease, background .3s ease, color .3s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--mint-deep);
      color: var(--paper);
    }

    .faq-item.open .faq-q {
      color: var(--purple-deep);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }

    .faq-a p {
      padding: 0 22px 20px;
      margin: 0;
      color: var(--navy-soft);
      font-size: 0.94rem;
      font-weight: 500;
      line-height: 1.6;
    }

    @media (max-width:600px) {
      .faq-q {
        padding: 16px 18px;
        font-size: 0.95rem;
      }

      .faq-a p {
        padding: 0 18px 18px;
      }
    }

    /* ---------- WHATSAPP FLOAT ---------- */
    .wa-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 200;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55);
      text-decoration: none;
    }

    .wa-float svg {
      width: 30px;
      height: 30px;
      position: relative;
      z-index: 2;
    }

    .wa-float::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25D366;
      animation: wa-pulse 2.2s infinite;
    }

    @keyframes wa-pulse {
      0% {
        transform: scale(1);
        opacity: .55;
      }

      100% {
        transform: scale(1.7);
        opacity: 0;
      }
    }

    .wa-tooltip {
      position: absolute;
      right: 74px;
      bottom: 16px;
      background: var(--navy);
      color: var(--paper);
      padding: 9px 16px;
      border-radius: 12px;
      font-size: 0.82rem;
      font-weight: 700;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateX(8px);
      transition: all .25s ease;
    }

    .wa-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    @media (max-width:600px) {
      .wa-float {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
      }

      .wa-float svg {
        width: 26px;
        height: 26px;
      }

      .wa-tooltip {
        display: none;
      }
    }

    /* ---------- TESTIMONIALS ---------- */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testi {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .testi p {
      font-size: 0.92rem;
      line-height: 1.55;
      margin: 0 0 16px;
      font-weight: 500;
    }

    .testi-who {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-who .av {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Baloo 2';
      font-weight: 700;
      color: var(--paper);
      font-size: 0.9rem;
    }

    .testi-who strong {
      font-size: 0.86rem;
      display: block;
    }

    .testi-who span {
      font-size: 0.76rem;
      color: var(--navy-soft);
      font-weight: 600;
    }

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

    /* ---------- CONTACT ---------- */
    .contact-wrap {
      background: var(--navy);
      border-radius: 36px;
      padding: 56px 44px;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .contact-wrap h2 {
      color: var(--paper);
      font-size: clamp(1.7rem, 3.4vw, 2.4rem);
      margin-bottom: 14px;
    }

    .contact-wrap p.lead2 {
      color: #C9C4EE;
      font-size: 1rem;
      margin-bottom: 24px;
      font-weight: 500;
    }

    .contact-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .contact-item .ic {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.2rem;
    }

    .contact-item strong {
      color: var(--paper);
      font-size: 0.92rem;
      display: block;
    }

    .contact-item span {
      color: #C9C4EE;
      font-size: 0.85rem;
      font-weight: 500;
      overflow-wrap: anywhere;
    }

    .map-fun-container {
      background: linear-gradient(135deg, var(--lavender) 0%, #ffffff 65%);
      padding: 40px;
      border-radius: var(--radius-lg);
      margin-top: 48px;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .map-fun-container .caption {
      display: inline-block;
      margin-bottom: 10px;
    }

    .map-fun-title {
      color: var(--navy);
      font-size: 1.8rem;
      font-family: 'Baloo 2', sans-serif;
      margin-top: 0;
      margin-bottom: 10px;
      position: relative;
      z-index: 2;
    }

    .map-fun-desc {
      color: var(--navy-soft);
      font-size: 0.96rem;
      font-weight: 500;
      max-width: 520px;
      margin: 0 auto 28px;
      position: relative;
      z-index: 2;
    }

    .map-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 6px solid var(--paper);
      box-shadow: var(--shadow);
      transform: translateZ(0);
    }

    @media (min-width: 769px) {
      .map-card {
        transform: rotate(-1.5deg);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .map-card:hover {
        transform: rotate(0deg) scale(1.02);
      }
    }

    .map-card iframe {
      display: block;
      width: 100%;
      height: 320px;
      border: 0;
    }

    @media (max-width:600px) {
      .map-card iframe {
        height: 240px;
      }

      .map-fun-container {
        padding: 20px;
      }

      /* Nonaktifkan efek animasi berat di mobile agar scroll super mulus (60fps) */
      .butterfly-deco,
      .bf-ambient {
        display: none !important;
      }

      .price-save {
        animation: none !important;
      }
    }

    .contact-form-side {
      background: rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-md);
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-form-side h3 {
      color: var(--paper);
      font-size: 1.2rem;
    }

    .contact-form-side p {
      color: #C9C4EE;
      font-size: 0.9rem;
      font-weight: 500;
      margin: 0;
    }

    @media (max-width:860px) {
      .contact-wrap {
        grid-template-columns: 1fr;
        padding: 40px 26px;
      }
    }

    /* ---------- FOOTER ---------- */
    footer {
      padding: 64px 0 32px;
      background: var(--paper);
      border-radius: 48px 48px 0 0;
      margin-top: 40px;
      position: relative;
      z-index: 10;
      box-shadow: 0 -10px 40px rgba(33, 30, 82, 0.05);
    }

    .foot-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 28px;
      margin-bottom: 36px;
    }

    .foot-brand-block {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 320px;
    }

    .foot-tagline {
      color: var(--navy-soft);
      font-size: 0.9rem;
      font-weight: 500;
      line-height: 1.55;
      margin: 0;
    }

    .foot-social {
      display: flex;
      gap: 10px;
      margin-top: 2px;
    }

    .foot-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--lavender);
      color: var(--purple-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .foot-social a:hover {
      background: var(--mint-deep);
      color: var(--paper);
      transform: translateY(-3px);
    }

    .foot-social svg {
      width: 18px;
      height: 18px;
    }

    .foot-divider {
      height: 2px;
      border: none;
      background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
      margin: 0 0 32px;
    }

    .foot-grid {
      display: flex;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 32px;
      margin-bottom: 8px;
    }

    .foot-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .foot-brand img {
      height: 38px;
      width: auto !important;
      object-fit: contain;
    }

    .foot-cols {
      display: flex;
      gap: 56px;
      flex-wrap: wrap;
    }

    .foot-col h4 {
      font-size: 0.82rem;
      margin-bottom: 12px;
      color: var(--navy-soft);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .foot-col a {
      display: block;
      text-decoration: none;
      color: var(--navy);
      font-size: 0.9rem;
      margin-bottom: 9px;
      font-weight: 600;
    }

    .foot-col a:hover {
      color: var(--mint-deep);
    }

    .foot-founder {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      background: var(--lavender);
      border-radius: 999px;
      padding: 10px 22px;
      width: fit-content;
      margin: 36px auto 24px;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--navy-soft);
      text-align: center;
    }

    .foot-founder a {
      color: var(--purple-deep);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .foot-founder a:hover {
      color: var(--mint-deep);
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: var(--navy-soft);
      font-size: 0.8rem;
      font-weight: 600;
    }

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

      .nav-links {
        position: fixed;
        inset: 64px 16px auto 16px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow);
        display: none;
        gap: 16px;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-toggle {
        display: block;
      }

      .board {
        min-height: 360px;
      }
    }

    @media (max-width:600px) {
      .brand-text span {
        display: none;
      }

      .hero {
        padding-top: 32px;
        padding-bottom: 90px;
        gap: 32px;
      }

      .eyebrow .caption {
        font-size: 0.66rem;
        letter-spacing: 0.06em;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-ctas .btn {
        justify-content: center;
        width: 100%;
      }

      .board {
        min-height: 320px;
        padding: 18px;
      }

      .word-emoji {
        font-size: 3.4rem;
      }

      .word-label {
        font-size: 1.4rem;
        padding: 6px 18px;
      }

      .program-card {
        padding: 26px 20px;
        gap: 24px;
      }

      .contact-wrap {
        padding: 32px 20px;
      }

      .foot-top {
        flex-direction: column;
        align-items: flex-start;
      }

      .foot-social {
        margin-top: 6px;
      }

      .foot-grid {
        flex-direction: column;
        justify-content: flex-start;
      }

      .foot-cols {
        gap: 32px;
        width: 100%;
      }

      .foot-founder {
        margin-top: 28px;
        font-size: 0.78rem;
        padding: 10px 16px;
      }

      .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger reveal untuk grup kartu biar muncul berurutan pas di-scroll */
    .why-grid .why-card:nth-child(2) {
      transition-delay: .08s;
    }

    .why-grid .why-card:nth-child(3) {
      transition-delay: .16s;
    }

    .why-grid .why-card:nth-child(4) {
      transition-delay: .24s;
    }

    .steps .step:nth-child(2) {
      transition-delay: .1s;
    }

    .steps .step:nth-child(3) {
      transition-delay: .2s;
    }

    .testi-grid .testi:nth-child(2) {
      transition-delay: .1s;
    }

    .testi-grid .testi:nth-child(3) {
      transition-delay: .2s;
    }

    .price-grid .price-card2:nth-child(2) {
      transition-delay: .12s;
    }

    .faq-list .faq-item:nth-child(2) {
      transition-delay: .06s;
    }

    .faq-list .faq-item:nth-child(3) {
      transition-delay: .12s;
    }

    .faq-list .faq-item:nth-child(4) {
      transition-delay: .18s;
    }

    .faq-list .faq-item:nth-child(5) {
      transition-delay: .24s;
    }

    .trust-strip .trust-badge:nth-child(2) {
      transition-delay: .06s;
    }

    .trust-strip .trust-badge:nth-child(3) {
      transition-delay: .12s;
    }

    .trust-strip .trust-badge:nth-child(4) {
      transition-delay: .18s;
    }

    .stats .stat:nth-child(2) {
      transition-delay: .06s;
    }

    .stats .stat:nth-child(3) {
      transition-delay: .12s;
    }

    .stats .stat:nth-child(4) {
      transition-delay: .18s;
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      html {
        scroll-behavior: auto;
      }
    }