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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4338ca;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --accent-color: #8b5cf6;
    --accent-light: #a78bfa;
    --cyber-blue: #00d4ff;
    --cyber-purple: #b794f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #0f0f23;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --glow-primary: 0 0 20px rgba(99, 102, 241, 0.4);
    --glow-secondary: 0 0 20px rgba(16, 185, 129, 0.4);
    --glow-accent: 0 0 20px rgba(139, 92, 246, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

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

/* Add scroll margin to sections */
section {
    scroll-margin-top: 80px;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm), 0 0 20px rgba(99, 102, 241, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md), 0 0 30px rgba(99, 102, 241, 0.2);
    background-color: rgba(15, 15, 35, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyber-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyber-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.logo:hover {
    opacity: 0.8;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-blue), var(--accent-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--cyber-blue);
}

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

.nav-links a:hover {
    color: var(--cyber-blue);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--cyber-blue);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(129, 140, 248, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}



.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--cyber-blue) 50%, var(--cyber-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cyber-blue), var(--primary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg), var(--glow-primary);
    border: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 8rem 0 6rem 0;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 50%, #16213e 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--cyber-blue), var(--accent-color));
    border-radius: 2px;
    box-shadow: var(--glow-primary);
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.about-img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    max-width: 350px;
    animation: float 6s ease-in-out infinite;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

.about-content {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.about-intro {
    margin-bottom: 1.5rem;
}

.mission-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    color: white;
    box-shadow: var(--shadow-md), 0 0 30px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.mission-box h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mission-box p {
    font-size: 1.1rem;
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

/* ===========================
   Products Section
   =========================== */
.products {
    padding: 6rem 0;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 50%, #1a1a3e 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(15, 15, 35, 0.6);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
    border-color: var(--cyber-blue);
}

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

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.product-icon.merchant {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.product-icon.lead {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.4);
}

.product-icon.list {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 8px 16px rgba(79, 172, 254, 0.4);
}

.product-icon svg {
    width: 40px;
    height: 40px;
}

.product-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.product-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.feature-item:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateX(5px);
    border-color: var(--cyber-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.feature-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.product-cta {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(99, 102, 241, 0.3);
}

.product-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* ===========================
   How It Works Section
   =========================== */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f23 50%, #16213e 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.ai-agent-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(129, 140, 248, 0.05));
    border-radius: 16px;
}

.ai-agent-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.ai-agent-img:hover {
    transform: scale(1.02);
}

.comparison-table {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.5fr;
    gap: 1px;
    background: rgba(99, 102, 241, 0.2);
}

.table-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.table-header .table-cell {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.table-row .table-cell {
    background: rgba(15, 15, 35, 0.6);
    padding: 1.25rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.table-row:nth-child(even) .table-cell {
    background: rgba(26, 26, 62, 0.6);
}

.table-cell.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(0, 212, 255, 0.2)) !important;
    font-weight: 500;
    color: #ffffff;
    border-color: var(--cyber-blue);
}

.table-row .table-cell strong {
    color: var(--cyber-blue);
    font-weight: 600;
}

.impact-statement {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-radius: 12px;
    text-align: center;
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
}

.impact-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.business-impact {
    margin-top: 4rem;
}

.business-impact h3 {
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 50%, #1a1a3e 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.feature-card {
    background: rgba(15, 15, 35, 0.6);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
    border-color: var(--cyber-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* USP Section */
.usp-section {
    margin-top: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.usp-section .section-header h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.usp-section .section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.usp-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.usp-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.usp-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.usp-img:hover {
    transform: scale(1.02);
}

.usp-grid {
    display: grid;
    gap: 1.5rem;
}

.usp-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.usp-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(0, 212, 255, 0.1));
    transform: translateX(10px);
    border-color: var(--cyber-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.usp-bullet {
    color: var(--cyber-blue);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.usp-content {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.usp-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* ===========================
   Team Section
   =========================== */
.team {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f23 50%, #16213e 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: rgba(15, 15, 35, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
    border-color: var(--cyber-blue);
}

.member-photo {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 62, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: transparent;
    mix-blend-mode: lighten;
    filter: brightness(1.1) contrast(1.05);
}

.linkedin-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077B5;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.linkedin-badge:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: #0077B5;
    color: white;
}

.member-info {
    padding: 2.5rem;
}

.member-info h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.member-title {
    font-size: 1.3rem;
    color: var(--cyber-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.member-credentials {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.member-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.member-email svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.member-email a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-email a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.member-highlights {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--cyber-blue);
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.member-bio {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.member-bio p {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.member-bio strong {
    color: var(--cyber-blue);
    font-weight: 600;
}

.member-bio em {
    font-style: italic;
}

.member-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.profile-link.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
}

.profile-link.linkedin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #005582 0%, #003d5c 100%);
}

.profile-link.book {
    background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
}

.profile-link.book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #FF6600 0%, #CC5500 100%);
}

.profile-link.email {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.profile-link.email:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.profile-link.institutional {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
}

.profile-link.institutional:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #654321 0%, #4a3219 100%);
}

.profile-link svg {
    width: 20px;
    height: 20px;
}

/* Icon-only profile links */
.profile-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.profile-icon-link.book {
    background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
}

.profile-icon-link.book:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #FF6600 0%, #CC5500 100%);
}

.profile-icon-link svg {
    width: 24px;
    height: 24px;
}

/* Advisor photo styling */
.advisor-photo {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(83, 52, 131, 0.5) 100%);
    height: 300px;
}

.advisor-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: transparent;
    mix-blend-mode: lighten;
    filter: brightness(1.1) contrast(1.05);
}

/* Compact Team Member Cards */
.team-member-compact {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
}

.member-photo-compact {
    position: relative;
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 62, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo-compact img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: transparent;
    mix-blend-mode: lighten;
    filter: brightness(1.1) contrast(1.05);
}

.linkedin-badge-compact {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077B5;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.linkedin-badge-compact:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: #0077B5;
    color: white;
}

.member-info-compact {
    flex: 1;
    padding: 2rem;
}

.member-info-compact h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.member-title-compact {
    font-size: 1.1rem;
    color: var(--cyber-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.member-credentials-compact {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 500;
}

/* Book links in text */
.book-link,
.inline-book-link,
.award-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.book-link:hover,
.inline-book-link:hover,
.award-link:hover {
    color: #FF6600;
    border-bottom-color: #FF6600;
}

.inline-book-link {
    color: var(--primary-dark);
}

.award-link {
    color: var(--secondary-color);
}

.award-link:hover {
    color: #059669;
    border-bottom-color: #059669;
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
    .member-photo {
        height: 250px;
    }
    
    .member-info {
        padding: 1.5rem;
    }
    
    .member-info h3 {
        font-size: 1.6rem;
    }
    
    .member-title {
        font-size: 1.1rem;
    }
    
    .member-highlights {
        padding: 1rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .member-bio {
        font-size: 0.95rem;
    }
    
    /* Compact team members responsive */
    .member-photo-compact {
        height: 250px;
    }
    
    .member-info-compact {
        padding: 1.5rem;
    }
    
    .member-info-compact h3 {
        font-size: 1.3rem;
    }
    
    .member-title-compact {
        font-size: 1rem;
    }
    
    .member-credentials-compact {
        font-size: 0.9rem;
    }
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #16213e 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header h2::after {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.email-link {
    color: var(--cyber-blue);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 0.5rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.email-link:hover {
    border-color: var(--cyber-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    transform: translateX(5px);
}

.contact-form-wrapper {
    background: rgba(15, 15, 35, 0.8);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

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

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #ffffff;
    background: rgba(15, 15, 35, 0.6);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyber-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2), 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(15, 15, 35, 0.8);
}

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

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--cyber-blue), var(--primary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    display: block;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    display: block;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(180deg, #0f0f23 0%, #0a0a1a 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 -5px 20px rgba(99, 102, 241, 0.1);
}

.footer-content p {
    opacity: 0.8;
}

/* ===========================
   Cookie Notice
   =========================== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: slideUp 0.5s ease-out;
}

.cookie-notice.hidden {
    display: none;
}

.cookie-content p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.cookie-content strong {
    font-size: 1.1rem;
}

.cookie-accept {
    padding: 0.75rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: #059669;
    transform: scale(1.05);
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(15, 15, 35, 0.98);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 1rem;
        border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }

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

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .about-img {
        max-width: 100%;
    }

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

    .usp-content-wrapper {
        grid-template-columns: 1fr;
    }

    .usp-img {
        max-width: 100%;
    }

    .ai-agent-img {
        max-width: 100%;
    }

    /* Mobile-friendly table layout */
    .table-header {
        display: none !important;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 1.5rem;
        border-radius: 8px;
        overflow: hidden;
    }

    .table-row .table-cell:first-child {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3)) !important;
        font-weight: 600;
        font-size: 1rem;
        color: var(--cyber-blue);
        text-align: center;
        padding: 1rem !important;
        border-bottom: 2px solid rgba(99, 102, 241, 0.4);
    }

    .table-row .table-cell:nth-child(2)::before {
        content: "Existing Solutions: ";
        font-weight: 600;
        color: #ef4444;
        display: block;
        margin-bottom: 0.5rem;
    }

    .table-row .table-cell:nth-child(3)::before {
        content: "BizNeuro AI: ";
        font-weight: 600;
        color: var(--cyber-blue);
        display: block;
        margin-bottom: 0.5rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .table-cell {
        padding: 1.25rem !important;
    }

    .impact-table-header,
    .impact-table-row {
        grid-template-columns: 60px 1fr;
    }

    .impact-table-cell:nth-child(3),
    .impact-table-cell:nth-child(4) {
        grid-column: 1 / -1;
        border-top: 1px solid var(--border-color);
    }

    .impact-table-cell:nth-child(3)::before {
        content: "Current: ";
        font-weight: 600;
        color: #ef4444;
    }

    .impact-table-cell:nth-child(4)::before {
        content: "Future: ";
        font-weight: 600;
        color: var(--secondary-color);
    }

    .before-after {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

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

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

    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 35px;
    }

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .product-card {
        padding: 1.5rem;
    }

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

    .table-cell {
        padding: 1rem !important;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .table-header .table-cell {
        font-size: 1rem;
        padding: 1.25rem !important;
    }

    .table-row .table-cell:first-child {
        font-size: 0.95rem;
    }

    .table-row .table-cell:nth-child(2)::before,
    .table-row .table-cell:nth-child(3)::before {
        font-size: 0.9rem;
    }

    .impact-table-header,
    .impact-table-row {
        grid-template-columns: 50px 1fr;
        font-size: 0.85rem;
    }

    .impact-table-cell {
        padding: 0.75rem 0.5rem !important;
    }

    .impact-table-cell.icon-cell svg {
        width: 24px;
        height: 24px;
    }

    .impact-statement p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
