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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0b14;
    color: #F9FAFB;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F9FAFB;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .features-section {
        padding: 3.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card,
    .product-card,
    .capability-card,
    .blog-card,
    .team-card {
        padding: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 320px !important;
        height: 100vh !important;
        background: rgba(17, 24, 39, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 4rem 1.5rem 2rem !important;
        gap: 0.5rem !important;
        z-index: 1001 !important;
        border-left: 1px solid rgba(124, 58, 237, 0.2) !important;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5) !important;
        animation: slideIn 0.3s ease !important;
    }
    
    .nav-menu.closing {
        animation: slideOut 0.3s ease !important;
    }
    
    @keyframes slideIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }
    
    @keyframes slideOut {
        from { transform: translateX(0); }
        to { transform: translateX(100%); }
    }
    
    .nav-menu .nav-link {
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1rem;
    }
    
    .nav-menu .cta-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-menu-close {
        display: none;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        background: rgba(17, 24, 39, 0.9);
        border: 1px solid rgba(124, 58, 237, 0.3);
        border-radius: 8px;
        color: white;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close.show {
        display: flex;
    }
    
    .mobile-menu-close:hover {
        background: rgba(124, 58, 237, 0.2);
        border-color: rgba(124, 58, 237, 0.5);
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

.nav-link {
    color: #F9FAFB;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #F9FAFB;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    font-size: 0.875rem;
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

.mobile-menu-toggle span {
    height: 3px;
    background: #F9FAFB;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    width: 28px;
}

.mobile-menu-toggle span:nth-child(2) {
    width: 20px;
}

.mobile-menu-toggle span:nth-child(3) {
    width: 14px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #6D28D9, #7C3AED);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #9333EA, #A855F7);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #A855F7;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge span:last-child {
    color: #A855F7;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.typing-animation {
    display: inline-block;
    position: relative;
}

.typing-animation::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #A855F7;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.gradient-text {
    background: linear-gradient(135deg, #7C3AED, #9333EA, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #9CA3AF;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    font-size: 0.875rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(17, 24, 39, 0.8);
    color: #F9FAFB;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    display: none;
}

/* Theme Toggle Button */
#theme-toggle {
    position: fixed;
    bottom: 2.5rem;
    right: 5rem;
    width: 36px;
    height: 36px;
    background: rgba(17, 24, 39, 0.8);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

#theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(17, 24, 39, 0.95);
}

@media (min-width: 769px) and (max-width: 1024px) {
    #theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 16px;
        bottom: 5.5rem;
        right: 1.5rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    #theme-toggle {
        position: static;
        width: 36px;
        height: 36px;
    }
    
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #theme-toggle {
        position: fixed !important;
        bottom: 5.5rem !important;
        right: 1.5rem !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }
    
    .scroll-to-top {
        width: 32px !important;
        height: 32px !important;
        right: 1.5rem !important;
    }
    
    .scroll-to-top svg {
        width: 16px !important;
        height: 16px !important;
    }
}

@media (min-width: 1025px) {
    #theme-toggle {
        position: fixed !important;
        bottom: 5.5rem !important;
        right: 2rem !important;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 900px;
    }
}

.floating-cards {
    position: relative;
    width: 250px;
    height: 250px;
}

.card {
    position: absolute;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: cardFloat 4s ease-in-out infinite;
    font-size: 0.85rem;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 0;
    right: 0;
    animation-delay: 1.3s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.6s;
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.card-text {
    font-weight: 600;
    color: #F9FAFB;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Section */
.mission-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.3) 0%, rgba(10, 11, 20, 0.5) 100%);
    text-align: center;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #9CA3AF;
}

@media (max-width: 768px) {
    .mission-text {
        max-width: 100%;
        margin: 0;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(10, 11, 20, 0.5) 0%, rgba(17, 24, 39, 0.3) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(30, 30, 50, 0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #9CA3AF;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Section Styles */
section {
    padding: 3.5rem 0;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F9FAFB;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-subtitle {
        max-width: 100%;
        margin: 0;
    }
}

/* Products Section */
.products {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.3) 0%, rgba(10, 11, 20, 0.5) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(30, 30, 50, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 28px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.6), transparent);
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card.featured {
    border-color: rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(17, 24, 39, 0.95));
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-icon {
    font-size: 2.5rem;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.product-badge-line {
    width: 100%;
    height: 2px;
    background: white;
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

.product-card.coming-soon .product-badge {
    background: rgba(156, 163, 175, 0.2);
    color: #9CA3AF;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9CA3AF;
    font-size: 0.95rem;
}

.highlight-item svg {
    color: #A855F7;
    flex-shrink: 0;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(124, 58, 237, 0.1);
    color: #A855F7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F9FAFB;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

/* Capabilities Section */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(30, 30, 50, 0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F9FAFB;
}

.capability-card p {
    color: #9CA3AF;
    line-height: 1.6;
}

/* About Section */
.about {
    background: linear-gradient(180deg, rgba(10, 11, 20, 0.5) 0%, rgba(17, 24, 39, 0.3) 100%);
}

/* Team Section */
.team-section {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.3) 0%, rgba(10, 11, 20, 0.5) 100%);
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(30, 30, 50, 0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #A855F7;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: #D1D5DB;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.team-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-link {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A855F7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-link:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #9CA3AF;
    font-weight: 500;
    margin-top: 0.5rem;
}

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

.tech-item {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.1);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(30, 30, 50, 0.7));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: rgba(124, 58, 237, 0.1);
    color: #A855F7;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-date {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F9FAFB;
}

.blog-excerpt {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: #A855F7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #7C3AED;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.5) 0%, rgba(10, 11, 20, 0.95) 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.6;
}

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

.footer-column h4 {
    color: #F9FAFB;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #A855F7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-bottom p {
    color: #9CA3AF;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #A855F7;
}

/* Article Page Styles */
.article-page {
    background: #0a0b14;
}

.article-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(180deg, rgba(10, 11, 20, 0.95) 0%, rgba(17, 24, 39, 0.5) 100%);
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.05), transparent 70%);
    pointer-events: none;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #A855F7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.back-link:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateX(-4px);
}

.article-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #9CA3AF;
    flex-wrap: wrap;
}

.article-read-time {
    color: #9CA3AF;
}

.article-category {
    background: rgba(124, 58, 237, 0.1);
    color: #A855F7;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.article-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.article-subtitle {
    font-size: 1.35rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #F9FAFB;
    font-size: 1.05rem;
}

.author-bio {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-content {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.5) 0%, rgba(10, 11, 20, 0.8) 100%);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #D1D5DB;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.content-section {
    margin-bottom: 3.5rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section p {
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-section ul,
.content-section ol {
    color: #9CA3AF;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.content-section li strong {
    color: #F9FAFB;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.1));
    border-left: 4px solid #7C3AED;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
    color: #D1D5DB;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-box {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(30, 30, 50, 0.8));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.5;
}

.quote-section {
    margin: 4rem 0;
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #F9FAFB;
    margin: 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.1));
    border-left: 4px solid #7C3AED;
    border-radius: 16px;
    line-height: 1.6;
}

.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    color: #A855F7;
    font-style: normal;
    font-weight: 600;
}

.article-cta {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.article-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 1rem;
}

.article-cta p {
    color: #9CA3AF;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.article-cta .btn-primary {
    display: inline-flex;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.author-section {
    margin-bottom: 2rem;
}

.author-info h4 {
    color: #F9FAFB;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #9CA3AF;
    margin: 0;
}

.article-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.related-articles {
    background: linear-gradient(180deg, rgba(10, 11, 20, 0.8) 0%, rgba(17, 24, 39, 0.5) 100%);
    padding: 5rem 0;
}

.related-articles .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
}

.related-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.related-category {
    background: rgba(124, 58, 237, 0.1);
    color: #A855F7;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.related-date {
    color: #9CA3AF;
}

.related-card h3 {
    color: #F9FAFB;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.related-card p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.related-link {
    color: #A855F7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #7C3AED;
}

@media (max-width: 768px) {
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .article-info {
        flex-wrap: wrap;
    }
    
    .article-actions {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero,
.blog-hero {
    padding: 8rem 0 4rem;
    background: rgba(17, 24, 39, 0.3);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F9FAFB, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-form-section {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 3rem;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F9FAFB;
}

.form-header p {
    color: #9CA3AF;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    color: #F9FAFB;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(11, 15, 26, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 1rem;
    color: #F9FAFB;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 1rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 3rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F9FAFB;
}

.contact-info > p {
    color: #9CA3AF;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A855F7;
}

.method-info h4 {
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 0.25rem;
}

.method-info p {
    color: #9CA3AF;
}

.contact-cta {
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.contact-cta h4 {
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 0.5rem;
}

.contact-cta p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.faq-section {
    background: rgba(17, 24, 39, 0.3);
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #9CA3AF;
    line-height: 1.6;
}

/* Blog Page Styles */
.blog-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(180deg, rgba(10, 11, 20, 0.95) 0%, rgba(17, 24, 39, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.featured-post {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.5) 0%, rgba(10, 11, 20, 0.8) 100%);
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #A855F7;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
}

.featured-label svg {
    color: #A855F7;
}

.featured-article {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(30, 30, 50, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.6), transparent);
}

.featured-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.featured-category {
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-date {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.featured-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.featured-excerpt {
    color: #9CA3AF;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(124, 58, 237, 0.15);
    color: #A855F7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(124, 58, 237, 0.25);
    border-color: rgba(124, 58, 237, 0.4);
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #A855F7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.featured-link:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateX(4px);
}

.featured-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-placeholder {
    width: 100%;
    max-width: 350px;
    height: 280px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.1));
    border: 2px dashed rgba(124, 58, 237, 0.4);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.featured-placeholder:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.15));
    border-color: rgba(124, 58, 237, 0.6);
}

.placeholder-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.4));
}

.placeholder-text {
    color: #A855F7;
    font-weight: 600;
    font-size: 1.1rem;
}

.blog-posts {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(10, 11, 20, 0.8) 0%, rgba(17, 24, 39, 0.5) 100%);
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.posts-header-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 0.5rem;
}

.posts-subtitle {
    color: #9CA3AF;
    font-size: 1.05rem;
}

.posts-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #9CA3AF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.filter-btn:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.5);
    color: #A855F7;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(168, 85, 247, 0.2));
    border-color: rgba(124, 58, 237, 0.6);
    color: #F9FAFB;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.post-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(30, 30, 50, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.post-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
}

.post-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.05));
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.post-card:hover .post-placeholder {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.1));
}

.post-placeholder .placeholder-icon {
    font-size: 4.5rem;
    opacity: 0.6;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
    transition: all 0.3s ease;
}

.post-card:hover .post-placeholder .placeholder-icon {
    opacity: 0.8;
    transform: scale(1.1);
}

.post-content {
    padding: 2.25rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.post-category {
    background: rgba(124, 58, 237, 0.15);
    color: #A855F7;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.post-date {
    color: #9CA3AF;
    font-size: 0.875rem;
    font-weight: 500;
}

.post-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-card:hover .post-title {
    color: #A855F7;
}

.post-excerpt {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.975rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #A855F7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.975rem;
}

.post-link:hover {
    color: #7C3AED;
    transform: translateX(4px);
}

.newsletter {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.5) 0%, rgba(10, 11, 20, 0.95) 100%);
    padding: 5rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 12px 48px rgba(124, 58, 237, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 0.75rem;
}

.newsletter-text p {
    color: #9CA3AF;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.newsletter-form input {
    background: rgba(10, 11, 20, 0.9);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 50px;
    padding: 1rem 1.75rem;
    color: #F9FAFB;
    font-family: inherit;
    min-width: 320px;
    transition: all 0.3s ease;
    font-size: 0.975rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(124, 58, 237, 0.7);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}

.newsletter-form input::placeholder {
    color: #6B7280;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Legal Pages Styles */
.legal-content {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-date {
    color: #9CA3AF;
    font-size: 1rem;
    margin-top: 1rem;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F9FAFB;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #9CA3AF;
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #A855F7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #7C3AED;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-body {
        padding: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .blog-header {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .featured-post {
        padding: 3rem 1rem;
    }
    
    .featured-label {
        margin-left: 1rem;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .featured-visual {
        order: -1;
    }
    
    .featured-placeholder {
        max-width: 100%;
        height: 240px;
    }
    
    .blog-posts {
        padding: 3rem 1rem;
    }
    
    .posts-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .posts-header-content h2 {
        font-size: 1.75rem;
    }
    
    .posts-subtitle {
        font-size: 0.95rem;
    }
    
    .posts-filter {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .filter-btn {
        flex: 1;
        min-width: calc(50% - 0.375rem);
        text-align: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-card {
        margin: 0;
    }
    
    .post-content {
        padding: 1.75rem;
    }
    
    .newsletter {
        padding: 3rem 1rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 6rem 1.5rem 5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
    

    
    .hero-content {
        text-align: center;
        padding: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .features-section {
        padding: 3.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2.5rem;
    }
    
    .capability-card {
        padding: 2rem 1.5rem;
    }
    
    .product-card {
        padding: 2rem 1.5rem;
    }
    
    .blog-card {
        padding: 2rem 1.5rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .product-card {
        padding: 2rem 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        padding: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .team-card {
        padding: 2rem;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
        padding: 0.875rem 1.5rem;
    }
    
    .hero {
        padding: 5rem 1rem 4rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
    }
    
    .badge-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
        display: none;
    }
    
    .features-section {
        padding: 2.5rem 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .product-card {
        padding: 2.5rem;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .blog-hero {
        padding: 6rem 1rem 2.5rem;
    }
    
    .blog-header {
        padding: 0;
    }
    
    .page-title {
        font-size: 1.85rem;
    }
    
    .page-subtitle {
        font-size: 0.925rem;
    }
    
    .featured-post {
        padding: 2.5rem 1rem;
    }
    
    .featured-label {
        margin-left: 0;
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
    
    .featured-article {
        padding: 1.75rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-excerpt {
        font-size: 0.95rem;
    }
    
    .featured-placeholder {
        height: 200px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .blog-posts {
        padding: 2.5rem 1rem;
    }
    
    .posts-header-content h2 {
        font-size: 1.5rem;
    }
    
    .posts-subtitle {
        font-size: 0.9rem;
    }
    
    .filter-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .posts-grid {
        gap: 1.25rem;
    }
    
    .post-image {
        height: 180px;
    }
    
    .post-placeholder .placeholder-icon {
        font-size: 3.5rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-title {
        font-size: 1.15rem;
    }
    
    .post-excerpt {
        font-size: 0.925rem;
    }
    
    .newsletter {
        padding: 2.5rem 1rem;
    }
    
    .newsletter-content {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-text p {
        font-size: 0.95rem;
    }
    
    .newsletter-form input {
        padding: 0.875rem 1.5rem;
        font-size: 0.925rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .blog-card {
        padding: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        padding: 0;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .capability-card {
        padding: 2rem;
    }
}