@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Custom styles for GraphBit AI */
/* The main onepage styles are in onepage.css */

* {
    font-family: "Figtree", "Figtree Placeholder", sans-serif;
}

/* ========================================================================
   Global Animations (Reveal on Scroll)
   ======================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

/* Navigation Desktop Cleanup & Spacing */
.mobile-nav-actions,
.menu-toggle {
    display: none !important;
}

@media (min-width: 1025px) {
    .nav-links {
        display: flex !important;
        gap: 30px !important;
        align-items: center !important;
    }

    #navbar-menu {
        display: flex !important;
        gap: 24px !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .button-group {
        display: flex !important;
        gap: 12px !important;
    }
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.trusted-by {
    padding: 120px 0;
    text-align: center;
    background: transparent;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 32px;
}

.trusted-title {
    font-size: 50px;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
}

.trusted-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.7;
}

.logo-grid {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: scroll 40s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logo-item svg {
    width: 24px;
    height: 24px;
    color: #818cf8;
    /* Indigo tint */
}

.logo-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    letter-spacing: -0.01em;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 40px));
    }
}

/* Hero Product Hunt Badges */
.ph-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.ph-badge {
    height: 48px;
    width: auto;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* .ph-badge:hover {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 12px 24px rgba(99, 102, 241, 0.2));
    border-color: rgba(99, 102, 241, 0.3);
} */

.github-badge-wrapper {
    position: relative;
    display: inline-flex;
}

.github-stars-count {
    position: absolute;
    right: 14px;
    bottom: 17px;
    color: white;
    font-size: 11px;
    font-weight: 700;
    pointer-events: none;
    line-height: 1;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* .github-badge-wrapper:hover .github-stars-count {
    transform: translateY(-5px) scale(1.02);
} */

/* Button Refinements */
.hero .btn {
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .btn-primary {
    background: #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.hero .btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.hero .btn-outline {
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(99, 102, 241, 0.4);
}

.hero .btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-2px);
}

.hero .hero-title {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 1.05;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.hero .hero-description {
    font-size: 22px;
    max-width: 800px;
    opacity: 0.95;
    position: relative;
    z-index: 10;
    line-height: 1.6;
}

.hero .badge,
.hero .ph-badges,
.hero .nav-actions,
.hero .hero-meta-badges {
    position: relative;
    z-index: 10;
}

.hero-meta-badges {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(25px);
    transition: all 0.3s ease;
    background: rgba(52, 255, 195, 0.1);
}

.meta-badge span {
    color: white;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Hero Main Image */
.hero-image-wrapper {
    margin-top: 60px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    animation: revealImage 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(closest-side, rgba(99, 102, 241, 0.15) 0%, transparent 100%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

@keyframes revealImage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visuals & Animations - Revamped */
.hero {
    position: relative;
    overflow: hidden;
    /* background: #020111; */
    padding: 160px 20px;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
}

.hero-visuals {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Above background, below content */
    pointer-events: none;
}

/* Hero Visuals & Animations - Circle Glow Effect */
.hero-visuals {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-animation-container {
    position: relative;
    width: 900px;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(25px);
    /* Increased visibility */
    opacity: 1;
}

.circle-big {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateCyclone 15s linear infinite;
    /* Blue Cyclone Arm - Leader */
    background: conic-gradient(from 0deg,
            transparent 0%,
            #4f46e5 10%,
            #06b6d4 25%,
            transparent 35%,
            transparent 100%);
    /* Tapered visible line mask */
    -webkit-mask-image: radial-gradient(circle, transparent 42%, black 45%, black 55%, transparent 58%);
    mask-image: radial-gradient(circle, transparent 42%, black 45%, black 55%, transparent 58%);
}

.circle-small {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    z-index: 1;
    animation: rotateCyclone 15s linear infinite;
    /* Pink Cyclone Arm - Follower (Offset by 60deg) */
    background: conic-gradient(from 60deg,
            transparent 0%,
            #b70b6c 10%,
            #814ac8 25%,
            transparent 35%,
            transparent 100%);
    /* Tapered visible line mask */
    -webkit-mask-image: radial-gradient(circle, transparent 42%, black 45%, black 55%, transparent 58%);
    mask-image: radial-gradient(circle, transparent 42%, black 45%, black 55%, transparent 58%);
}

@keyframes rotateCyclone {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Adjust circle-big transform for animation consistency */
.circle-big {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Tiny stars with realistic blinking */
/* .stars {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    background-image:
        radial-gradient(1.2px 1.2px at 10% 10%, #ffffff, transparent),
        radial-gradient(1.2px 1.2px at 20% 30%, #ffffff, transparent),
        radial-gradient(1.2px 1.2px at 30% 10%, #ffffff, transparent),
        radial-gradient(1.2px 1.2px at 40% 40%, #ffffff, transparent),
        radial-gradient(1.2px 1.2px at 50% 20%, #ffffff, transparent),
        radial-gradient(1.2px 1.2px at 60% 40%, #ffffff, transparent),
        radial-gradient(1.2px 1.2px at 70% 10%, #ffffff, transparent),
        radial-gradient(1.2px 1.2px at 80% 30%, #ffffff, transparent),
        radial-gradient(1.2px 1.2px at 90% 10%, #ffffff, transparent);
    background-size: 12% 12%;
    opacity: 0.8;
    animation: starsIntoHole 50s linear infinite,
        twinkle 4s ease-in-out infinite alternate;
} */

.stars::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.1px 1.1px at 15% 50%, #ffffff, transparent),
        radial-gradient(1.1px 1.1px at 35% 70%, #ffffff, transparent),
        radial-gradient(1.1px 1.1px at 55% 60%, #ffffff, transparent),
        radial-gradient(1.1px 1.1px at 75% 80%, #ffffff, transparent),
        radial-gradient(1.1px 1.1px at 95% 50%, #ffffff, transparent),
        radial-gradient(1.1px 1.1px at 25% 15%, #ffffff, transparent),
        radial-gradient(1.1px 1.1px at 45% 35%, #ffffff, transparent),
        radial-gradient(1.1px 1.1px at 65% 25%, #ffffff, transparent),
        radial-gradient(1.1px 1.1px at 85% 45%, #ffffff, transparent);
    background-size: 15% 15%;
    opacity: 0.6;
    animation: twinkle 6s ease-in-out infinite alternate-reverse;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes starsIntoHole {
    0% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 0;
    }
}

*/

/* Video Showcase Section (Exact Match to Design) */
.video-showcase {
    padding: 140px 80px;
    position: relative;
    overflow: hidden;
    background-color: #050510;
    border-radius: 40px;
    width: 95%;
    margin: 100px auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.video-showcase::before {
    content: '';
    position: absolute;
    /* Use a negative inset to avoid white edges from the blur */
    inset: -30px;
    background-image: url('../images/video-gradient.avif');
    /* background-size: cover; */
    /* background-position: top center; */
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-attachment: scroll;
    /* Apply 15px blur as requested */
    filter: blur(10px);
    /* Darken the image slightly to make text pop */
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

.video-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(322deg, rgba(11, 4, 48, 0.44) 0%, rgba(47, 38, 92, 0.62) 100%);
    z-index: -1;
    pointer-events: none;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    margin-bottom: 0;
}

.video-title-col {
    flex: 1.2;
}

.video-desc-col {
    flex: 1;
}

.video-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
}

.video-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 300;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 24px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/youtube-thumbnail.png') no-repeat center center;
    background-size: cover;
    z-index: 100;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark tint overlay on top of the thumbnail image */
.video-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 0.3s ease;
}

.video-wrapper.video-playing .video-overlay {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.premium-play-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Second Decorative Outer Ring */
.premium-play-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    animation: pulse-ring 3s infinite;
}

/* Pulsing Inner Core */
.premium-play-btn::before {
    content: '';
    position: absolute;
    inset: 15px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.9;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    transition: all 0.4s ease;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.video-overlay:hover::before {
    background: rgba(0, 0, 0, 0.25);
    /* Brightens the thumbnail slightly on hover */
}

.video-overlay:hover .premium-play-btn {
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-overlay:hover .premium-play-btn::before {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(1.2);
}

.video-overlay:hover .premium-play-btn::after {
    inset: -20px;
    border-color: rgba(168, 85, 247, 0.6);
}

.premium-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 5px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

@media (max-width: 992px) {
    .video-header {
        flex-direction: column;
        gap: 32px;
    }

    .video-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .video-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .trusted-by {
        padding: 80px 20px;
    }

    .logo-track {
        gap: 40px;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 20px));
        }
    }
}

/* Regulated Environment Section */
.regulated-environment-section {
    padding: 100px 40px;
    background-color: transparent;
    /* Allows main background to show, or set to #050510 if needed */
}

.regulated-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.regulated-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.regulated-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.regulated-banner-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    border-radius: 1rem;
}

/* .regulated-banner-img:hover {
    transform: scale(1.02);
} */

.regulated-text-col {
    flex: 1;
}

.regulated-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.regulated-description {
    font-size: 18px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .regulated-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        text-align: left;
    }

    .regulated-image-col {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }

    .regulated-title {
        font-size: 36px;
    }
}


/* Certifications Section */
.certifications-section {
    padding: 100px 40px;
    background-color: transparent;
}

.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.certifications-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.certifications-text {
    flex: 0.6;
    min-width: 450px;
}

.certifications-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.certifications-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 0;
}

.certifications-cards {
    flex: 1.4;
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.certification-card {
    flex: 1;
    background: linear-gradient(120deg, rgba(108, 79, 247, 0.1) 0%, rgba(52, 255, 195, 0.1) 100%);
    border-radius: 20px;
    padding: 30px 24px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.certification-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent);
    border-radius: 0 20px 0 0;
    pointer-events: none;
}

.certification-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.cert-card-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
}

.cert-front-content,
.cert-back-content {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cert-front-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
    gap: 24px;
}

.cert-back-content {
    opacity: 0;
    transform: translateY(30px);
    z-index: 1;
    pointer-events: none;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 20px;
}

.certification-card:hover .cert-front-content {
    opacity: 0;
    transform: translateY(-30px);
}

.certification-card:hover .cert-back-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cert-description {
    font-size: 13.5px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}

.cert-link {
    color: #00ffaa;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.cert-link:hover {
    color: white;
}




.cert-icon-wrapper {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cert-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-label {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: -0.01em;
}

.cert-arrow-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.cert-arrow-icon svg {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.certification-card:hover .cert-arrow-icon {
    opacity: 0;
    visibility: hidden;
    transform: translate(10px, -10px);
}


/* Regulatory Risk Section */
.regulatory-risk-section {
    padding: 60px 40px;
    background-color: transparent;
}

.regulatory-risk-container {
    max-width: 1200px;
    margin: 0 auto;
    background-image: url('../images/cost-banner-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.7);
}

.regulatory-risk-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(123deg, rgba(38, 20, 128, 0.11) 0%, rgba(29, 3, 94, 0.14) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
}

.regulatory-risk-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    position: relative;
    z-index: 2;
}

.risk-title-col {
    flex: 1;
}

.risk-desc-col {
    flex: 1.25;
}

.risk-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    color: #38efb0;
    margin: 0;
    letter-spacing: -0.015em;
    text-shadow: 0 0 50px rgba(56, 239, 176, 0.2);
    -webkit-font-smoothing: antialiased;
}

.risk-description {
    font-size: 18px;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -.02em;
}

@media (max-width: 1024px) {
    .regulatory-risk-content {
        gap: 60px;
    }

    .risk-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .regulatory-risk-container {
        padding: 60px 30px;
        border-radius: 30px;
    }

    .regulatory-risk-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .risk-title {
        font-size: 32px;
    }

    .risk-description {
        font-size: 16px;
    }
}

/* Layers of Risk Section */
.layers-section {
    padding: 120px 40px;
    background-color: transparent;
}

.layers-container {
    max-width: 1300px;
    margin: 0 auto;
}

.layers-header {
    text-align: center;
    margin-bottom: 100px;
}

.layers-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.layers-subtitle {
    font-size: 18px;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.layers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 280px);
    gap: 24px;
    justify-content: center;
}

.layer-card {
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 280px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

/* Progression of gradients from Dark to Light (Layer 01 - 07) */
.layer-card:nth-child(2) {
    background: linear-gradient(135deg, #0d0a1a 0%, #151128 100%);
}

.layer-card:nth-child(3) {
    background: linear-gradient(135deg, #15112e 0%, #1f1a42 100%);
}

.layer-card:nth-child(4) {
    background: linear-gradient(135deg, #1e1a47 0%, #2a2561 100%);
}

.layer-card:nth-child(5) {
    background: linear-gradient(135deg, #1e1a47 0%, #2a2561 100%);
}

.layer-card:nth-child(6) {
    background: linear-gradient(135deg, #1e1a47 0%, #2a2561 100%);
}

.layer-card:nth-child(7) {
    background: linear-gradient(135deg, #1e1a47 0%, #2a2561 100%);
}

.layer-card:nth-child(8) {
    background: linear-gradient(135deg, #1e1a47 0%, #2a2561 100%);
}

.layer-card:hover {
    border-color: rgba(108, 79, 247, 0.4);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

.layer-card-main {
    background: linear-gradient(#6c4ff7, rgb(108, 79, 247));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
}

.layer-main-icon {
    margin-bottom: 20px;
}

.layer-stack-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 50px;
    align-items: center;
}

.layer-stack-icon span {
    display: block;
    width: 44px;
    height: 10px;
    border-radius: 3px;
    background: white;
}

.layer-stack-icon .stack-1 {
    opacity: 1;
}

.layer-stack-icon .stack-2 {
    opacity: 0.8;
}

.layer-stack-icon .stack-3 {
    opacity: 0.6;
}

.layer-stack-icon .stack-4 {
    opacity: 0.4;
}

.main-layer-title {
    font-size: 32px;
    font-weight: 500;
    color: white;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.layer-number {
    font-size: 37px;
    font-weight: 500;
    color: #2a2e3b;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
}

.layer-title {
    font-size: 23px;
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.layer-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0;
}

@media (max-width: 1280px) {
    .layers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .layers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layers-title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .layers-grid {
        grid-template-columns: 1fr;
    }

    .layers-section {
        padding: 80px 20px;
    }

    .main-layer-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .certifications-content {
        flex-direction: column;
        gap: 50px;
    }

    .certifications-text {
        max-width: 100%;
    }

    .certifications-title {
        font-size: 36px;
    }

    .certifications-cards {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .certifications-section {
        padding: 60px 20px;
    }

    .certifications-title {
        font-size: 28px;
    }

    .cert-icon-wrapper {
        width: 100px;
        height: 100px;
    }
}

/* Performance Section */
.performance-section {
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
    background-color: #05070a;
    background: linear-gradient(180deg, #0b0c1b 0%, #0b0c1b 40%, #0b0c1bd4 100%), url('../images/green-gradient.avif');
    background-size: auto, auto;
    background-size: cover;
}

.performance-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.performance-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid #3b3182;
    color: #8b8de3;
    font-size: 14px;
    margin-bottom: 24px;
    background: rgba(59, 49, 130, 0.1);
}

.performance-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: white;
    margin: 0 0 64px 0;
    line-height: 1.1em;
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    text-align: left;
}

/* Dashboard Mockup Styling */
.dashboard-wrapper {
    position: relative;
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.3), transparent, rgba(0, 255, 170, 0.1));
    box-shadow: 0 0 40px rgba(0, 255, 170, 0.05);
}

.dashboard-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #0fa, rgba(5, 128, 87, 0.44), #0a2215);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.dashboard-container {
    background: #0a0c12;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-sidebar {
    width: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.sidebar-icon {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.sidebar-icon::before,
.sidebar-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: inherit;
}

.sidebar-icon::before {
    top: -6px;
}

.sidebar-icon::after {
    top: 6px;
}

.dashboard-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.dashboard-tab {
    font-size: 13px;
    color: #9ca3af;
}

.dashboard-tab.active {
    color: white;
    position: relative;
}

.dashboard-task-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    position: relative;
    height: 100%;
    /* Mask the top and bottom for smooth fade in/out */
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.dashboard-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: scroll-vertical 15s linear infinite;
}

.dashboard-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        /* Move up by 50% relative to the duplication to loop seamlessly */
        transform: translateY(calc(-50% - 4px));
        /* 4px accounts for half the gap if using gap:8px, but calc percentage is safer if height matches. 
           Actually, with gap:8px, if total height is H, duplicated is 2H.
           We want to move by -(Height of original set + gap). 
           However, percentage on transform refers to the element's own size. 
           Since element is 200% essentially, 50% is exactly the first set. 
        */
        transform: translateY(-50%);
    }
}

.dashboard-task-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    gap: 16px;
    flex-shrink: 0;
}

.dashboard-task-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    flex-shrink: 0;
}

.dashboard-task-info {
    flex: 1;
}

.dashboard-task-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    color: white;
}

.dashboard-task-meta {
    font-size: 11px;
    color: #9ca3af;
}

.dashboard-status-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.dashboard-status-icon.status-check {
    color: #00ffaa;
    border-color: rgba(0, 255, 170, 0.2);
}

.dashboard-status-icon.status-cross {
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.2);
}

/* Right Content Styling */
.performance-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-icon-container {
    width: 56px;
    height: 56px;
    position: relative;
    margin-bottom: 8px;
}

.ai-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ai-engine-title {
    font-size: 2.5rem;
    color: #00ffaa;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.ai-engine-description {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0;
}

.btn-benchmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid #00ffaa;
    background: transparent;
    color: white;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-benchmark:hover {
    background: rgba(0, 255, 170, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .performance-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dashboard-wrapper {
        order: 2;
    }

    .performance-right {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .ai-engine-description {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .performance-section {
        padding: 80px 20px;
    }

    .performance-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .performance-content {
        gap: 40px;
    }

    .dashboard-container {
        height: 350px;
    }

    .dashboard-main {
        padding: 16px;
    }

    .ai-engine-title {
        font-size: 2rem;
    }

    .ai-engine-description {
        font-size: 1rem;
    }
}

/* ========================================================================
   Unified Ecosystem Section (New Design)
   ======================================================================== */
.unified-ecosystem {
    padding: 120px 20px;
    background-color: #0b0c1b;
    color: white;
    position: relative;
    overflow: hidden;
}

.uni-title {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.uni-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    color: #9f9fa9;
    font-size: 18px;
    line-height: 1.6;
}

.uni-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 100px;
}

.uni-diagram {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.uni-diagram-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s ease;
    border-radius: 100%;
}

.uni-diagram:hover .uni-diagram-img {
    transform: translateY(-10px);
}

.diagram-layers {
    display: none;
    /* Hide since it's commented out in HTML */
}

.diagram-layer {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.layer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* Brain Icon Placeholder (matches design) */
.layer-icon-brain {
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.5 2A2.5 2.5 0 0 1 12 4.5v15a2.5 2.5 0 0 1-4.96.44 2.5 2.5 0 0 1-2.79-3.56 2.5 2.5 0 0 1 .55-4.76 2.5 2.5 0 0 1 2.2-4.06A2.5 2.5 0 0 1 9.5 2z'/%3E%3Cpath d='M14.5 2A2.5 2.5 0 0 0 12 4.5v15a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.79-3.56 2.5 2.5 0 0 0-.55-4.76 2.5 2.5 0 0 0-2.2-4.06A2.5 2.5 0 0 0 14.5 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.dark-brain {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.5 2A2.5 2.5 0 0 1 12 4.5v15a2.5 2.5 0 0 1-4.96.44 2.5 2.5 0 0 1-2.79-3.56 2.5 2.5 0 0 1 .55-4.76 2.5 2.5 0 0 1 2.2-4.06A2.5 2.5 0 0 1 9.5 2z'/%3E%3Cpath d='M14.5 2A2.5 2.5 0 0 0 12 4.5v15a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.79-3.56 2.5 2.5 0 0 0-.55-4.76 2.5 2.5 0 0 0-2.2-4.06A2.5 2.5 0 0 0 14.5 2z'/%3E%3C/svg%3E");
}

.layer-lbl {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.dark-text {
    color: #000;
}

/* Layer 4: Hub (Vibrant Purple) */
.hub-layer {
    width: 500px;
    height: 500px;
    bottom: 0;
    background-color: #7a26e2;
    z-index: 1;
}

/* Layer 3: Agents (Medium Purple) */
.agents-layer {
    width: 400px;
    height: 400px;
    bottom: 0;
    background-color: #4e1e9c;
    z-index: 2;
}

/* Layer 2: Cloud (Dark Purple) */
.cloud-layer {
    width: 300px;
    height: 300px;
    bottom: 0;
    background-color: #2b145a;
    z-index: 3;
}

/* Layer 1: Core (Mint Green) */
.core-layer {
    width: 180px;
    height: 180px;
    bottom: 0;
    background-color: #17ffc3;
    z-index: 4;
    justify-content: center;
    padding-top: 0;
    box-shadow: 0 0 40px rgba(23, 255, 195, 0.4);
}

.core-layer .layer-lbl {
    font-size: 18px;
    font-weight: 700;
}

.diagram-layer:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Right Content: List */
.uni-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.uni-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: default;
}

.uni-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.uni-card h4 {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.uni-card p {
    margin: 0;
    font-size: 14px;
    color: #9f9fa9;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .uni-content {
        flex-direction: column;
        gap: 60px;
    }

    .uni-diagram {
        width: 100%;
        padding: 0;
    }

    .uni-diagram-img {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .uni-title {
        font-size: 32px;
    }
}

/* ========================================================================
   Ecosystem Section
   ======================================================================== */
.ecosystem-section {
    padding: 120px 20px;
    background: #0b0c1b;
    position: relative;
}

.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ecosystem-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 32px;
}

.ecosystem-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
}

.ecosystem-description {
    font-size: 18px;
    color: #9f9fa9;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 24px;
    text-align: left;
}

.eco-card {
    background: linear-gradient(109deg, #201d45, #1a1b2a);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.eco-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

/* Large Left Card */
.eco-card-large {
    background: radial-gradient(rgba(11, 12, 27, 0.6), rgba(11, 12, 27, 0.6)), url('../images/gradient-card.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    width: 400px;
}

/* Abstract shapes for large card bg */
.eco-card-large::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    filter: blur(80px);
}

.eco-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.eco-card-title {
    font-size: 33px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
    position: relative;
    margin-top: 2rem;
}

.text-gradient-blue {
    background: linear-gradient(to right, #8b8de3, #a5a7f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(to right, #2dd4bf, #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eco-card-text {
    color: #b8b8c7;
    font-size: 25px;
    position: relative;
    font-weight: 500;
    font-family: "Figtree", "Figtree Placeholder", sans-serif;
    margin: 0;
    line-height: 2rem;
    letter-spacing: -0.04em;
    margin-top: 4rem;
}

/* Right Stack */
.eco-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eco-card-small {
    padding: 5px;
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(109deg, #201d45, #1a1b29, #191a28);
    border-radius: 12px;
    backdrop-filter: blur(20px);
}

.eco-icon-box {
    width: 64px;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eco-icon-box.bg-purple {
    background: linear-gradient(180deg, #6C4FF7, rgb(108, 79, 247) 0%, rgb(37, 23, 110) 100%);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.eco-card-info {
    padding: 1rem 10px;
}

.eco-icon-box svg {
    color: white;
    width: 32px;
    height: 100%;
}

.eco-card-info h4 {
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
}

.eco-card-info p {
    color: #9f9fa9;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive Updates */
@media (max-width: 1100px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .eco-card-large {
        width: 100%;
        min-height: auto;
        padding-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .ecosystem-title {
        font-size: 36px;
    }

    .ecosystem-section {
        padding: 80px 20px;
    }

    .eco-card-large .eco-card-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .eco-card-text {
        font-size: 18px;
        line-height: 1.5;
    }
}

@media (max-width: 640px) {
    .eco-card-small {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .eco-icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .eco-card-info {
        padding: 0;
    }

    .eco-card-info h4 {
        font-size: 18px;
    }

    .eco-card-info p {
        font-size: 15px;
    }
}

/* Footer Updates */
.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 32px;
    height: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

/* ========================================================================
   Features Section
   ======================================================================== */
.features-section {
    padding: 120px 20px;
    background: #0b0c1b;
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 32px;
}

.features-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
}

.features-description {
    font-size: 18px;
    color: #9f9fa9;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    margin-bottom: 48px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.features-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.feature-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    text-align: left;
    scroll-snap-align: start;
    flex-shrink: 0;
    width: calc(33.333% - 16px);
    /* Show 3 cards on desktop */
    background: rgba(255, 255, 255, 0.05);
}

.feature-bg-image {
    position: relative;
    width: calc(100% + 64px);
    height: 150px;
    margin: -32px -32px 32px -32px;
    z-index: 0;
}

.feature-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.feature-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(11, 12, 27, 0), rgba(11, 12, 27, 0.5));
    z-index: 1;
    pointer-events: none;
}

.feature-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Blue Gradient - Type Safety */
.feature-card-blue .feature-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

/* Green Gradient - Reliability */
.feature-card-green .feature-gradient {
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Carousel Indicators */
.features-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-card {
        width: calc(100% - 40px);
        /* One card at a time on mobile */
    }
}

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

    .features-title {
        font-size: 36px;
    }

    .features-description {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .feature-card {
        min-height: 280px;
        padding: 24px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

/* ========================================================================
   Integration Section
   ======================================================================== */
.integration-section {
    padding: 120px 20px;
    background: #0b0c1b;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at center, #251435 0%, transparent 60%);
    pointer-events: none;
    z-index: -9;
}

.integration-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 32px;
}

.integration-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
}

.integration-description {
    font-size: 18px;
    color: #9f9fa9;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.integration-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.integration-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .integration-title {
        font-size: 36px;
    }

    .integration-section {
        padding: 80px 20px;
    }
}

/* ========================================================================
   Testimonials Section
   ======================================================================== */
.testimonials-section {
    padding: 120px 20px;
    background: #05050f;
    /* Slightly darker/different shade */
    text-align: center;
    position: relative;
}

.testimonials-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
}

.testimonials-description {
    font-size: 18px;
    color: #9f9fa9;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    /* Hide scrollbar from container */
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    gap: 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.testimonial-slide {
    min-width: 100%;
    flex-basis: 100%;
    /* Ensure full width flex item */
    width: 100%;
    scroll-snap-align: center;
    flex-shrink: 0;
    box-sizing: border-box;
    /* padding won't affect width */
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.05);
    /* Purple tint */
    border: 1px solid rgba(124, 58, 237, 0.3);
    /* Purple border */
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
    /* Light purple text */
    margin-bottom: 48px;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.1);
}

.testimonial-quote {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    margin: 0 auto 48px;
    font-style: normal;
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    margin-bottom: 1rem;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: white;
    font-style: normal;
}

.author-role {
    font-size: 14px;
    color: #9f9fa9;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicators .dot.active {
    width: 24px;
    border-radius: 12px;
    background: #10b981;
    /* Green active color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 24px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-section {
        padding: 80px 20px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 180px 20px 100px;
    background-color: #05070a;
    /* Dark background matching the theme */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 24px;
}

.about-title {
    font-size: 64px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-description {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.about-trusted {
    margin-top: auto;
    width: 100%;
}

.trusted-label {
    font-size: 14px;
    color: white;
    margin-bottom: 32px;
    font-weight: 500;
}

.about-logos {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 40px;
    }

    .about-hero {
        padding-top: 140px;
        min-height: auto;
    }
}

/* Who We Are Section */
.who-we-are {
    padding: 40px 20px;
    background-color: #05070a;
    text-align: center;
}

.who-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 24px;
}

.who-title {
    font-size: 50px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.who-description {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.who-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: #111425;
    /* Dark blue/purple shade */
    border-radius: 12px;
    padding: 30px 24px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 24px;
    height: 24px;
    color: white;
    display: flex;
    grid-column: 1;
}

.stat-info {
    display: contents;
    /* Allows children to participate in the card's grid directly */
}

.stat-value {
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin: 0;
    grid-column: 2;
}

.stat-text {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .who-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-title {
        font-size: 36px;
    }
}

/* Our Values Section */
.our-values {
    padding: 100px 20px;
    background-color: #05070a;
    text-align: center;
}

.values-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 24px;
}

.values-title {
    font-size: 50px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.values-description {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.values-grid {
    background: radial-gradient(50% 50%, rgba(129, 74, 200, 0.25) 0%, rgba(0, 114, 156, 0) 100%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #16161b;
    /* Dark blue/purple shade */
    border-radius: 12px;
    padding: 40px 32px;
    text-align: left;
    display: flex;
    flex-direction: row;
    /* Icon and content side by side if preferred, or column */
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
    align-items: flex-start;
}

/* Based on image, it looks like row or column? 
   Image shows icon on left and text on right? No, looks like column with icon top left?
   Wait, looking at image: 
   Row 1: Icon Left, Title Right? Or Icon Top Left?
   Actually, looking closely at "Driving Innovation Forward" card in previous image (Who We Are had top icons).
   The new image "Values Behind Xtract":
   Card: Icon on left, Title/Text on right.
   Let's check the image again.
   "Driving Innovation Forward" - Icon is likely on left side of title?
   Actually, standard "feature card" usually:
   [Icon]
   [Title]
   [Text]
   OR
   [Icon] [Title]
          [Text]
   
   Let's assume Row layout for Icon + Content based on typical list view, BUT the image shows 2x2 grid.
   Let's check the zoomed image provided. 
   Ah, it looks like:
   [Icon] [Title]
   [Text is below Title]
   So it's a Flex Row of (Icon, Div(Title, Text)).
*/

.value-card {
    background: #16161b;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

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

.value-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: white;
    margin-top: 4px;
    /* Align with title */
}

.value-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-card-title {
    font-size: 23px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.value-card-text {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

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

    .values-title {
        font-size: 36px;
    }

    .value-card {
        flex-direction: column;
        gap: 16px;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 10px 20px;
    background-color: #05070a;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: 16px;
    padding: 20px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.comparison-card.manual {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card.ai {
    background: radial-gradient(50% 50% at 52.3% 0%, rgba(129, 74, 200, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    /* Purple border */
    position: relative;
    overflow: hidden;
}

/* Add a subtle glow effect behind the title/top of AI card if possible, 
   but linear gradient covers it nicely as shown in image (top purple fade) */

.comparison-card-title {
    font-size: 23px;
    font-weight: 400;
    color: white;
    /* Manual is greyish? No image shows "Manual Work" is grey? 
                     Wait image shows "Manual Work" is grey/white but distinct. 
                     "Xtract AI Automation" is white. */
    margin-bottom: 32px;
}

.comparison-card.manual .comparison-card-title {
    color: #94a3b8;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 15px;
    line-height: 0;
}

.comparison-card.ai .comparison-list li {
    color: white;
}

.icon-x,
.icon-check {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

    .comparison-card {
        padding: 24px;
    }
}

/* Team Section */
.team-section {
    padding: 100px 20px;
    background-color: #05070a;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.team-card {
    background: #111425;
    border-radius: 12px;
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

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

.team-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 5px;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px;
}

.team-role {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.linkedin-link {
    transition: opacity 0.3s ease;
}

.linkedin-link:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background-color: #05070a;
    text-align: center;
}

.faq-accordion {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #111425;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.3);
    /* Optional: slight purple border when active */
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    gap: 20px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question span {
    flex: 1;
}

.chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Large enough to fit content */
}

.faq-answer-content {
    padding: 0 32px 32px;
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 24px 24px;
        font-size: 15px;
    }
}

/* CTA Section */
.cta-section {
    padding: 0 20px;
    background-color: #05070a;
}

.cta-box {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(149deg, rgba(129, 74, 200, 0.4) 0%, var(--token-b2fb23d9-6070-4f2d-b3d0-2fe68c4f2aab, rgba(13, 13, 13, 0.8)) 28.999999999999996%, var(--token-b2fb23d9-6070-4f2d-b3d0-2fe68c4f2aab, rgba(13, 13, 13, 0.8)) 74%, rgba(129, 74, 200, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: 5rem;
}

.cta-title {
    font-size: 50px;
    font-weight: 400;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    font-family: "Figtree Variable", "Figtree Placeholder", sans-serif;
    letter-spacing: -0.04em;
    width: 31rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle {
    font-size: 18px;
    color: #9f9fa9;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #6c4ff7;
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    color: white;
}


@media (max-width: 768px) {
    .cta-box {
        padding: 60px 24px;
    }

    .cta-title {
        font-size: 32px;
    }
}

/* ========================================================================
   New Ecosystem Page Sections
   ======================================================================== */
.ecosys-page {
    background-color: #05050e;
    /* Deep navy/black background */
    color: #ffffff;
}

.ecosys-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.ecosys-hero-section {
    padding: 120px 0 60px;
    text-align: center;
}

.ecosys-hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.ecosys-hero-subtitle {
    font-size: 18px;
    color: #94adcf;
    margin-bottom: 24px;
    line-height: 1.5;
    font-weight: 300;
}

.ecosys-hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94adcf;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
}

/* Overview Section */
.ecosys-overview-section {
    padding: 100px 0;
    text-align: center;
}

.ecosys-overview-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.ecosys-overview-description {
    font-size: 18px;
    line-height: 1.6;
    color: #94adcf;
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 300;
}

.ecosys-layers-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: none;
}

.ecosys-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.ecosys-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: left;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ecosys-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.ecosys-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.ecosys-card-text {
    font-size: 14px;
    line-height: 1.4;
    color: #94adcf;
    margin: 0;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .ecosys-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .ecosys-hero-title,
    .ecosys-overview-title {
        font-size: 42px;
    }

    .ecosys-hero-subtitle {
        font-size: 16px;
    }

    .ecosys-grid {
        grid-template-columns: 1fr;
    }
}

/* Detailed Layers Section */
.ecosys-details-section {
    padding: 100px 0;
    background-color: #05050e;
}

.ecosys-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 120px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.ecosys-detail-row:last-child {
    margin-bottom: 0;
}

.ecosys-detail-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.ecosys-detail-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 79, 247, 0.1);
    border: 1px solid rgba(108, 79, 247, 0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #8b8de3;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.ecosys-detail-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.ecosys-detail-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #94adcf;
    margin-bottom: 32px;
    font-weight: 300;
}

.ecosys-detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #6c4ff7;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ecosys-detail-btn:hover {
    transform: scale(1.1);
    background: #5a3edb;
}

.ecosys-detail-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ecosys-feature-item {
    background: linear-gradient(90deg, #0b0c1b 0%, #15162c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    align-items: center;
}

/* Purple glow effect on the right */
.ecosys-feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(108, 79, 247, 0.15));
    pointer-events: none;
}

/* Responsive Styles for Details */
@media (max-width: 992px) {
    .ecosys-detail-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .ecosys-detail-content {
        max-width: 100%;
    }

    .ecosys-detail-title {
        font-size: 36px;
    }
}

/* Join Ecosystem CTA Section */
.ecosys-join-section {
    padding: 120px 0;
    text-align: center;
    background-color: #05050e;
}

.ecosys-join-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.ecosys-join-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #94adcf;
    max-width: 800px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.ecosys-join-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ecosys-btn-filled {
    background: #6c4ff7;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid transparent;
}

.ecosys-btn-filled:hover {
    background: #5a3edb;
    transform: translateY(-2px);
    color: #ffffff;
}

.ecosys-btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ecosys-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .ecosys-join-title {
        font-size: 40px;
    }

    .ecosys-join-btns {
        flex-direction: column;
        align-items: center;
    }

    .ecosys-btn-filled,
    .ecosys-btn-outline {
        width: 100%;
        max-width: 300px;
    }
}



@media (max-width: 768px) {
    .ecosys-detail-title {
        font-size: 28px;
    }

    .ecosys-feature-item {
        padding: 16px 20px;
        font-size: 14px;
    }
}


/* ========================================================================
   Contact Page Sections
   ======================================================================== */
.contact-page {
    background-color: #0b0c1b;
    color: #ffffff;
    padding: 100px 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 3rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.contact-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    color: #94adcf;
    margin-bottom: 0;
    font-weight: 300;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at bottom right, rgba(108, 79, 247, 0.2), transparent 70%);
    pointer-events: none;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 500;
}

.contact-info-header svg {
    color: #ffffff;
}

.contact-info-value {
    font-size: 16px;
    color: #94adcf;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 1rem;
}

.form-group .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6c4ff7;
    background: rgba(255, 255, 255, 0.04);
}

.wpcf7-submit,
.submit-btn {
    background: #6c4ff7;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    width: fit-content;
}

.wpcf7-submit:hover,
.submit-btn:hover {
    background: #5a3edb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 79, 247, 0.2);
}

.contact-form br {
    display: none;
}

.contact-form p {
    margin: 0;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .contact-title {
        font-size: 40px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }
}

/* ========================================================================
   Blogs Page Sections
   ======================================================================== */
.blogs-page {
    background-color: #0b0c1b;
    color: #ffffff;
    padding: 100px 0;
}

.blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogs-header {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 3rem;
}

.blogs-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.blogs-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.blogs-description {
    font-size: 18px;
    line-height: 1.6;
    color: #94adcf;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 32px;
    justify-content: center;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    padding: 24px;
    height: 430px;
    width: 440px;
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    width: fit-content;
}

.blog-card-title {
    font-size: 23px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .blogs-title {
        font-size: 48px;
    }
}

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

    .blogs-title {
        font-size: 36px;
    }

    .blog-card-title {
        font-size: 20px;
    }
}

/* ========================================================================
   Ecosystem Section (Nested Visual) - REPLACEMENT STYLES
   ======================================================================== */
.ecosystem-section {
    padding: 120px 20px;
    background: #0b0c1b;
    position: relative;
    overflow: hidden;
}

.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ecosystem-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
}

.ecosystem-description {
    font-size: 18px;
    color: #9f9fa9;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Visual Container */
.ecosystem-visual {
    position: relative;
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    /* Create space for the largest oval */
    min-height: 600px;
}

/* Base style for all layers */
.eco-layer {
    position: relative;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    /* transition: all 0.4s ease; */
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.eco-layer h3 {
    font-size: 28px;
    font-weight: 500;
    color: white;
    margin: 0 0 8px 0;
}

.eco-layer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 400px;
    text-align: center;
    font-weight: 300;
}

/* Layer 1: Hub (Outer) */
.layer-hub {
    width: 900px;
    height: 700px;
    background: linear-gradient(180deg, #6d00c1 0%, #3a0ca3 100%);
    z-index: 1;
}

.layer-hub>.layer-content {
    margin-bottom: 30px;
}

/* Layer 2: Agents */
.layer-agents {
    width: 750px;
    height: 550px;
    background: linear-gradient(180deg, #4c1d95 0%, #312e81 100%);
    z-index: 2;
    margin-top: 0px;
    /* Slightly offset if needed, but flex stack works */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layer-agents>.layer-content {
    margin-bottom: 30px;
}

/* Layer 3: Cloud */
.layer-cloud {
    width: 600px;
    height: 400px;
    background: linear-gradient(180deg, #312e81 0%, #1e1b4b 100%);
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layer-cloud>.layer-content {
    margin-bottom: 30px;
}

/* Layer 4: Core (Inner) */
.layer-core {
    width: 450px;
    height: 180px;
    /* Reduced height to look like a pill/oval at bottom */
    background: linear-gradient(90deg, #6ee7b7 0%, #3b82f6 100%);
    /* Actually image shows a bright mint/teal gradient */
    background: linear-gradient(180deg, #6afaab 0%, #2dd4bf 100%);
    z-index: 4;
    border-radius: 100px;
    /* Pill shape for the core */
    justify-content: center;
    padding-top: 0;
    box-shadow: 0 0 60px rgba(45, 212, 191, 0.6);
    margin-top: 20px;
}

.layer-core h3 {
    color: #0f172a;
    font-weight: 700;
}

.layer-core p {
    color: #0f172a;
    font-weight: 500;
}

/* Hover Effects */
.eco-layer:hover {
    transform: translateY(-5px);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .layer-hub {
        width: 100%;
        height: 600px;
    }

    .layer-agents {
        width: 90%;
        height: 480px;
    }

    .layer-cloud {
        width: 80%;
        height: 350px;
    }

    .layer-core {
        width: 70%;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .ecosystem-visual {
        min-height: 500px;
    }

    .eco-layer h3 {
        font-size: 22px;
    }

    .eco-layer p {
        font-size: 13px;
        padding: 0 20px;
    }

    .layer-hub {
        width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .layer-agents {
        width: 92%;
    }

    .layer-cloud {
        width: 85%;
    }

    .layer-core {
        width: 75%;
        height: 140px;
    }
}

/* ========================================================================
   Performance Comparison Section (New Design)
   ======================================================================== */
.performance-section {
    padding: 120px 20px;
    background: #0b0c1b;
    position: relative;
    overflow: hidden;
}

.performance-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.performance-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.performance-description {
    font-size: 18px;
    line-height: 1.6;
    color: #9f9fa9;
    max-width: 800px;
    margin: 0 auto 60px;
}

.perf-comparison-grid {
    display: grid;
    grid-template-columns: 250px 1fr 1fr 1fr;
    gap: 15px;
    align-items: stretch;
}

/* Labels Column */
.perf-labels-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 24px;
    gap: 15px;
    /* Space between rows */
}

/* Push labels down to align with card rows */
.perf-labels-col {
    padding-top: 80px;
    /* Offset for card headers */
}

.perf-label-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(90deg, #1e1b4b 0%, rgba(30, 27, 75, 0) 100%);
    padding: 16px;
    border-radius: 12px;
    height: 80px;
}

.perf-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    flex-shrink: 0;
}

.perf-label-text {
    text-align: left;
}

.perf-label-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.perf-label-text span {
    font-size: 13px;
    color: #9f9fa9;
}

/* Specific icon colors */
.bg-cpu {
    color: #818cf8;
}

.bg-ram {
    color: #34d399;
}

.bg-throughput {
    color: #f472b6;
}

/* Performance Columns */
.perf-col {
    background: radial-gradient(136.63% 136.63% at 50% 0%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Default border */
    border-radius: 0 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Top colored bars */
.perf-top-bar {
    height: 6px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bar-green {
    background: #34d399;
    box-shadow: 0 0 20px #34d399;
}

.bar-purple {
    background: #818cf8;
    box-shadow: 0 0 20px #818cf8;
}

.bar-pink {
    background: #e879f9;
    box-shadow: 0 0 20px #e879f9;
}

/* Themes specific borders */
.perf-card-graphbit {
    background: radial-gradient(136.63% 136.63% at 50% 0%, rgba(16, 185, 129, 0.15) 0%, rgba(6, 78, 59, 0.1) 100%);
    border-color: rgba(52, 211, 153, 0.3);
}

.perf-card-langchain {
    background: radial-gradient(136.63% 136.63% at 50% 0%, rgba(99, 102, 241, 0.1) 0%, rgba(30, 27, 75, 0.1) 100%);
    border-color: rgba(129, 140, 248, 0.2);
    opacity: 0.8;
    /* Dimmed slightly */
}

.perf-card-pydantic {
    background: radial-gradient(136.63% 136.63% at 50% 0%, rgba(232, 121, 249, 0.1) 0%, rgba(88, 28, 135, 0.1) 100%);
    border-color: rgba(232, 121, 249, 0.2);
    opacity: 0.8;
}

.perf-header {
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 80px;
    /* Match offset */
}

.perf-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: white;
}

/* Metric Rows within columns */
.perf-metric {
    height: 80px;
    /* Match label row height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
}

.perf-metric:last-child {
    margin-bottom: 24px;
}

.perf-value {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

.perf-subtext {
    font-size: 13px;
    color: #9f9fa9;
}

.perf-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 99px;
}

.badge-green {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .perf-comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .perf-labels-col {
        display: none;
        /* Hide labels on mobile, inline them instead if needed */
    }

    .perf-col {
        padding-bottom: 20px;
    }

    .perf-metric {
        margin-bottom: 20px;
    }
}

/* Performance Stats Highlight Section */
.stats-report-link {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 100px;
}

.stats-report-link a {
    color: #34d399;
    /* Emerald Green */
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stats-report-link a:hover {
    color: #6ee7b7;
}

.stats-highlights-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 100px;
}

.stat-highlight {
    text-align: center;
    flex: 1;
}

.stat-highlight-value {
    font-size: 56px;
    font-weight: 600;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.stat-highlight-label {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.stat-highlight-subtext {
    font-size: 14px;
    color: #94a3b8;
    /* Slate 400 */
    font-weight: 400;
}

.stat-highlight-divider {
    width: 1px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    align-self: center;
    margin: 0 -20px;
}

.stats-divider-bottom {
    max-width: 1200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 100px auto 0 auto;
}

@media (max-width: 1024px) {
    .stats-highlights-grid {
        gap: 40px;
    }

    .stat-highlight-value {
        font-size: 64px;
    }

    .stat-highlight-label {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {

    /* Hero Section Mobile */
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero .hero-title {
        font-size: 36px;
        letter-spacing: -2px;
        margin-bottom: 1.5rem;
    }

    .hero .hero-description {
        font-size: 18px;
        margin-bottom: 2rem;
    }

    .hero-animation-container {
        width: 100%;
        height: 600px;
    }

    .circle-big,
    .circle-small {
        width: 320px;
        height: 320px;
    }

    .hero .nav-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-meta-badges {
        gap: 0.75rem;
        margin-top: 40px;
    }

    .meta-badge {
        padding: 6px 12px;
    }

    .meta-badge span {
        font-size: 13px;
    }

    /* Video Showcase Mobile */
    .video-showcase {
        padding: 60px 20px;
        width: 100%;
        margin: 60px 0;
        border-radius: 0;
    }

    .video-title {
        font-size: 32px;
        text-align: center;
    }

    .video-description {
        font-size: 16px;
        text-align: center;
        margin-top: 20px;
    }

    .video-wrapper {
        margin-top: 40px;
    }

    .premium-play-btn {
        width: 70px;
        height: 70px;
    }

    /* Regulated Environment Mobile */
    .regulated-environment-section {
        padding: 60px 20px;
    }

    .regulated-title {
        font-size: 32px;
    }

    .regulated-description {
        font-size: 16px;
    }

    /* Certifications Mobile */
    .certifications-title {
        font-size: 32px;
    }

    .certifications-description {
        font-size: 15px;
    }

    .certification-card {
        height: auto;
        min-height: 280px;
    }

    /* Regulatory Risk Mobile */
    .risk-title {
        font-size: 28px;
        text-align: center;
    }

    .risk-description {
        text-align: center;
    }

    /* Layers of Risk Mobile */
    .layers-section {
        padding: 60px 20px;
    }

    .layers-title {
        font-size: 32px;
    }

    .layers-header {
        margin-bottom: 60px;
    }

    .layers-grid {
        grid-template-columns: 1fr;
    }

    .layer-card {
        width: 100%;
        height: auto;
        min-height: 240px;
    }

    /* Performance Section Mobile */
    .performance-section {
        padding: 80px 20px;
    }

    .performance-title {
        font-size: 32px;
    }

    .performance-description {
        font-size: 16px;
    }

    .perf-comparison-grid {
        grid-template-columns: 1fr;
    }

    .perf-labels-col {
        display: none;
    }

    .perf-metric {
        padding: 15px 0;
    }

    .stat-highlight-value {
        font-size: 48px;
    }

    .stats-report-link {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    /* Unified Ecosystem Mobile */
    .unified-ecosystem {
        padding: 80px 20px;
    }

    .uni-title {
        font-size: 32px;
    }

    .uni-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Ecosystem Section Mobile */
    .ecosystem-section {
        padding: 60px 20px;
    }

    .ecosystem-title {
        font-size: 32px;
    }

    .eco-card-large {
        width: 100%;
        min-height: 350px;
    }

    .eco-card-title {
        font-size: 26px;
    }

    .eco-card-text {
        font-size: 18px;
    }

    /* Features Section Mobile */
    .feature-card {
        width: calc(100% - 20px);
        min-height: 320px;
    }

    /* Integration Section Mobile */
    .integration-title {
        font-size: 32px;
    }

    .integration-image-wrapper {
        border-radius: 12px;
    }

    /* Handle line breaks in titles */
    .hero-title br,
    .risk-title br,
    .layers-title br,
    .certifications-title br,
    .uni-title br {
        display: none;
    }

    /* Stats Highlights Mobile Layout */
    .stats-highlights-grid {
        flex-direction: column;
        gap: 40px;
    }

    .stat-highlight-divider {
        width: 60px;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 auto;
    }

    /* Header & Navigation Mobile Refinements */
    .navbar-container {
        padding: 15px 20px;
        position: relative;
        z-index: 1001;
    }

    #site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #0b0c1b;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: flex !important;
        flex-direction: column !important;
        padding: 100px 30px 40px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #site-navigation.active {
        right: 0;
    }

    #site-navigation ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    #site-navigation li {
        width: 100%;
        display: block !important;
    }

    #site-navigation li a {
        font-size: 18px;
        font-weight: 500;
        color: white !important;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu-toggle {
        display: flex !important;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        transition: transform 0.3s ease;
        z-index: 1002;
    }

    .menu-toggle.active {
        transform: rotate(90deg);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 15px !important;
    }

    .button-group {
        display: none !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Logo scaling */
    .logo-section {
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    /* Hero Section Perfection for Mobile */
    .hero {
        padding-top: 100px;
        text-align: center;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .ph-badges {
        margin-bottom: 25px;
        transform: scale(0.85);
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        padding: 0 10px;
        margin-bottom: 20px !important;
        letter-spacing: -1px !important;
    }

    .hero-description {
        font-size: 16px !important;
        line-height: 1.5 !important;
        padding: 0 20px;
        color: rgba(255, 255, 255, 0.7) !important;
        margin-bottom: 30px !important;
    }

    .nav-actions {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-meta-badges {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px !important;
        padding: 0 20px;
        width: 100%;
        max-width: 450px;
        margin-top: 40px !important;
    }

    .meta-badge {
        padding: 8px 5px !important;
        justify-content: center;
    }

    .meta-badge span {
        font-size: 11px !important;
    }

    .meta-badge img {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-wrapper {
    background-color: #030303;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow to match GraphBit aesthetic */
.privacy-policy-wrapper::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(112, 66, 248, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.privacy-policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.policy-header {
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.policy-header h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.policy-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.policy-section {
    margin-bottom: 100px;
}

.policy-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h2::after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, rgba(140, 108, 251, 0.3) 0%, transparent 100%);
}

.policy-item {
    margin-bottom: 60px;
}

.policy-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.policy-item p,
.policy-item li {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
    font-weight: 300;
}

.policy-item strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    margin: 30px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card h4 {
    color: #8c6cfb;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.contact-card p {
    margin-bottom: 10px !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}

.contact-card a {
    color: #8c6cfb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(140, 108, 251, 0.5);
}

.legal-notice {
    background: rgba(140, 108, 251, 0.05);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #8c6cfb;
    margin: 30px 0;
}

.legal-notice p {
    margin-bottom: 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

ul.check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

ul.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    line-height: 1.6;
}

ul.check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8c6cfb;
    font-weight: 700;
}

@media (max-width: 768px) {
    .privacy-policy-wrapper {
        padding: 80px 0;
    }

    .policy-header {
        margin-bottom: 50px;
    }

    .policy-section {
        margin-bottom: 60px;
    }

    .contact-card {
        padding: 30px;
    }
}

/* Cookie Policy Page Styles */
.cookies-policy-wrapper {
    background-color: #030303;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    padding: 100px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.cookies-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.cookies-hero {
    text-align: center;
    margin-bottom: 60px;
}

.cookies-hero .icon-box {
    width: 48px;
    height: 48px;
    background: rgba(140, 108, 251, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(140, 108, 251, 0.2);
    color: #8c6cfb;
}

.cookies-hero h1 {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cookies-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 12px;
}

.cookies-hero span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Common Card Styles */
.cookie-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.cookie-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.cookie-card h2,
.cookie-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.cookie-card h2 svg,
.cookie-card h3 svg {
    color: #8c6cfb;
}

.cookie-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Header Sections */
.cookie-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 60px 0 30px;
    font-size: 24px;
    font-weight: 700;
}

.cookie-section-header::before {
    content: '';
    width: 32px;
    height: 32px;
    background: rgba(140, 108, 251, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(140, 108, 251, 0.3);
}

/* Specific Cookie Types */
.cookie-type-card {
    border-width: 1px;
    padding: 24px;
}

.cookie-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.cookie-tag {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 600;
}

.tag-active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag-optional {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cookie-list li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-size: 15px;
}

.cookie-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
}

/* Cookie Colors */
.essential {
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.essential .cookie-title-group {
    color: #10b981;
}

.performance {
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.performance .cookie-title-group {
    color: #3b82f6;
}

.functional {
    border-color: rgba(140, 108, 251, 0.3) !important;
}

.functional .cookie-title-group {
    color: #8c6cfb;
}

.analytics {
    border-color: rgba(249, 115, 22, 0.3) !important;
}

.analytics .cookie-title-group {
    color: #f97316;
}

/* Grid for Third Party */
.cookie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.grid-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* AI Platform Specific */
.ai-specific-list li {
    margin-bottom: 12px;
}

.ai-specific-list strong {
    color: #ffffff;
    margin-right: 5px;
}

/* Preferences Warning */
.impact-warning {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.impact-warning svg {
    color: #f97316;
    flex-shrink: 0;
    margin-top: 2px;
}

.impact-warning p {
    margin: 0;
    font-size: 14px;
    color: rgba(249, 115, 22, 0.8);
}

.impact-warning strong {
    color: #f97316;
}

/* Retention Grid */
.retention-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.retention-item h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #ffffff;
}

.retention-item p {
    font-size: 14px !important;
    margin-bottom: 0;
}

/* Footer Consent */
.consent-matters {
    text-align: center;
    background: radial-gradient(circle at center, rgba(140, 108, 251, 0.05) 0%, transparent 70%);
    padding: 60px 40px;
    border-radius: 30px;
    margin-top: 80px;
    border: 1px solid rgba(140, 108, 251, 0.1);
}

.consent-matters .icon-glow {
    width: 56px;
    height: 56px;
    background: rgba(140, 108, 251, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(140, 108, 251, 0.2);
    color: #8c6cfb;
}

.consent-matters h3 {
    font-size: 28px;
    margin-bottom: 20px;
    justify-content: center;
}

.consent-matters p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.consent-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-manage {
    background: #312e81;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-manage:hover {
    background: #3730a3;
    transform: translateY(-2px);
}

.btn-view {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    color: white;
}

@media (max-width: 768px) {

    .cookie-grid,
    .retention-grid {
        grid-template-columns: 1fr;
    }

    .consent-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookies-policy-wrapper {
        padding: 60px 0;
    }
}

/* Legal Notice Page Styles */
.legal-notice-wrapper {
    background-color: #030303;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    padding: 100px 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.legal-notice-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.legal-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.legal-header .last-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.legal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.legal-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.legal-card h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.legal-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-weight: 300;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-content-section {
    margin-top: 60px;
}

.legal-content-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.legal-content-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    margin-top: 40px;
}

.legal-content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .legal-notice-wrapper {
        padding: 60px 0;
    }

    .legal-card {
        padding: 24px;
    }

    .legal-content-section h2 {
        font-size: 28px;
    }
}