/* ===== Video Hero ===== */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }
  
  .hero-video__bg {
    position: absolute;
    inset: 0;
  }
  
  .hero-video__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(11, 15, 46, 0.85) 0%,
      rgba(11, 15, 46, 0.3) 40%,
      rgba(11, 15, 46, 0.1) 100%
    );
  }
  
  .hero-video__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 0 60px;
  }
  
  .hero-video__inner {
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }
  
  .hero-video__title {
    flex-shrink: 0;
  }
  
  .hero-video__title h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
  }
  
  .hero-video__title h1 .highlight {
    color: var(--color-primary);
  }
  
  .hero-video__divider {
    width: 3px;
    height: 80px;
    background: var(--color-primary);
    flex-shrink: 0;
    align-self: center;
  }
  
  .hero-video__desc {
    flex: 1;
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
  }
  
  .hero-video__cta {
    flex-shrink: 0;
    align-self: center;
  }
  
  /* ===== Intro Sections (Ready Set Grow) ===== */
  .intro-section {
    background: var(--color-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 80px;
  }
  
  .intro-section .container-wide {
    max-width: 1400px;
  }
  
  .intro-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }
  
  .intro-section__text h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  
  .intro-section__text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .intro-section__text h3 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .intro-section__text ul {
    margin-bottom: 20px;
  }
  
  .intro-section__text ul li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
  }
  
  .intro-section__text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
  }
  
  .intro-section__text .intro-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
  }
  
  .intro-section__image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .intro-section__image img {
    width: 75%;
    /* height: 480px; */
    object-fit: cover;
    /* border-radius: 120px 0 120px 0; */
  }
  
  /* ===== Global Section ===== */
  .global-section {
    padding: 100px 0 60px;
    text-align: center;
    background: var(--color-white);
  }
  
  .global-section h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
  }
  
  .global-section p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }
  
  .global-video {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .global-video video {
    width: 100%;
    border-radius: var(--radius-md);
  }
  
  /* ===== Platform Features (Scroll Spy) ===== */
  .platform-section {
    padding: 80px 0 120px;
    background: var(--color-white);
  }
  
  .platform-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  
  .platform-nav {
    position: relative;
    padding-left: 40px;
  }
  
  .platform-dots {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .platform-dots span {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: #d0d0d8;
    transition: all var(--transition);
  }
  
  .platform-dots span.active {
    background: var(--color-accent);
    height: 28px;
  }
  
  .platform-features {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .platform-feature {
    padding: 32px 0;
    opacity: 0.35;
    transition: opacity 0.5s ease;
    cursor: pointer;
  }
  
  .platform-feature.active {
    opacity: 1;
  }
  
  .platform-feature h3 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
  }
  
  .platform-feature p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 440px;
  }
  
  .platform-feature .coming-soon {
    display: inline-block;
    font-size: 13px;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 8px;
  }
  
  .platform-visual {
    position: sticky;
    top: calc(var(--header-height) + 40px);
  }
  
  .platform-visual video {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
  }
  
  /* Singpass CTA */
  .singpass-cta {
    text-align: center;
    padding: 60px 0 80px;
    background: var(--color-white);
  }
  
  .singpass-cta h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
  }
  
  .singpass-cta p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 28px;
  }
  
  /* ===== Why Choose Section ===== */
  .why-section {
    padding: 100px 0;
    background: var(--color-white);
    text-align: center;
  }
  
  .why-section h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 60px;
    line-height: 1.3;
  }
  
  .why-section h2 .highlight {
    color: var(--color-primary);
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .why-item__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .why-item__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
  }
  
  .why-item p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
    max-width: 200px;
  }
  
  /* ===== Testimonials ===== */
  .testimonials-section {
    padding: 80px 0;
    background: var(--color-gray-bg);
  }
  
  .testimonials-section h2 {
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 48px;
  }
  
  .testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .testimonial-slide {
    display: none;
    text-align: center;
  }
  
  .testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .testimonial-slide h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
  }
  
  .testimonial-slide p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
  }
  
  .testimonial-stars .star {
    color: var(--color-accent);
    font-size: 20px;
  }
  
  .testimonial-stars .star.empty {
    color: #ccc;
  }
  
  .testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .testimonial-author em {
    font-weight: 400;
    font-style: italic;
  }
  
  .testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color var(--transition);
    background: none;
    border: none;
  }
  
  .testimonial-arrow:hover {
    color: var(--color-primary);
  }
  
  .testimonial-arrow.prev {
    left: 0;
  }
  
  .testimonial-arrow.next {
    right: 0;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
  }
  
  .testimonial-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
  }
  
  .testimonial-dots button.active {
    background: var(--color-text);
  }
  
  /* ===== Team Section ===== */
  .team-section {
    padding: 80px 0;
    background: var(--color-white);
  }

  .team-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 12px;
  }

  .team-section__intro {
    font-size: 16px;
    color: var(--color-text-light);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.6;
  }

  .team-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .team-card {
    background: var(--color-gray-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .team-card__photo {
    flex: 0 0 320px;
    width: 320px;
    overflow: hidden;
  }

  .team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .team-card__body {
    padding: 32px 36px;
    flex: 1;
    min-width: 0;
  }

  .team-card__body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
  }

  .team-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .team-card__body > p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .team-card__body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin: 18px 0 10px;
  }

  .team-card__body ul {
    padding-left: 20px;
    margin: 0;
  }

  .team-card__body li {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 6px;
  }

  /* ===== Articles Section ===== */
  .articles-section {
    padding: 80px 0 100px;
    background: var(--color-white);
    text-align: center;
  }
  
  .articles-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
  }
  
  .articles-section > .container > p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 48px;
  }
  
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .article-card {
    background: var(--color-gray-bg);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
  }
  
  .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }
  
  .article-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
  }
  
  .article-card .tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
  }
  
  /* ===== Home Responsive ===== */
  @media (max-width: 1024px) {
    .intro-section__inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .intro-section__image {
      order: -1;
    }
  
    .intro-section__image img {
      /* width: 180px; */
      /* height: 360px; */
    }
  
    .platform-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .platform-visual {
      position: relative;
      top: 0;
    }
  
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .team-card__photo {
      flex: 0 0 260px;
      width: 260px;
    }
  
    .hero-video__inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
  
    .hero-video__divider {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .hero-video {
      height: 80vh;
      min-height: 500px;
    }
  
    .hero-video__content {
      padding-bottom: 40px;
    }
  
    .why-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px 20px;
    }
  
    .articles-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
    }
  
    .testimonial-carousel {
      padding: 0 40px;
    }

    .team-card {
      flex-direction: column;
    }

    .team-card__photo {
      flex: none;
      width: 100%;
      aspect-ratio: 4 / 3;
    }
  }
  
  @media (max-width: 480px) {
    .intro-section__image img {
      /* width: 140px; */
      /* height: 280px; */
    }
  
    .why-grid {
      grid-template-columns: 1fr;
    }
  }
  