/* CSS Variables */
:root {
    /* Brand Colors */
    --color-navy: #050A18;
    /* Deep Navy */
    --color-dark-blue: #0B1221;
    --color-card-bg: rgba(255, 255, 255, 0.03);
    /* Glassy BG */
    --color-accent-start: #4FA3D1;
    --color-accent-end: #4361EE;
    /* Electric Blue for premium feel */
    --color-white: #FFFFFF;
    --color-gray-soft: #E2E8F0;
    --color-gray-dark: #94A3B8;
    --color-success: #10B981;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-padding: 2rem;
    --section-spacing: 5rem;

    /* Effects */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px -10px rgba(123, 97, 255, 0.2);
    --shadow-glow: 0 0 50px rgba(79, 163, 209, 0.15);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #020617 0%, #0B1120 50%, #1a103c 100%);
    color: var(--color-gray-soft);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(79, 163, 209, 0.15);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #4361EE, #4895EF);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 149, 239, 0.5);
    background: linear-gradient(135deg, #4CC9F0, #4361EE);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-accent-start);
    color: var(--color-accent-start);
    background: rgba(255, 255, 255, 0.05);
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(to right, var(--color-accent-start), var(--color-accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    /* Auto margin centers the table display */
    text-align: center;
    font-weight: 700;
    position: relative;
    display: table;
    /* Shrinks to fit text, allows margin auto to center */
    background: linear-gradient(to right, white 20%, #4361EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4361EE, #4CC9F0);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--color-gray-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.7rem 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(2, 6, 23, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* For absolute centering context */
}

.logo {
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    /* Ensure above center menu */
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
    border-radius: 8px;
    position: relative;
}

.logo-icon::after {
    content: 'V';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-navy);
    font-weight: 800;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-actions {
    z-index: 2;
    /* Ensure above center menu */
    display: block;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-gray-soft);
}

.nav-link:hover {
    color: var(--color-accent-start);
}

.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-navy);
    z-index: 2000;
    padding: 8rem 2rem 4rem;
    /* More top space */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth bezel ease */
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    /* More spaced out links */
    background-color: rgba(5, 10, 24, 0.95);
    /* Deep translucent navy */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-overlay .nav-link {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    width: 100%;
}

.mobile-menu-overlay .nav-link:hover {
    color: var(--color-accent-end);
    border-color: var(--color-accent-end);
    padding-left: 10px;
    /* Slide effect */
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Hero Section (FinNova Style) */
.hero {
    padding: 160px 0 0;
    /* Top padding only */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Space betwen content and horizon */
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 100%, #1e1b4b 0%, #020617 50%, #020617 100%);
    /* Deep background with bottom focus */
    /* Superior Gradient */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    z-index: 2;
    padding-bottom: 4rem;
}

/* Left Content */
.hero-left {
    padding-left: 2rem;
}

.new-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-gray-soft);
    margin-bottom: 1.5rem;
}

.new-badge {
    background: #8B5CF6;
    color: white;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: white;
    /* Fallback */

    /* Shine Effect */
    background: linear-gradient(to right, #fff 0%, #fff 40%, #4CC9F0 50%, #fff 60%, #fff 100%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero h1 .arrow-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CC9F0, #4361EE);
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 1rem;
    transform: translateY(-5px);
    /* Slight lift instead of rotation */
}

.hero h1 .arrow-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
}



@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-sub {
    font-size: 1.1rem;
    color: var(--color-gray-soft);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    animation: fadeInUpSmooth 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;

    /* Glass Box Effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Right Content */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.description {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
    max-width: 400px;
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 400;
    /* Thin look */
    color: white;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

/* Bottom Horizon */
.hero-horizon {
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 1));
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: auto;
    z-index: 2;
    /* Sit above the glow */
}

.horizon-glow {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 300px;
    /* Taller glow from bottom */
    background: radial-gradient(ellipse at center, rgba(76, 201, 240, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    /* Behind the strip */
    opacity: 0.8;
}

.horizon-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    /* Match container padding */
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    /* Center alignment */
}

/* Scroll Down Indicator */
.scroll-down {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        /* Hide on mobile/tablet for toggle */
    }

    .nav-actions {
        display: none;
        /* Hide button on mobile, it's in the menu overlay */
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        /* Allow flexible height on mobile */
        height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 4rem;
        gap: 3rem;
        text-align: center;
        /* Center align for mobile stacked view */
    }

    .hero-left {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .new-pill {
        justify-content: center;
        /* Center content of pill */
        margin-left: auto;
        margin-right: auto;
        font-size: 0.75rem;
        /* Slightly smaller on mobile */
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-sub {
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
        /* Significantly reduced for single line */
        white-space: nowrap;
        /* Force single line if possible, or handled by size */
        line-height: 1.5;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 0.5rem 1rem;
        /* Adjust padding for smaller text */
    }

    .hero-right {
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    .description {
        margin: 0 auto;
    }

    .hero-stats {
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-actions {
        justify-content: center !important;
        /* Override inline style */
    }

    .horizon-labels {
        flex-direction: row;
        flex-wrap: wrap;
        /* Allow wrapping */
        justify-content: center;
        gap: 1.5rem;
        padding: 1rem;
        text-align: center;
    }

    .scroll-down {
        display: none;
        /* Hide scroll down on mobile to save space */
    }
}


/* About Section (Split Layout) */
.about-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* More space for text, less for list */
    gap: 4rem;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    color: var(--color-accent-start);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #4CC9F0, #4361EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-left h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--color-gray-soft);
    line-height: 1.6;
    margin-bottom: 0;
    /* Remove bottom margin as pills are gone from this column */
    max-width: 550px;
}

.about-pills {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

/* Offerings Section Redesign */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.offering-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Dark border */
    border-radius: 12px;
    /* Reduced from 20px */
    padding: 2rem;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    /* Reduced height */
    cursor: pointer;
}

.offering-card:hover {
    transform: translateY(-5px);
    border: none;
    /* Remove border on gradient */
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    /* Blue Gradient on Hover */
}

.offering-card:hover h3,
.offering-card:hover p,
.offering-card:hover .card-footer {
    color: white !important;
    /* Ensure text is white on blue bg */
    border-color: rgba(255, 255, 255, 0.2);
}

/* Card Internals */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    /* Reduced from 3rem */
}

.icon-box {
    width: 44px;
    /* Slightly smaller icon box */
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    /* Dark mode icon bg default */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.offering-card:hover .icon-box {
    background: white;
    color: var(--color-navy);
    /* Dark icon on white bg */
}

.icon-box svg {
    width: 20px;
    height: 20px;
}

.offering-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4FA3D1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offering-card p {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: auto;
    /* Push footer down */
    max-width: 90%;
    transition: var(--transition);
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    transition: var(--transition);
    cursor: pointer;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.offering-card:hover .arrow-icon {
    transform: translateX(5px);
}

/* Bento Grid Capabilities */
/* Offering Card Styles for Reference (implicit, matching here) */

/* Bento Grid Capabilities */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(180px, auto);
    /* Reduced height significantly */
    gap: 1.5rem;
    margin-top: 2rem;
    margin-top: 2rem;
    gap: 1.5rem;
}

.bento-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    /* Slightly tighter radius for smaller cards */
    padding: 2rem;
    /* Reduced padding */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-height: 200px;
    /* Reduced min-height */
}

/* Wide Card Specifics (Desktop) */
.bento-card.card-wide {
    grid-column: span 2;
    flex-direction: row;
    /* Horizontal layout */
    align-items: center;
    justify-content: space-between;
}

/* Wide Card Content Width */
.bento-card.card-wide .bento-content {
    max-width: 60%;
}

.bento-card.card-wide .bento-visual {
    position: relative;
    width: 30%;
    height: 100%;
    right: auto;
    bottom: auto;
    top: auto;
}

.bento-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(79, 163, 209, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-chevron {
    display: none;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

/* Content Layout Generic */
.bento-content {
    z-index: 2;
    max-width: 100%;
}

/* Non-wide cards content */
.bento-card:not(.card-wide) .bento-content {
    max-width: 100%;
}

.bento-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--color-accent-start);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.bento-card h3 {
    font-size: 1.25rem;
    /* Matched to Offering Card */
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
    line-height: 1.3;
}

.bento-card p {
    font-size: 0.9rem;
    /* Matched to Offering Card */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 95%;
}

/* Visuals Desktop Default */
.bento-visual {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 1;
    /* Visible on desktop by default */
}

.bento-card:not(.card-wide) .bento-visual {
    top: auto;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    mask-image: none;
    -webkit-mask-image: none;
}

.visual-svg {
    width: 120px;
    /* Larger icon */
    height: 120px;
    stroke: rgba(255, 255, 255, 0.4);
    /* Much bolder/less transparent */
    stroke-width: 2;
    /* Thicker lines */
    filter: drop-shadow(0 0 10px rgba(79, 163, 209, 0.3));
    /* Subtle glow */
}

.large-icon {
    width: 200px;
    height: 200px;
    stroke: rgba(79, 163, 209, 0.3);
    /* Blueish tint */
}

/* Network Visual (Dots) */
.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Mobile Responsiveness - Accordion */
@media (max-width: 768px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
        padding-bottom: 0;
        grid-template-columns: 1fr;
        overflow: visible;
        scroll-snap-type: none;
        /* Reset horizontal scroll */
    }

    .bento-card {
        min-height: auto;
        min-width: 0;
        /* Reset width */
        max-height: 120px;
        /* Increased to allow 2 lines of text */
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        padding: 1.5rem;
        cursor: pointer;
        width: 100%;
        flex-shrink: 1;
        /* Reset flex */
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Top align for expansion */
        position: relative;
    }

    .bento-card.active {
        max-height: 450px;
        /* Expanded height */
        background: linear-gradient(145deg, rgba(19, 62, 102, 0.6) 0%, rgba(7, 26, 51, 0.8) 100%);
        border-color: rgba(79, 163, 209, 0.5);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .bento-card.card-wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        min-width: 0;
        /* Reset width */
    }

    /* Force reset override for wide card children on mobile */
    .bento-card.card-wide .bento-content {
        max-width: 100% !important;
    }

    .bento-card.card-wide .bento-visual {
        position: absolute !important;
        width: auto !important;
        height: auto !important;
        right: -30px !important;
        bottom: -30px !important;
        top: auto !important;
        left: auto !important;
    }

    .bento-content {
        max-width: 100%;
        position: relative;
        z-index: 2;
        /* Text sits on top */
        width: 100%;
        padding-right: 1.5rem;
        /* Standard padding, allow text to be wide */
    }

    .bento-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0;
        margin-top: 0.5rem;
        color: white;
        width: 100%;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Limit to 2 lines in collapsed mostly, but height overrides */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        /* Shadow for readability over icon */
    }

    /* Reveal content on active */
    .bento-card.active h3 {
        color: var(--color-accent-start);
        margin-bottom: 1rem;
        -webkit-line-clamp: unset;
        /* Show full text on expand */
    }

    .bento-card p {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
        margin-top: 0;
        height: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        position: relative;
        z-index: 2;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        /* Shadow for readability */
    }

    .bento-card.active p {
        opacity: 1;
        transform: translateY(0);
        margin-top: 1rem;
        height: auto;
        transition-delay: 0.1s;
    }

    /* Tag handling */
    .bento-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0;
        opacity: 0.9;
        position: relative;
        z-index: 2;
    }

    /* Visuals on Mobile - Watermark Style */
    .bento-visual {
        opacity: 1 !important;
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: auto;
        height: auto;
        margin: 0;
        transition: all 0.5s ease;
        pointer-events: none;
        z-index: 0;
        display: block;
        /* Override any flex centering */
    }

    .bento-card.active .bento-visual {
        bottom: -40px;
        right: -40px;
        transform: scale(1.1);
    }

    .visual-svg {
        width: 160px;
        /* Large watermark */
        height: 160px;
        stroke: rgba(255, 255, 255, 0.15);
        /* Low opacity for background watermark */
        stroke-width: 1.5;
    }

    .mobile-chevron {
        display: block;
        right: 1.5rem;
        top: 2rem;
        /* Aligned generally with the top area */
        z-index: 3;
    }

    .bento-card.active .mobile-chevron {
        transform: rotate(180deg);
        color: var(--color-accent-start);
    }
}

.pill-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Increased gap for cleaner look */
    padding: 0.8rem 0;
    /* Vertical padding only */
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: default;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separator */
}

.pill-item:last-child {
    border-bottom: none;
}

.pill-item:hover {
    transform: translateX(10px);
    color: var(--color-accent-start);
}

.pill-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    /* Circle icon background */
    color: var(--color-accent-start);
}

.pill-item .icon svg {
    width: 20px;
    height: 20px;
}

/* Right Side Visual */
.about-right {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shape {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(82, 194, 219, 0.2), rgba(123, 97, 255, 0.2));
    border-radius: 40px;
    transform: rotate(45deg);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-visual 6s ease-in-out infinite;
}

.shape-inner {
    transform: rotate(-45deg);
    /* Counter rotate content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bg-grid-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 20px;
    z-index: 1;
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
}

@keyframes float-visual {
    0% {
        transform: rotate(45deg) translateY(0px);
    }

    50% {
        transform: rotate(45deg) translateY(-15px);
    }

    100% {
        transform: rotate(45deg) translateY(0px);
    }
}

.highlight {
    color: white;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-blue {
    background: linear-gradient(135deg, #4FA3D1, #5FD0E3);
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-visual-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .center-card {
        height: 320px;
    }

    .side-stack {
        flex-direction: row;
        gap: 1rem;
    }

    .side-card {
        width: 100%;
    }
}


/* About Section */
.section {
    padding: var(--section-spacing) 0;
}

.about-text {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
    color: white;
}

.highlight {
    color: var(--color-accent-start);
}

/* Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Feature Cards */
.card {
    background-color: var(--color-card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition), opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    /* For animation */
    transform: translateY(30px);
    /* For animation */
    backdrop-filter: blur(10px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px);
    background-color: #133E66;
    box-shadow: var(--shadow-hover);
    border-color: rgba(79, 163, 209, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 163, 209, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent-start);
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--color-gray-dark);
}

/* Who We Work With */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.client-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent-start);
    transform: translateY(-5px);
}

/* Why Choose Us */
.benefit-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    color: var(--color-success);
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5rem auto;
    backdrop-filter: blur(10px);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(95, 208, 227, 0.1), transparent 50%);
    pointer-events: none;
}

/* Contact Form */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-card-bg);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Premium Form Styling - Compact Version */
.form-group {
    margin-bottom: 1rem;
    /* Tighter spacing */
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    /* Smaller text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-gray-soft);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    /* Reduced padding */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent-start);
    box-shadow: 0 0 15px rgba(79, 163, 209, 0.2);
}

.form-group:focus-within .form-label {
    color: #4CC9F0;
}

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    /* Compact button */
    background: white;
    /* White button */
    color: #0B172C;
    /* Dark text */
    border: none;
    border-radius: 4px;
    /* Less round */
    font-weight: 800;
    /* Extra bold */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    /* Smaller font size */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
    background: #f8fafc;
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.form-success {
    display: none;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    padding: 0.8rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 2rem;
    /* Reduced top padding */
    background-color: transparent;
    background-image: linear-gradient(to top, rgba(2, 6, 23, 0.95), transparent);
    margin-top: var(--section-spacing);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* Wider brand column */
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo-img {
    height: 45px;
    /* Bigger logo */
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--color-gray-soft);
    font-size: 1rem;
    transition: all 0.2s;
}

.footer-col a:hover {
    color: var(--color-accent-start);
    padding-left: 5px;
    /* Subtle movement */
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
}

/* Responsive Footer Overrides */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
        /* Better readability */
        padding-left: 1rem;
        /* Ensure some spacing from edge */
        padding-right: 1rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Align left */
    }

    .footer-brand p {
        margin: 1rem 0;
        max-width: 100%;
    }


    /* Create a 2-column grid for links inside the stack if we want?
       Actually, standard stacking is fine, but maybe side-by-side links
       looks better "mast". Let's try to keep the grid flexible.
    */
    .footer-grid {
        grid-template-columns: 1fr;
        /* Brand */
        grid-template-areas:
            "brand"
            "links";
    }

    /* Wait, simplest is just stacking or 2-col */
}

@media (max-width: 768px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo-img {
        height: 60px;
        /* Increased size for mobile */
        width: auto;
    }
}

/* SVG Icons */
.icon-svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact-left {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-left .section-title,
    .contact-left .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-left ul {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-left: 0;
        margin: 0 auto;
    }

    .contact-left li {
        justify-content: flex-start;
        width: 100%;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        align-items: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-brand p {
        text-align: center;
        margin: 1rem auto;
    }

    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 4rem 0;
        /* Reduced from default desktop padding */
    }

    .hero {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    /* About Section Mobile Fix */
    .about-split-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 0.5rem;
        /* Reduced gap for tighter mobile layout */
        text-align: center;
        padding: 0 1rem;
    }

    /* Minimize margins even further */
    .section-label {
        margin-bottom: 0.5rem;
    }

    .about-left {
        align-items: center;
        margin-bottom: 0.5rem;
        /* Minimal bottom margin */
    }

    .about-left h2 {
        font-size: 1.8rem !important;
        /* Smaller headline */
        margin-bottom: 0.8rem;
    }

    .about-desc {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        /* Reduced spacing */
        max-width: 100%;
    }

    .about-right {
        width: 100%;
    }

    .about-pills {
        width: 100%;
        max-width: 100%;
        gap: 0.8rem;
        /* Tighter list */
        align-items: center;
    }

    .pill-item {
        justify-content: flex-start;
        padding-left: 1rem;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
        /* Constrain width for better look */
        margin: 0 auto;
        /* Center items */
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    /* Offerings Grid Mobile */
    .offerings-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
        gap: 1.5rem;
    }

    .offering-card {
        min-height: auto;
        /* Allow flexible height */
        padding: 2rem;
    }
}

/* ---------------------------------------------------- */
/*  Stronger Gradients & Glows (Hero Style) for Sections */
/* ---------------------------------------------------- */

/* Ensure sections can show the background */
.section {
    position: relative;
    z-index: 1;
}

/* 1. About Section - Flow Step 1: Top Left Blue */
#about {
    background:
        radial-gradient(circle at 0% 10%, rgba(67, 97, 238, 0.25) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(5, 10, 24, 0.9) 100%);
}

/* 2. Offerings Section - Flow Step 2: Top Right Cyan - Connecting from Left */
#offerings {
    background:
        radial-gradient(circle at 100% 0%, rgba(76, 201, 240, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(67, 97, 238, 0.1) 0%, transparent 50%);
}

/* 3. Capabilities Section - Flow Step 3: Center Deep Blue - The Core */
#capabilities {
    background:
        radial-gradient(circle at 50% 50%, rgba(67, 97, 238, 0.25) 0%, transparent 65%),
        linear-gradient(0deg, rgba(11, 18, 33, 0.6) 0%, transparent 100%);
}

/* 4. Partners Section - Flow Step 4: Bottom Left Soft Blue */
#partners {
    background:
        radial-gradient(circle at 0% 80%, rgba(76, 201, 240, 0.15) 0%, transparent 55%),
        linear-gradient(to right, rgba(67, 97, 238, 0.05), transparent);
}

/* 5. Contact Section - Flow Step 5: Strong Electric Blue Base */
#contact {
    background:
        radial-gradient(ellipse at bottom, rgba(67, 97, 238, 0.35) 0%, transparent 80%);
}

/* Footer - Dark base with top glow */
footer {
    background:
        linear-gradient(to top, #020617 0%, rgba(67, 97, 238, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

/* --------------------------------- */
/* --------------------------------- */
/* Redesigned Ecosystem / Pillars (Refined) */
/* --------------------------------- */

.ecosystem-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    /* Increased gap */
    align-items: flex-start;
}

.ecosystem-left {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Specific Blue Pill for Ecosystem */
.ecosystem-left .new-pill {
    background: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.2);
    margin-bottom: 1rem;
}

.ecosystem-left .new-badge {
    background: linear-gradient(135deg, #4CC9F0, #4361EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Right Stack */
.pillars-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* More space between cards */
}

.pillar-card {
    background: rgba(8, 15, 30, 0.6);
    /* Darker, cleaner base */
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle border initially */
    border-radius: 16px;
    /* Slightly tighter radius for smaller cards */
    padding: 1.5rem 2rem;
    /* Reduced padding */
    position: relative;
    padding-left: 5rem;
    /* Space for the number badge */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    /* Reduced height */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy spring transition */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pillar-card:hover {
    transform: translateX(15px) translateY(-5px);
    /* Lift and slide */
    border-color: rgba(67, 97, 238, 0.5);
    background: rgba(11, 23, 44, 0.8);
    box-shadow: 0 15px 40px -10px rgba(67, 97, 238, 0.25);
    /* Premium Glow */
}

/* Number Badge */
.pillar-number {
    position: absolute;
    left: -25px;
    /* Floating off edge */
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    /* Dark base */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CC9F0;
    /* Cyan text */
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: 2px solid rgba(76, 201, 240, 0.3);
    /* Cyan border */
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-number {
    background: linear-gradient(135deg, #4CC9F0, #4361EE);
    /* Active Gradient on hover */
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.6);
    /* Glow on hover */
    transform: translateY(-50%) scale(1.1);
    /* Pulse up */
}

.pillar-content h3 {
    font-size: 1.25rem;
    /* Reduced font size */
    margin-bottom: 0.4rem;
    color: white;
    font-weight: 700;
}

.pillar-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    /* Reduced font size */
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Pillars - Next Level */
@media (max-width: 900px) {
    .ecosystem-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ecosystem-left {
        position: static;
        text-align: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .ecosystem-left .section-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ecosystem-left .section-subtitle {
        text-align: center !important;
    }

    .pillars-stack {
        gap: 1.2rem;
        /* Tighter gap on mobile */
        padding: 0 5px;
        /* Minimal padding to increase card width */
    }

    .pillar-card {
        padding: 1.2rem 1rem 1.2rem 3.5rem;
        /* Adjusted padding */
        /* Compact mobile padding */
        min-height: auto;
        border-radius: 12px;
    }

    .pillar-content h3 {
        font-weight: 600;
        /* Less bold on mobile */
        font-size: 1.15rem;
        /* Slightly adjust size if needed */
    }

    .pillar-card:hover {
        transform: translateY(-5px);
        /* Just lift on mobile */
    }

    .pillar-number {
        left: -10px;
        /* Tucked in */
        width: 45px;
        height: 45px;
        font-size: 1rem;
        border-width: 2px;
    }
}

/* Global Glow Element (Optional helper) */
.glow-spot {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.18) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* --------------------------------- */
/* Who We Work With (Accordion)      */
/* --------------------------------- */

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 4rem auto 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    /* For height animation */
    background: transparent;
    border-radius: 0;
    /* Reset */
}

.accordion-item:last-child {
    border-bottom: none;
}

/* Active State Styles */
.accordion-item.active {
    background: linear-gradient(135deg, rgba(8, 15, 30, 0.9), rgba(11, 23, 44, 0.95));
    border: 1px solid rgba(67, 97, 238, 0.5);
    /* Stronger border */
    border-radius: 16px;
    box-shadow: 0 15px 40px -10px rgba(67, 97, 238, 0.15);
    /* Blue glow shadow */
    padding: 1rem;
    padding-bottom: 0;
    /* Let body padding handle spacing */
    border-bottom: 1px solid rgba(67, 97, 238, 0.5);
    /* Full border */
}

.accordion-item:not(.active):hover {
    background: rgba(255, 255, 255, 0.03);
    /* Subtle hover tint */
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    position: relative;
    /* To handle absolute positioning if needed */
}

.accordion-item.active .accordion-header {
    padding-bottom: 0.5rem;
    /* Reduce bottom padding if body expands */
}

/* Number */
/* Number */
.acc-number {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 2rem;
    min-width: 50px;
    transition: all 0.3s ease;
}

.accordion-item.active .acc-number {
    font-weight: 800;
    background: linear-gradient(135deg, #4CC9F0, #4361EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

/* Title */
.acc-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    flex-grow: 1;
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-item:hover .acc-title,
.accordion-item.active .acc-title {
    color: var(--color-accent-start);
}

.accordion-item.active .acc-title {
    color: white;
    /* Keep white on active bg for better contrast */
}

/* Arrow Icon Box */
.acc-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.acc-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    color: rgba(255, 255, 255, 0.6);
}

.accordion-item.active .acc-icon-box {
    background: linear-gradient(135deg, #4CC9F0, #4361EE);
    /* Gradient BG */
    border-color: transparent;
    box-shadow: 0 0 15px rgba(67, 97, 238, 0.5);
    /* Icon Glow */
}

.accordion-item.active .acc-arrow {
    stroke: white;
    /* White arrow on colored bg */
    transform: rotate(45deg);
    color: white;
}

/* Body (Content) */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.accordion-item.active .accordion-body {
    padding-bottom: 2rem;
    max-height: 200px;
    /* Arbitrary large height */
    opacity: 1;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease 0.1s;
}

.accordion-body p {
    padding: 0 1rem 1rem 6.5rem;
    /* Indent to align with title (50px number + 2rem gap approx) */
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .accordion-list {
        gap: 1rem;
        margin-top: 2rem;
    }

    /* Active Card Mobile */
    .accordion-item.active {
        padding: 1rem;
        border: 2px solid rgba(67, 97, 238, 0.6);
        /* Thicker visible border */
        border-radius: 20px;
        /* Stronger rounding ("corners na dikhe") */
        background: linear-gradient(135deg, rgba(8, 15, 30, 0.95), rgba(11, 23, 44, 0.95));
    }

    .accordion-header {
        padding: 0.5rem 0 1rem 0;
        /* Tighter padding */
        align-items: center;
        /* Center align items */
    }

    .acc-number {
        font-size: 1.4rem;
        min-width: 40px;
        margin-right: 0.8rem;
    }

    .acc-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .acc-icon-box {
        width: 32px;
        height: 32px;
        margin-left: 0.5rem;
        /* Ensure space from title */
    }

    .acc-arrow {
        width: 16px;
        height: 16px;
    }

    .accordion-body {
        padding-top: 0;
    }

    .accordion-body p {
        padding: 0;
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.7);
        text-align: justify;
    }
}

/* --------------------------------- */
/* Merged Contact Section            */
/* --------------------------------- */

.contact-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    /* Increased gap */
    align-items: center;
    background: transparent;
    /* No bg wrapper */
    border: none;
    padding: 2rem 0;
    position: relative;
    overflow: visible;
    /* Changed from hidden to visible */
}

/* Background Glow for Contact - Kept but adjusted */
.contact-split-layout::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.contact-left,
.contact-right {
    position: relative;
    z-index: 1;
}

.contact-container {
    background: rgba(8, 15, 30, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    /* Soften radius */
    padding: 2rem;
    /* Reduced to match compact style */
    max-width: 400px;
    /* Make form smaller on desktop */
    width: 100%;
}

/* Mobile Responsive Contact */
@media (max-width: 900px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        /* Tighter gap */
        padding: 0;
        /* ZERO padding on wrapper for maximum width usage */
        margin-top: 0;
    }

    .contact-container {
        padding: 1rem;
        /* Very tight padding as requested */
    }

    .form-group {
        margin-bottom: 1.2rem;
        /* Tighter spacing between inputs */
    }

    .contact-left {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .contact-left .section-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center checkmarks items */
        margin-bottom: 2rem;
    }
}

/* Utility for mobile-only breaks */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}