    /* ===== RESULTS HERO ===== */
    .results-hero {
      position: relative;
      overflow: hidden;
      background: var(--charcoal);
      color: var(--white);
      padding: 140px 40px 120px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    /* Animated gradient background */
    .results-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0, 111, 160, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(35, 71, 109, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(157, 201, 221, 0.08) 0%, transparent 70%);
      animation: heroGradientShift 8s ease-in-out infinite alternate;
      pointer-events: none;
    }

    @keyframes heroGradientShift {
      0% {
        opacity: 0.7;
        transform: scale(1) translate(0, 0);
      }

      100% {
        opacity: 1;
        transform: scale(1.1) translate(-2%, 3%);
      }
    }

    /* Floating orbs */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(60px);
      animation: orbFloat 6s ease-in-out infinite alternate;
    }

    .hero-orb--1 {
      width: 400px;
      height: 400px;
      background: rgba(0, 111, 160, 0.2);
      top: -10%;
      left: -5%;
      animation-duration: 7s;
    }

    .hero-orb--2 {
      width: 300px;
      height: 300px;
      background: rgba(157, 201, 221, 0.15);
      bottom: 5%;
      right: -3%;
      animation-duration: 9s;
      animation-delay: -3s;
    }

    .hero-orb--3 {
      width: 200px;
      height: 200px;
      background: rgba(35, 71, 109, 0.2);
      top: 40%;
      left: 60%;
      animation-duration: 5s;
      animation-delay: -1.5s;
    }

    @keyframes orbFloat {
      0% {
        transform: translateY(0) scale(1);
      }

      100% {
        transform: translateY(-30px) scale(1.08);
      }
    }

    /* Grid lines (subtle) */
    .hero-grid-lines {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.04;
      background-image:
        linear-gradient(rgba(157, 201, 221, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 201, 221, 1) 1px, transparent 1px);
      background-size: 80px 80px;
    }

    /* Content wrapper */
    .results-hero-content {
      position: relative;
      z-index: 2;
      max-width: 960px;
      margin: 0 auto;
    }

    /* Badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(157, 201, 221, 0.1);
      border: 1px solid rgba(157, 201, 221, 0.2);
      border-radius: 100px;
      padding: 8px 20px;
      font-size: 13px;
      color: var(--sky);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 32px;
      animation: fadeSlideUp 0.8s ease-out both;
    }

    .hero-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sky);
      animation: badgePulse 2s ease-in-out infinite;
    }

    @keyframes badgePulse {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(157, 201, 221, 0.4);
      }

      50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(157, 201, 221, 0);
      }
    }

    /* Hero title */
    .results-hero h1 {
      font-size: clamp(40px, 6vw, 72px);
      letter-spacing: -3px;
      line-height: 1.05;
      margin-bottom: 24px;
      animation: fadeSlideUp 0.8s ease-out 0.15s both;
    }

    .results-hero h1 .gradient-text {
      background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 50%, var(--sky) 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientMove 4s ease-in-out infinite;
    }

    @keyframes gradientMove {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    .results-hero p {
      font-size: clamp(16px, 1.8vw, 20px);
      color: var(--silver);
      max-width: 680px;
      margin: 0 auto 56px;
      line-height: 1.7;
      animation: fadeSlideUp 0.8s ease-out 0.3s both;
    }

    /* ===== STAT COUNTERS ===== */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
      animation: fadeSlideUp 0.8s ease-out 0.45s both;
    }

    .hero-stat {
      position: relative;
      padding: 32px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(157, 201, 221, 0.1);
      backdrop-filter: blur(10px);
      transition: all var(--transition);
    }

    .hero-stat:hover {
      background: rgba(157, 201, 221, 0.08);
      border-color: rgba(157, 201, 221, 0.25);
      transform: translateY(-4px);
    }

    .hero-stat:hover .hero-stat-glow {
      opacity: 1;
    }

    .hero-stat-glow {
      position: absolute;
      inset: -1px;
      border-radius: 16px;
      opacity: 0;
      background: linear-gradient(135deg, rgba(157, 201, 221, 0.15), transparent, rgba(0, 111, 160, 0.15));
      z-index: -1;
      transition: opacity var(--transition);
      filter: blur(8px);
    }

    .hero-stat-number {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: clamp(40px, 5vw, 64px);
      line-height: 1;
      color: var(--white);
      margin-bottom: 8px;
      text-shadow: 0 0 40px rgba(157, 201, 221, 0.5), 0 0 80px rgba(0, 111, 160, 0.3);
    }

    .hero-stat-label {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 1px;
    }


    /* ===== TIMELINE SECTION (standalone — light) ===== */
    .timeline-section {
      position: relative;
      overflow: hidden;
      background: var(--off-white);
      padding: 100px 40px;
    }

    /* Decorative background */
    .timeline-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(157, 201, 221, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 20% 80%, rgba(0, 111, 160, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    /* Subtle diagonal lines pattern */
    .timeline-section::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.04;
      background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(0, 111, 160, 0.3) 40px, rgba(0, 111, 160, 0.3) 41px);
    }

    .timeline-section-inner {
      position: relative;
      z-index: 2;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .timeline-section-title {
      text-align: center;
      font-size: clamp(28px, 4vw, 44px);
      letter-spacing: -1.5px;
      color: var(--charcoal);
      margin-bottom: 64px;
    }

    .timeline-section-title .gradient-text {
      background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 50%, var(--blue) 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientMove 4s ease-in-out infinite;
    }

    .timeline {
      position: relative;
      max-width: 880px;
      margin: 0 auto;
      padding: 0 0 0 56px;
    }

    /* Vertical line */
    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 23px;
      width: 3px;
      border-radius: 3px;
      background: linear-gradient(to bottom, rgba(0, 111, 160, 0.05), var(--blue), var(--navy), var(--blue), rgba(0, 111, 160, 0.05));
    }

    .timeline-item {
      position: relative;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .timeline-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .timeline-item:last-child {
      margin-bottom: 0;
    }

    /* Dot on the line */
    .timeline-dot {
      position: absolute;
      left: -56px;
      top: 20px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--navy));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0, 111, 160, 0.35), 0 0 32px rgba(0, 111, 160, 0.15);
      z-index: 2;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .timeline-item:hover .timeline-dot {
      transform: scale(1.15);
      box-shadow: 0 6px 24px rgba(0, 111, 160, 0.5), 0 0 48px rgba(0, 111, 160, 0.2);
    }

    .timeline-dot svg {
      width: 20px;
      height: 20px;
      color: var(--white);
    }

    /* Card — compact, eye-catching, light theme */
    .timeline-card {
      position: relative;
      border-radius: 20px;
      padding: 24px 28px;
      background: var(--white);
      border: 1px solid rgba(0, 111, 160, 0.1);
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .timeline-card:hover {
      border-color: rgba(0, 111, 160, 0.25);
      transform: translateX(8px);
      box-shadow: 0 12px 40px rgba(0, 111, 160, 0.12), 0 0 0 1px rgba(0, 111, 160, 0.1);
    }

    /* Color accent strip on top */
    .timeline-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--navy), var(--blue));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .timeline-card:hover::after {
      opacity: 1;
    }

    /* Arrow connector */
    .timeline-card::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 28px;
      width: 16px;
      height: 16px;
      border-radius: 3px;
      background: var(--white);
      border-left: 1px solid rgba(0, 111, 160, 0.1);
      border-bottom: 1px solid rgba(0, 111, 160, 0.1);
      transform: rotate(45deg);
      transition: border-color 0.4s ease;
    }

    .timeline-card:hover::before {
      border-color: rgba(0, 111, 160, 0.25);
    }

    .timeline-card h3 {
      font-size: clamp(17px, 2vw, 20px);
      letter-spacing: -0.3px;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.3;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .timeline-card h3 .tl-label {
      display: inline-block;
      font-family: var(--font-subtitle);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--blue);
      background: rgba(0, 111, 160, 0.08);
      border: 1px solid rgba(0, 111, 160, 0.15);
      padding: 3px 10px;
      border-radius: 100px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .timeline-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 20px;
    }

    .timeline-card li {
      position: relative;
      padding-left: 18px;
      font-size: 13.5px;
      color: var(--charcoal);
      line-height: 1.6;
    }

    .timeline-card li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--navy));
      box-shadow: 0 0 6px rgba(0, 111, 160, 0.3);
    }

    /* Cards with 3 items — single column */
    .timeline-card.single-col ul {
      grid-template-columns: 1fr;
    }

    @media (max-width: 768px) {
      .timeline-section {
        padding: 64px 20px;
      }

      .timeline {
        padding-left: 44px;
      }

      .timeline::before {
        left: 17px;
      }

      .timeline-dot {
        width: 36px;
        height: 36px;
        left: -44px;
        top: 16px;
      }

      .timeline-dot svg {
        width: 16px;
        height: 16px;
      }

      .timeline-card {
        padding: 20px 18px;
      }

      .timeline-card::before {
        display: none;
      }

      .timeline-card ul {
        grid-template-columns: 1fr;
      }

      .timeline-item {
        margin-bottom: 20px;
      }

      .timeline-card h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }
    }

    /* General animation */
    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .results-hero {
        padding: 120px 20px 60px;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
    }

    /* ===== FEATURES SECTION (standalone) ===== */
    .features-section {
      position: relative;
      overflow: hidden;
      background: var(--charcoal);
      padding: 100px 40px;
    }

    .features-section::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 50% 60% at 50% 0%, rgba(0, 111, 160, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 90%, rgba(35, 71, 109, 0.1) 0%, transparent 60%);
    }

    .features-section-inner {
      position: relative;
      z-index: 2;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      width: 100%;
    }

    /* Row 1: two equal-width cards */
    .feature-card:nth-child(1) {
      grid-column: 1 / 4;
    }

    .feature-card:nth-child(2) {
      grid-column: 4 / 7;
    }

    /* Row 2: three equal-width cards */
    .feature-card:nth-child(3) {
      grid-column: 1 / 3;
    }

    .feature-card:nth-child(4) {
      grid-column: 3 / 5;
    }

    .feature-card:nth-child(5) {
      grid-column: 5 / 7;
    }

    .feature-card {
      position: relative;
      border-radius: 20px;
      padding: 40px 32px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(157, 201, 221, 0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 260px;
      text-align: left;
      opacity: 0;
      transform: translateY(32px);
    }

    .feature-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .feature-card:hover {
      transform: translateY(-6px);
      background: rgba(157, 201, 221, 0.08);
      border-color: rgba(157, 201, 221, 0.25);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(157, 201, 221, 0.2);
    }

    .feature-card:hover .feature-card-bg {
      opacity: 1;
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.1);
      box-shadow: 0 12px 32px rgba(0, 111, 160, 0.4);
    }

    .feature-card:hover .feature-number {
      opacity: 0.08;
    }

    /* Gradient bg on hover */
    .feature-card-bg {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 0;
    }

    .feature-card:nth-child(1) .feature-card-bg {
      background: linear-gradient(135deg, rgba(0, 111, 160, 0.08), rgba(157, 201, 221, 0.04));
    }

    .feature-card:nth-child(2) .feature-card-bg {
      background: linear-gradient(135deg, rgba(35, 71, 109, 0.08), rgba(157, 201, 221, 0.04));
    }

    .feature-card:nth-child(3) .feature-card-bg {
      background: linear-gradient(135deg, rgba(157, 201, 221, 0.06), rgba(0, 111, 160, 0.06));
    }

    .feature-card:nth-child(4) .feature-card-bg {
      background: linear-gradient(135deg, rgba(0, 111, 160, 0.08), rgba(35, 71, 109, 0.04));
    }

    .feature-card:nth-child(5) .feature-card-bg {
      background: linear-gradient(135deg, rgba(157, 201, 221, 0.04), rgba(0, 111, 160, 0.1));
    }

    /* Large number watermark */
    .feature-number {
      position: absolute;
      top: -12px;
      right: 20px;
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 140px;
      line-height: 1;
      color: var(--sky);
      opacity: 0.03;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 0;
    }

    /* Icon */
    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--sky));
      color: var(--white);
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
      box-shadow: 0 8px 24px rgba(0, 111, 160, 0.3);
    }

    .feature-icon svg {
      width: 26px;
      height: 26px;
    }

    .feature-card h3 {
      font-size: clamp(18px, 2vw, 22px);
      letter-spacing: -0.5px;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
      position: relative;
      z-index: 1;
    }

    .feature-card p {
      font-size: 15px;
      color: var(--silver);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    /* Accent bar on left */
    .feature-card::after {
      content: '';
      position: absolute;
      top: 24px;
      left: 0;
      width: 3px;
      height: 0;
      background: linear-gradient(to bottom, var(--sky), var(--blue));
      border-radius: 0 3px 3px 0;
      transition: height 0.4s ease;
    }

    .feature-card:hover::after {
      height: 48px;
    }

    @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature-card:nth-child(1) {
        grid-column: 1 / 2;
      }

      .feature-card:nth-child(2) {
        grid-column: 2 / 3;
      }

      .feature-card:nth-child(3) {
        grid-column: 1 / 2;
      }

      .feature-card:nth-child(4) {
        grid-column: 2 / 3;
      }

      .feature-card:nth-child(5) {
        grid-column: 1 / 3;
      }
    }

    @media (max-width: 768px) {
      .features-section {
        padding: 64px 20px;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .feature-card:nth-child(1),
      .feature-card:nth-child(2),
      .feature-card:nth-child(3),
      .feature-card:nth-child(4),
      .feature-card:nth-child(5) {
        grid-column: auto;
      }

      .feature-card {
        min-height: 200px;
        padding: 28px 24px;
      }

      .feature-number {
        font-size: 100px;
      }
    }