/* ============================================
   GONNECT - HyperGraphMind Inspired Design
   Elegant Cream/Beige with Graph Visualizations
   ============================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Primary Palette - Warm Cream/Beige */
    --cream-light: #F5F1E6;
    --cream: #E8E0D0;
    --cream-dark: #D8D2C4;
    --cream-muted: #C8C2B4;

    /* Dark Accents */
    --dark-primary: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --dark-tertiary: #3a3a3a;
    --dark-muted: #4a4a4a;
    --dark-light: #6a6a6a;

    /* Accent Colors - Monochrome */
    --accent-green: #1a1a1a;
    --accent-green-light: rgba(26, 26, 26, 0.08);
    --accent-blue: #2a2a2a;
    --accent-purple: #3a3a3a;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-primary);
    background: var(--cream-light);
    overflow-x: hidden;
}

/* Animated Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--dark-muted);
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    position: relative;
    padding: var(--space-4xl) 0;
    z-index: 1;
}

/* ============================================
   FLOATING LEFT MENU
   ============================================ */
.floating-menu {
    position: fixed;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(245, 241, 230, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.floating-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--dark-primary);
    color: var(--cream-light);
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: var(--space-sm);
    padding: 8px;
}

.floating-menu-logo svg {
    width: 100%;
    height: 100%;
}

.floating-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.floating-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--dark-muted);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.floating-link:hover {
    background: var(--dark-primary);
    color: var(--cream-light);
}

.floating-link.active {
    background: var(--dark-primary);
    color: var(--cream-light);
}

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

/* Tooltip on hover */
.floating-link::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    margin-left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--dark-primary);
    color: var(--cream-light);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.floating-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-social {
    margin-top: var(--space-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: var(--space-md);
}

/* Breadcrumb overlay */
.breadcrumb-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.breadcrumb-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.breadcrumb-content a {
    display: block;
    color: var(--cream-light);
    font-size: 2rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    transition: all var(--transition-fast);
    opacity: 0.7;
}

.breadcrumb-content a:hover {
    opacity: 1;
    transform: translateX(10px);
}

.breadcrumb-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-light);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.breadcrumb-close:hover {
    opacity: 1;
}

/* Hide floating menu on mobile, show hamburger */
@media (max-width: 768px) {
    .floating-menu {
        left: var(--space-md);
        top: var(--space-md);
        transform: none;
        flex-direction: row;
        padding: var(--space-sm);
    }

    .floating-menu-links {
        display: none;
    }

    .floating-social {
        display: none;
    }

    .floating-menu-logo {
        margin-bottom: 0;
    }
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--cream-light);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    color: var(--dark-primary);
}

/* ============================================
   HERO SECTION - Apple Style
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px var(--space-lg) var(--space-3xl);
    position: relative;
    z-index: 1;
    background: var(--cream-light);
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.hero-video-showcase {
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: var(--space-3xl);
}

.hero-video-showcase video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--accent-green-light);
    color: var(--accent-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero h1 {
    margin-bottom: var(--space-lg);
}

.gradient-text {
    color: var(--dark-primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-light);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--dark-primary);
    color: var(--cream-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--dark-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-primary);
    border: 2px solid var(--dark-tertiary);
}

.btn-secondary:hover {
    background: var(--dark-primary);
    color: var(--cream-light);
    border-color: var(--dark-primary);
}

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark-light);
    margin-top: var(--space-xs);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(26, 26, 26, 0.05);
    color: var(--dark-muted);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--dark-light);
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-section {
    background: var(--cream);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-lg);
}

.expertise-card {
    background: var(--cream-light);
    border-radius: 16px;
    padding: var(--space-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 185, 129, 0.2);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green-light);
    border-radius: 12px;
    margin-bottom: var(--space-lg);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-green);
}

.expertise-card h3 {
    margin-bottom: var(--space-sm);
}

.expertise-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    list-style: none;
}

.card-tags li {
    padding: var(--space-xs) var(--space-sm);
    background: rgba(26, 26, 26, 0.05);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--dark-muted);
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */
.platforms-section {
    background: var(--cream-light);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.platform-card {
    background: var(--cream);
    border-radius: 16px;
    padding: var(--space-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platform-card.wide {
    grid-column: 1 / -1;
}

.platform-logo {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
}

.platform-logo svg {
    width: 100%;
    height: 100%;
}

.platform-card h3 {
    margin-bottom: var(--space-md);
}

.platform-services {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.platform-services span {
    padding: var(--space-xs) var(--space-md);
    background: var(--cream-light);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark-muted);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    background: var(--dark-primary);
    color: var(--cream-light);
}

.clients-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream-muted);
}

.clients-section .section-header h2 {
    color: var(--cream-light);
}

.clients-section .section-header p {
    color: var(--cream-muted);
}

/* Enterprise Showcase - New Design */
.enterprise-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.enterprise-card {
    background: var(--dark-secondary);
    border-radius: 20px;
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.enterprise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.enterprise-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.enterprise-brand .brand-name {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream-light);
    letter-spacing: -1px;
}

.nike-brand .brand-name {
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hm-brand .brand-name {
    color: #E50010;
    font-weight: 800;
}

.enterprise-brand .brand-role {
    font-size: 0.8rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
}

.enterprise-impact {
    text-align: right;
}

.enterprise-impact .impact-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cream-light);
}

.enterprise-impact .impact-label {
    font-size: 0.7rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enterprise-achievements {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.achievement {
    display: flex;
    gap: var(--space-md);
}

.achievement-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.achievement-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--cream-muted);
}

.achievement-content h4 {
    font-size: 0.95rem;
    color: var(--cream-light);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.achievement-content p {
    font-size: 0.85rem;
    color: var(--cream-muted);
    line-height: 1.5;
}

.enterprise-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.enterprise-tech span {
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream-muted);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* More Enterprises - Mini Cards */
.more-enterprises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.enterprise-mini {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: var(--space-lg);
}

.enterprise-mini .mini-brand {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream-light);
    margin-bottom: var(--space-xs);
}

.enterprise-mini .mini-role {
    display: block;
    font-size: 0.75rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.enterprise-mini p {
    font-size: 0.85rem;
    color: var(--cream-muted);
    line-height: 1.6;
}

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

.industries-served h4 {
    color: var(--cream-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.industry-tags span {
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--cream-muted);
    font-size: 0.875rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: var(--space-md);
}

.about-content h2 {
    margin-bottom: var(--space-sm);
}

.about-title {
    color: var(--dark-muted);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-bio {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* Entrepreneurial Journey Timeline */
.journey-section {
    margin: var(--space-xl) 0;
}

.journey-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-muted);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.journey-timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--dark-primary), var(--cream-dark));
}

.journey-item {
    position: relative;
    padding-bottom: var(--space-lg);
}

.journey-item:last-child {
    padding-bottom: 0;
}

.journey-marker {
    position: absolute;
    left: calc(-1 * var(--space-xl) + 2px);
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-primary);
    border: 2px solid var(--cream);
}

.journey-marker.founder {
    background: var(--dark-primary);
}

.journey-marker.cofounder {
    background: var(--dark-tertiary);
}

.journey-marker.cto {
    background: var(--dark-primary);
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.2);
}

.journey-item.current .journey-marker {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(26, 26, 26, 0.1); }
}

.journey-content .journey-role {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-muted);
    background: var(--cream-light);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.journey-content h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
    color: var(--dark-primary);
}

.journey-content p {
    font-size: 0.8rem;
    color: var(--dark-light);
    line-height: 1.5;
}

/* Education Section */
.education-section {
    margin: var(--space-xl) 0;
}

.education-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-muted);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.education-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.education-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--cream-light);
    border-radius: 10px;
}

.edu-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 8px;
    flex-shrink: 0;
}

.edu-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-muted);
}

.education-item h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--dark-primary);
}

.education-item p {
    font-size: 0.8rem;
    color: var(--dark-light);
}

/* Legacy credentials styles */
.credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.credential-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-light);
    border-radius: 12px;
    flex-shrink: 0;
}

.credential-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
}

.credential h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.credential p {
    font-size: 0.875rem;
    color: var(--dark-light);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--cream-light);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--dark-primary);
    color: var(--cream-light);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* About Visual */
.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    background: var(--dark-primary);
    border-radius: 24px;
    padding: var(--space-3xl);
    max-width: 400px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
}

.visual-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.visual-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.visual-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.3) 100%);
}

.visual-content {
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-size: 4rem;
    font-weight: 700;
    color: var(--cream-light);
    line-height: 1;
    margin-bottom: var(--space-sm);
    opacity: 0.5;
}

.visual-content p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--cream-light);
    line-height: 1.6;
}

/* ============================================
   PRODUCT SECTION - HyperGraphMind
   ============================================ */
.product-section {
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

.product-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    background: var(--cream-light);
    border-radius: 24px;
    padding: var(--space-2xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dark-primary);
}

.product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-primary);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.product-video {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.product-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--dark-primary);
    color: var(--cream-light);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-primary);
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--dark-primary);
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-muted);
    margin-bottom: var(--space-xl);
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.product-features .feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--dark-muted);
}

.product-features .feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    width: fit-content;
}

.product-cta svg {
    transition: transform var(--transition-fast);
}

.product-cta:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .product-card {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .product-visual {
        order: -1;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: var(--space-md);
}

.contact-info h2 {
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 12px;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
}

.contact-method h4 {
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.contact-method a,
.contact-method p {
    font-size: 1rem;
    color: var(--dark-muted);
}

.contact-method a:hover {
    color: var(--accent-green);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream);
    border-radius: 20px;
    padding: var(--space-2xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-muted);
}

.form-group input,
.form-group textarea {
    padding: var(--space-md);
    background: var(--cream-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-primary);
    color: var(--cream-muted);
    padding: var(--space-3xl) 0;
}

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

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-brand .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.footer-brand .logo-text {
    color: var(--cream-light);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream-muted);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--cream-light);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--dark-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream-light);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-stats {
        gap: var(--space-xl);
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .clients-showcase {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .section {
        padding: var(--space-3xl) 0;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.hero-content {
    animation: fadeIn 1s ease-out;
}

/* Scroll animations - triggered by JS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
