/* Modern CSS Reset */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      
      /* Custom Properties */
      :root {
        --primary: #001536ff;
        --primary-light: #0a53a8ff;
        --text: #1f2937;
        --background: #ffffff;
        --font-family: 'Inter', sans-serif;
        --primary-dark: #17338d;
        --secondary: #1e40af;
        --accent: #60a5fa;
        --light: #f3f4f6;
        --white: #ffffff;
        --carbon-main: #04a776;
        --carbon-brand: #49BD9B;
        --carbon-dark: #1F232D;
        --carbon-mid: #4d5770;
        --carbon-light-grey: #F3F3F3;  
        --nav-bg: #1F232Ddd;
        --nav-text: var(--white);
        --nav-hover-bg: rgba(255, 255, 255, 0.1);
        --nav-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    
      }
      
      body {
        font-family: var(--font-family);
        line-height: 1.5;
        color: var(--text);
        background: var(--background);
        overflow-x: hidden;
      }
      /* === Full-width section backgrounds with centered content and responsive padding === */
/* Consistent vertical spacing for all main sections */
      .hero,
      .trust-banner,
      .value-props,
      .team-section,
      .faq-section,
      .comparison-section,
      .audience-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
        padding: 0 1.5rem;
      }
      /* Navigation (Header) */
      .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1.5rem;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: var(--nav-shadow);
      }
      
      .nav-logo img {
        height: 50px; /* smaller, cleaner logo */
        width: auto;
      }
      
      .nav-links {
        display: flex;
        gap: 1.25rem;
        align-items: center;
      }
      
      .nav-links a {
        color: var(--nav-text);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        padding: 0.4rem 0.75rem;
        border-radius: 6px;
        transition: background-color 0.3s ease;
      }
      
      .nav-links a:hover,
      .nav-links a:focus {
        background-color: var(--nav-hover-bg);
        color: var(--white);
        outline: none;
      }
      
      .cta-btn {
        background: var(--carbon-main);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        font-weight: 600;
        text-decoration: none;
        transition: transform 0.2s ease;
      }
      
      .cta-btn:hover {
        background: var(--carbon-brand);
        transform: scale(1.05);
      }
      
      /* Mobile Toggle Button */
      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
      }
      
      /* Mobile Nav */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 64px;
          right: 1.5rem;
          background: var(--carbon-dark);
          padding: 1rem;
          border-radius: 8px;
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
      
        .nav-links.active {
          display: flex;
          animation: slideDown 0.3s ease forwards;
        }
      
        .mobile-menu-btn {
          display: block;
          filter: invert(1);
        }
      
        .nav-links a {
          width: 100%;
          text-align: left;
          font-size: 1rem;
          padding: 0.75rem 1rem;
        }
      }
      
      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
    
      
      .cta-btn {
        background: var(--carbon-main);
        color: white;
        padding: 0.75rem 1.25rem;
        border-radius: 9999px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .cta-btn:hover,
      .cta-btn:focus {
        background-color: var(--carbon-brand);
        transform: scale(1.05);
        outline: none;
      }
      
      /* Mobile Menu */
      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
      }
      
      /* Hero Section */
      .hero {
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        background: linear-gradient(
          135deg,
          var(--carbon-dark) 30%,
          var(--carbon-mid) 100%
        );
        padding-top: 7rem;
        padding-bottom: 4rem;
      }
      
      .hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        padding: 0 2rem;
      }
      
      .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: #fff;
      }
      
      .hero-subheadline {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: #f3f3f3;
        margin-bottom: 2.5rem;
      }
      
      .hero-buttons {
        display: flex;
        gap: 1rem;
      }
      
      .hero-cta-main {
        display: inline-block;
        padding: 1rem 2rem;
        border-radius: 9999px;
        font-weight: 600;
        text-decoration: none;
        transition: transform 0.3s, box-shadow 0.3s;
        background-color: var(--carbon-main);
        color: #fff;
        font-size: 1.1rem;
      }
      
      .hero-cta-main:hover,
      .hero-cta-main:focus {
        background-color: var(--primary-light);
        transform: scale(1.05);
        outline: none;
      }
      
      .hero-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transform-origin: center;
      }
      
      /* Trust Banner */
      .trust-banner {
        background-color: var(--light);
        padding: 1.5rem 0;
        text-align: center;
      }
      
      .trust-banner h3 {
        font-size: 1.2rem;
        color: var(--carbon-dark);
        margin-bottom: 1rem;
      }
      
      .trust-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin: 0 auto;
      }
      
      .trust-logo {
        height: 40px;
        width: auto;
        opacity: 0.8;
        transition: opacity 0.3s;
      }
      
      .trust-logo:hover {
        opacity: 1;
      }
      
      
      .image-banner-section {
      position: relative;
      overflow: hidden;
      width: 100%;
      background: #fff;
      padding: 2rem 0;
    }
    .image-banner-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      max-width: 100vw;
    }
    .image-banner-track {
      display: flex;
      gap: 0;
      animation: scrollImages 40s linear infinite;
    }
    .image-banner-track img {
      width: 300px;
      height: auto;
      margin-right: -50px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }
    .image-banner-track img:hover {
      transform: scale(1.05);
    }
    @keyframes scrollImages {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    
      /* Value Proposition Section */
      .value-props {
        margin: 0 auto;
        padding: 4rem 2rem;
      }
      
      .value-props h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        color: var(--carbon-dark);
        font-weight: 700;
        text-align: center;
      }
      
      .value-checklist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 0 auto;
      }
      
      .value-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        background-color: var(--light);
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      }
      
      .value-item-check {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        border-radius: 50%;
        background: var(--carbon-dark);
        transition: all 0.3s ease;
      }
  
      .value-item:hover .value-item-check {
        background: var(--carbon-main);
        transform: scale(1.05);
      }
  
      .value-item-check svg {
        width: 24px;
        height: 24px;
        fill: white;
        transition: transform 0.3s ease;
      }
      
      .value-item-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--carbon-dark);
      }
      
      .value-item-content p {
        font-size: 1rem;
        color: var(--text);
      }
      
      /* How It Works Section */
      .how-it-works {
        background-color: var(--light);
        padding: 5rem 2rem;
      }
      
      .how-it-works-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      .how-it-works h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        color: var (--carbon-dark);
        font-weight: 700;
        text-align: center;
      }
      
      .process-flow {
        margin: 3rem 0;
        position: relative;
      }
      
      .process-steps {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 3rem;
      }
      
      .process-step {
        flex: 1 1 200px;
        max-width: 240px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .process-step-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: var(--primary-dark);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 1rem;
      }
      
      .process-step-title {
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: var(--carbon-dark);
      }
      
      .process-step-desc {
        font-size: 0.9rem;
        color: var(--text);
      }
      
      .process-line {
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 2px;
        background-color: var(--primary-light);
        z-index: 1;
      }
      
      .process-cta {
        text-align: center;
        margin-top: 2rem;
      }
      
      .process-cta-btn {
        background-color: var(--primary-dark);
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 9999px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      
      .process-cta-btn:hover,
      .process-cta-btn:focus {
        transform: scale(1.05);
        outline: none;
        background-color: var(--primary-light);
      }
      
      
      /* FAQ Section */
      .faq-section {
        max-width: none !important;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        border-radius: 0;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        background: var(--light); /* keep your background */
      }
      .faq-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      .faq-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        color: var(--carbon-dark);
        font-weight: 700;
        text-align: center;
        opacity: 1 !important;
      }

      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .faq-item {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(31,35,45,0.06);
        transition: box-shadow 0.2s;
        padding: 0;
        overflow: hidden;
      }

      .faq-question {
        cursor: pointer;
        padding: 1.5rem 2rem;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--carbon-dark);
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        border: none;
        width: 100%;
        transition: background 0.2s;
      }

      .faq-question:hover,
      .faq-item.active .faq-question {
        background: var(--carbon-light-grey);
      }

      .faq-toggle {
        font-size: 1.5rem;
        color: var(--carbon-main);
        transition: transform 0.3s;
      }

      .faq-item.active .faq-toggle {
        transform: rotate(45deg);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: #fff;
        color: var(--text);
        font-size: 1.2rem;
        padding: 0 2rem;
        transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
      }

      .faq-item.active .faq-answer {
        padding: 1rem 2rem 1.5rem 2rem;
        max-height: 300px;
      }
      
       /* Data Visualization
       .data-viz-section {
        margin: 0 auto;
        padding: 5rem 2rem;
      }
      
      .data-viz-section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        color: var (--carbon-dark);
        font-weight: 700;
        text-align: center;
      }
      
      .data-viz-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }
      
      .data-viz {
        background-color: var(--light);
        border-radius: 8px;
        padding: 1.5rem;
        padding-bottom: 4.5rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        height: 400px;
        position: relative;
      }
      
      .data-viz h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: var (--carbon-dark);
        text-align: center;
      } */
      
      /* CTA Section */
      .cta-section,
      footer {
        max-width: none !important;
        width: 100vw;
        margin-left: calc(50% - 50vw); /* Ensures true edge-to-edge on centered layouts */
        margin-right: calc(50% - 50vw);
        border-radius: 0;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
      }

      /* Remove max-width from .cta-inner for true full width */
      .cta-inner {
        max-width: none !important;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
      }
      
      .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
      }
      
      .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        color: rgba(255,255,255,0.9);
      }
      
      .cta-btn-large {
        background-color: var(--carbon-main);
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 9999px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: inline-block;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      
      .cta-btn-large:hover,
      .cta-btn-large:focus {
        background-color: var(--primary-light);
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(4, 167, 118, 0.3);
        outline: none;
      }
      
      /* Unified Footer */
      .unified-footer {
        background: var(--carbon-dark);
        color: #ffffff;
        padding: 3rem 2rem 1.5rem;
      }

      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
      }

      .footer-section h4 {
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
        color: #ffffff;
      }

      .footer-section a {
        display: block;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.875rem;
        padding: 0.25rem 0;
        transition: color 0.3s;
      }

      .footer-section a:hover {
        color: var(--carbon-main);
      }

      /* Ecosystem Section */
      .ecosystem-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .ecosystem-item {
        display: flex;
        flex-direction: column;
      }

      .ecosystem-item a {
        font-weight: 500;
        color: #ffffff;
        padding: 0;
      }

      .ecosystem-item span {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 0.125rem;
      }

      /* Social Icons */
      .social-icons {
        display: flex;
        gap: 1rem;
      }

      .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s;
        padding: 0;
      }

      .social-icons a:hover {
        background: var(--carbon-main);
        color: #ffffff;
      }

      /* Footer Bottom */
      .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
      }

      .footer-bottom p {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
      }

      /* Footer Responsive */
      @media (max-width: 768px) {
        .footer-container {
          grid-template-columns: 1fr 1fr;
          gap: 1.5rem;
        }

        .footer-ecosystem {
          grid-column: span 2;
        }
      }

      @media (max-width: 480px) {
        .footer-container {
          grid-template-columns: 1fr;
        }

        .footer-ecosystem {
          grid-column: span 1;
        }
      }

      /* Who We Help Section */
      .audience-section {
        background: var(--light);
        margin-top: 5rem;
        margin-bottom: 5rem;
        padding-top: 5rem;
        padding-bottom: 5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
      }      

      .audience-section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        color: var(--carbon-dark);
        font-weight: 700;
        text-align: center;
      }

      .audience-grid {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 2rem;
        width: 100%;
        margin: 0 auto;
        flex-wrap: wrap;
      }

      .audience-card {
        background-color: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: transform 0.3s;
        flex: 1 1 300px;
        min-width: 260px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .audience-card img {
        width: 100%;
        max-width: 530px; /* adjust for consistency */
        height: auto;
        object-fit: contain;
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      }

      .audience-card h3 {
        text-align: center;
      }

      .audience-card ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
        text-align: left;
      }

      .audience-cta {
        display: inline-block;
        margin-top: 1rem;
        background-color: var(--carbon-main);
        color: white;
        padding: 0.6rem 1.2rem;
        border-radius: 9999px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s ease;
      }

      .audience-cta:hover {
        background-color: var(--primary-light);
      }

      
        .nav-links.active {
          display: flex;
          animation: slideDown 0.4s ease forwards;
        }
        
        .process-steps {
          flex-direction: row;
          align-items: center;
          display: flex;
          justify-content: space-between;
          gap: 2rem;
          flex-wrap: nowrap;
        }
        
        .process-step {
          width: 100%;
          max-width: 250px;
        }
        
        .process-line {
          display: none;
        }

      /* Screehshots
      .screenshot-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
        flex-wrap: wrap;
      }

      .screenshot {
        background: transparent;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1 1 45%;
        max-width: 500px;
      }

      .screenshot-img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
        border-radius: 8px;
      }

      .screenshot-img:hover {
        transform: scale(1.02);
      }

      .screenshot-caption {
        text-align: center;
        padding: 0.5rem;
        color: var(--carbon-dark);
        font-weight: 500;
        background: transparent;
      }
       */

      .comparison-section {
        background: var(--light);
        text-align: center;
        padding-bottom: 5rem;
      }

      .comparison-inner {
        max-width: 1200px;
        margin: 0 auto;
      }

      .comparison-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: var(--carbon-dark);
        font-weight: 700;
      }

      .comparison-subheadline {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        color: var(--text);
      }

      .comparison-table-wrapper {
        overflow-x: auto;
      }

      .comparison-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        overflow: hidden;
      }

      .comparison-table th,
      .comparison-table td {
        padding: 1.25rem;
        text-align: left;
        border-bottom: 1px solid #e5e7eb;
      }

      .comparison-table th {
        background-color: var(--carbon-mid);
        color: white;
        font-weight: 600;
        font-size: 1rem;
      }

      .comparison-table td {
        font-size: 0.95rem;
        color: var(--text);
      }

      .comparison-table tbody tr:last-child td {
        border-bottom: none;
      }
     
        /* <!-- Early Access Section --> */
        .early-access-section {
          background: var(--light);
          padding: 4rem 2rem;
          display: flex;
          justify-content: center;
        }
        
        .early-access-wrapper {
          background-color: var(--light); /* or use #f3f4f6 */
          padding: 5rem 2rem;
          display: flex;
          justify-content: center;
          margin-bottom: 0.75rem;
        }
        
        .early-access-card {
          background-color: var(--white);
          border-radius: 16px;
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
          padding: 3rem 2rem;
          max-width: 1100px;
          width: 100%;
          text-align: center;
          margin: auto;
        }
      
        .early-access-title {
          font-size: 2.5rem;
          font-weight: 800;
          margin-bottom: 0.75rem;
          text-align: center;
        }


        .early-access-inner {
          max-width: 1200px;
          width: 100%;
          margin: 0 auto;
          text-align: center;
        }      
        

        .early-access-title,
        .early-access-description,
        .early-access-trusted {
          text-align: center;
        }

      
        .early-access-description {
          font-size: 1.1rem;
          color: #4b5563;
          max-width: 700px;
          margin: 0 auto 2rem;
          text-align: center;
        }
      
        .early-access-form {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 1rem;
          margin-bottom: 2.5rem;
        }
      
        .early-access-form input {
          padding: 0.75rem 1rem;
          border: 1px solid #d1d5db;
          border-radius: 8px;
          width: 300px;
          font-size: 1rem;
        }
      
        .early-access-form button {
          background-color: #04a776;
          color: white;
          padding: 0.75rem 1.5rem;
          border: none;
          border-radius: 8px;
          font-weight: 600;
          font-size: 1rem;
          cursor: pointer;
        }
      
        .form-message {
          width: 100%;
          text-align: center;
          margin-top: 1rem;
          font-size: 1rem;
        }
      
        .early-access-features {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 2rem;
          margin-bottom: 2rem;
        }
        
        .feature-card {
          background: var(--white);
          border-radius: 12px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          flex: 1 1 280px;
          max-width: 300px;
          padding: 1rem;
          text-align: center;
        }
        
        .feature-card img {
          width: 100%;
          height: auto;
          aspect-ratio: 4 / 3;
          object-fit: cover;
          border-radius: 8px;
        }
        
      
        .feature-title {
          margin-top: 0.75rem;
          font-size: 1rem;
          color: #374151;
        }
      
        .early-access-trusted {
          color: #6b7280;
          font-size: 0.9rem;
          margin-top: 2rem;
          text-align: center;
        }
      
      
        /* Modern CSS Reset */
          *, *::before, *::after {
              box-sizing: border-box;
              margin: 0;
              padding: 0;
            }
            
            /* Custom Properties */
            :root {
              --primary: #001536ff;
              --primary-light: #0a53a8ff;
              --text: #1f2937;
              --background: #ffffff;
              --font-family: 'Inter', sans-serif;
              --primary-dark: #17338d;
              --secondary: #1e40af;
              --accent: #60a5fa;
              --light: #f3f4f6;
              --white: #ffffff;
              --carbon-main: #04a776;
              --carbon-brand: #49BD9B;
              --carbon-dark: #1F232D;
              --carbon-mid: #4d5770;
              --carbon-light-grey: #F3F3F3;  
              --nav-bg: #1F232Ddd;
              --nav-text: var(--white);
              --nav-hover-bg: rgba(255, 255, 255, 0.1);
              --nav-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          
            }
            
            body {
              font-family: var(--font-family);
              line-height: 1.5;
              color: var(--text);
              background: var(--background);
              overflow-x: hidden;
            }
            /* === Full-width section backgrounds with centered content and responsive padding === */
      /* Consistent vertical spacing for all main sections */
            .hero,
            .trust-banner,
            .value-props,
            .team-section,
            .faq-section,
            .comparison-section,
            .audience-section {
              margin-bottom: 5rem;
              padding-top: 5rem;
              padding-bottom: 5rem;
              padding: 0 1.5rem;
            }
            /* Navigation (Header) */
            .nav {
              display: flex;
              justify-content: space-between;
              align-items: center;
              padding: 0.75rem 1.5rem;
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              background: var(--nav-bg);
              backdrop-filter: blur(10px);
              z-index: 1000;
              box-shadow: var(--nav-shadow);
            }
            
            .nav-logo img {
              height: 50px; /* smaller, cleaner logo */
              width: auto;
            }
            
            .nav-links {
              display: flex;
              gap: 1.25rem;
              align-items: center;
            }
            
            .nav-links a {
              color: var(--nav-text);
              text-decoration: none;
              font-weight: 500;
              font-size: 1rem;
              padding: 0.4rem 0.75rem;
              border-radius: 6px;
              transition: background-color 0.3s ease;
            }
            
            .nav-links a:hover,
            .nav-links a:focus {
              background-color: var(--nav-hover-bg);
              color: var(--white);
              outline: none;
            }
            
            .cta-btn {
              background: var(--carbon-main);
              color: white;
              padding: 0.5rem 1rem;
              border-radius: 9999px;
              font-weight: 600;
              text-decoration: none;
              transition: transform 0.2s ease;
            }
            
            .cta-btn:hover {
              background: var(--carbon-brand);
              transform: scale(1.05);
            }
            
            /* Mobile Toggle Button */
            .mobile-menu-btn {
              display: none;
              background: none;
              border: none;
              cursor: pointer;
              padding: 0.5rem;
            }
            
            /* Mobile Nav */
            @media (max-width: 768px) {
              .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 64px;
                right: 1.5rem;
                background: var(--carbon-dark);
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
              }
            
              .nav-links.active {
                display: flex;
                animation: slideDown 0.3s ease forwards;
              }
            
              .mobile-menu-btn {
                display: block;
                filter: invert(1);
              }
            
              .nav-links a {
                width: 100%;
                text-align: left;
                font-size: 1rem;
                padding: 0.75rem 1rem;
              }
            }
            
            @keyframes slideDown {
              from {
                opacity: 0;
                transform: translateY(-10px);
              }
              to {
                opacity: 1;
                transform: translateY(0);
              }
            }
          
            
            .cta-btn {
              background: var(--carbon-main);
              color: white;
              padding: 0.75rem 1.25rem;
              border-radius: 9999px;
              text-decoration: none;
              font-weight: 600;
              transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            
            .cta-btn:hover,
            .cta-btn:focus {
              background-color: var(--carbon-brand);
              transform: scale(1.05);
              outline: none;
            }
            
            /* Mobile Menu */
            .mobile-menu-btn {
              display: none;
              background: none;
              border: none;
              cursor: pointer;
              padding: 0.5rem;
            }
            
            /* Hero Section */
            .hero {
              min-height: 80vh;
              display: flex;
              flex-direction: column;
              justify-content: center;
              position: relative;
              background: linear-gradient(
                135deg,
                var(--carbon-dark) 30%,
                var(--carbon-mid) 100%
              );
              padding-top: 7rem;
              padding-bottom: 4rem;
            }
            
            .hero-inner {
              max-width: 1200px;
              margin: 0 auto;
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 4rem;
              align-items: center;
              padding: 0 2rem;
            }
            
            .hero-content h1 {
              font-size: clamp(2.5rem, 5vw, 4.5rem);
              line-height: 1.2;
              margin-bottom: 1.5rem;
              color: #fff;
            }
            
            .hero-subheadline {
              font-size: clamp(1rem, 2vw, 1.25rem);
              color: #f3f3f3;
              margin-bottom: 2.5rem;
            }
            
            .hero-buttons {
              display: flex;
              gap: 1rem;
            }
            
            .hero-cta-main {
              display: inline-block;
              padding: 1rem 2rem;
              border-radius: 9999px;
              font-weight: 600;
              text-decoration: none;
              transition: transform 0.3s, box-shadow 0.3s;
              background-color: var(--carbon-main);
              color: #fff;
              font-size: 1.1rem;
            }
            
            .hero-cta-main:hover,
            .hero-cta-main:focus {
              background-color: var(--primary-light);
              transform: scale(1.05);
              outline: none;
            }
            
            .hero-image {
              width: 100%;
              height: auto;
              border-radius: 10px;
              box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
              transform-origin: center;
            }
            
            /* Trust Banner */
            .trust-banner {
              background-color: var(--light);
              padding: 1.5rem 0;
              text-align: center;
            }
            
            .trust-banner h3 {
              font-size: 1.2rem;
              color: var(--carbon-dark);
              margin-bottom: 1rem;
            }
            
            .trust-logos {
              display: flex;
              justify-content: center;
              align-items: center;
              gap: 2rem;
              flex-wrap: wrap;
              margin: 0 auto;
            }
            
            .trust-logo {
              height: 40px;
              width: auto;
              opacity: 0.8;
              transition: opacity 0.3s;
            }
            
            .trust-logo:hover {
              opacity: 1;
            }
            
            /* Value Proposition Section */
            .value-props {
              margin: 0 auto;
              padding: 4rem 2rem;
            }
            
            .value-props h2 {
              font-size: 2.2rem;
              margin-bottom: 2.5rem;
              color: var(--carbon-dark);
              font-weight: 700;
              text-align: center;
            }
            
            .value-checklist {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              gap: 1.5rem;
              margin: 0 auto;
            }
            
            .value-item {
              display: flex;
              align-items: flex-start;
              gap: 1rem;
              background-color: var(--light);
              padding: 1.5rem;
              border-radius: 8px;
              box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            }
            
            .value-item-check {
              display: flex;
              align-items: center;
              justify-content: center;
              width: 48px;
              height: 48px;
              flex-shrink: 0;
              border-radius: 50%;
              background: var(--carbon-dark);
              transition: all 0.3s ease;
            }
        
            .value-item:hover .value-item-check {
              background: var(--carbon-main);
              transform: scale(1.05);
            }
        
            .value-item-check svg {
              width: 24px;
              height: 24px;
              fill: white;
              transition: transform 0.3s ease;
            }
            
            .value-item-content h3 {
              font-size: 1.2rem;
              margin-bottom: 0.5rem;
              color: var(--carbon-dark);
            }
            
            .value-item-content p {
              font-size: 1rem;
              color: var(--text);
            }
            
            /* How It Works Section */
            .how-it-works {
              background-color: var(--light);
              padding: 5rem 2rem;
            }
            
            .how-it-works-inner {
              max-width: 1200px;
              margin: 0 auto;
              padding: 0 2rem;
              display: flex;
              flex-direction: column;
              align-items: center;
            }
            
            .how-it-works h2 {
              font-size: 2.2rem;
              margin-bottom: 3rem;
              color: var (--carbon-dark);
              font-weight: 700;
              text-align: center;
            }
            
            .process-flow {
              margin: 3rem 0;
              position: relative;
            }
            
            .process-steps {
              display: flex;
              flex-direction: row;
              justify-content: center;
              align-items: flex-start;
              gap: 2rem;
              flex-wrap: wrap;
              width: 100%;
              margin-bottom: 3rem;
            }
            
            .process-step {
              flex: 1 1 200px;
              max-width: 240px;
              display: flex;
              flex-direction: column;
              align-items: center;
              text-align: center;
            }
            
            .process-step-circle {
              width: 80px;
              height: 80px;
              border-radius: 50%;
              background-color: var(--primary-dark);
              color: white;
              display: flex;
              align-items: center;
              justify-content: center;
              font-weight: 700;
              font-size: 1.2rem;
              margin-bottom: 1rem;
            }
            
            .process-step-title {
              font-weight: 600;
              font-size: 1.1rem;
              margin-bottom: 0.5rem;
              color: var(--carbon-dark);
            }
            
            .process-step-desc {
              font-size: 0.9rem;
              color: var(--text);
            }
            
            .process-line {
              position: absolute;
              top: 40px;
              left: 10%;
              right: 10%;
              height: 2px;
              background-color: var(--primary-light);
              z-index: 1;
            }
            
            .process-cta {
              text-align: center;
              margin-top: 2rem;
            }
            
            .process-cta-btn {
              background-color: var(--primary-dark);
              color: white;
              padding: 0.8rem 1.5rem;
              border-radius: 9999px;
              text-decoration: none;
              font-weight: 600;
              display: inline-block;
              transition: transform 0.3s, box-shadow 0.3s;
            }
            
            .process-cta-btn:hover,
            .process-cta-btn:focus {
              transform: scale(1.05);
              outline: none;
              background-color: var(--primary-light);
            }
            
            /* Team Section */
            .team-section {
              padding-top: 2rem;
              margin-top: 2rem;
            }
            
            .team-section h2 {
              font-size: 2.2rem;
              margin-bottom: 1rem;
              color: var(--carbon-dark);
              font-weight: 700;
              text-align: center;
              opacity: 1 !important;
            }
            
            .team-section p {
              text-align: center;
              margin: 0 auto 3rem;
              color: var(--text);
            }
            
            .team-members {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
              gap: 2rem;
            }
            
            .team-member {
              background-color: var(--light);
              border-radius: 8px;
              padding: 2rem;
              box-shadow: 0 2px 4px rgba(0,0,0,0.05);
              text-align: center;
            }
            
            .team-member-photo {
              width: 120px;
              height: 120px;
              border-radius: 50%;
              object-fit: cover;
              margin: 0 auto 1rem;
              background-color: var(--carbon-mid);
              display: flex;
              align-items: center;
              justify-content: center;
              color: white;
              font-size: 2rem;
            }
            
            .team-member h3 {
              font-size: 1.2rem;
              margin-bottom: 0.5rem;
              color: var(--carbon-dark);
            }
            
            .team-member h4 {
              font-size: 1rem;
              margin-bottom: 1rem;
              color: var(--carbon-main);
            }
            
            .team-member p {
              font-size: 0.9rem;
              margin-bottom: 0;
              text-align: center;
            }
            
            /* FAQ Section */
            /* Modern FAQ Section */
            .faq-section {
              background: var(--light);
              padding-top: 2rem;
              margin-bottom: 2rem; /* Reduced margin to prevent overlap */
            }
          
      
            .faq-inner {
              margin: 0 auto;
              width: 100%;
              padding: 0 1rem;
            }
      
            .faq-section h2 {
              font-size: 2.2rem;
              margin-bottom: 2.5rem;
              color: var(--carbon-dark);
              font-weight: 700;
              text-align: center;
            }
      
            .faq-list {
              display: flex;
              flex-direction: column;
              gap: 1.5rem;
            }
      
            .faq-item {
              background: #fff;
              border-radius: 12px;
              box-shadow: 0 2px 8px rgba(31,35,45,0.06);
              transition: box-shadow 0.2s;
              padding: 0;
              overflow: hidden;
            }
      
            .faq-question {
              cursor: pointer;
              padding: 1.5rem 2rem;
              font-size: 1.4rem;
              font-weight: 600;
              color: var(--carbon-dark);
              display: flex;
              align-items: center;
              justify-content: space-between;
              background: none;
              border: none;
              width: 100%;
              transition: background 0.2s;
            }
      
            .faq-question:hover,
            .faq-item.active .faq-question {
              background: var(--carbon-light-grey);
            }
      
            .faq-toggle {
              font-size: 1.5rem;
              color: var(--carbon-main);
              transition: transform 0.3s;
            }
      
            .faq-item.active .faq-toggle {
              transform: rotate(45deg);
            }
      
            .faq-answer {
              max-height: 0;
              overflow: hidden;
              background: #fff;
              color: var(--text);
              font-size: 1.2rem;
              padding: 0 2rem;
              transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
            }
      
            .faq-item.active .faq-answer {
              padding: 1rem 2rem 1.5rem 2rem;
              max-height: 300px;
            }
            
             /* Data Visualization */
             .data-viz-section {
              margin: 0 auto;
              padding: 5rem 2rem;
            }
            
            .data-viz-section h2 {
              font-size: 2.2rem;
              margin-bottom: 3rem;
              color: var (--carbon-dark);
              font-weight: 700;
              text-align: center;
            }
            
            .data-viz-container {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
              gap: 2rem;
            }
            
            .data-viz {
              background-color: var(--light);
              border-radius: 8px;
              padding: 1.5rem;
              padding-bottom: 4.5rem;
              box-shadow: 0 2px 4px rgba(0,0,0,0.05);
              height: 400px;
              position: relative;
            }
            
            .data-viz h3 {
              font-size: 1.2rem;
              margin-bottom: 1rem;
              color: var (--carbon-dark);
              text-align: center;
            }
            
             /* CTA Section */
             .cta-section {
              background-color: var(--carbon-dark);
              color: white;
              padding: 5rem 2rem;
              text-align: center;
            }
            
            .cta-inner {
              max-width: 800px;
              margin: 0 auto;
            }
            
            .cta-section h2 {
              font-size: 2.5rem;
              margin-bottom: 1.5rem;
              font-weight: 700;
            }
            
            .cta-section p {
              font-size: 1.2rem;
              margin-bottom: 2.5rem;
              color: rgba(255,255,255,0.9);
            }
            
            .cta-btn-large {
              background-color: var(--carbon-main);
              color: white;
              padding: 1rem 2.5rem;
              border-radius: 9999px;
              text-decoration: none;
              font-weight: 600;
              font-size: 1.1rem;
              display: inline-block;
              transition: transform 0.3s, box-shadow 0.3s;
            }
            
            .cta-btn-large:hover,
            .cta-btn-large:focus {
              background-color: var(--primary-light);
              transform: scale(1.05);
              box-shadow: 0 4px 15px rgba(4, 167, 118, 0.3);
              outline: none;
            }
            
            /* Footer */
            footer {
              text-align: center;
              padding: 2rem;
              background: #ffffff;
              color: #6b7280;
              font-size: 0.9rem;
            }
            
            footer .footer-links {
              margin-bottom: 1rem;
            }
            
            footer .footer-links a {
              text-decoration: none;
              color: var(--text);
              margin: 0 1rem;
              font-weight: 500;
              transition: color 0.3s;
            }
            
            footer .footer-links a:hover {
              color: var(--carbon-main);
            }
      
            /* Who We Help Section */
            .audience-section {
              background: var(--light);
              margin-top: 5rem;
              margin-bottom: 5rem;
              padding-top: 5rem;
              padding-bottom: 5rem;
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              width: 100%;
            }
            
            .audience-img {
              width: 100%;
              max-width: 400px;
              height: auto;
              object-fit: cover;
              display: block;
              margin: 0 auto 1rem auto;
              margin-bottom: 1rem;
              border-radius: 8px;
              box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            }
            
      
            .audience-section h2 {
              font-size: 2.2rem;
              margin-bottom: 3rem;
              color: var(--carbon-dark);
              font-weight: 700;
              text-align: center;
            }
      
            .audience-grid {
              display: flex;
              justify-content: center;
              align-items: stretch;
              gap: 2rem;
              width: 100%;
              margin: 0 auto;
              flex-wrap: wrap;
            }
      
            .audience-card {
              background-color: white;
              padding: 2rem;
              border-radius: 12px;
              box-shadow: 0 2px 8px rgba(0,0,0,0.05);
              transition: transform 0.3s;
              flex: 1 1 300px;
              min-width: 260px;
              display: flex;
              flex-direction: column;
              align-items: center;
            }
      
            .audience-card h3 {
              text-align: center;
            }
      
            .audience-card ul {
              list-style: none;
              padding: 0;
              margin: 1rem 0;
              text-align: left;
            }
      
            .audience-cta {
              display: inline-block;
              margin-top: 1rem;
              background-color: var(--carbon-main);
              color: white;
              padding: 0.6rem 1.2rem;
              border-radius: 9999px;
              text-decoration: none;
              font-weight: 600;
              transition: background-color 0.3s ease;
            }
      
            .audience-cta:hover {
              background-color: var(--primary-light);
            }
      
            
              .nav-links.active {
                display: flex;
                animation: slideDown 0.4s ease forwards;
              }
              
              .process-steps {
                flex-direction: row;
                align-items: center;
                display: flex;
                justify-content: space-between;
                gap: 2rem;
                flex-wrap: nowrap;
              }
              
              .process-step {
                width: 100%;
                max-width: 250px;
              }
              
              .process-line {
                display: none;
              }
      
            /* Screehshots */
            .screenshot-grid {
              display: flex;
              flex-direction: row;
              justify-content: center;
              gap: 2rem;
              margin-top: 3rem;
              flex-wrap: wrap;
            }
      
            .screenshot {
              background: transparent;
              border-radius: 8px;
              overflow: hidden;
              box-shadow: none;
              display: flex;
              flex-direction: column;
              gap: 1rem;
              flex: 1 1 45%;
              max-width: 500px;
            }
      
            .screenshot-img {
              width: 100%;
              height: auto;
              display: block;
              transition: transform 0.3s ease;
              border-radius: 8px;
            }
      
            .screenshot-img:hover {
              transform: scale(1.02);
            }
      
            .screenshot-caption {
              text-align: center;
              padding: 0.5rem;
              color: var(--carbon-dark);
              font-weight: 500;
              background: transparent;
            }
            
      
            .comparison-section {
              background: var(--light);
              text-align: center;
              padding-bottom: 5rem;
            }
      
            .comparison-inner {
              max-width: 1200px;
              margin: 0 auto;
            }
      
            .comparison-section h2 {
              font-size: 2.2rem;
              margin-bottom: 1rem;
              color: var(--carbon-dark);
              font-weight: 700;
            }
      
            .comparison-subheadline {
              font-size: 1.1rem;
              margin-bottom: 3rem;
              color: var(--text);
            }
      
            .comparison-table-wrapper {
              overflow-x: auto;
            }
      
            .comparison-table {
              width: 100%;
              border-collapse: collapse;
              background: white;
              box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
              border-radius: 8px;
              overflow: hidden;
            }
      
            .comparison-table th,
            .comparison-table td {
              padding: 1.25rem;
              text-align: left;
              border-bottom: 1px solid #e5e7eb;
            }
      
            .comparison-table th {
              background-color: var(--carbon-mid);
              color: white;
              font-weight: 600;
              font-size: 1rem;
            }
      
            .comparison-table td {
              font-size: 0.95rem;
              color: var(--text);
            }
      
            .comparison-table tbody tr:last-child td {
              border-bottom: none;
            }
            /* Prefund Section */
            .prefund-section {
              background-color: var(--light);
              padding: 5rem 2rem;
              text-align: center;
            }
      
            .prefund-section h2 {
              font-size: 2.2rem;
              font-weight: 700;
              color: var(--carbon-dark);
              margin-bottom: 1.5rem;
            }
      
            .prefund-intro {
              font-size: 1.2rem;
              color: var(--carbon-mid);
              max-width: 800px;
              margin: 0 auto 3rem auto;
            }
      
            .prefund-benefits {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
              gap: 2rem;
              max-width: 1200px;
              margin: 0 auto 3rem auto;
              padding: 0 1rem;
              margin-bottom: 3rem;
            }

            .prefund-benefits .benefit {
              display: flex;
              flex-direction: column;
              align-items: center;
              background-color: var(--light);
              padding: 2rem;
              border-radius: 12px;
              box-shadow: 0 2px 8px rgba(0,0,0,0.05);
              transition: transform 0.3s ease;
              max-width: 100%;
              text-align: center;
            }

            .prefund-benefits .benefit img {
              width: 100%;
              max-width: 280px;
              height: auto;
              object-fit: contain;
              border-radius: 2px;
            }
      
            .benefit {
              background: white;
              padding: 2rem;
              border-radius: 12px;
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
              max-width: 350px;
              width: 100%;
              margin: 0 auto;
              overflow: hidden; /* ✨ KEY: stop image overflow */
              transition: transform 0.3s ease;
              text-align: center; /* 🛠 THIS fixes the overflow! */
            }
      
            .benefit:hover {
              transform: translateY(-5px);
            }
      
            .benefit h3 {
              font-size: 1.2rem;
              margin-bottom: 0.75rem;
              color: var(--carbon-dark);
            }
      
            .benefit p {
              font-size: 1rem;
              color: var(--text);
            }


            
            /* === Prefund Section Image Fix === */
            .benefit img {
              width: 100%;
              max-width: 100%;
              aspect-ratio: 1 / 1;
              object-fit: contain; /* not cover */
              margin: 0 auto 1rem auto;
              display: block;
            }
            
      
            .prefund-highlights {
              max-width: 700px;
              margin: 0 auto 3rem auto;
              text-align: center;
              font-size: 1rem;
              color: var(--carbon-dark);
            }
      
            .prefund-highlights p {
              margin-bottom: 1rem;
              display: flex;
              align-items: center;
              justify-content: center; /* center the content */
              gap: 0.5rem;
            }
      
            .prefund-highlights strong {
              font-weight: 600;
            }
      
            .prefund-highlights p::before {
              content: "✔️";
              margin-right: 0.5rem;
              color: var(--carbon-main);
            }
      
            .prefund-cta {
              margin: 2rem auto;
              display: block;
              text-align: center;
            }

 
             /* Visual Workflow Section Styling */
            .project-lifecycle-section {
                background-color: #f9fafb;
                padding: 6rem 1.5rem;
              }

              .project-lifecycle-wrapper {
                max-width: 1200px;
                margin: 0 auto;
                text-align: center;
              }

              .section-title {
                font-size: 2.75rem;
                font-weight: 700;
                color: #1e293b;
                margin-bottom: 3.5rem;
              }

              .lifecycle-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 2rem;
              }

              @media (min-width: 768px) {
                .lifecycle-grid {
                  grid-template-columns: repeat(3, 1fr);
                }
              }

              .lifecycle-card {
                background-color: #ffffff;
                padding: 2rem;
                border-radius: 1.25rem;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
              }

              .lifecycle-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
              }

              .lifecycle-card h4 {
                font-size: 1.25rem;
                font-weight: 600;
                color: #111827;
                margin-bottom: 0.75rem;
              }

              .lifecycle-card p {
                color: #475569;
              }

              .cta-wrapper {
                margin-top: 4rem;
              }

              .cta-button {
                background-color: #059669;
                color: #ffffff;
                font-size: 1rem;
                font-weight: 500;
                padding: 0.85rem 2.25rem;
                border-radius: 9999px;
                text-decoration: none;
                display: inline-block;
                transition: background 0.3s ease, transform 0.3s ease;
              }

              .cta-button:hover {
                background-color: #047857;
                transform: translateY(-3px);
              }




      
            /* ===============================
         Responsive Layout Styles
         =============================== */
      
      /* Small Laptops & Tablets */
      @media (max-width: 1024px) {
        .hero-inner {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .hero-buttons {
          justify-content: center;
        }
        .hero-image {
          order: 1;
          margin-bottom: 2rem;
          max-width: 80%;
          margin-left: auto;
          margin-right: auto;
        }
      }

      
      /* Tablets & Large Phones */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 80px;
          right: 2rem;
          background: var(--carbon-dark);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
          border-radius: 8px;
          overflow: hidden;
          padding: 1rem;
        }
        .nav-links.active {
          display: flex;
          animation: slideDown 0.4s ease forwards;
        }
      
        @keyframes slideDown {
          0% {
            max-height: 0;
          }
          100% {
            max-height: 300px;
          }
        }
      
        .mobile-menu-btn {
            display: block;
            filter: invert(1);
          }
          .value-checklist {
            grid-template-columns: 1fr;
          }
          .comparison-table th,
          .comparison-table td {
            padding: 1rem;
          }
          .process-steps {
            flex-direction: column;
            align-items: center;
          }
          .screenshot-grid {
            flex-direction: column;
            align-items: center;
          }
          .screenshot {
            width: 100%;
            max-width: 90%;
          }
            .prefund-benefits {
            flex-direction: column;
            gap: 1.5rem;
          }
          .benefit {
            max-width: 350px;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
          }
          .benefit img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            margin: 0 auto 1rem;
            display: block;
            border-radius: 8px;
          }
        }
      
      /* Mobile Devices */
      @media (max-width: 600px) {
        .hero,
        .trust-banner,
        .value-props,
        .how-it-works,
        .team-section,
        .faq-section,
        .data-viz-section,
        .cta-section,
        .comparison-section,
        .audience-section {
          padding-left: 0.5rem;
          padding-right: 0.5rem;
        }
        .audience-grid {
          flex-direction: column;
          align-items: center;
          gap: 1rem;
        }
        .audience-card {
          width: 100%;
          max-width: 400px;
        }
        .faq-inner {
          padding: 0 0.5rem;
        }
        .faq-question,
        .faq-answer {
          padding-left: 1rem;
          padding-right: 1rem;
        }
      }

      /* Prefund Section Improvements */
      .prefund-section {
        background-color: var(--light);
        padding: 5rem 2rem;
        text-align: center;
      }

      .prefund-section h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--carbon-dark);
        margin-bottom: 1.5rem;
      }

      .prefund-intro {
        font-size: 1.2rem;
        color: var(--carbon-mid);
        max-width: 800px;
        margin: 0 auto 3rem auto;
      }

      /* Stronger Grid Container */
      .prefund-benefits {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0 1rem 2rem 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      
      /* Benefit Card */
      .benefit {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
        overflow: hidden; /* Prevent image overflow */
        transition: transform 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .benefit:hover {
        transform: translateY(-5px);
      }

      .benefit h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: var(--carbon-dark);
      }

      .benefit p {
        font-size: 1rem;
        color: var(--text);
        text-align: center;
      }

      .benefit img {
        width: 100%;
        max-width: 250px;
        height: auto;
        border-radius: 8px;
        object-fit: contain;
        margin: 0 auto 1rem auto;
        display: block;
      }

      
      /* Highlights */
      .prefund-highlights {
        max-width: 700px;
        margin: 0 auto 3rem auto;
        font-size: 1rem;
        color: var(--carbon-dark);
        text-align: center;
      }

      .prefund-highlights p {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
      }

      .prefund-highlights p::before {
        content: "✔️";
        color: var(--carbon-main);
      }

      .prefund-cta {
        margin-top: 2rem;
      }

             /* Visual Workflow Section Styling */
            .project-lifecycle-section {
                background-color: #f9fafb;
                padding: 6rem 1.5rem;
              }

              .project-lifecycle-wrapper {
                max-width: 1200px;
                margin: 0 auto;
                text-align: center;
              }

              .section-title {
                font-size: 2.75rem;
                font-weight: 700;
                color: #1e293b;
                margin-bottom: 3.5rem;
              }

              .lifecycle-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 2rem;
              }

              @media (min-width: 768px) {
                .lifecycle-grid {
                  grid-template-columns: repeat(3, 1fr);
                }
              }

              .lifecycle-card {
                background-color: #ffffff;
                padding: 2rem;
                border-radius: 1.25rem;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
              }

              .lifecycle-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
              }

              .lifecycle-card h4 {
                font-size: 1.25rem;
                font-weight: 600;
                color: #111827;
                margin-bottom: 0.75rem;
              }

              .lifecycle-card p {
                color: #475569;
              }

              .cta-wrapper {
                margin-top: 4rem;
              }

              .cta-button {
                background-color: #059669;
                color: #ffffff;
                font-size: 1rem;
                font-weight: 500;
                padding: 0.85rem 2.25rem;
                border-radius: 9999px;
                text-decoration: none;
                display: inline-block;
                transition: background 0.3s ease, transform 0.3s ease;
              }

              .cta-button:hover {
                background-color: #047857;
                transform: translateY(-3px);
              }


      /* ===============================
   Responsive Layout Styles
   =============================== */

/* Small Laptops & Tablets */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: 1;
    margin-bottom: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tablets & Large Phones */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 2rem;
    background: var(--carbon-dark);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.4s ease forwards;
  }

  @keyframes slideDown {
    0% {
      max-height: 0;
    }
    100% {
      max-height: 300px;
    }
  }

  .mobile-menu-btn {
    display: block;
    filter: invert(1); /* Makes hamburger icon white */
  }

  .value-checklist {
    grid-template-columns: 1fr;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .screenshot-grid {
    flex-direction: column;
    align-items: center;
  }

  .screenshot {
    width: 100%;
    max-width: 90%;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .hero,
  .trust-banner,
  .value-props,
  .how-it-works,
  .team-section,
  .faq-section,
  .data-viz-section,
  .cta-section,
  .comparison-section,
  .audience-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .audience-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .audience-card {
    width: 100%;
    max-width: 400px;
  }

  .faq-inner {
    padding: 0 0.5rem;
  }

  .faq-question,
  .faq-answer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  @media (max-width: 600px) {
    .prefund-benefits {
      grid-template-columns: 1fr; /* 1 card per row */
      gap: 1.5rem;
    }
  
    .benefit {
      max-width: 350px; /* Optional: tweak based on how large you want cards */
      width: 100%;
      margin: 0 auto;
      overflow: hidden; /* ✨ KEY: stop image overflow */
    }
  
    .benefit img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      margin: 0 auto 1rem;
      display: block;
      border-radius: 8px;
    }
  }  
}
