.elementor-2569 .elementor-element.elementor-element-bc788ab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c7a64f8 */:root {
        --primary: #0a2540;
        --accent: #00d4b2;
        --accent-hover: #00b396;
        --text-main: #4a5568;
        --bg-light: #f8fafc;
        --white: #ffffff;
        --font-main: "Plus Jakarta Sans", sans-serif;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --card-border: rgba(10, 37, 64, 0.06);
        --radius-lg: 20px;
        --radius-md: 12px;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: var(--font-main);
        background-color: var(--white);
        color: var(--text-main);
        overflow-x: hidden;
        line-height: 1.5;
      }

     .elementor-element-bc788ab {
	padding: 0px !important;
}
.elementor-element-bc788ab .e-con-inner {
	padding: 0px !important;
	max-width: 100% !important;
}
      .hero-section {
        position: relative;
        padding: 100px 24px 100px;
        background:
          radial-gradient(
            circle at top right,
            rgba(0, 212, 178, 0.08),
            transparent 45%
          ),
          radial-gradient(
            circle at bottom left,
            rgba(10, 37, 64, 0.03),
            transparent 50%
          ),
          var(--bg-light);
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .hero-section::before {
        content: "";
        position: absolute;
        top: 15%;
        left: -100px;
        width: 300px;
        height: 300px;
        background: rgba(0, 212, 178, 0.04);
        border-radius: 50%;
        filter: blur(60px);
        pointer-events: none;
      }

      .hero-container {
        max-width: 1100px;
        width: 100%;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
      }

      .hero-content {
        z-index: 2;
      }

      .tagline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(10, 37, 64, 0.05);
        color: var(--primary);
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 24px;
        border: 1px solid rgba(10, 37, 64, 0.05);
      }

      .tagline span {
        color: var(--accent);
      }

      .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.75rem);
        line-height: 1.15;
        color: var(--primary);
        font-weight: 800;
        letter-spacing: -1px;
        margin-bottom: 24px;
      }

      .hero-title span {
        background: linear-gradient(135deg, var(--primary) 60%, var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero-description {
        font-size: clamp(1.1rem, 1.2vw, 1.25rem);
        line-height: 1.6;
        color: var(--text-main);
        margin-bottom: 40px;
        max-width: 580px;
      }

      .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background-color: var(--primary);
        color: var(--white);
        padding: 18px 36px;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--transition);
        box-shadow: 0 20px 30px rgba(10, 37, 64, 0.15);
      }

      .cta-btn:hover {
        background-color: var(--accent);
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 20px 35px rgba(0, 212, 178, 0.3);
      }

      .cta-btn svg {
        transition: var(--transition);
      }

      .cta-btn:hover svg {
        transform: translateX(4px);
      }

      .hero-metrics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        z-index: 2;
      }

      .metric-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 32px 24px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 10px 30px rgba(10, 37, 64, 0.03);
        transition: var(--transition);
      }

      .metric-card:hover {
        transform: translateY(-8px);
        background: var(--white);
        border-color: rgba(0, 212, 178, 0.3);
        box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
      }

      .metric-card:nth-child(even) {
        transform: translateY(24px);
      }

      .metric-card:nth-child(even):hover {
        transform: translateY(16px);
      }

      .metric-number {
        font-size: clamp(1.8rem, 2.5vw, 2.5rem);
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 8px;
        display: block;
        letter-spacing: -1px;
      }

      .metric-card:hover .metric-number {
        color: var(--accent);
      }

      .metric-label {
        font-size: 0.9rem;
        line-height: 1.4;
        color: var(--text-main);
        font-weight: 500;
      }

      /* ==========================================================================
   3. PLATFORM SECTION STYLING
   ========================================================================== */
      .platform-section {
        padding: 120px 24px;
        background-color: var(--white);
        display: flex;
        justify-content: center;
      }

      .platform-container {
        max-width: 1100px;
        width: 100%;
      }

      .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 70px;
      }

      .sub-title {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--accent);
        margin-bottom: 16px;
      }

      .main-title {
        font-size: clamp(2rem, 3vw, 2.75rem);
        color: var(--primary);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 24px;
      }

      .section-lead {
        font-size: 1.15rem;
        line-height: 1.6;
        color: var(--text-main);
      }

      .platform-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: start;
      }

      .pillars-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .pillar-card {
        display: flex;
        gap: 24px;
        padding: 32px;
        background: var(--bg-light);
        border: 1px solid var(--card-border);
        border-radius: var(--radius-lg);
        transition: var(--transition);
      }

      .pillar-card:hover {
        transform: scale(1.01);
        background: var(--white);
        border-color: rgba(0, 212, 178, 0.3);
        box-shadow: 0 15px 35px rgba(10, 37, 64, 0.05);
      }

      .pillar-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background-color: var(--white);
        color: var(--primary);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 16px rgba(10, 37, 64, 0.04);
        transition: var(--transition);
      }

      .pillar-card:hover .pillar-icon {
        background-color: var(--primary);
        color: var(--accent);
      }

      .pillar-content h3 {
        font-size: 1.25rem;
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 10px;
      }

      .pillar-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-main);
      }

      .interactive-sidebar {
        display: flex;
        flex-direction: column;
        gap: 32px;
        position: sticky;
        top: 40px;
      }

      .quote-box {
        position: relative;
        background: var(--primary);
        color: var(--white);
        padding: 40px;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
      }

      .quote-icon {
        position: absolute;
        top: -10px;
        right: 20px;
        font-size: 8rem;
        color: rgba(255, 255, 255, 0.04);
        font-family: serif;
        line-height: 1;
        pointer-events: none;
      }

      .quote-text {
        font-size: 1.15rem;
        line-height: 1.6;
        font-weight: 500;
        font-style: italic;
        position: relative;
        z-index: 2;
      }

      .config-highlight-card {
        position: relative;
        padding: 40px;
        background: linear-gradient(
          135deg,
          rgba(0, 212, 178, 0.05) 0%,
          rgba(10, 37, 64, 0.02) 100%
        );
        border: 2px dashed rgba(0, 212, 178, 0.25);
        border-radius: var(--radius-lg);
      }

      .config-highlight-card h3 {
        font-size: 1.35rem;
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 12px;
      }

      .config-highlight-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-main);
      }

      .pulse-ring {
        position: absolute;
        top: 25px;
        right: 25px;
        width: 10px;
        height: 10px;
        background-color: var(--accent);
        border-radius: 50%;
      }

      .pulse-ring::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: var(--accent);
        border-radius: 50%;
        animation: pulse 2s infinite ease-in-out;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 0.6;
        }
        100% {
          transform: scale(3);
          opacity: 0;
        }
      }

      /* ==========================================================================
   4. RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
      @media (max-width: 992px) {
        .hero-container {
          grid-template-columns: 1fr;
          gap: 80px;
          text-align: center;
        }

        .tagline {
          justify-content: center;
        }

        .hero-description {
          margin-left: auto;
          margin-right: auto;
        }

        .hero-metrics {
          max-width: 600px;
          margin: 0 auto;
          width: 100%;
        }

        .metric-card:nth-child(even) {
          transform: translateY(0);
        }

        .metric-card:nth-child(even):hover {
          transform: translateY(-8px);
        }

        .platform-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .interactive-sidebar {
          position: relative;
          top: 0;
        }
      }

      @media (max-width: 576px) {
        .hero-section {
          padding: 100px 16px 60px;
        }

        .hero-metrics {
          grid-template-columns: 1fr;
          gap: 16px;
        }

        .metric-card {
          padding: 24px;
        }

        .platform-section {
          padding: 80px 16px;
        }

        .pillar-card {
          flex-direction: column;
          gap: 16px;
          padding: 24px;
        }

        .quote-box,
        .config-highlight-card {
          padding: 30px 24px;
        }
      }
      /* ==========================================
   ADVANTAGES SECTION STYLING
   ========================================== */
      .advantages-section {
        padding: 120px 24px;
        background-color: #f8fafc; /* Subtle grey layout split from previous section */
        display: flex;
        justify-content: center;
      }

      .advantages-container {
        max-width: 1100px;
        width: 100%;
      }

      .advantages-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 64px;
      }

      .advantages-subtitle {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #00d4b2; /* Theme Accent Teal */
        margin-bottom: 16px;
      }

      .advantages-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
        color: #0a2540; /* Theme Primary Dark */
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
      }

      .advantages-lead {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* 2x2 Grid with Creative Hover Transitions */
      .advantages-layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }

      .advantage-item {
        background: #ffffff;
        padding: 40px;
        border-radius: 20px;
        border: 1px solid rgba(10, 37, 64, 0.05);
        box-shadow: 0 10px 30px rgba(10, 37, 64, 0.02);
        display: flex;
        gap: 32px;
        align-items: flex-start;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .advantage-item:hover {
        transform: translateY(-6px);
        border-color: rgba(0, 212, 178, 0.25);
        box-shadow: 0 20px 40px rgba(10, 37, 64, 0.06);
      }

      /* Typography Badge Indicator */
      .advantage-badge {
        font-size: 1.75rem;
        font-weight: 800;
        color: rgba(10, 37, 64, 0.15);
        line-height: 1;
        font-feature-settings: "tnum";
        transition: color 0.3s ease;
      }

      .advantage-item:hover .advantage-badge {
        color: #00d4b2;
      }

      .advantage-body h3 {
        font-size: 1.25rem;
        color: #0a2540;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 12px;
      }

      .advantage-body p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* ==========================================
   RESPONSIVE LAYOUT TRANSLATIONS
   ========================================== */
      @media (max-width: 992px) {
        .advantages-layout {
          grid-template-columns: 1fr;
          gap: 24px;
        }
      }

      @media (max-width: 576px) {
        .advantages-section {
          padding: 80px 16px;
        }

        .advantage-item {
          flex-direction: column;
          gap: 16px;
          padding: 32px 24px;
        }
      }
      /* ==========================================
   FEATURE DEEP-DIVES SECTION STYLING
   ========================================== */
      .features-section {
        padding: 120px 24px;
        background-color: #ffffff; /* Rotates to white backdrops for structural balance */
        display: flex;
        justify-content: center;
      }

      .features-container {
        max-width: 1100px;
        width: 100%;
      }

      .features-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 64px;
      }

      .features-subtitle {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #00d4b2; /* Theme Accent Teal */
        margin-bottom: 16px;
      }

      .features-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
        color: #0a2540; /* Theme Primary Dark */
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
      }

      .features-lead {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* Row-Based Interactive Multi-Grid Layout */
      .features-layout {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }

      .feature-card {
        background: #ffffff;
        padding: 36px 28px;
        border-radius: 20px;
        border: 1px solid rgba(10, 37, 64, 0.06);
        box-shadow: 0 4px 20px rgba(10, 37, 64, 0.01);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
      }

      .feature-card:hover {
        transform: translateY(-8px);
        border-color: rgba(10, 37, 64, 0.1);
        box-shadow: 0 20px 40px rgba(10, 37, 64, 0.06);
      }

      /* Circular Gradient Icon Wrapper */
      .feature-icon-wrapper {
        width: 52px;
        height: 52px;
        background: linear-gradient(
          135deg,
          rgba(0, 212, 178, 0.1) 0%,
          rgba(10, 37, 64, 0.02) 100%
        );
        color: #0a2540;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        transition: all 0.3s ease;
      }

      .feature-card:hover .feature-icon-wrapper {
        background: #0a2540;
        color: #00d4b2;
        transform: rotate(5deg);
      }

      .feature-content h3 {
        font-size: 1.15rem;
        color: #0a2540;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 12px;
      }

      .feature-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* ==========================================
   RESPONSIVE LAYOUT TRANSLATIONS
   ========================================== */
      @media (max-width: 1200px) {
        .features-layout {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .features-layout {
          grid-template-columns: 1fr;
          gap: 20px;
        }
      }

      @media (max-width: 576px) {
        .features-section {
          padding: 80px 16px;
        }

        .feature-card {
          padding: 32px 24px;
        }
      }
      /* ==========================================
   DEPLOYMENT MODEL SECTION STYLING
   ========================================== */
      .deployment-section {
        padding: 120px 24px;
        background-color: #f8fafc; /* Alternates to subtle light grey background */
        display: flex;
        justify-content: center;
      }

      .deployment-container {
        max-width: 1100px;
        width: 100%;
      }

      .deployment-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
        align-items: center;
      }

      /* Left Content Styles */
      .deployment-intro {
        max-width: 580px;
      }

      .deployment-subtitle {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #00d4b2; /* Accent Teal */
        margin-bottom: 16px;
      }

      .deployment-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
        color: #0a2540; /* Primary Dark */
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
      }

      .deployment-tagline {
        font-size: 1.15rem;
        font-weight: 700;
        color: #00d4b2;
        margin-bottom: 24px;
      }

      .deployment-desc {
        font-size: 1.05rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* Right Feature List Styles */
      .deployment-capabilities {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .capability-item {
        background: #ffffff;
        padding: 20px 24px;
        border-radius: 16px;
        border: 1px solid rgba(10, 37, 64, 0.05);
        box-shadow: 0 4px 15px rgba(10, 37, 64, 0.01);
        display: flex;
        align-items: center;
        gap: 18px;
        transition: all 0.3s ease;
      }

      .capability-item:hover {
        transform: translateX(6px);
        border-color: rgba(0, 212, 178, 0.25);
        box-shadow: 0 10px 25px rgba(10, 37, 64, 0.05);
      }

      .capability-check {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        background-color: rgba(0, 212, 178, 0.1);
        color: #00d4b2;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .capability-item:hover .capability-check {
        background-color: #00d4b2;
        color: #ffffff;
      }

      .capability-item p {
        font-size: 0.95rem;
        font-weight: 600;
        color: #0a2540;
        line-height: 1.4;
      }

      /* ==========================================
   RESPONSIVE LAYOUT TRANSLATIONS
   ========================================== */
      @media (max-width: 992px) {
        .deployment-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }

        .deployment-intro {
          max-width: 100%;
          text-align: center;
        }

        .capability-item:hover {
          transform: translateY(-2px); /* Moves up instead of right on mobile */
        }
      }

      @media (max-width: 576px) {
        .deployment-section {
          padding: 80px 16px;
        }

        .capability-item {
          padding: 16px;
          gap: 14px;
        }
      }
      /* ==========================================
   IMPLEMENTATION PROCESS SECTION STYLING
   ========================================== */
      .process-section {
        padding: 120px 24px;
        background-color: #ffffff; /* Rotates to white backdrops for balance */
        display: flex;
        justify-content: center;
      }

      .process-container {
        max-width: 1000px; /* Narrower container matches the timeline flow perfectly */
        width: 100%;
      }

      .process-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
      }

      .process-subtitle {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #00d4b2; /* Accent Teal */
        margin-bottom: 16px;
      }

      .process-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
        color: #0a2540; /* Primary Dark */
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
      }

      .process-lead {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* Timeline Layout Architecture */
      .process-timeline {
        position: relative;
        padding-left: 32px; /* Leaves space for the spine connector line */
      }

      /* Vertical Spine Connecting Line */
      .process-timeline::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 15px;
        width: 2px;
        height: calc(100% - 70px);
        background: linear-gradient(to bottom, #00d4b2, rgba(10, 37, 64, 0.1));
      }

      .timeline-step {
        position: relative;
        padding-bottom: 56px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 32px;
      }

      .timeline-step:last-child {
        padding-bottom: 0;
      }

      /* Bullet Marker Styles */
      .step-marker {
        position: relative;
        z-index: 2;
        width: 32px;
        height: 32px;
        background-color: #ffffff;
        border: 2px solid #0a2540;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .step-number {
        font-size: 0.75rem;
        font-weight: 800;
        color: #0a2540;
        font-feature-settings: "tnum";
        transition: color 0.3s ease;
      }

      /* Step Content Box */
      .step-content {
        background: #f8fafc;
        padding: 32px;
        border-radius: 16px;
        border: 1px solid rgba(10, 37, 64, 0.04);
        box-shadow: 0 4px 20px rgba(10, 37, 64, 0.01);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      /* Hover Interactive Inversions */
      .timeline-step:hover .step-marker {
        background-color: #00d4b2;
        border-color: #00d4b2;
        transform: scale(1.15);
      }

      .timeline-step:hover .step-number {
        color: #ffffff;
      }

      .timeline-step:hover .step-content {
        background: #ffffff;
        border-color: rgba(0, 212, 178, 0.25);
        box-shadow: 0 15px 35px rgba(10, 37, 64, 0.05);
        transform: translateX(6px);
      }

      .step-content h3 {
        font-size: 1.25rem;
        color: #0a2540;
        font-weight: 700;
        margin-bottom: 12px;
      }

      .step-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* ==========================================
   RESPONSIVE LAYOUT TRANSLATIONS
   ========================================== */
      @media (max-width: 576px) {
        .process-section {
          padding: 80px 16px;
        }

        .process-timeline {
          padding-left: 24px;
        }

        .process-timeline::before {
          left: 7px;
        }

        .timeline-step {
          gap: 16px;
          padding-bottom: 40px;
        }

        .step-marker {
          width: 16px;
          height: 16px;
          margin-top: 6px;
        }

        .step-number {
          display: none; /* Simplifies bullet profile on tiny mobile displays */
        }

        .step-content {
          padding: 24px 20px;
        }

        .timeline-step:hover .step-content {
          transform: none; /* Disables side translate for stable mobile scrolling */
        }
      }
      /* ==========================================
   ECOSYSTEM SECTION STYLING
   ========================================== */
      .ecosystem-section {
        padding: 120px 24px;
        background-color: #f8fafc; /* Alternates back to light grey */
        display: flex;
        justify-content: center;
      }

      .ecosystem-container {
        max-width: 1100px;
        width: 100%;
      }

      .ecosystem-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 64px;
      }

      .ecosystem-subtitle {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #00d4b2; /* Theme Accent Teal */
        margin-bottom: 16px;
      }

      .ecosystem-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
        color: #0a2540; /* Theme Primary Dark */
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
      }

      .ecosystem-lead {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* Modern 3-Column Ecosystem Grid */
      .ecosystem-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 56px;
      }

      .ecosystem-card {
        background: #ffffff;
        padding: 32px;
        border-radius: 20px;
        border: 1px solid rgba(10, 37, 64, 0.05);
        box-shadow: 0 4px 20px rgba(10, 37, 64, 0.01);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 24px;
      }

      .ecosystem-card:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 212, 178, 0.3);
        box-shadow: 0 20px 40px rgba(10, 37, 64, 0.05);
      }

      /* Meta Data Structure */
      .ecosystem-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
      }

      .category-tag {
        font-size: 0.85rem;
        font-weight: 700;
        color: #0a2540;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .status-pill {
        font-size: 0.75rem;
        font-weight: 600;
        color: #00b396;
        background-color: rgba(0, 212, 178, 0.08);
        padding: 4px 12px;
        border-radius: 100px;
      }

      .ecosystem-platforms {
        font-size: 1.35rem;
        color: #0a2540;
        font-weight: 700;
        line-height: 1.3;
      }

      /* Section Bottom Developer Info */
      .ecosystem-footer {
        text-align: center;
        background: #0a2540;
        color: #ffffff;
        padding: 24px 32px;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(10, 37, 64, 0.1);
      }

      .ecosystem-footer p {
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
      }

      .ecosystem-footer .divider {
        color: #00d4b2;
        margin: 0 12px;
        font-weight: 800;
      }

      /* ==========================================
   RESPONSIVE LAYOUT TRANSLATIONS
   ========================================== */
      @media (max-width: 992px) {
        .ecosystem-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .ecosystem-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
      }

      @media (max-width: 576px) {
        .ecosystem-section {
          padding: 80px 16px;
        }

        .ecosystem-card {
          padding: 24px;
        }

        .ecosystem-footer {
          padding: 20px 16px;
        }

        .ecosystem-footer p {
          font-size: 0.9rem;
          line-height: 1.5;
        }

        .ecosystem-footer .divider {
          display: block;
          margin: 8px 0;
        }
      }
      /* ==========================================
   FINAL CTA SECTION STYLING
   ========================================== */
      .final-cta-section {
        padding: 120px 24px;
        background-color: #ffffff; /* Smooth contrast background from gray ecosystem */
        display: flex;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }

      .final-cta-container {
        max-width: 1100px;
        width: 100%;
        background: linear-gradient(135deg, #0a2540 0%, #11385c 100%);
        border-radius: 32px;
        padding: 80px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(10, 37, 64, 0.2);
      }

      /* Cybernetic Ambient Light Overlay */
      .cta-glow {
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(0, 212, 178, 0.15) 0%,
          transparent 70%
        );
        pointer-events: none;
        z-index: 1;
      }

      .final-cta-content {
        position: relative;
        z-index: 2;
        max-width: 750px;
        margin: 0 auto;
      }

      .cta-title {
        font-size: clamp(2.25rem, 3.5vw, 3rem);
        color: #ffffff;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 24px;
      }

      .cta-desc {
        font-size: clamp(1.1rem, 1.25vw, 1.25rem);
        line-height: 1.6;
        color: #cbd5e1; /* Smooth grey typography */
        margin-bottom: 40px;
      }

      /* Button & Micro-interaction Wrapper */
      .cta-action-wrapper {
        display: flex;
        justify-content: center;
      }

      .cta-primary-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background-color: #00d4b2; /* Theme Accent Teal */
        color: #0a2540; /* Deep Contrast Text */
        padding: 20px 40px;
        border-radius: 14px;
        font-size: 1.05rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 30px rgba(0, 212, 178, 0.25);
      }

      .cta-primary-btn:hover {
        background-color: #ffffff;
        color: #0a2540;
        transform: translateY(-4px);
        box-shadow: 0 20px 35px rgba(255, 255, 255, 0.2);
      }

      .cta-primary-btn svg {
        transition: transform 0.3s ease;
      }

      .cta-primary-btn:hover svg {
        transform: translateX(5px);
      }

      /* ==========================================
   RESPONSIVE LAYOUT TRANSLATIONS
   ========================================== */
      @media (max-width: 768px) {
        .final-cta-container {
          padding: 60px 24px;
          border-radius: 24px;
        }
      }

      @media (max-width: 576px) {
        .final-cta-section {
          padding: 80px 16px;
        }

        .final-cta-container {
          padding: 48px 20px;
        }

        .cta-primary-btn {
          width: 100%;
          justify-content: center;
          padding: 18px 24px;
        }
      }
      /* ==========================================
   FAQ SECTION STYLING
   ========================================== */
      .faq-section {
        padding: 120px 24px;
        background-color: #f8fafc; /* Alternates background to subtle light gray */
        display: flex;
        justify-content: center;
      }

      .faq-container {
        max-width: 850px; /* Narrower container matches standard modern text layouts */
        width: 100%;
      }

      .faq-header {
        text-align: center;
        max-width: 650px;
        margin: 0 auto 64px;
      }

      .faq-subtitle {
        display: inline-block;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #00d4b2; /* Theme Accent Teal */
        margin-bottom: 16px;
      }

      .faq-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
        color: #0a2540; /* Theme Primary Dark */
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
      }

      .faq-lead {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* Accordion Component Framework */
      .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .faq-item {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(10, 37, 64, 0.05);
        box-shadow: 0 4px 20px rgba(10, 37, 64, 0.01);
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .faq-item:hover {
        border-color: rgba(10, 37, 64, 0.1);
        box-shadow: 0 10px 30px rgba(10, 37, 64, 0.03);
      }

      /* Trigger Button Layout */
      .faq-trigger {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        padding: 24px 32px;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
      }

      .faq-question {
        font-size: 1.15rem;
        font-weight: 700;
        color: #0a2540;
        line-height: 1.4;
        transition: color 0.3s ease;
      }

      /* Custom Minimalist Plus/Minus CSS Indicator */
      .faq-icon-box {
        position: relative;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
      }

      .faq-icon-box::before,
      .faq-icon-box::after {
        content: "";
        position: absolute;
        background-color: #0a2540;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
      }

      /* Horizontal line */
      .faq-icon-box::before {
        width: 14px;
        height: 2px;
      }

      /* Vertical line */
      .faq-icon-box::after {
        width: 2px;
        height: 14px;
      }

      /* Active State Styles (Toggled via inline JS click event) */
      .faq-item.active {
        border-color: rgba(0, 212, 178, 0.3);
        box-shadow: 0 15px 35px rgba(10, 37, 64, 0.05);
      }

      .faq-item.active .faq-question {
        color: #00b396;
      }

      .faq-item.active .faq-icon-box {
        transform: rotate(90deg);
      }

      .faq-item.active .faq-icon-box::after {
        transform: translate(-50%, -50%) scaleY(0); /* Fades vertical line to create modern minus sign */
      }

      /* Collapsible Panel */
      .faq-panel {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .faq-item.active .faq-panel {
        max-height: 200px; /* Provides responsive, smooth slide opening action */
      }

      .faq-answer {
        padding: 0 32px 28px;
        font-size: 1rem;
        line-height: 1.6;
        color: #4a5568;
      }

      /* ==========================================
   RESPONSIVE LAYOUT TRANSLATIONS
   ========================================== */
      @media (max-width: 576px) {
        .faq-section {
          padding: 80px 16px;
        }

        .faq-trigger {
          padding: 20px;
          gap: 16px;
        }

        .faq-question {
          font-size: 1.05rem;
        }

        .faq-answer {
          padding: 0 20px 20px;
          font-size: 0.95rem;
        }
      }/* End custom CSS */