/* =========================================
     CSS VARIABLES & RESET
  ========================================= */
  :root {
    --purple: #9134D8;
    --purple-dark: #7020B8;
    --purple-light: #B05EE8;
    --purple-pale: #EDD9FA;
    --purple-ultra-pale: #F7F0FD;
    --orange: #F24E29;
    --yellow: #F2BD1D;
    --white: #ffffff;
    --off-white: #FAFAFA;
    --text-dark: #1A0A2E;
    --text-mid: #4A3560;
    --text-light: #8B7AA0;
    --border-light: rgba(145, 52, 216, 0.1);
    --shadow-card: 0 8px 40px rgba(145, 52, 216, 0.08);
    --shadow-hover: 0 20px 60px rgba(145, 52, 216, 0.16);
    --radius-card: 20px;
    --radius-pill: 50px;
    /* --font-display: 'Syne', sans-serif; */
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
  }

  img { max-width: 100%; display: block; }

  a { text-decoration: none; color: inherit; }

  /* =========================================
     UTILITY CLASSES
  ========================================= */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .section { position: relative; overflow: hidden; }

  .tag-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple);
    background: var(--purple-ultra-pale);
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
  }

  .tag-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    display: inline-block;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 600px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple);
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
  }

  .btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(145, 52, 216, 0.35);
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--purple);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--purple);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .btn-outline:hover {
    background: var(--purple-ultra-pale);
    transform: translateY(-2px);
  }

  .stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* =========================================
     NAVIGATION
  ========================================= */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 40px;
    transition: all 0.4s ease;
  }

  /* =========================================
     NAVBAR STYLES
  ========================================= */
  #navbar {
    z-index: 1000000;
    background-color: #fff;
    align-items: center;
    padding: 0 40px 10px 40px;
    display: flex;
    position: sticky;
    top: 0;
  }

  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(145, 52, 216, 0.08);
    padding: 0 40px;
  }

  #navbar .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    width: 100%;
  }

  #navbar .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #navbar .nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  #navbar .nav-logo:hover .nav-logo-img {
    transform: scale(1.03);
  }

  #navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  #navbar .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
  }

  #navbar .nav-links a:hover {
    color: var(--purple);
  }

  #navbar .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    gap: 6px;
  }

  .hamburger span {
    width: 24px;
    height: 2.5px;
    background-color: var(--text-mid);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .mobile-cta {
    display: none;
  }

  /* =========================================
     HERO SECTION
  ========================================= */
  #hero {
    min-height: 100vh;
    padding-top: 76px;
    background: linear-gradient(160deg, #F7F0FD 0%, #EDD9FA 30%, #F3E8FF 50%, #F7F0FD 70%, #FFF5F0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-blob-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 52, 216, 0.12) 0%, transparent 70%);
    will-change: transform;
  }

  .hero-blob-2 {
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 78, 41, 0.08) 0%, transparent 70%);
    will-change: transform;
  }

  .hero-blob-3 {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 189, 29, 0.07) 0%, transparent 70%);
    will-change: transform;
  }

  .hero-float-1 {
    position: absolute;
    top: 20%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(145,52,216,0.15), rgba(176,94,232,0.1));
    border-radius: 16px;
    animation: floatA 6s ease-in-out infinite;
    will-change: transform;
  }

  .hero-float-2 {
    position: absolute;
    bottom: 25%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(242,78,41,0.12), rgba(242,189,29,0.1));
    border-radius: 50%;
    animation: floatB 8s ease-in-out infinite;
    will-change: transform;
  }

  .hero-float-3 {
    position: absolute;
    top: 55%;
    left: 5%;
    width: 24px;
    height: 24px;
    background: rgba(145,52,216,0.15);
    border-radius: 6px;
    animation: floatC 7s ease-in-out infinite;
    will-change: transform;
  }

  @keyframes floatA {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(8deg); }
  }
  @keyframes floatB {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.1); }
  }
  @keyframes floatC {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(14px) rotate(-12deg); }
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(145,52,216,0.08);
  }

  .hero-eyebrow .badge {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .hero-eyebrow span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
  }

  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 24px;
  }

  .hero-h1 .highlight {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
  }

  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-trust-text {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
  }

  .hero-trust-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .trust-pill {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-mid);
  }

  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  <!--.hero-app-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    will-change: transform;
  }

  .hero-app-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(145,52,216,0.2), 0 8px 24px rgba(0,0,0,0.08);
    background: white;
    aspect-ratio: 16/11;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-ultra-pale), white);
  }

  .hero-app-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  .hero-app-placeholder {
    text-align: center;
    padding: 40px;
  }-->

.hero-app-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
}

.hero-gif {
  width: 70%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(145,52,216,0.25));
}

  .hero-app-placeholder .ph-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 20px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
  }

  .hero-app-placeholder p {
    font-size: 13px;
    color: var(--text-light);
  }

  .hero-floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-card-1 {
  bottom: 5%;
  left: -8%;
}

 .hero-card-2 {
  top: 8%;
  right: -6%;
}

  @keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .fc-icon.purple { background: var(--purple-ultra-pale); }
  .fc-icon.orange { background: #FFF0EC; }

  .fc-text .fc-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1;
  }

  .fc-text .fc-label {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
  }

  /* =========================================
     SECTION DIVIDER / MORPH TRANSITION
  ========================================= */
  .morph-divider {
    height: 120px;
    position: relative;
    overflow: hidden;
    pointer-events: none;
  }

  .morph-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* =========================================
     LEARNING CRISIS SECTION
  ========================================= */
  #crisis {
    background: linear-gradient(180deg, #F7F0FD 0%, #F2E8FD 60%, #EDD9FA 100%);
    padding: 100px 0 120px;
  }

  .crisis-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
  }

  .crisis-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
  }

  .crisis-stat-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .crisis-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }

  .crisis-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    border-radius: var(--radius-card) var(--radius-card) 0 0;
  }

  .crisis-stat-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
  }

  .crisis-stat-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.5;
  }

  .crisis-stat-source {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
  }

  .crisis-cta-text {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    max-width: 700px;
    margin: 0 auto;
  }

  .crisis-cta-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .crisis-cta-text p {
    color: var(--text-mid);
    font-size: 16px;
    line-height: 1.6;
  }

  /* =========================================
     ENGINE SECTION
  ========================================= */
  #engine {
    background: white;
    padding: 100px 0 120px;
  }

  .engine-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .engine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .engine-card {
    background: var(--purple-ultra-pale);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
  }

  .engine-card:hover {
    background: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }

  .engine-card-num {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: rgba(145,52,216,0.07);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
  }

  .engine-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(145,52,216,0.25);
  }

  .engine-layer-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 8px;
  }

  .engine-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

  .engine-card-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .engine-card-items li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.5;
  }

  .engine-card-items li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
    margin-top: 6px;
  }

  .engine-stat-highlight {
    margin-top: 16px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    display: inline-block;
  }

  .engine-stat-highlight span {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--purple);
    font-size: 15px;
  }

  /* =========================================
     IMPACT SECTION
  ========================================= */
  #impact {
    background: linear-gradient(180deg, #F7F0FD 0%, #F0E4FC 100%);
    padding: 100px 0 120px;
  }

  .impact-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  @media (max-width: 1024px) {
    .impact-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 640px) {
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
  }

  .impact-stat-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
  }

  .impact-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .impact-stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1;
  }

  .impact-stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 8px;
  }

  .impact-stat-label {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
    line-height: 1.4;
  }

  /* =========================================
     ECOSYSTEM SECTION
  ========================================= */
  #ecosystem {
    background: white;
    padding: 100px 0 120px;
  }

  .ecosystem-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .ecosystem-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
  }

  .eco-card {
    border-radius: var(--radius-card);
    padding: 44px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
  }

  .eco-card-main {
    background: linear-gradient(160deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: white;
  }

  .eco-card-addon {
    background: linear-gradient(160deg, #FFF5EC 0%, #FFF0E8 100%);
    border: 2px solid rgba(242,78,41,0.15);
  }

  .eco-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .eco-card-main .eco-card-badge {
    background: rgba(255,255,255,0.15);
    color: white;
  }

  .eco-card-addon .eco-card-badge {
    background: rgba(242,78,41,0.1);
    color: var(--orange);
  }

  .eco-card-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.15;
  }

  .eco-card-main .eco-card-title { color: white; }
  .eco-card-addon .eco-card-title { color: var(--text-dark); }

  .eco-card-tagline {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 28px;
  }

  .eco-card-main .eco-card-tagline { color: rgba(255,255,255,0.8); }
  .eco-card-addon .eco-card-tagline { color: var(--text-mid); }

  .eco-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .eco-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
  }

  .eco-features .feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .eco-card-main .feat-icon { background: rgba(255,255,255,0.15); }
  .eco-card-addon .feat-icon { background: rgba(242,78,41,0.1); }
  .eco-card-main li { color: rgba(255,255,255,0.9); }
  .eco-card-addon li { color: var(--text-mid); }

  .eco-img {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0.7;
  }

  .eco-card-main .eco-img { color: white; }
  .eco-card-addon .eco-img {
    background: rgba(242,78,41,0.08);
    color: var(--orange);
  }

  .eco-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* =========================================
     CUSTOM DEPLOYMENTS SECTION
  ========================================= */
  #deployments {
    background: linear-gradient(180deg, #F9F5FE 0%, #F5EEFF 100%);
    padding: 100px 0 120px;
  }

  .deploy-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .deploy-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 60px;
    font-style: italic;
  }

  .deploy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }

  @media (max-width: 900px) {
    .deploy-grid { grid-template-columns: repeat(2, 1fr); }
  }

  .deploy-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
  }

  .deploy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }

  .deploy-icon {
    /* width: 55px; */
    height: 65px;
    border-radius: 14px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 0px 15px;
    object-fit: contain;
  }

  .deploy-card-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .deploy-card-sub {
    font-size: 12px;
    color: var(--text-light);
  }

  .deploy-erp {
    background: white;
    border-radius: 16px;
    padding: 20px 28px;
    border: 1px solid var(--border-light);
    text-align: center;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
  }

  .deploy-erp .erp-icon { font-size: 20px; }

  .deploy-erp p {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 500;
  }

  /* =========================================
     RESEARCH & RECOGNITION SECTION
  ========================================= */
  #recognition {
    background: white;
    padding: 100px 0 120px;
  }

  .recognition-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .recognition-badges {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .rec-badge {
    background: var(--purple-ultra-pale);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 300px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .rec-badge:hover {
    background: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }

  .rec-logo {
    width: 200px;
    height: 150px;
    border-radius: 14px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

  .rec-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    border-radius: 14px;
  }

  .rec-badge-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
  }

  .rec-badge-sub {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* =========================================
     HOW SCHOOLS WORK WITH US
  ========================================= */
  #process {
    background: linear-gradient(180deg, #F9F5FE 0%, #F3E8FF 100%);
    padding: 100px 0 120px;
  }

  .process-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(10% + 22px);
    right: calc(10% + 22px);
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    opacity: 0.2;
    z-index: 0;
  }

  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(145,52,216,0.3);
    flex-shrink: 0;
  }

  .step-icon-bg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 3px solid var(--purple);
    flex-shrink: 0;
    margin-bottom: 20px;
  }

  .step-connector {
    position: absolute;
    top: 22px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-pale), transparent);
    z-index: 0;
  }

  .step-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* =========================================
     VIDEO SECTION
  ========================================= */
  #video-section {
    background: white;
    padding: 100px 0 120px;
  }

  .video-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .video-container {
    /* max-width: 860px; */
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
  }

  .video-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(145,52,216,0.2);
    position: relative;
    aspect-ratio: 16/9;
    background: var(--purple-ultra-pale);
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 16px 40px rgba(145,52,216,0.4);
  }

  .play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(145,52,216,0.5);
  }

  .play-btn svg {
    fill: white;
    margin-left: 4px;
  }

  .video-caption {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 24px;
    text-align: center;
  }

  /* =========================================
     FINAL CTA SECTION
  ========================================= */
  #final-cta {
    background: linear-gradient(160deg, #EDD9FA 0%, #F7F0FD 40%, #FFF5F0 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .cta-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(145,52,216,0.1) 0%, transparent 70%);
    top: -200px;
    right: 0;
  }

  .cta-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242,78,41,0.07) 0%, transparent 70%);
    bottom: -150px;
    left: 0;
  }

  .final-cta-inner { position: relative; z-index: 2; }

  .final-cta-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .final-cta-sub {
    font-size: 18px;
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .btn-large {
    padding: 18px 42px;
    font-size: 16px;
    box-shadow: 0 16px 48px rgba(145,52,216,0.35);
  }

  /* =========================================
     FOOTER
  ========================================= */
  footer {
    background: linear-gradient(180deg, #F7F0FD 0%, #F2EBF9 100%);
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-light);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
  .footer-brand p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .footer-brand .footer-initiative {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
  }

  .footer-brand .footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--purple);
    font-weight: 500;
  }

  .footer-col-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .footer-links a {
    font-size: 14px;
    color: var(--text-mid);
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--purple); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-copy {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
  }

  .footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .social-icon:hover {
    background: var(--purple);
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(145,52,216,0.3);
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--text-mid);
    transition: fill 0.3s;
  }

  .social-icon:hover svg { fill: white; }

  .footer-legal {
    display: flex;
    gap: 20px;
  }

  .footer-legal a {
    font-size: 12px;
    color: var(--text-light);
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--purple); }

  .footer_logos_container{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 25px;
  }

  .logo1{
    width: 30%;
  }
  .logo2{
    width: 40%;
  }
  .logo3{
    width: 80px;
  }
  /* =========================================
     RESPONSIVE
  ========================================= */
  @media (max-width: 1140px) {
    .hamburger { display: flex; }
    #navbar .nav-links {
      display: none;
      position: absolute;
      top: 76px;
      left: 0;
      right: 0;
      flex-direction: column;
      background-color: white;
      padding: 20px;
      gap: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      z-index: 999;
    }

    #navbar .nav-links.active { display: flex; }
    #navbar .nav-links a { font-size: 16px; }
    #navbar .nav-cta { display: none; }
    .mobile-cta { display: block !important; }
    /* .mobile-cta a { display: block; padding: 10px 0; } */
  }

  @media (max-width: 1024px) {
    .engine-grid { grid-template-columns: 1fr; }
    .engine-grid .engine-card:nth-child(odd) { grid-column: 1; }
    .engine-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
    .process-steps::before { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .container { padding: 0 20px; }
    #navbar { padding: 0 20px; }
    #navbar.scrolled { padding: 0 20px; }
    #navbar .nav-logo-img{height: 40px;}
    #hero{
      padding-top: 0;
    }
    .hero-grid{gap: 0px}
    .hero-trust-pills{justify-content: center;}
    #crisis{padding: 60px 0;}
    #engine{padding: 60px 0;}
    #impact{padding: 60px 0;}
    #ecosystem{padding: 60px 0;}
    #deployments{padding: 60px 0;}
    #screenshots{padding: 60px 0;}
    #recognition{padding: 60px 0;}
    #process{padding: 60px 0;}
    #video-section{padding: 60px 0;}
    #final-cta{padding: 60px 0;}
    .crisis-center{margin-bottom: 40px;}
    .deploy-note{margin-bottom: 40px;}
    .recognition-header{margin-bottom: 40px;}
    .process-header{margin-bottom: 40px;}
    .engine-header{margin-bottom: 40px;}
    .impact-header{margin-bottom: 40px;}
    .ecosystem-header{margin-bottom: 40px;}
    .screenshots-header{margin-bottom: 40px;}
    .recognition-header{margin-bottom: 40px;}
    .process-header{margin-bottom: 40px;}
    .video-header{margin-bottom: 40px;}
    .final-cta-header{margin-bottom: 40px;}

    .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 60px 0 40px; }
    .hero-sub { margin: 0 auto 36px; }
    .hero-cta-row { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .hero-card-1, .hero-card-2 { display: none; }

    .crisis-stats-grid { grid-template-columns: 1fr; margin-bottom: 25px; }
    .crisis-cta-text{max-width: 100%;}
    .engine-grid { grid-template-columns: 1fr; }
    .ecosystem-split { grid-template-columns: 1fr; }
    .deploy-grid { grid-template-columns: repeat(2, 1fr); }
    .recognition-badges { flex-direction: column; align-items: center; }
    .rec-badge { max-width: 100%; width: 100%; flex-direction: row; text-align: left; gap: 16px; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    #navbar .nav-links {
      gap: 12px;
      padding: 16px;
    }
    #navbar .nav-links a { font-size: 14px; }
    #navbar .nav-logo-img{height: 30px;}
    #hero{
      padding-top: 0;
    }
    .hero-grid{gap: 0px}
    .hero-trust-pills{justify-content: center;}
    #crisis{padding: 40px 0;}
    .crisis-stats-grid{margin-bottom: 25px;}
    .crisis-center{margin-bottom: 25px;}
    #engine{padding: 40px 0;}
    .engine-header{margin-bottom: 25px;}
    #impact{padding: 40px 0;}
    .impact-header{margin-bottom: 25px;}
    #ecosystem{padding: 40px 0;}
    .ecosystem-header{margin-bottom: 25px;}
    #deployments{padding: 40px 0;}
    .deploy-note{margin-bottom: 25px;}
    #screenshots{padding: 40px 0;}
    .screenshots-header{margin-bottom: 25px;}
    #recognition{padding: 40px 0;}
    .recognition-header{margin-bottom: 25px;}
    #process{padding: 40px 0;}
    .process-header{margin-bottom: 25px;}
    #video-section{padding: 40px 0;}
    .video-header{margin-bottom: 25px;}
    #final-cta{padding: 40px 0;}
    .final-cta-header{margin-bottom: 25px;}
  }

  @media (max-width: 420px) {
    .footer_logos_container { flex-wrap: wrap; margin-top:16px; }
     /* .logo1, .logo2, .logo3 { width: 60%; } */
  }

  /* =========================================
     ANIMATED COUNTER
  ========================================= */
  .counter { font-variant-numeric: tabular-nums; }

  /* =========================================
     APP SCREENSHOTS SECTION
  ========================================= */
  #screenshots {
    background: linear-gradient(180deg, white 0%, #F9F5FE 100%);
    padding: 80px 0 100px;
  }

  .screenshots-header { text-align: center; margin-bottom: 50px; }

  .screenshots-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .screenshot-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/3;
    background: var(--purple-ultra-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
  }

  .screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }

  .screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .screenshot-card .ph-text {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    padding: 20px;
  }

  .screenshot-card .ph-icon-large {
    font-size: 40px;
    margin-bottom: 8px;
  }

  @media (max-width: 768px) {
    .screenshots-row { grid-template-columns: 1fr; }
  }


  /* =========================================
     SCROLL PROGRESS
  ========================================= */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    z-index: 200;
    transition: width 0.1s ease;
    width: 0%;
  }