/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* 1. Base Dark Color (Seen during rubber-band scroll) */
html {
    background-color: #020617;
    scroll-behavior: smooth;
    /* Removed 'overscroll-behavior-y: none' to bring back rubber band */
}

/* 2. Global Atmosphere (The Blue/Teal Gradient) */
body {
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    line-height: 1.6;
    /* THE GLOBAL GLOW - Fixed position */
    background: radial-gradient(circle at 20% 0%, rgba(60, 130, 246, 0.4), transparent 50%), radial-gradient(circle at 90% 50%, rgba(78, 244, 200, 0.2), transparent 50%), radial-gradient(circle at 10% 100%, rgba(60, 130, 246, 0.3), transparent 50%), linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
    /* KEY FIX: 'fixed' makes the gradient stretch across the whole site */
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    color: #e5e7eb;
    overflow-x: hidden;
    min-height: 100vh;
}

/* THEME VARIABLES */
:root {
    --color-bg: #050816;
    --color-surface: #0b1120;
    --color-border: rgba(148, 163, 184, 0.35);
    --color-text: #e5e7eb;
    --color-text-muted: #9ca3af;
    --color-primary: #3c82f6;
    --color-accent: #4ef4c8;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.9);
    --container-width: 1200px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */
.site-header {
    position: fixed; /* Follows you as you scroll ("like before") */
    inset: 0 0 auto 0;
    height: 90px; /* A bit taller for a spacious feel */
    z-index: 50;
    /* Make it Clear/Transparent */
    background: rgba(2, 6, 23, 0.1); /* Almost invisible tint */
    backdrop-filter: blur(8px); /* Subtle glass blur so text stays readable */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Very faint edge */

    display: flex;
    align-items: center;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--color-text);
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    object-fit: contain; /* Ensures logo scales properly */
}

.brand-name {
    font-family: "Inter Tight";
    font-weight: 600;
    font-size: 1.1rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

    .main-nav a {
        text-decoration: none;
        font-size: 0.9rem;
        color: var(--color-text-muted);
        transition: color 0.2s ease;
    }

        .main-nav a:hover {
            color: var(--color-text);
        }

.nav-cta {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(60, 130, 246, 0.6);
    color: var(--color-primary) !important;
    background: rgba(60, 130, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* HOVER: Fill with color and glow */
    .nav-cta:hover {
        background: var(--color-primary);
        color: #020617 !important; /* Dark text on blue bg */
        box-shadow: 0 0 25px rgba(60, 130, 246, 0.6);
        transform: translateY(-2px);
        border-color: var(--color-primary);
    }

    /* ACTIVE: Press effect */
    .nav-cta:active {
        transform: scale(0.95) translateY(0);
        box-shadow: 0 0 10px rgba(60, 130, 246, 0.4);
    }

/* HERO */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    /* Background is now transparent so the Body background shows through */
    background: transparent;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(60, 130, 246, 0.15);
    border: 1px solid rgba(60, 130, 246, 0.4);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: "Inter Tight";
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0 0 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #4ef4c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

    .hero-subtitle strong {
        color: var(--color-text);
        font-weight: 600;
    }

/* STATS GRID - KEY ADDITION */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid rgba(60, 130, 246, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-4px);
        border-color: rgba(60, 130, 246, 0.6);
        box-shadow: 0 20px 60px rgba(60, 130, 246, 0.2);
    }

.stat-value {
    font-family: "Inter Tight";
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3c82f6, #4ef4c8);
    color: #020617;
    box-shadow: 0 20px 60px rgba(60, 130, 246, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 25px 70px rgba(60, 130, 246, 0.6);
    }

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

    .btn-secondary:hover {
        border-color: var(--color-text);
        background: rgba(148, 163, 184, 0.1);
    }

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* VISUAL PROOF */
.hero-visual {
    position: relative;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(11, 17, 32, 0.5);
    border: 1px solid rgba(60, 130, 246, 0.3);
    box-shadow: var(--shadow);
}

.proof-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.proof-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.proof-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(60, 130, 246, 0.3), rgba(78, 244, 200, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.proof-content h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.proof-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* SECTIONS */
.section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Inter Tight";
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* OUTCOMES GRID - INSPIRED BY AI ACQUISITION */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.outcome-card {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

    .outcome-card:hover {
        transform: translateY(-6px);
        border-color: rgba(60, 130, 246, 0.6);
        box-shadow: 0 25px 70px rgba(60, 130, 246, 0.3);
    }

.outcome-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(60, 130, 246, 0.2), rgba(78, 244, 200, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.outcome-card h3 {
    font-family: "Inter Tight";
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
}

.outcome-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.outcome-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* SOCIAL PROOF SECTION */
.social-proof {
    padding: 4rem 0;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.proof-stat h3 {
    font-family: "Inter Tight";
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 0 0 0.5rem;
}

.proof-stat p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* STACK SECTION */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stack-card {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

    .stack-card:hover {
        transform: translateY(-6px);
        border-color: rgba(60, 130, 246, 0.6);
        box-shadow: 0 25px 70px rgba(60, 130, 246, 0.3);
    }

.stack-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(60, 130, 246, 0.3), rgba(78, 244, 200, 0.3));
    text-align: center;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.stack-card h3 {
    font-family: "Inter Tight";
    font-size: 1.4rem;
    margin: 0 0 1rem;
}

.stack-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.stack-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-card li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 1.5rem;
}

    .stack-card li::before {
        content: "?";
        position: absolute;
        left: 0;
        color: var(--color-accent);
        font-weight: 700;
    }

/* FAQ SECTION */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-4px);
        border-color: rgba(60, 130, 246, 0.6);
        box-shadow: 0 20px 60px rgba(60, 130, 246, 0.15);
    }

.faq-question {
    font-family: "Inter Tight";
    font-size: 1.2rem;
    color: var(--color-text);
    margin: 0 0 1rem;
    font-weight: 600;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA SECTION */
.cta-section {
    background: radial-gradient(circle at center, rgba(60, 130, 246, 0.3), transparent 60%), rgba(11, 17, 32, 0.6);
    border: 1px solid rgba(60, 130, 246, 0.4);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    margin: 5rem 0;
}

    .cta-section h2 {
        font-family: "Inter Tight";
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        color: var(--color-text-muted);
        margin: 0 0 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

/* FOOTER */
.site-footer {
    width: 100%; /* Forces full width */
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 1.4rem 0;
    /* Solid Black Background to finish the page */
    background: #020617;
    position: relative;
    z-index: 20;
    margin-bottom: 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.legal-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

    .footer-links a {
        color: var(--color-text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--color-text);
        }

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    .social-links a {
        color: var(--color-text-muted);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

        .social-links a:hover {
            color: var(--color-text);
        }

/* RESPONSIVE FOOTER FIX */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-copy {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stack-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .outcomes-grid {
        grid-template-columns: 1fr !important;
    }

    .proof-stats {
        grid-template-columns: 1fr !important;
    }

    .main-nav {
        display: none;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

        .cta-section h2 {
            font-size: 1.8rem;
        }
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow,
.hero-title,
.hero-subtitle,
.stats-grid,
.hero-actions {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.stats-grid {
    animation-delay: 0.3s;
}

.hero-actions {
    animation-delay: 0.4s;
}

/* TYPING ANIMATION STYLES */
.typewriter-word {
    white-space: nowrap; /* Prevents text from wrapping during animation */
    /* NEON GLOW EFFECT */
    color: var(--color-accent); /* Use the bright accent color */
    text-shadow: 0 0 5px rgba(78, 244, 200, 0.5), /* Soft inner glow */
    0 0 10px rgba(78, 244, 200, 0.4), /* Brighter outer glow */
    0 0 20px rgba(78, 244, 200, 0.3); /* Soft edge glow */
}

.typing-cursor {
    display: inline-block;
    width: 4px;
    height: 1em; /* Matches the height of the line */
    background-color: var(--color-accent);
    margin-left: 0.25rem;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* PROCESS TIMELINE - PREMIUM GRADIENT STYLE */
.process-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* The Central Gradient Bar */
.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px; /* Thicker line */
    /* THE REQUESTED GREEN-TO-BLUE GRADIENT */
    background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-primary) 100% );
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 20px rgba(78, 244, 200, 0.3); /* Glow */
    border-radius: 4px;
    opacity: 0.3; /* Dimmed by default */
    transition: opacity 0.5s ease;
}

/* Light up the line when active */
.process-wrapper:hover .process-line {
    opacity: 0.8;
}

.process-step {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 8rem; /* More space for dramatic effect */
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); /* Smooth pop effect */
    opacity: 0.4;
    filter: blur(2px); /* Blur inactive steps slightly */
}

/* The "Wheel" Node */
.process-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Bigger wheel */
    height: 60px;
    background: #020617; /* Dark center */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 10;
    /* Gradient Border Trick */
    border: 3px solid transparent;
    background-image: linear-gradient(#020617, #020617), linear-gradient(135deg, #4ef4c8, #3c82f6);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    color: var(--color-text-muted);
    transition: all 0.5s ease;
}

.process-content {
    width: 40%;
    background: rgba(11, 17, 32, 0.8); /* Darker, more solid */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

    .process-content h3 {
        font-family: "Inter Tight";
        font-size: 1.5rem;
        margin: 0 0 0.8rem;
        color: var(--color-text);
        /* Gradient Text for Headers */
        background: linear-gradient(90deg, #fff, #ccc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .process-content p {
        font-size: 1rem;
        color: var(--color-text-muted);
        margin: 0;
        line-height: 1.6;
    }

/* Alternating Layout */
.process-step:nth-child(odd) .process-content {
    margin-right: auto;
    text-align: right;
}

.process-step:nth-child(even) .process-content {
    margin-left: auto;
    text-align: left;
}

/* ACTIVE STATE (The "Wow" Moment) */
.process-step.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
}

    .process-step.active .process-node {
        /* Full Gradient Wheel when active */
        background-image: linear-gradient(135deg, #4ef4c8, #3c82f6);
        color: #020617; /* Dark text */
        box-shadow: 0 0 0 4px rgba(78, 244, 200, 0.2), /* Ring 1 */
        0 0 30px rgba(60, 130, 246, 0.6); /* Outer Glow */
        transform: translateX(-50%) rotate(360deg); /* Rotate effect */
    }

    .process-step.active .process-content {
        border-color: rgba(78, 244, 200, 0.5);
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

/* Connectors */
.process-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    opacity: 0; /* Hidden by default */
    transition: opacity 0.5s;
}

.process-step.active .process-content::after {
    opacity: 1;
}

.process-step:nth-child(odd) .process-content::after {
    right: -50px;
    background: linear-gradient(to left, var(--color-accent), transparent);
}

.process-step:nth-child(even) .process-content::after {
    left: -50px;
    background: linear-gradient(to right, var(--color-accent), transparent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .process-line {
        left: 30px;
    }

    .process-node {
        left: 30px;
    }

    .process-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

        .process-content::after {
            display: none;
        }
    /* Hide connectors on mobile */
}

/* --- PARTNERS TAPE (Scrolling + White Cards) --- */
.partners {
    width: 100%;
    padding: 2rem 0;
    overflow: hidden; /* Hides the scrollbar */
    /* Background for the strip itself */
    background: rgba(255, 255, 255, 0);
    border-top: 1px solid rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    position: relative;
}

.partners-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    opacity: 0.7;
}

/* The Moving Track */
.partners-track {
    display: flex;
    align-items: center;
    gap: 3rem; /* Space between cards */
    width: max-content;
    /* THE ANIMATION: Slide forever */
    animation: tickerScroll 40s linear infinite;
}

    /* Pause when hovering */
    .partners-track:hover {
        animation-play-state: paused;
    }

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* THE WHITE LABEL / CARD STYLE (Restored) */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* This is the white background you wanted back */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 1rem 2.5rem; /* Size of the card */

    transition: all 0.3s ease;
    opacity: 0.9;
}

    .partner-item:hover {
        transform: scale(1.05);
        opacity: 1;
        background: #ffffff; /* Pure white on hover */
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }

.partner-img {
    height: 40px; /* Logo size inside the card */
    width: auto;
    display: block;
    mix-blend-mode: multiply; /* Helps black logo sit nicely */
}

/* --- NEW SECTION: TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        border-color: var(--color-accent);
        box-shadow: 0 20px 60px rgba(60, 130, 246, 0.15);
    }

.testimonial-stars {
    color: #fbbf24; /* Gold color */
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3c82f6, #4ef4c8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #020617;
    font-size: 1rem;
}

.author-info h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ SECTION */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-4px);
        border-color: rgba(60, 130, 246, 0.6);
        box-shadow: 0 20px 60px rgba(60, 130, 246, 0.15);
    }

.faq-question {
    font-family: "Inter Tight";
    font-size: 1.2rem;
    color: var(--color-text);
    margin: 0 0 1rem;
    font-weight: 600;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FUTURISTIC ABOUT US SECTION --- */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-feature-card {
    position: relative;
    background: rgba(11, 17, 32, 0.4);
    border: 1px solid rgba(60, 130, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

/* Glowing Card Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient( circle, rgba(60, 130, 246, 0.15) 0%, transparent 50% );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(60, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(60, 130, 246, 0.2), 0 0 0 1px rgba(60, 130, 246, 0.1);
}

    .about-feature-card:hover .card-glow {
        opacity: 1;
    }

.card-content {
    position: relative;
    z-index: 2;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(60, 130, 246, 0.2), rgba(78, 244, 200, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid rgba(60, 130, 246, 0.3);
}

.feature-header h3 {
    font-family: "Inter Tight";
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text);
}

.feature-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.feature-stat {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(60, 130, 246, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-family: "Inter Tight";
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Values Dashboard */
.values-dashboard {
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid rgba(60, 130, 246, 0.2);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

    .values-dashboard::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(60, 130, 246, 0.5), transparent);
    }

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

    .dashboard-header h3 {
        font-family: "Inter Tight";
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
        color: var(--color-text);
    }

.dashboard-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(78, 244, 200, 0.1);
    border: 1px solid rgba(78, 244, 200, 0.3);
    border-radius: 999px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.indicator-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background: rgba(5, 8, 22, 0.6);
    border: 1px solid rgba(60, 130, 246, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-4px);
        border-color: rgba(60, 130, 246, 0.4);
        background: rgba(11, 17, 32, 0.8);
    }

.value-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(60, 130, 246, 0.2), rgba(78, 244, 200, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(60, 130, 246, 0.3);
}

.value-card h4 {
    font-family: "Inter Tight";
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--color-text);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.value-progress {
    height: 4px;
    background: rgba(60, 130, 246, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 999px;
    transition: width 1s ease;
}

/* --- TEAM SECTION --- */
.team-section {
    background: rgba(255, 255, 255, 0.01);
}

/* UPDATED TEAM GRID (Flexbox for Centering) */
.team-grid {
    display: flex; /* Flexbox allows easier centering of the last row */
    flex-wrap: wrap; /* Allows items to wrap to next line */
    justify-content: center; /* Centers everything horizontally */
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Ensure cards stay a consistent size */
.team-card {
    flex: 0 1 350px; /* Basis of 350px, but can shrink */
    width: 100%;
    background: rgba(11, 17, 32, 0.6);
    border: 1px solid rgba(60, 130, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .team-card:hover::before {
        transform: scaleX(1);
    }

    .team-card:hover {
        transform: translateY(-8px);
        border-color: rgba(60, 130, 246, 0.5);
        box-shadow: 0 20px 60px rgba(60, 130, 246, 0.2);
    }

.team-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

    .team-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(60, 130, 246, 0.3);
    }

.avatar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .avatar-ring {
    opacity: 1;
}

.team-info {
    text-align: center;
}

    .team-info h3 {
        font-family: "Inter Tight";
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0 0 0.3rem;
        color: var(--color-text);
    }

.team-role {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin: 0 0 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(60, 130, 246, 0.2);
}

.team-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

    .team-stat-item .stat-value {
        font-family: "Inter Tight";
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--color-accent);
        line-height: 1;
    }

    .team-stat-item .stat-label {
        font-size: 0.75rem;
        color: var(--color-text-muted);
        text-align: center;
    }

.team-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(11, 17, 32, 0.4);
    border: 1px solid rgba(60, 130, 246, 0.2);
    border-radius: 24px;
}

    .team-cta p {
        font-size: 1.1rem;
        color: var(--color-text);
        margin: 0 0 1.5rem;
    }

/* Responsive */
@media (max-width: 1024px) {
    .about-cards-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid-modern {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ANALYZE CARDS HOVER EFFECT */
.analyze-card:hover {
    transform: translateY(-4px);
    border-color: rgba(60, 130, 246, 0.6) !important;
    box-shadow: 0 10px 30px rgba(60, 130, 246, 0.2);
}

@media screen and (max-width: 768px) {
    .analyze-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .service-flex-container {
        flex-direction: column !important;
        gap: 2rem !important;
    }

        .service-flex-container > div p[style*="font-size: 1.1rem;"] {
            min-width: 100% !important;
            flex: none !important;
        }

    .service-main-card {
        grid-column: span 1 !important;
    }

    .service-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .container {
        padding: 0 1rem;
    }

    .stack-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-inner {
        gap: 2rem;
    }

    .hero-visual {
        padding: 1.5rem;
    }

    .outcome-card,
    .stack-card,
    .faq-item,
    .about-feature-card {
        padding: 1.5rem;
    }

    body {
        font-size: 18px;
    }

    .desktop-sidebar {
        display: none;
    }
}
