/* unified-styles.css - FINAL FIXED VERSION */

/* ---
   1. Global Styles & Typography
   --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #f1f5f9;
    overflow-x: hidden;
    margin: 0;
    background-image:
        radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(217, 70, 239, 0.1) 0%, transparent 40%);
    position: relative;
    min-height: 100vh;
}

main, .main-footer {
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #d946ef, #a855f7, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

.link-highlight {
    color: #818cf8;
    text-decoration: none;
}

.link-highlight:hover {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

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

/* ---
   2. Global Components (Header, Footer, Buttons) - FIXED
   --- */

/* Header - FIXED FOR MOBILE */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.2);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        rgba(168, 85, 247, 0.08) 0%,
        rgba(217, 70, 239, 0.12) 50%,
        rgba(168, 85, 247, 0.08) 100%);
    pointer-events: none;
    z-index: -1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem; /* Reduced mobile padding */
    min-height: 60px; /* Smaller mobile header */
}

/* Logo - COMPLETELY FIXED FOR MOBILE */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: auto;
    flex-shrink: 0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 51;
    margin-left: 0; /* NO negative margin on mobile */
    margin-right: 0; /* NO auto margin on mobile */
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 50px; /* Small mobile logo */
    width: auto;
    max-width: none;
    display: block;
    transition: filter 0.3s ease;
    margin: 0; /* NO negative margins on mobile */
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 40px rgba(217, 70, 239, 0.8))
            drop-shadow(0 0 15px rgba(168, 85, 247, 1));
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .header-container {
        padding: 0.6rem 2rem;
        max-width: 1300px;
        margin: 0 auto;
        min-height: 80px; /* Larger desktop header */
    }

    .logo {
        margin-left: -5rem; /* Negative margin only on desktop */
        margin-right: auto;
    }

    .logo-image {
        height: 120px; /* Full size on desktop */
        margin: -12px 0; /* Negative margins only on desktop */
    }
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    /* Home dropdown container */
    .nav-dropdown {
        position: relative;
    }

    /* Base nav link styles */
    .nav-dropdown > a {
        color: #d1d5db;
        transition: color 0.2s, transform 0.2s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
        position: relative;
    }

    .main-nav > a {
        color: #d1d5db;
        transition: color 0.2s, transform 0.2s;
        text-decoration: none;
        display: inline-block;
        padding: 0.5rem 0;
        position: relative;
    }

    /* Active states */
    .nav-dropdown > a.active,
    .main-nav > a.active {
        color: #e879f9;
        filter: drop-shadow(0 0 8px rgba(232, 121, 249, 0.6));
    }

    /* Hover color changes */
    .nav-dropdown:hover > a,
    .main-nav > a:hover {
        color: #ffffff;
        transform: translateY(-2px);
    }

    /* Dropdown menu */
    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 50%;
        transform: translateX(-50%);
        min-width: 180px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px) saturate(150%);
        border: 1px solid rgba(168, 85, 247, 0.3);
        border-radius: 0.75rem;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
        z-index: 100;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .nav-dropdown-menu a {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #d1d5db;
        text-decoration: none;
        transition: all 0.2s;
        position: relative;
    }

    .nav-dropdown-menu a:hover {
        color: #ffffff;
        background: rgba(168, 85, 247, 0.1);
        padding-left: 2rem;
    }
}

/* Mobile Menu Toggle - FIXED */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 52;
}

.mobile-menu-toggle:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Navigation - FIXED */
.mobile-nav {
    position: fixed;
    top: 60px; /* Match mobile header height */
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding: 1rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 49;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.show {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    color: #d1d5db;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: #ffffff;
    padding-left: 1rem;
    background: rgba(168, 85, 247, 0.05);
}

.mobile-nav a.active {
    color: #e879f9;
    filter: drop-shadow(0 0 8px rgba(232, 121, 249, 0.6));
    background: rgba(168, 85, 247, 0.1);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s ease-out;
    text-decoration: none;
    justify-content: center;
}
.button:hover {
    transform: scale(1.05);
}
.button:active {
    transform: scale(0.98);
}
.button-primary {
    background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    border: none;
}
.button-primary:hover {
    background: linear-gradient(135deg, #9333ea 0%, #c026d3 100%);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}
.button-light {
    background: rgba(255, 255, 255, 0.95);
    color: #18181b;
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}
.button-light:hover {
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}
.button-outline {
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #ffffff;
    background: rgba(168, 85, 247, 0.1);
}
.button-outline:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
.header-button {
    display: none;
}
@media (min-width: 768px) {
    .header-button {
        display: inline-flex;
        flex-shrink: 0;
        margin-left: auto;
    }
}

/* Mobile menu button in navigation */
.mobile-nav .button {
    margin-top: 1.5rem;
    width: 100%;
}

/* Footer */
.main-footer {
    background-color: #000;
    border-top: 1px solid #374151;
}

.footer-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    color: #6b7280;
}

.social-links {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: inherit;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.social-links a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.social-links svg {
    width: 1.5rem;
    height: 1.5rem;
}


/* ---
   3. Global Utilities (Animations, Particles)
   --- */

.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}


/* ---
   4. Page-Specific: index.html
   --- */

.section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 768px) {
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    margin-top: 0.75rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: #94a3b8;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(217, 70, 239, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(168, 85, 247, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(233, 121, 249, 0.1) 0%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(168, 85, 247, 0.05) 100%);
    pointer-events: none;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
}
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-subtitle {
    margin-top: 1rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    color: #94a3b8;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FIXED: Better mobile layout for hero buttons */
@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions .button {
        width: 100%;
        max-width: 280px;
    }
}

.hero-visual {
    margin-top: 3rem;
    width: 100%;
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(168, 85, 247, 0.1));
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    box-shadow:
        0 10px 40px rgba(168, 85, 247, 0.3),
        inset 0 0 40px rgba(217, 70, 239, 0.2);
    backdrop-filter: blur(10px);
}

.floating-icon-large svg {
    width: 100px;
    height: 100px;
    stroke: #d946ef;
    filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.6));
}

/* Showcase Section (Platform & About) */
.platform-showcase, .about-showcase {
    margin-top: 3rem;
}

.showcase-item, .about-item {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .showcase-item, .about-item {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }
    .showcase-item.reverse, .about-item.reverse {
        direction: rtl;
    }
    .showcase-item.reverse > *, .about-item.reverse > * {
        direction: ltr;
    }
}

.showcase-visual, .about-visual {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .showcase-visual, .about-visual {
        height: 300px;
    }
}
.showcase-item:last-child, .about-item:last-child {
    margin-bottom: 0;
}

.icon-float {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(168, 85, 247, 0.1));
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    box-shadow:
        0 8px 32px rgba(168, 85, 247, 0.3),
        inset 0 0 30px rgba(217, 70, 239, 0.2);
    backdrop-filter: blur(10px);
}
.icon-float.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(244, 114, 182, 0.1));
    box-shadow:
        0 8px 32px rgba(236, 72, 153, 0.3),
        inset 0 0 30px rgba(244, 114, 182, 0.2);
}
.icon-float.blue {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(168, 85, 247, 0.1));
    box-shadow:
        0 8px 32px rgba(147, 51, 234, 0.3),
        inset 0 0 30px rgba(168, 85, 247, 0.2);
}
.icon-float.purple {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.25), rgba(168, 85, 247, 0.15));
    box-shadow:
        0 8px 32px rgba(217, 70, 239, 0.3),
        inset 0 0 30px rgba(168, 85, 247, 0.2);
}


.icon-float svg {
    width: 70px;
    height: 70px;
    stroke: #d946ef;
    filter: drop-shadow(0 0 8px rgba(217, 70, 239, 0.6));
}
.icon-float.pink svg {
    stroke: #f472b6;
    filter: drop-shadow(0 0 8px rgba(244, 114, 182, 0.6));
}
.icon-float.blue svg {
    stroke: #a855f7;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}
.icon-float.purple svg {
    stroke: #e879f9;
    filter: drop-shadow(0 0 8px rgba(232, 121, 249, 0.6));
}

.showcase-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .showcase-title {
        font-size: 2rem;
    }
}

.showcase-description, .about-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.industry-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(217, 70, 239, 0.15);
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 1rem;
    font-size: 0.8125rem;
    color: #e879f9;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.tag.pink {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
    color: #f9a8d4;
}
.tag.blue {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
    color: #c4b5fd;
}

/* About Section */
.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.75rem 0 1rem 0;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .about-title { font-size: 2.5rem; }
    .about-subtitle { font-size: 1.75rem; }
}

.research-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}
.solution-link:hover {
    color: #c4b5fd;
    transform: translateX(4px);
}
.solution-link .link-arrow {
    width: 1rem;
    height: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}
.contact-link {
    margin-top: 1.5rem;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    background: linear-gradient(90deg, #a78bfa, #f472b6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.contact-link:hover {
    opacity: 0.8;
}

/* ---
   5. Page-Specific: offerings.html
   --- */

/* Page Hero */
.page-hero {
    background: transparent;
    padding: 8rem 0 4rem 0; /* Reduced from 10rem for mobile */
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(217, 70, 239, 0.15) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(217, 70, 239, 0.3));
}

.page-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0 auto;
}

/* Solutions Info Section */
.solutions-info-section {
    background: transparent;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.solutions-info-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .solutions-info-grid {
        gap: 4rem;
    }
}

.solution-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease-out;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}
.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
}

.solution-header {
    background: rgba(168, 85, 247, 0.05);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.solution-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(217, 70, 239, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite reverse;
}

.solution-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}
.solution-icon-wrapper.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(217, 70, 239, 0.1) 100%);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3), inset 0 0 20px rgba(217, 70, 239, 0.1);
}
.solution-icon-wrapper.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(244, 114, 182, 0.1) 100%);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3), inset 0 0 20px rgba(244, 114, 182, 0.1);
}
.solution-icon-wrapper.blue {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3), inset 0 0 20px rgba(168, 85, 247, 0.1);
}
.solution-icon-wrapper.orange {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(254, 215, 170, 0.1) 100%);
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.3), inset 0 0 20px rgba(254, 215, 170, 0.1);
}
.solution-icon-wrapper svg {
    width: 30px;
    height: 30px;
    stroke: #d946ef;
    filter: drop-shadow(0 0 5px rgba(217, 70, 239, 0.5));
}
.solution-icon-wrapper.pink svg {
    stroke: #f472b6;
    filter: drop-shadow(0 0 5px rgba(244, 114, 182, 0.5));
}
.solution-icon-wrapper.blue svg {
    stroke: #a855f7;
    filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.5));
}
.solution-icon-wrapper.orange svg {
    stroke: #fb923c;
    filter: drop-shadow(0 0 5px rgba(251, 146, 60, 0.5));
}

.solution-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.solution-content {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.solution-overview {
    font-size: 1.125rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.features-title, .specs-title, .pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #cbd5e1;
}

.features-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d946ef;
    filter: drop-shadow(0 0 3px rgba(217, 70, 239, 0.6));
}

.solution-specs {
    margin-bottom: 2.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.spec-item {
    background: rgba(168, 85, 247, 0.03);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.2s ease;
}

.spec-item:hover {
    border-color: rgba(217, 70, 239, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

.spec-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.spec-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.solution-pricing {
    margin-bottom: 2rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.pricing-tier {
    background: rgba(168, 85, 247, 0.03);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.2s ease;
}

.pricing-tier:hover {
    border-color: rgba(217, 70, 239, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

.pricing-tier.wide {
    grid-column: 1 / -1;
}

.pricing-tier h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #d946ef 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(217, 70, 239, 0.3));
}

.price-details {
    font-size: 0.875rem;
    color: #6b7280;
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(217, 70, 239, 0.05) 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #e879f9;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.solution-cta:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(217, 70, 239, 0.1) 100%);
    border-color: rgba(217, 70, 239, 0.5);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

/* ---
   6. Email Lightbox
   --- */

.email-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.email-lightbox.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 60px rgba(168, 85, 247, 0.3),
        inset 0 1px 0 rgba(217, 70, 239, 0.1);
    animation: lightboxSlideIn 0.3s ease-out;
}

@keyframes lightboxSlideIn {
    from {
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(217, 70, 239, 0.5);
    transform: scale(1.05);
}

.lightbox-header {
    margin-bottom: 2rem;
    text-align: center;
}

.lightbox-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.lightbox-header p {
    color: #94a3b8;
    font-size: 1rem;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(217, 70, 239, 0.6);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-actions .button {
    flex: 1;
}

@media (max-width: 640px) {
    .lightbox-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .button {
        width: 100%;
    }
}