    /* ─────────────────────────────────────────
       RESET
    ───────────────────────────────────────── */
    * {
        font-family: Arial, sans-serif;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      body { overflow-x: hidden; }
  
      /* ─────────────────────────────────────────
         TOP BAR  (#5A2E83)
      ───────────────────────────────────────── */
      .topbar {
        background: #5A2E83;
        padding: 7px 0;
        position: relative;
        z-index: 300;
      }
      .topbar .inner {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 18px;
      }
      .topbar .inner a {
        color: #fff;
        font-size: 0.80rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
      }
      .topbar .inner a img {
        width: 13px;
        height: 13px;
        filter: brightness(0) invert(1);
      }
      .topbar .inner a:hover { opacity: 0.8; }
      .topbar-sep { color: rgba(255,255,255,0.35); font-size: 0.80rem; }
  
  
      /* ─────────────────────────────────────────
         HERO SECTION
         — the entire block (navbar + content)
           sits on the banner background image.
         — NO separate white box for the navbar.
      ───────────────────────────────────────── */
      .hero-section {
        position: relative;
        min-height: 780px;
        /* ↓ BANNER BACKGROUND IMAGE — replace src */
        background-image: url('banner.png'); /* ← PUT YOUR BANNER IMAGE FILENAME HERE */
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #ffffff; /* fallback if image missing */
        display: flex;
        flex-direction: column;
      }
  
      /* no overlay — pure banner image shows through */
      .hero-section::before {
        display: none;
      }
  
  
      /* ─────────────────────────────────────────
         NAVBAR  — floats on banner bg, no box
      ───────────────────────────────────────── */
      .site-navbar {
        position: relative;
        z-index: 200;
        padding: 20px 0;
      }
      .navbar-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
  
      /* Logo — left */
      .navbar-logo img {
        height: 42px;
        width: auto;
        display: block;
      }
  
      /* Right group: nav links  +  Client Login  +  Language */
      .navbar-right {
        display: flex;
        align-items: center;
        gap: 4px;
      }
  
      /* Nav links sit to the LEFT of Client Login */
      .nav-links {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 2px;
        margin: 0;
        padding: 0;
      }
      .nav-links li a {
        font-size: 0.90rem;
        font-weight: 500;
        color: #222;
        text-decoration: none;
        padding: 6px 11px;
        border-radius: 4px;
        white-space: nowrap;
        transition: color .2s;
      }
      .nav-links li a:hover  { color: #5A2E83; }
      .nav-links li a.active { color: #5A2E83; font-weight: 700; }
  
      /* Client Login button */
      .btn-client-login {
        border: 2px solid #5A2E83;
        color: #5A2E83;
        background: transparent;
        border-radius: 6px;
        font-size: 0.88rem;
        font-weight: 700;
        padding: 7px 18px;
        text-decoration: none;
        white-space: nowrap;
        margin-left: 12px;
        transition: background .2s, color .2s;
      }
      .btn-client-login:hover { background: #5A2E83; color: #fff; }
  
      /* Language selector */
      .lang-selector {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        text-decoration: none;
        color: #333;
        font-size: 0.80rem;
        margin-left: 10px;
        white-space: nowrap;
      }
      .lang-selector img {
        width: 24px;
        height: 24px;
        object-fit: cover;
        border-radius: 2px;
      }
      /* .lang-selector span {
        text-decoration: underline;
      } */
  
      /* Mobile hamburger */
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
      }
      .hamburger span {
        display: block;
        width: 25px;
        height: 2.5px;
        background: #333;
        border-radius: 2px;
      }
  
  
      /* ─────────────────────────────────────────
         HERO BODY
         LEFT: text content
         RIGHT: portrait video
      ───────────────────────────────────────── */
      .hero-body {
        position: relative;
        z-index: 1;
        flex: 1;
        display: flex;
        align-items: flex-start;
        padding: 30px 0 40px;
      }
      .hero-body .container { width: 100%; }
  
      /* LEFT — text */
      .hero-eyebrow {
        font-size: 0.83rem;
        color: #888282;
        margin-bottom: 14px;
      }
      .hero-heading {
        font-size: 3.1rem;
        font-weight: 900;
        color: #1a1a1a;
        line-height: 1.10;
        margin-bottom: 20px;
      }
      .hero-subtext {
        font-size: 0.97rem;
        color: #444;
        line-height: 1.65;
        max-width: 420px;
        margin-bottom: 30px;
      }
      .btn-spark-primary {
        background: #5A2E83;
        color: #fff;
        border: none;
        border-radius: 7px;
        padding: 13px 26px;
        font-size: 0.93rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        white-space: nowrap;
        transition: background .2s;
      }
      .btn-spark-primary:hover { background: #4a2570; color: #fff; }
  
      .btn-spark-outline {
        background: transparent;
        color: #5A2E83;
        border: 2px solid #5A2E83;
        border-radius: 7px;
        padding: 11px 24px;
        font-size: 0.93rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        white-space: nowrap;
        transition: background .2s, color .2s;
      }
      .btn-spark-outline:hover { background: #5A2E83; color: #fff; }
  
      .cta-row {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 28px;
      }
  
      /* Social proof */
      .social-proof {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .avatars { display: flex; align-items: center; }
      .avatars img {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2.5px solid #fff;
        object-fit: cover;
        margin-left: -10px;
      }
      .avatars img:first-child { margin-left: 0; }
      .proof-text { font-size: 1.05rem; color: #444; margin: 0; }
      .proof-text strong { font-weight: 900; color: #1a1a1a; font-size: 1.25rem; line-height: 1; }
  
      /* RIGHT — portrait video */
      .hero-video-col {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-bottom: 0 !important;
        align-self: stretch;
      }
      .hero-video-wrap {
        width: 100%;
        height: 620px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: none;
        position: relative;
        margin-top: 30px;
      }
      .hero-video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        mix-blend-mode: multiply;
      }
      /* Unmute button overlay */
      .unmute-btn {
        position: absolute;
        bottom: 18px;
        right: 18px;
        background: rgba(0,0,0,0.55);
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 8px 16px;
        font-size: 0.82rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        z-index: 10;
        transition: background 0.2s;
      }
      .unmute-btn:hover { background: rgba(0,0,0,0.8); }
  
  
      /* ─────────────────────────────────────────
         RESPONSIVE
      ───────────────────────────────────────── */
  
      /* Tablet */
      @media (max-width: 991px) {
        .hero-heading { font-size: 2.3rem; }
        .hero-video-wrap { width: 300px; height: 500px; }
      }
  
      /* Mobile — hamburger, stack layout */
      @media (max-width: 767px) {
        .hamburger { display: flex; }
  
        /* Hide full right nav, show on toggle */
        .navbar-right {
          display: none;
          flex-direction: column;
          align-items: flex-start;
          position: absolute;
          top: 68px;
          left: 0;
          right: 0;
          background: rgba(255,255,255,0.97);
          padding: 16px 20px 20px;
          box-shadow: 0 8px 24px rgba(0,0,0,0.12);
          z-index: 999;
          gap: 0;
        }
        .navbar-right.open { display: flex; }
  
        .nav-links {
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          gap: 0;
        }
        .nav-links li {
          width: 100%;
          border-bottom: 1px solid #f0eaf7;
        }
        .nav-links li:last-child { border-bottom: none; }
        .nav-links li a { display: block; padding: 11px 0; }
  
        .btn-client-login { margin-left: 0; margin-top: 14px; }
        .lang-selector { margin-left: 0; margin-top: 10px; }
  
        /* Stack: video on top, text below */
        .hero-body { padding: 20px 0 40px; }
        .hero-video-col {
          justify-content: center;
          order: -1;
          margin-bottom: 28px;
        }
        .hero-video-wrap { max-width: 220px; aspect-ratio: 9 / 14; }
        .hero-heading { font-size: 2rem; }
        .hero-subtext { max-width: 100%; }
      }
  
      @media (max-width: 480px) {
        .hero-heading { font-size: 1.75rem; }
        .cta-row { flex-direction: column; }
        .btn-spark-primary,
        .btn-spark-outline { width: 100%; text-align: center; }
        .topbar .inner { justify-content: center; flex-wrap: wrap; gap: 8px; }
      }
  
      /* ═══════════════════════════════════════════
      HERO SECTION — background video, original text colors
 ══════════════════════════════════════════════ */

 
   .hero-section {
     position: relative;
     min-height: 929px;
     background-color: #f5f0ff; /* fallback while video loads */
     display: flex;
     flex-direction: column;
     overflow: hidden;
   }
 
   /* ── BACKGROUND VIDEO ── */
   .hero-video-bg {
     position: absolute;
     top: 0; left: 0;
     width: 100%; height: 100%;
     object-fit: cover;
     z-index: 0;
     pointer-events: none;
   }
 
   /* very light overlay — just enough to keep text readable on busy video */
   .hero-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background: rgba(255, 255, 255, 0.30);
     z-index: 1;
     pointer-events: none;
   }
 
   /* ── NAVBAR ── */
   .site-navbar {
     position: relative;
     z-index: 200;
     padding: 20px 0;
   }
   .navbar-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
   }
   .navbar-logo img {
     height: 42px;
     width: auto;
     display: block;
   }
   .navbar-right {
     display: flex;
     align-items: center;
     gap:11px;
   }
   .nav-links {
     list-style: none;
     display: flex;
     align-items: center;
     gap: 2px;
     margin: 0;
     padding: 0;
   }
   /* ← original dark nav link color restored */
   .nav-links li a {
     font-size: 0.90rem;
     font-weight: 500;
     color: #222;
     text-decoration: none;
     padding: 6px 16px;
     border-radius: 4px;
     white-space: nowrap;
     transition: color .2s;
   }
   .nav-links li a:hover  { color: #5A2E83; }
   .nav-links li a.active { color: #5A2E83; font-weight: 700; }
 
   /* ← original purple border Client Login restored */
.btn-client-login {
    border: 2px solid #5A2E83;
    color: #ffffff;
    background: transparent;
    border-radius: 46px;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 7px 18px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 12px;
    transition: background .2s, color .2s;
    background-color: #5A2E83;
}
   .btn-client-login:hover { background: #5A2E83; color: #fff; }
 
   /* ← original dark lang selector restored */
 .lang-selector {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    text-decoration: none !important;
    color: #333;
    font-size: 0.80rem;
    margin-left: 10px;
    white-space: nowrap;
    text-transform: uppercase;
}
   .lang-selector img {
     width: 24px;
     height: 24px;
     object-fit: cover;
     border-radius: 2px;
   }
   /* .lang-selector span { text-decoration: underline; } */
 
   /* hamburger — dark bars */
   .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 4px;
     z-index: 300;
   }
   .hamburger span {
     display: block;
     width: 25px;
     height: 2.5px;
     background: #333;   /* ← original dark color */
     border-radius: 2px;
   }
 
   /* ── HERO BODY ── */
   .hero-body {
     position: relative;
     z-index: 2;
     flex: 1;
     display: flex;
     align-items: flex-start;
     padding: 30px 0 40px;
   }
   .hero-body .container { width: 100%; }
 
   /* ← all text colors restored to original */
   .hero-eyebrow {
     font-size: 0.83rem;
     color: #888282;
     margin-bottom: 14px;
   }
   .hero-heading {
     font-size: 3.1rem;
     font-weight: 900;
     color: #1a1a1a;
     line-height: 1.10;
     margin-bottom: 20px;
   }
   .hero-subtext {
     font-size: 0.97rem;
     color: #444;
     line-height: 1.65;
     max-width: 420px;
     margin-bottom: 30px;
   }
 
   .btn-spark-primary {
     background: #5A2E83;
     color: #fff;
     border: none;
     border-radius: 7px;
     padding: 13px 26px;
     font-size: 0.93rem;
     font-weight: 700;
     text-decoration: none;
     display: inline-block;
     white-space: nowrap;
     transition: background .2s;
   }
   .btn-spark-primary:hover { background: #4a2570; color: #fff; }
 
   .btn-spark-outline {
     background: transparent;
     color: #5A2E83;
     border: 2px solid #5A2E83;
     border-radius: 7px;
     padding: 11px 24px;
     font-size: 0.93rem;
     font-weight: 700;
     text-decoration: none;
     display: inline-block;
     white-space: nowrap;
     transition: background .2s, color .2s;
   }
   .btn-spark-outline:hover { background: #5A2E83; color: #fff; }
 
   .cta-row {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     margin-bottom: 28px;
   }
 
   /* social proof */
   .social-proof {
     display: flex;
     align-items: center;
     gap: 12px;
   }
   .avatars { display: flex; align-items: center; }
   .avatars img {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     border: 2.5px solid #fff;
     object-fit: cover;
     margin-left: -10px;
   }
   .avatars img:first-child { margin-left: 0; }
   /* ← original dark proof text restored */
   .proof-text { font-size: 1.05rem; color: #444; margin: 0; }
   .proof-text strong { font-weight: 900; color: #1a1a1a; font-size: 1.25rem; line-height: 1; }
 
   /* ── SOUND BUTTON (bottom-right of hero) ── */
   .hero-sound-btn {
     position: absolute;
     bottom: 24px;
     right: 24px;
     z-index: 10;
     background: rgba(90, 46, 131, 0.80);
     color: #fff;
     border: none;
     border-radius: 50px;
     padding: 9px 18px;
     font-size: 0.82rem;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 7px;
     transition: background 0.2s;
     font-family: Arial, sans-serif;
   }
   .hero-sound-btn:hover { background: rgba(90, 46, 131, 1); }
 
   /* ── RESPONSIVE ── */
   @media (max-width: 991px) {
     .hero-section  { min-height: 680px; }
     .hero-heading  { font-size: 2.3rem; }
   }
 
   @media (max-width: 767px) {
     .hero-section  { min-height: 100svh; }
     .hamburger     { display: flex; }
 
     .navbar-right {
       display: none;
       flex-direction: column;
       align-items: flex-start;
       position: absolute;
       top: 68px;
       left: 0;
       right: 0;
       background: rgba(255,255,255,0.97);
       padding: 16px 20px 20px;
       box-shadow: 0 8px 24px rgba(0,0,0,0.12);
       z-index: 999;
       gap: 0;
     }
     .navbar-right.open { display: flex; }
 
     .nav-links {
       flex-direction: column;
       align-items: flex-start;
       width: 100%;
       gap: 0;
     }
     .nav-links li {
       width: 100%;
       border-bottom: 1px solid #f0eaf7;
     }
     .nav-links li:last-child { border-bottom: none; }
     .nav-links li a { display: block; padding: 11px 0; }
 
     .btn-client-login { margin-left: 0; margin-top: 14px; }
     .lang-selector    { margin-left: 0; margin-top: 10px; }
 
     .hero-body    { padding: 20px 0 40px; }
     .hero-heading { font-size: 2rem; }
     .hero-subtext { max-width: 100%; }
 
     .hero-sound-btn { bottom: 16px; right: 16px; }
   }
 
   @media (max-width: 480px) {
     .hero-heading { font-size: 1.75rem; }
     .cta-row { flex-direction: column; }
     .btn-spark-primary,
     .btn-spark-outline { width: 100%; text-align: center; }
     .topbar .inner { justify-content: center; flex-wrap: wrap; gap: 8px; }
   }
 
   /* ═══════════════════════════════════════════
   SIGNATURE OFFER SECTION
══════════════════════════════════════════════ */

.sig-section {
  padding: 80px 0 0 0;
  background: #fff;
  font-family: Arial, sans-serif;
}
.sig-eyebrow {
  font-size: 0.83rem;
  color: #888282;
  margin-bottom: 10px;
}
.sig-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sig-desc {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 380px;
}
.sig-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F8F0FF;
  color: #5A2E83;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 14px;
  margin-bottom: 16px;
}
.sig-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5A2E83;
  display: inline-block;
  flex-shrink: 0;
}
.sig-progress-label {
  font-size: 0.88rem;
  color: #5A2E83;
  font-weight: 400;
  margin-bottom: 12px;
}
.sig-tracker-wrapper {
  display: inline-flex;
  align-items: center;
  width: auto;
}
.sig-tracker-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.sig-tracker-dot-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.sig-tracker-dot-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed #5A2E83;
}
.sig-tracker-dot-inner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5A2E83;
  flex-shrink: 0;
}
.sig-tracker-num {
  font-size: 0.80rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 10px;
}
.sig-tracker-line {
  height: 6px;
  width: 150px;
  flex-shrink: 0;
  background: #F8F0FF;
  border-radius: 2px;
  margin-bottom: 26px;
}
.sig-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: #FAF9F7;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
}
.sig-card:last-child { margin-bottom: 0; }
.sig-card-num-box {
  background: #F8F0FF;
  border-radius: 10px;
  min-width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #5A2E83;
  margin-right: 20px;
  flex-shrink: 0;
}
.sig-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sig-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.3;
}
.sig-card-duration {
  font-size: 0.78rem;
  font-weight: 400;
  color: #888282;
}
.sig-card-text {
  font-size: 0.90rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991px) {
  .sig-heading { font-size: 1.85rem; }
  .sig-tracker-line { width: 70px; }
}
@media (max-width: 767px) {
  .sig-section { padding: 50px 0; }
  .sig-heading { font-size: 1.6rem; }
  .sig-desc { max-width: 100%; }
  .sig-tracker-line { width: 50px; }
}
@media (max-width: 480px) {
  .sig-heading { font-size: 1.4rem; }
  .sig-tracker-line { width: 35px; }
}

/* ═══════════════════════════════════════════
     WHAT CHANGES SECTION
══════════════════════════════════════════════ */
  .wc-section {
    padding: 80px 0 0 0;
    background: #fff;
    font-family: Arial, sans-serif;
  }
  .wc-eyebrow {
    font-size: 0.83rem;
    color: #888282;
    margin-bottom: 10px;
  }
  .wc-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  .wc-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .wc-card-top {
    background: #F9F8F6;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    flex-shrink: 0;
  }
  .wc-card-top img {
    width: 130px;
    height: 130px;
    object-fit: contain;
  }
  .wc-card-bottom {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .wc-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
  }
  .wc-card-text {
    font-size: 0.90rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 991px) {
    .wc-heading { font-size: 1.85rem; }
  }
  @media (max-width: 767px) {
    .wc-section { padding: 50px 0; }
    .wc-heading { font-size: 1.6rem; }
    .wc-card-top { height: 180px; }
  }
  @media (max-width: 480px) {
    .wc-heading { font-size: 1.4rem; }
  }

  /* ═══════════════════════════════════════════
  WHY SPARK SECTION
══════════════════════════════════════════════ */
.ws-section {
 padding: 80px 0 0 0;
 background: #fff;
 font-family: Arial, sans-serif;
}
.ws-eyebrow {
 font-size: 0.83rem;
 color: #888282;
 margin-bottom: 10px;
}
.ws-heading {
 font-size: 2.2rem;
 font-weight: 700;
 color: #1a1a1a;
 line-height: 1.2;
 margin-bottom: 20px;
}
.ws-items-wrap {
 margin-top: 60px;
}
.ws-item {
 display: flex;
 align-items: flex-start;
 gap: 18px;
 padding-bottom: 28px;
 margin-bottom: 28px;
 border-bottom: 1px solid #e8e8e8;
}
.ws-item:last-child {
 border-bottom: none;
 margin-bottom: 0;
 padding-bottom: 0;
}
.ws-icon-wrap {
 width: 48px;
 height: 48px;
 min-width: 48px;
 border-radius: 50%;
 background: #5A2E83;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.ws-icon-wrap img {
 width: 24px;
 height: 24px;
 object-fit: contain;
 filter: brightness(0) invert(1);
}
.ws-item-body {
 display: flex;
 flex-direction: column;
}
.ws-item-title {
 font-size: 1.05rem;
 font-weight: 700;
 color: #1a1a1a;
 margin-bottom: 8px;
}
.ws-item-text {
 font-size: 0.90rem;
 color: #555;
 line-height: 1.6;
 margin: 0;
}
.ws-right-col {
 display: flex;
 align-items: flex-start;
}
.ws-image-wrap {
 width: 100%;
 border-radius: 16px;
 overflow: hidden;
 max-height: 520px;
}
.ws-image-wrap img {
 width: 100%;
 height: auto;
 max-height: 520px;
 object-fit: contain;
 border-radius: 16px;
 display: block;
}


@media (max-width: 991px) {
 .ws-heading { font-size: 1.85rem; }
 .ws-image-wrap { max-height: 360px; }
 .ws-image-wrap img { max-height: 360px; }
}
@media (max-width: 767px) {
 .ws-section { padding: 50px 0; }
 .ws-heading { font-size: 1.6rem; }
 .ws-image-wrap { max-height: 300px; }
 .ws-image-wrap img { max-height: 300px; }
}
@media (max-width: 480px) {
 .ws-heading { font-size: 1.4rem; }
 .ws-image-wrap { max-height: 240px; }
 .ws-image-wrap img { max-height: 240px; }
}


/* ═══════════════════════════════════════════
     1:1 BREAK THROUGH COACHING SECTION
══════════════════════════════════════════════ */
  .coaching-section {
    padding: 80px 0 0 0;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .coaching-sticky-outer {
    position: relative;
    height: 300vh;
  }
  .coaching-sticky-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .coaching-box {
    background: #FAF9F7;
    border-radius: 24px;
    display: flex;
    align-items: stretch;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    padding: 32px;
    gap: 36px;
  }
  .coaching-box.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%);
  }
  .coaching-box.exit-up {
    opacity: 0;
    transform: translateY(calc(-50% - 50px));
  }
  .coaching-box.exit-down {
    opacity: 0;
    transform: translateY(calc(-50% + 50px));
  }

  /* LEFT — image 50% with padding inside box */
  .coaching-img-wrap {
  position: relative;
  width: 42%;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  max-height: 400px;
  }
  .coaching-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
  }
  .coaching-img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #5A2E83;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
  }
  .coaching-img-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    flex-shrink: 0;
  }

  /* RIGHT — content 50% */
  .coaching-content {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 30px;
  }
  .coaching-heading {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .coaching-para {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .coaching-para:last-of-type {
    margin-bottom: 24px;
  }

  .coaching-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }
  .coaching-tag {
    border: 1.5px solid #5A2E83;
    color: #5A2E83;
    background: #fff;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .coaching-counter {
    text-align: right;
    font-size: 0.82rem;
    color: #888282;
    margin-top: auto;
    padding-top: 24px;
    font-weight: 500;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .coaching-box { padding: 24px; gap: 24px; }
    .coaching-img-wrap { min-height: 320px; }
    .coaching-heading { font-size: 1.5rem; }
  }
  @media (max-width: 767px) {
    .coaching-section { padding: 50px 0; }
    .coaching-sticky-outer { height: 400vh; }
    .coaching-box {
      flex-direction: column;
      padding: 20px;
      gap: 20px;
    }
    .coaching-img-wrap {
      width: 100%;
      min-height: 240px;
    }
    .coaching-content { width: 100%; }
    .coaching-heading { font-size: 1.35rem; }
  }
  @media (max-width: 480px) {
    .coaching-heading { font-size: 1.2rem; }
    .coaching-box { padding: 16px; }
  }

  /* ═══════════════════════════════════════════
  SPARK UP YOUR SECTION
══════════════════════════════════════════════ */
.sparkup-section {
 padding: 80px 0;
 background: #fff;
 font-family: Arial, sans-serif;
}

/* LEFT */
.sparkup-heading {
 font-size: 2rem;
 font-weight: 900;
 color: #1a1a1a;
 margin-bottom: 36px;
}
.sparkup-item {
 display: flex;
 align-items: flex-start;
 gap: 16px;
 padding: 22px 0;
 border-bottom: 1px solid #e8e8e8;
}
.sparkup-item:first-of-type { padding-top: 0; }
.sparkup-item:last-of-type { border-bottom: none; }
.sparkup-icon {
 width: 28px;
 height: 28px;
 border-radius: 50%;
 background: #5A2E83;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 margin-top: 2px;
}
.sparkup-icon svg {
 width: 13px;
 height: 13px;
 stroke: #fff;
 fill: none;
 stroke-width: 2.8;
 stroke-linecap: round;
 stroke-linejoin: round;
}
.sparkup-item-title {
 font-size: 1rem;
 font-weight: 700;
 color: #1a1a1a;
 margin-bottom: 5px;
}
.sparkup-item-text {
 font-size: 0.90rem;
 color: #555;
 line-height: 1.65;
 margin: 0;
 max-width: 400px;
}

/* RIGHT */
.sparkup-right-heading {
 font-size: 2.2rem;
 font-weight: 700;
 color: #1a1a1a;
 line-height: 1.2;
 margin-bottom: 24px;
}

/* Promo box wrapper — extra top padding to give man room to overflow */
.sparkup-promo-outer {
 padding-top: 60px;
 position: relative;
}

.sparkup-promo-box {
 background: #5A2E83;
 border-radius: 18px;
 padding: 28px 28px 28px 28px;
 position: relative;
 overflow: hidden;
 min-height: 220px;
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.sparkup-promo-bg {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
 z-index: 0;
 border-radius: 18px;
 opacity: 1;
}

.sparkup-promo-box::before {
 content: '';
 position: absolute;
 inset: 0;
 border-radius: 18px;
 background: rgba(60, 10, 100, 0.45);
 z-index: 1;
}

.sparkup-promo-text-wrap {
 position: relative;
 z-index: 2;
 max-width: 48%;
}
.sparkup-promo-title {
 font-size: 1.05rem;
 font-weight: 600;
 color: #fff;
 line-height: 1.4;
 margin-bottom: 20px;
}
.sparkup-promo-cta {
 display: inline-block;
 background: #fff;
 color: #5A2E83;
 font-size: 0.65rem;
 font-weight: 600;
 border-radius: 8px;
 padding: 10px 22px;
 text-decoration: none;
 transition: background 0.2s;
}
.sparkup-promo-cta:hover {
 background: #f0e0ff;
 color: #5A2E83;
}

/* Man — positioned on outer wrapper, overflows ABOVE the box */
.sparkup-man-wrap {
 position: absolute;
 bottom: 0;
 right: -10px;
 z-index: 10;
 width: 75%;
 pointer-events: none;
}
.sparkup-man-wrap img {
 width: 100%;
 height: auto;
 display: block;
}

/* Responsive */
@media (max-width: 991px) {
 .sparkup-right-heading { font-size: 1.6rem; }
 .sparkup-heading { font-size: 1.7rem; }
 .sparkup-man-wrap { width: 55%; }
}
@media (max-width: 767px) {
 .sparkup-section { padding: 50px 0; }
 .sparkup-heading { font-size: 1.5rem; }
 .sparkup-right-heading { font-size: 1.45rem; }
 .sparkup-item-text { max-width: 100%; }
 .sparkup-right { margin-top: 40px; }
 .sparkup-man-wrap { width: 50%; right: 0; }
 .sparkup-promo-text-wrap { max-width: 55%; }
 .sparkup-promo-outer { padding-top: 60px; }
}
@media (max-width: 480px) {
 .sparkup-heading { font-size: 1.3rem; }
 .sparkup-right-heading { font-size: 1.25rem; }
 .sparkup-promo-box { min-height: 180px; }
 .sparkup-man-wrap { width: 46%; }
 .sparkup-promo-outer { padding-top: 50px; }
}

/* ═══════════════════════════════════════════
     LANGUAGES SECTION
══════════════════════════════════════════════ */

  .lang-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FCF3F3, #F2F8F4);
    font-family: Arial, sans-serif;
    overflow: hidden;
  }
  .lang-eyebrow {
    text-align: center;
    font-size: 0.88rem;
    color: #888282;
    margin-bottom: 10px;
  }
  .lang-heading {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 60px;
  }
  .lang-heading span {
    font-size: 2.6rem;
    font-weight: 900;
    color: #1a1a1a;
  }

  .lang-slider-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }
  .lang-slider-wrap:last-child {
    margin-bottom: 0;
  }

  .lang-slider-track {
    display: flex;
    gap: 80px;
    width: max-content;
  }
  .lang-slider-track.slide-left {
    animation: langSlideLeft 25s linear infinite;
  }
  .lang-slider-track.slide-right {
    animation: langSlideRight 25s linear infinite;
  }
  .lang-slider-wrap:hover .lang-slider-track {
    animation-play-state: paused;
  }

  @keyframes langSlideLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes langSlideRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

  .lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .lang-item img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
  }
  .lang-item span {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 500;
  }

  .lang-slider-wrap::before,
  .lang-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .lang-slider-wrap::before {
    left: 0;
    background: linear-gradient(to right, #FCF3F3, transparent);
  }
  .lang-slider-wrap::after {
    right: 0;
    background: linear-gradient(to left, #F2F8F4, transparent);
  }

  @media (max-width: 767px) {
    .lang-heading { font-size: 1.5rem; }
    .lang-heading span { font-size: 2rem; }
    .lang-item img { width: 26px; height: 18px; }
    .lang-item span { font-size: 0.85rem; }
    .lang-slider-track { gap: 30px; }
  }
  @media (max-width: 480px) {
    .lang-heading { font-size: 1.25rem; }
    .lang-heading span { font-size: 1.7rem; }
  }

/* ═══════════════════════════════════════════
  TESTIMONIALS / PROOF SECTION
══════════════════════════════════════════════ */

.proof-section {
 padding: 80px 0 5px 0;
 background: #fff;
 font-family: Arial, sans-serif;
 overflow: hidden;
}
.proof-eyebrow {
 font-size: 0.83rem;
 color: #888282;
 margin-bottom: 10px;
}
.proof-heading {
font-size: 2.2rem;        /* keep original size */
font-weight: 700;
color: #1a1a1a;
line-height: 1.2;
margin-bottom: 20px;      /* was 60px — this kills the big gap */
max-width: 620px;
}

/* ── ARROWS ── */
.proof-arrows {
 display: flex;
 justify-content: flex-end;
 gap: 12px;
 margin-bottom: 32px;
}
.proof-arrow-btn {
 width: 42px;
 height: 42px;
 border-radius: 50%;
 border: 2px solid #5A2E83;
 background: transparent;
 color: #5A2E83;
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 transition: background 0.2s, color 0.2s;
 flex-shrink: 0;
}
.proof-arrow-btn:hover { background: #5A2E83; color: #fff; }
.proof-arrow-btn:disabled { opacity: 0.30; cursor: default; }
.proof-arrow-btn svg {
 width: 16px;
 height: 16px;
 stroke: currentColor;
 fill: none;
 stroke-width: 2.5;
 stroke-linecap: round;
 stroke-linejoin: round;
}

/* ── SLIDER OUTER ── */
.proof-slider-outer {
 overflow: hidden;
 padding-top: 50px;
 margin-top: -50px;
}
.proof-slider-track {
 display: flex;
 gap: 28px;
 transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
 will-change: transform;
 align-items: stretch;
}

/* ── SLIDE WRAPPER ── */
.proof-slide {
 flex: 0 0 calc(50% - 14px);
 min-width: calc(50% - 14px);
 position: relative;
 padding-top: 50px;
 box-sizing: border-box;
}

/* ── GREY CARD ── */
.proof-card {
 background: #FAF9F7;
 border-radius: 16px;
 margin-left: 30px;
 margin-top: 0;
 padding: 30px 28px 32px 24px;
 position: relative;
 display: flex;
 flex-direction: column;
 min-height: unset;
}

/* ── PURPLE BUBBLE IMAGE
  height: auto — full image shows, arrow never cut   ── */
.proof-bubble-img {
 position: absolute;
 left: 0;
 top: 0;
 width: 58%;
 max-width: 240px;
 height: auto;
 z-index: 10;
 display: block;
}

/* ── AVATAR IMAGE ── */
.proof-avatar-img {
 position: absolute;
 top: 0;
 right: 0;
 width: 90px;
 height: 90px;
 border-radius: 50%;
 object-fit: cover;
 z-index: 10;
 display: block;
 border: 3px solid #FAF9F7;
}

/* ── REVIEW TEXT ── */
.proof-review-text {
 font-size: 0.97rem;
 color: #444;
 line-height: 1.75;
 margin-bottom: 20px;
}

/* ── RATING ── */
.proof-rating-num {
 font-size: 0.92rem;
 font-weight: 600;
 color: #1a1a1a;
 margin-bottom: 7px;
}
.proof-stars {
 display: flex;
 gap: 5px;
}
.proof-stars span {
 color: #F5A623;
 font-size: 1.15rem;
 line-height: 1;
}

/* ── DOTS ── */
.proof-dots {
 display: flex;
 justify-content: center;
 gap: 8px;
 margin-top: 40px;
}
.proof-dot {
 width: 10px;
 height: 10px;
 border-radius: 50%;
 background: #e0d4f0;
 border: none;
 padding: 0;
 cursor: pointer;
 transition: background 0.2s, transform 0.2s;
}
.proof-dot.active {
 background: #5A2E83;
 transform: scale(1.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
 .proof-heading { font-size: 1.85rem; }
 .proof-slide { padding-top: 130px; }
 .proof-slider-outer { padding-top: 130px; margin-top: -130px; }
 .proof-bubble-img { width: 55%; max-width: 210px; height: auto; }
 .proof-avatar-img { width: 80px; height: 80px; }
 .proof-card { margin-left: 28px; }
}
@media (max-width: 767px) {
 .proof-section { padding: 50px 0; }
 .proof-heading { font-size: 1.6rem; margin-bottom: 40px; }
 .proof-slide {
   flex: 0 0 100%;
   min-width: 100%;
   padding-top: 130px;
 }
 .proof-slider-outer { padding-top: 130px; margin-top: -130px; }
 .proof-card { margin-left: 24px; padding: 28px 18px 26px 18px; }
 .proof-bubble-img { width: 65%; max-width: 200px; height: auto; }
 .proof-avatar-img { width: 72px; height: 72px; }
}
@media (max-width: 480px) {
 .proof-heading { font-size: 1.35rem; }
 .proof-slide { padding-top: 120px; }
 .proof-slider-outer { padding-top: 120px; margin-top: -120px; }
 .proof-card { margin-left: 20px; padding: 24px 14px 22px 14px; }
 .proof-bubble-img { width: 70%; max-width: 180px; height: auto; }
 .proof-avatar-img { width: 60px; height: 60px; }
}

/* ═══════════════════════════════════════════
     AWARDS & RECOGNITION SECTION
══════════════════════════════════════════════ */
  .awards-section {
    padding: 80px 0 0 0;
    background: #fff;
    font-family: Arial, sans-serif;
  }
  .awards-eyebrow {
    font-size: 0.83rem;
    color: #888282;
    margin-bottom: 10px;
  }
  .awards-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 50px;
    max-width: 600px;
  }

  /* ── CARDS ROW ── */
  .awards-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .award-card {
  background: transparent;   /* was #5A2E83 — remove purple fill */
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;                /* was 24px 16px — remove padding too */
  text-align: center;
  transition: transform 0.2s;
  flex-shrink: 0;
  }
  .award-card:hover { transform: translateY(-4px); }

  .award-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
  }

  /* Size tiers */
  .award-card.size-lg {
    width: 220px;
    height: 280px;
  }
  .award-card.size-md {
    width: 190px;
    height: 240px;
  }
  .award-card.size-sm {
    width: 165px;
    height: 210px;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .award-card.size-lg { width: 180px; height: 230px; }
    .award-card.size-md { width: 155px; height: 200px; }
    .award-card.size-sm { width: 130px; height: 170px; }
    .awards-row { gap: 10px; }
  }
  @media (max-width: 767px) {
    .awards-section { padding: 50px 0; }
    .awards-heading { font-size: 1.6rem; margin-bottom: 36px; }
    .awards-row {
      flex-wrap: wrap;
      gap: 12px;
    }
    .award-card.size-lg { width: 45%; height: 200px; order: 1; }
    .award-card.size-md { width: 40%; height: 180px; order: 2; }
    .award-card.size-sm { width: 36%; height: 160px; order: 3; }
  }
  @media (max-width: 480px) {
    .awards-heading { font-size: 1.4rem; }
    .awards-row { gap: 10px; }
    .award-card.size-lg { width: 48%; height: 180px; }
    .award-card.size-md { width: 44%; height: 160px; }
    .award-card.size-sm { width: 40%; height: 140px; }
  }

  .transform-section {
    padding: 80px 0;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .transform-box {
  background: linear-gradient(to bottom, #FFF6F5, #F7FFFB);
  border-radius: 24px;
   padding-right: 40px;
  overflow: visible;
  display: flex;
  align-items: stretch;
  min-height: 420px;
  position: relative;
  }
.transform-box {
  -webkit-mask-image: -webkit-radial-gradient(white, black);  /* safari fix */
}
  /* LEFT — 40% */
  .transform-left {
    flex: 0 0 50%;
    padding: 48px 32px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .transform-heading {
    font-size: 2.1rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 18px;
    word-break: break-word;
  }
  .transform-heading .purple {
    color: #5A2E83;
  }
  .transform-subtext {
    font-size: 0.88rem;
    color: #888282;
    line-height: 1.65;
    margin: 0;
    max-width: 320px; 
  }

  /* CENTER — image, 32% */
  .transform-img-col {
    flex: 0 0 25%;
    position: relative;
    overflow: hidden;
    align-self: stretch;
  }
  .transform-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* RIGHT — 28% */
  .transform-right {
  flex: 0 0 25%;
  padding: 36px 60px 36px 28px;   /* increase right padding from 28px to 40px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  }

  /* White stats card */
  .transform-stats-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    width: 100%;
  }
  .transform-stats-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 6px;
  }
  .transform-stats-divider {
    height: 1px;
    background: #e8e8e8;
    margin-bottom: 8px;
  }
  .transform-stats-label {
    font-size: 0.80rem;
    color: #888282;
    margin-bottom: 10px;
  }
  .transform-avatars {
    display: flex;
    align-items: center;
  }
  .transform-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -7px;
  }
  .transform-avatars img:first-child { margin-left: 0; }

  /* Tag pills */
  .transform-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .transform-tags-row {
    display: flex;
    gap: 8px;
    justify-content: center;
  }
  .transform-tag {
    border: 1.5px solid #5A2E83;
    color: #5A2E83;
    background: #fff;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
  }

  /* Spark logo — centered to white card width */
  .transform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .transform-logo img {
    height: 28px;
    width: auto;
    opacity: 0.35;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .transform-heading { font-size: 1.6rem; }
    .transform-left { padding: 36px 24px 36px 28px; }
    .transform-right { padding: 28px 18px; }
  }
  @media (max-width: 767px) {
    .transform-section { padding: 50px 0; }
    .transform-box {
      flex-direction: column;
      min-height: unset;
    }
    .transform-left {
      flex: unset;
      padding: 36px 28px 28px;
    }
    .transform-img-col {
      flex: unset;
      height: 320px;
    }
    .transform-right {
      flex: unset;
      padding: 28px 28px 36px;
      gap: 24px;
    }
  }
  @media (max-width: 480px) {
    .transform-heading { font-size: 1.3rem; }
    .transform-stats-num { font-size: 1.4rem; }
    .transform-img-col { height: 260px; }
  }

/* ═══════════════════════════════════════════
  TECHNOLOGY BANNER SECTION
══════════════════════════════════════════════ */

.tech-banner {
 position: relative;
 width: 100%;
 min-height: 420px;
 background-image: url('https://spark3dev.wpenginepowered.com/wp-content/uploads/2026/05/tech-banner.png');
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 background-color: #5A2E83;
 display: flex;
 align-items: center;
 overflow: hidden;
}

.tech-banner::before {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(50, 10, 80, 0.55);
 z-index: 1;
}

.tech-banner-inner {
 position: relative;
 z-index: 2;
 width: 100%;
 display: flex;
 align-items: center;
 padding: 60px 80px;
}

/* LEFT 50% */
.tech-banner-left {
 flex: 0 0 50%;
 max-width: 50%;
 padding-right: 48px;
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.tech-banner-heading {
 font-size: 2.2rem;
 font-weight: 900;
 color: #fff;
 line-height: 1.2;
 margin-bottom: 18px;
 font-family: Arial, sans-serif;
}

.tech-banner-subtext {
 font-size: 0.92rem;
 color: rgba(255,255,255,0.80);
 line-height: 1.7;
 margin-bottom: 32px;
 max-width: 380px;
 font-family: Arial, sans-serif;
}

.tech-banner-cta {
 display: inline-block;
 background: transparent;
 color: #fff;
 border: 2px solid #fff;
 border-radius: 7px;
 padding: 11px 26px;
 font-size: 0.90rem;
 font-weight: 700;
 text-decoration: none;
 font-family: Arial, sans-serif;
 white-space: nowrap;
 width: fit-content;
 transition: background 0.2s, color 0.2s;
}
.tech-banner-cta:hover {
 background: #fff;
 color: #5A2E83;
}

/* RIGHT 50% */
.tech-banner-right {
 flex: 0 0 50%;
 max-width: 50%;
 display: flex;
 align-items:  flex-end;
 justify-content: flex-end;
 position: relative;
 z-index: 2;
 padding-top: 60px; 
}

.tech-banner-right img.dashboard-img {
 width: 100%;
 max-width: 580px;
 height: auto;
 display: block;
 object-fit: contain;
 filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
 position: relative;
 z-index: 1;
}

/* Floating badges */
.tech-badge {
 position: absolute;
 background: rgba(255,255,255,0.95);
 border-radius: 8px;
 padding: 8px 14px;
 font-size: 0.78rem;
 font-weight: 600;
 color: #1a1a1a;
 display: flex;
 align-items: center;
 gap: 7px;
 white-space: nowrap;
 box-shadow: 0 4px 16px rgba(0,0,0,0.12);
 font-family: Arial, sans-serif;
 z-index: 10;
}
.tech-badge .badge-star {
 color: #F5A623;
 font-size: 0.95rem;
}
.tech-badge.badge-top {
 top: 40px;
 right: 0px;
}
.tech-badge.badge-mid {
 bottom: 120px;
 left: 0px;
}
.tech-badge.badge-bot {
 bottom: 40px;
 right: 20px;
}

/* Responsive */
@media (max-width: 991px) {
 .tech-banner-inner { padding: 50px 40px; }
 .tech-banner-heading { font-size: 1.8rem; }
 .tech-banner-right img.dashboard-img { max-width: 420px; }
}
@media (max-width: 767px) {
 .tech-banner { min-height: unset; }
 .tech-banner-inner {
   flex-direction: column;
   padding: 50px 24px;
   gap: 40px;
 }
 .tech-banner-left {
   flex: unset;
   max-width: 100%;
   padding-right: 0;
 }
 .tech-banner-subtext { max-width: 100%; }
 .tech-banner-right {
   flex: unset;
   max-width: 100%;
   justify-content: center;
 }
 .tech-banner-right img.dashboard-img { max-width: 100%; }
 .tech-badge.badge-top { top: -10px; right: 0; }
 .tech-badge.badge-mid { bottom: 100px; left: 0; }
 .tech-badge.badge-bot { bottom: 20px; right: 0; }
 .tech-banner-heading { font-size: 1.6rem; }
}
@media (max-width: 480px) {
 .tech-banner-inner { padding: 40px 20px; }
 .tech-banner-heading { font-size: 1.35rem; }
 .tech-badge { font-size: 0.70rem; padding: 6px 10px; }
}

/* ═══════════════════════════════════════════
     STORIES OF TRANSFORMATION SECTION
══════════════════════════════════════════════ */

  .stories-section {
    padding: 80px 0 0 0;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .stories-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .story-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    display: block;
    cursor: pointer;
  }

  .story-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
    z-index: 1;
  }
  .story-card:hover .story-card-img {
    transform: scale(1.04);
  }

  .story-card-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 24px 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 2;
  }

  .story-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    flex: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
  }

  .story-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #5A2E83;
    border: none;
    border-radius: 50px;
    padding: 8px 8px 8px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 3;
  }
  .story-card-cta:hover {
    background: #f0e0ff;
    color: #5A2E83;
  }

  .story-cta-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #5A2E83;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .story-cta-circle svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @media (max-width: 991px) {
    .stories-heading { font-size: 1.85rem; }
    .story-card { height: 320px; }
  }
  @media (max-width: 767px) {
    .stories-section { padding: 50px 0; }
    .stories-heading { font-size: 1.6rem; }
    .story-card { height: 300px; }
    .story-card-title { font-size: 0.95rem; }
  }
  @media (max-width: 480px) {
    .stories-heading { font-size: 1.35rem; }
    .story-card { height: 260px; }
    .story-card-glass { padding: 16px 14px 18px 14px; }
    .story-card-cta { font-size: 0.75rem; padding: 7px 7px 7px 12px; }
    .story-cta-circle { width: 24px; height: 24px; }
  }

/* ═══════════════════════════════════════════
  OUR STORY SECTION
══════════════════════════════════════════════ */
.ourstory-section {
 padding: 80px 0 0 0;
 background: #fff;
 font-family: Arial, sans-serif;
}

/* LEFT — image */
.ourstory-img-wrap {
 display: flex;
 align-items: stretch;
 height: 100%;
}
.ourstory-img-inner {
 background: linear-gradient(to bottom, #FFF6F5, #F7FFFB);
 border-radius: 20px;
 overflow: hidden;
 width: 100%;
 display: flex;
 align-items: flex-end;
 justify-content: center;
 min-height: 480px;
}
.ourstory-img-inner img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center top;
 display: block;
 border-radius: 20px;
}

/* RIGHT — content */
.ourstory-content {
 display: flex;
 flex-direction: column;
 justify-content: center;
 padding-left: 48px;
 height: 100%;
}

.ourstory-eyebrow {
 font-size: 0.83rem;
 color: #888282;
 margin-bottom: 16px;
}

.ourstory-heading {
 font-size: 1.75rem;
 font-weight: 800;
 color: #1a1a1a;
 line-height: 1.35;
 margin-bottom: 20px;
 max-width: 520px;
}
.ourstory-heading .purple {
 color: #5A2E83;
}

.ourstory-subtext {
 font-size: 0.90rem;
 color: #555;
 line-height: 1.75;
 margin-bottom: 28px;
 max-width: 480px;
}

/* Signature */
.ourstory-signature {
 display: block;
 width: 300px;
 height: auto;
}

/* Responsive */
@media (max-width: 991px) {
 .ourstory-heading { font-size: 1.45rem; max-width: 420px; }
 .ourstory-content { padding-left: 32px; }
 .ourstory-img-inner { min-height: 400px; }
 .ourstory-signature { width: 240px; }
}
@media (max-width: 767px) {
 .ourstory-section { padding: 50px 0; }
 .ourstory-content {
   padding-left: 0;
   padding-top: 36px;
 }
 .ourstory-heading { font-size: 1.3rem; max-width: 100%; }
 .ourstory-subtext { max-width: 100%; }
 .ourstory-img-inner { min-height: 340px; }
 .ourstory-signature { width: 200px; }
}
@media (max-width: 480px) {
 .ourstory-heading { font-size: 1.15rem; }
 .ourstory-img-inner { min-height: 280px; }
 .ourstory-signature { width: 160px; }
}

/* ═══════════════════════════════════════════
     PROGRAMS SECTION
══════════════════════════════════════════════ */
  .programs-section {
    padding: 80px 0;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .programs-eyebrow {
    font-size: 0.83rem;
    color: #888282;
    margin-bottom: 10px;
  }

  .programs-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 480px;
  }

  .program-card-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* TOP box */
  .program-card-top {
    background: linear-gradient(to bottom, #FCEEED, #EAF7F0);
    border-radius: 16px;
    padding: 28px 24px 24px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
  }
  .program-card-top:hover {
    box-shadow: 0 4px 20px rgba(90, 46, 131, 0.12);
  }

  .program-card-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #5A2E83;
    margin-bottom: 12px;
  }

  .program-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .program-card-text {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
    overflow: hidden;
    max-height: 80px;
    transition: max-height 0.45s ease;
  }

  .program-card-top.expanded .program-card-text {
    max-height: 600px;
  }

  .program-read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.80rem;
    font-weight: 700;
    color: #5A2E83;
    cursor: pointer;
    user-select: none;
  }

  /* BOTTOM box — image */
  .program-card-bottom {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;        /* increased from 220px */
    flex-shrink: 0;
  }

  .program-card-bottom img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
  }

  .program-card-cta {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #5A2E83;
    border: none;
    border-radius: 50px;
    padding: 8px 8px 8px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    z-index: 2;
    transition: background 0.2s;
  }
  .program-card-cta:hover {
    background: #f0e0ff;
    color: #5A2E83;
  }

  .program-cta-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #5A2E83;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .program-cta-circle svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .programs-heading { font-size: 1.85rem; }
    .program-card-bottom { height: 260px; }
  }
  @media (max-width: 767px) {
    .programs-section { padding: 50px 0; }
    .programs-heading { font-size: 1.6rem; max-width: 100%; }
    .program-card-bottom { height: 280px; }
    .program-card-wrap { margin-bottom: 24px; }
  }
  @media (max-width: 480px) {
    .programs-heading { font-size: 1.35rem; }
    .program-card-bottom { height: 240px; }
  }

/* ═══════════════════════════════════════════
  CLIENTS LOGO SECTION
══════════════════════════════════════════════ */

.clients-section {
 padding: 48px 0;
 background: linear-gradient(to right, #FCF3F3, #F2F8F4);
 width: 100%;
 overflow: hidden;
 font-family: Arial, sans-serif;
}

.clients-slider-wrap {
 position: relative;
 width: 100%;
 overflow: hidden;
}

.clients-slider-wrap::before,
.clients-slider-wrap::after {
 content: '';
 position: absolute;
 top: 0;
 bottom: 0;
 width: 120px;
 z-index: 2;
 pointer-events: none;
}
.clients-slider-wrap::before {
 left: 0;
 background: linear-gradient(to right, #FCF3F3, transparent);
}
.clients-slider-wrap::after {
 right: 0;
 background: linear-gradient(to left, #F2F8F4, transparent);
}

.clients-slider-track {
 display: flex;
 align-items: center;
 gap: 80px;
 width: max-content;
 animation: clientsSlideLeft 30s linear infinite;
}

.clients-slider-wrap:hover .clients-slider-track {
 animation-play-state: paused;
}

@keyframes clientsSlideLeft {
 0%   { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}

.client-logo-item {
 flex-shrink: 0;
 display: flex;
 align-items: center;
 justify-content: center;
}

.client-logo-item img {
 height: 70px;
 width: auto;
 max-width: 200px;
 object-fit: contain;
 filter: grayscale(100%);
 opacity: 0.65;
 transition: filter 0.3s, opacity 0.3s;
 display: block;
}

.client-logo-item img:hover {
 filter: grayscale(0%);
 opacity: 1;
}

@media (max-width: 767px) {
 .clients-section { padding: 36px 0; }
 .clients-slider-track { gap: 50px; }
 .client-logo-item img { height: 52px; max-width: 140px; }
 .clients-slider-wrap::before,
 .clients-slider-wrap::after { width: 60px; }
}

@media (max-width: 480px) {
 .clients-slider-track { gap: 36px; }
 .client-logo-item img { height: 40px; max-width: 110px; }
}

/* ═══════════════════════════════════════════
     FAQ SECTION
══════════════════════════════════════════════ */

  .faq-section {
    padding: 80px 0;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .faq-eyebrow {
    font-size: 0.83rem;
    color: #888282;
    margin-bottom: 10px;
  }

  .faq-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 36px;
    max-width: 540px;
  }

  /* ── QUESTION BOX ── */
  .faq-item {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
    cursor: pointer;
  }

  .faq-item:last-child {
    margin-bottom: 0;
  }

  /* Question row */
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: transparent;
    border-radius: 10px;
    transition: background 0.25s, color 0.25s;
    gap: 16px;
  }

  .faq-question-text {
    font-size: 0.97rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.25s;
    margin: 0;
    line-height: 1.4;
  }

  /* Plus / Minus icon */
  .faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #5A2E83;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
  }

  .faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: #5A2E83;
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s, transform 0.3s;
  }

  /* HOVER — question box turns purple */
  .faq-item:hover .faq-question {
    background: #5A2E83;
    border-radius: 10px 10px 0 0;
  }
  .faq-item:hover .faq-question-text {
    color: #fff;
  }
  .faq-item:hover .faq-icon {
    border-color: #fff;
    background: transparent;
  }
  .faq-item:hover .faq-icon svg {
    stroke: #fff;
  }

  /* ACTIVE (open) — question box stays purple */
  .faq-item.open .faq-question {
    background: #5A2E83;
    border-radius: 10px 10px 0 0;
  }
  .faq-item.open .faq-question-text {
    color: #fff;
  }
  .faq-item.open .faq-icon {
    border-color: #fff;
    background: transparent;
  }
  .faq-item.open .faq-icon svg {
    stroke: #fff;
    transform: rotate(45deg);
  }
  .faq-item.open {
    border-color: ##e0e0e0;
  }

  /* Answer box */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    border-top: 0px solid #e0e0e0;
    background: #fff;
  }

  .faq-item.open .faq-answer {
    max-height: 400px;
    border-top: 1.5px solid #e0e0e0;
  }

  .faq-answer-inner {
    padding: 20px 22px 22px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .faq-heading { font-size: 1.85rem; }
  }
  @media (max-width: 767px) {
    .faq-section { padding: 50px 0; }
    .faq-heading { font-size: 1.6rem; max-width: 100%; }
    .faq-question { padding: 15px 16px; }
    .faq-answer-inner { padding: 16px 16px 18px; }
    .faq-question-text { font-size: 0.93rem; }
  }
  @media (max-width: 480px) {
    .faq-heading { font-size: 1.35rem; }
    .faq-question-text { font-size: 0.88rem; }
  }

/* ═══════════════════════════════════════════
  STILL HAVE A QUESTION STRIP
══════════════════════════════════════════════ */

.faq-strip {
 width: 100%;
 background: #F9F8F6;
 padding: 28px 20px;
 text-align: center;
 font-family: Arial, sans-serif;
 border-top: 1px solid #efefef;
 border-bottom: 1px solid #efefef;
}

.faq-strip-title {
 font-size: 1rem;
 font-weight: 700;
 color: #1a1a1a;
 margin-bottom: 6px;
}

.faq-strip-sub {
 font-size: 0.90rem;
 color: #555;
 margin: 0;
 line-height: 1.6;
}

.faq-strip-sub a {
 color: #1a1a1a;
 text-decoration: underline;
 text-underline-offset: 3px;
 font-weight: 500;
 transition: color 0.2s;
}

.faq-strip-sub a:hover {
 color: #5A2E83;
}

@media (max-width: 480px) {
 .faq-strip-title { font-size: 0.95rem; }
 .faq-strip-sub { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════
     READY TO SPARK BANNER
══════════════════════════════════════════════ */

  .rts-section {
    padding: 80px 0;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .rts-box {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-image: url('https://spark3dev.wpenginepowered.com/wp-content/uploads/2026/05/banner-3-optimized.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #3a0d6e;
  }

  .rts-content {
    position: relative;
    z-index: 2;
    padding: 52px 56px;
    max-width: 520px;
  }

  .rts-heading {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .rts-subtext {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 360px;
  }

  .rts-cta {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 7px;
    padding: 11px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }
  .rts-cta:hover {
    background: #fff;
    color: #5A2E83;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .rts-heading { font-size: 2rem; }
    .rts-content { padding: 44px 40px; }
    .rts-box { min-height: 360px; }
  }
  @media (max-width: 767px) {
    .rts-section { padding: 36px 0; }
    .rts-box { 
      min-height: 320px;
      background-position: right top;
    }
    .rts-content { padding: 36px 28px; }
    .rts-heading { font-size: 1.7rem; }
    .rts-subtext { max-width: 100%; font-size: 0.88rem; }
  }
  @media (max-width: 480px) {
    .rts-box { 
      min-height: 280px; 
      border-radius: 18px;
      background-position: right top;
    }
    .rts-heading { font-size: 1.45rem; }
    .rts-content { padding: 28px 22px; }
    .rts-cta { font-size: 0.82rem; padding: 10px 18px; }
  }


  header#header {
    position: absolute;
    z-index: 9999999;
    width: 100%;
}
section.hero-section {
  padding-top: 122px;
}
