/* ==========================================================================
   ASIM General - Visual Prototype Styles
   Modern SaaS Design | Light Theme | Pure CSS
   ========================================================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #7C3AED;
    --color-primary-light: #A78BFA;
    --color-primary-dark: #5B21B6;
    --color-primary-bg: #F5F3FF;

    --color-accent: #8400FF;
    --color-accent-light: #A855F7;

    --color-success: #10B981;
    --color-success-bg: #D1FAE5;

    --color-dark: #1F2937;
    --color-gray-900: #111827;
    --color-gray-700: #374151;
    --color-gray-600: #4B5563;
    --color-gray-500: #6B7280;
    --color-gray-400: #9CA3AF;
    --color-gray-300: #D1D5DB;
    --color-gray-200: #E5E7EB;
    --color-gray-100: #F3F4F6;
    --color-gray-50: #F9FAFB;
    --color-white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(180deg, #F5F3FF 0%, #FFFFFF 50%, #F9FAFB 100%);
    --gradient-card: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);

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

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    --transition-bounce: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Theme Colors - Light Mode */
    --theme-bg: #ffffff;
    --theme-text: #1a1a1a;
    --theme-text-secondary: #666666;
    --theme-accent: #c4956a;
    --theme-accent-dark: #a07850;
    --theme-border: rgba(200, 160, 120, 0.2);
    --theme-card-bg: rgba(255, 255, 255, 0.7);
    --theme-header-bg: rgba(255, 255, 255, 0.8);
}

/* Theme Toggle Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-border);
    border: 1px solid var(--theme-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle:hover {
    background: rgba(200, 160, 120, 0.25);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    stroke: #1a1a1a;
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle .moon-icon {
    stroke: #1a1a1a;
    opacity: 0;
    transform: rotate(-90deg);
}

/* Dark Mode Toggle States */
[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ==========================================================================
   Header & Navigation - Modern Glassmorphism Style
   ========================================================================== */

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 160, 120, 0.2);
    border-radius: 100px;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(200, 160, 120, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

.logo span {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pills {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(200, 160, 120, 0.1);
    padding: 4px;
    border-radius: 100px;
    border: 1px solid rgba(200, 160, 120, 0.15);
}

.nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 100px;
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: #1a1a1a;
    background: rgba(200, 160, 120, 0.15);
}

.nav-link.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform var(--transition-base);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1001;
}

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

.dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.dropdown-item:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item.active {
    color: var(--color-white);
    background: rgba(124, 58, 237, 0.3);
}

.nav-cta {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-dark);
    background: var(--color-white);
    padding: 10px 24px;
    border-radius: 100px;
    transition: var(--transition-base);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--space-lg);
    z-index: 999;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.mobile-nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-md) var(--space-lg);
    border-radius: 12px;
    transition: var(--transition-base);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: blur(8px);
}

/* Aurora Background - Hidden image, using canvas instead */
.hero-bg-image {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-bg {
    display: none;
}

/* Aurora Canvas */
.aurora-canvas {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
}

/* Subtle Grid Overlay */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(200, 180, 150, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 180, 150, 0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
    pointer-events: none;
}

/* Mouse Glow Effect */
.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 184, 135, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

/* Noise Texture */
.bg-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Vignette Effect */
.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(222, 184, 135, 0.1) 100%);
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: var(--space-4xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-600);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #c4956a 0%, #a07850 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666666;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 3s ease-in-out infinite;
}

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

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 14px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-bounce);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-dark);
    color: var(--color-white);
}

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

.btn-secondary {
    background: var(--color-white);
    color: var(--color-dark);
    border: 1px solid var(--color-gray-300);
}

.btn-secondary:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-400);
}

.btn-ghost {
    color: var(--color-primary);
    padding: var(--space-md) var(--space-md);
}

.btn-ghost:hover {
    background: var(--color-primary-bg);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

/* ==========================================================================
   Hero Extended (ASIRA Showcase)
   ========================================================================== */

/* Small Industry Tabs (in project card) */
.industry-tabs-small {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.industry-tab-small {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-tab-small svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.6);
    transition: stroke 0.3s ease;
}

.industry-tab-small:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.industry-tab-small:hover svg {
    stroke: white;
}

.industry-tab-small.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.industry-tab-small.active svg {
    stroke: white;
}

/* Workflow in Project Preview */
.workflow-in-project {
    transform: scale(0.75);
    transform-origin: top left;
    margin-bottom: -80px;
}

/* Industry Tabs */
.industry-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.industry-tab svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-500);
    transition: stroke 0.3s ease;
}

.industry-tab:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary);
    background: rgba(255, 255, 255, 1);
}

.industry-tab:hover svg {
    stroke: var(--color-primary);
}

.industry-tab.active {
    background: rgba(255, 255, 255, 1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}

.industry-tab.active svg {
    stroke: var(--color-primary);
}

/* Workflow Showcase */
.workflow-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    min-height: 360px;
}

.workflow-floating {
    animation: floatUp 0.8s ease-out;
}

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

.workflow-input,
.workflow-output {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.workflow-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

/* Input Card */
.input-card {
    width: 120px;
    height: 140px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px dashed rgba(200, 200, 200, 0.8);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.input-card:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.input-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gray-400);
}

.input-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    padding: 6px 10px;
    box-shadow: var(--shadow-md);
}

.input-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-primary);
}

.input-format {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

/* Main Interface Frame */
.workflow-main {
    flex: 0 0 auto;
}

.interface-frame {
    width: 560px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interface-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 100px -12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.interface-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
}

.interface-dots {
    display: flex;
    gap: 6px;
}

.interface-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-300);
}

.interface-dots span:first-child {
    background: #FF5F56;
}

.interface-dots span:nth-child(2) {
    background: #FFBD2E;
}

.interface-dots span:last-child {
    background: #27CA40;
}

.interface-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray-600);
}

.interface-export {
    background: #EF4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
}

.interface-body {
    display: flex;
    height: 280px;
}

.interface-sidebar {
    width: 140px;
    border-right: 1px solid var(--color-gray-200);
    padding: var(--space-sm);
    background: var(--color-gray-50);
}

.sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-700);
    padding: var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-sm);
}

.sidebar-title svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-gray-500);
}

.sidebar-search {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    padding: 6px 8px;
    margin-bottom: var(--space-sm);
}

.sidebar-search svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-gray-400);
}

.sidebar-search span {
    font-size: 0.65rem;
    color: var(--color-gray-400);
}

.sidebar-tree {
    font-size: 0.65rem;
    color: var(--color-gray-600);
}

.tree-item {
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tree-item.parent {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tree-arrow {
    font-size: 0.5rem;
    color: var(--color-gray-400);
}

.tree-item.child {
    padding-left: 16px;
    color: var(--color-gray-500);
}

.tree-item.active {
    background: var(--color-primary-bg);
    color: var(--color-primary);
}

.interface-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
}

.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-400);
}

.preview-placeholder svg {
    width: 64px;
    height: 64px;
    stroke: var(--color-gray-300);
}

.preview-placeholder span {
    font-size: 0.8rem;
}

.interface-steps {
    width: 140px;
    border-left: 1px solid var(--color-gray-200);
    padding: var(--space-sm);
    background: var(--color-gray-50);
}

.steps-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-700);
    padding: var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-sm);
}

.steps-title svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-gray-500);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    font-size: 0.65rem;
    color: var(--color-gray-600);
    border-radius: var(--radius-sm);
}

.step-item.active {
    background: var(--color-primary-bg);
    color: var(--color-primary);
}

.step-check {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    font-size: 0.5rem;
    font-weight: bold;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gray-300);
    border-radius: 50%;
    margin: 0 3px;
}

.step-item.active .step-dot {
    background: var(--color-primary);
}

/* Output Devices */
.output-devices {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.output-document {
    width: 100px;
    height: 130px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transform: rotate(3deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.output-document:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.document-header {
    padding: 8px;
    border-bottom: 1px solid var(--color-gray-100);
}

.doc-lines {
    display: flex;
    gap: 4px;
}

.doc-lines span {
    height: 2px;
    background: var(--color-gray-200);
    border-radius: 1px;
}

.doc-lines span:first-child {
    width: 20px;
}

.doc-lines span:nth-child(2) {
    width: 30px;
}

.doc-lines span:last-child {
    width: 15px;
}

.document-body {
    padding: 8px;
}

.doc-title {
    height: 6px;
    width: 60%;
    background: var(--color-gray-200);
    border-radius: 3px;
    margin-bottom: 6px;
}

.doc-line {
    height: 3px;
    background: var(--color-gray-100);
    border-radius: 2px;
    margin-bottom: 4px;
}

.doc-line.short {
    width: 70%;
}

.doc-image {
    width: 100%;
    height: 40px;
    background: var(--color-gray-100);
    border-radius: var(--radius-sm);
    margin-top: 8px;
}

.document-logo {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.document-logo img {
    width: 100%;
    filter: grayscale(1);
}

.output-tablet {
    width: 90px;
    height: 120px;
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    padding: 6px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.output-tablet:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tablet-header {
    height: 16px;
    background: var(--color-primary);
}

.tablet-content {
    padding: 8px;
}

.tablet-card {
    width: 100%;
    height: 40px;
    background: var(--color-gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.tablet-text {
    height: 4px;
    width: 80%;
    background: var(--color-gray-200);
    border-radius: 2px;
    margin-bottom: 8px;
}

.tablet-btn {
    height: 12px;
    width: 50%;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
}


/* Industries Responsive */
@media (max-width: 1024px) {
    .workflow-showcase {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .workflow-input,
    .workflow-output {
        flex-direction: column;
    }

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

    .output-devices {
        flex-direction: row;
    }

    .interface-frame {
        width: 100%;
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    .industry-tabs {
        flex-wrap: wrap;
    }

    .industry-tab {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
    }

    .industry-tab svg {
        width: 16px;
        height: 16px;
    }

    .interface-frame {
        width: 100%;
    }

    .interface-sidebar,
    .interface-steps {
        display: none;
    }

    .input-card {
        width: 100px;
        height: 120px;
    }
}

/* ==========================================================================
   Projects Section
   ========================================================================== */

.projects {
    padding: var(--space-4xl) 0;
    background: rgba(0, 0, 0, 0.5);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a78bfa;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    box-shadow:
        0 4px 16px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    line-height: 1.7;
}

/* Project Card */
.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:last-child {
    border-bottom: none;
}

.project-card.reverse {
    direction: rtl;
}

.project-card.reverse > * {
    direction: ltr;
}

.project-badge {
    display: inline-block;
    background: var(--color-primary-bg);
    color: var(--color-primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.project-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.project-description {
    color: var(--color-gray-300);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.project-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.project-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    color: var(--color-gray-200);
    font-size: 0.9375rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Preview Frame */
.project-preview {
    perspective: 1000px;
}

.preview-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.preview-frame:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
}

.preview-frame.dark {
    background: #0A0A0F;
    border-color: rgba(255, 255, 255, 0.1);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-frame.dark .preview-header {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-300);
}

.preview-dots span:first-child { background: #FF5F56; }
.preview-dots span:nth-child(2) { background: #FFBD2E; }
.preview-dots span:last-child { background: #27CA3F; }

.preview-url {
    flex: 1;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-gray-300);
    font-family: monospace;
}

.preview-frame.dark .preview-url {
    color: rgba(255, 255, 255, 0.4);
}

.preview-content {
    padding: var(--space-xl);
    min-height: 300px;
}

.preview-screenshot {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

/* Dashboard Mockup (Mini Version for Project Cards) */
.dashboard-mockup {
    display: flex;
    background: #0a0a0f;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 280px;
}

.mock-sidebar-mini {
    width: 48px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sidebar-logo-mini {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo-mini img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-icon svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.4);
}

.sidebar-icon.active {
    background: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
}

.sidebar-icon.active svg {
    stroke: #a78bfa;
}

.mock-content {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.mock-search {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-search svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.4);
}

.mock-stats-row {
    display: flex;
    gap: 6px;
}

.mock-stat {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-stat .stat-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.mock-stat .stat-txt {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-stat.blue { border-left: 3px solid #3b82f6; }
.mock-stat.purple { border-left: 3px solid #8b5cf6; }
.mock-stat.green { border-left: 3px solid #22c55e; }
.mock-stat.orange { border-left: 3px solid #f59e0b; }

.mock-progress-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px;
}

.mock-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.progress-title {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
}

.progress-percent {
    font-size: 0.65rem;
    font-weight: 600;
    color: #a78bfa;
}

.mock-progress-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.mock-progress-fill {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    border-radius: 3px;
}

.mock-cards-row {
    display: flex;
    gap: 6px;
    flex: 1;
}

.mock-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-icon {
    font-size: 0.75rem;
}

.item-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

.card-avatars {
    display: flex;
    align-items: center;
    gap: -4px;
}

.mini-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 2px solid #0a0a0f;
    margin-right: -6px;
}

.avatar-count {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 8px;
}

/* ASIRA Mini Mockup (for Project Cards) */
.asira-mockup-mini {
    display: flex;
    background: #0d1117;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 280px;
}

.asira-sidebar-mini {
    width: 48px;
    background: #0f172a;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.asira-logo-mini {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asira-logo-mini img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.asira-nav-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-icon svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.4);
}

.nav-icon.active {
    background: #3b82f6;
}

.nav-icon.active svg {
    stroke: #fff;
}

.asira-content-mini {
    flex: 1;
    background: #161b22;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.asira-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.asira-title-mini {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.asira-search-mini {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asira-search-mini svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.4);
}

.asira-stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.mini-stat {
    padding: 10px 8px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-stat-num {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.mini-stat-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.mini-stat.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.mini-stat.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.mini-stat.yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(234, 179, 8, 0.1));
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.mini-stat.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.asira-tasks-mini {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.tasks-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.tasks-filter {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.tasks-empty-mini {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tasks-empty-mini svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.15);
}

.tasks-empty-mini span {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
}

/* AI Solutions Frame with Code Demo */
.code-demo {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    padding: var(--space-xl) !important;
    min-height: 300px;
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', Monaco, monospace;
}

.code-editor {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-line {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 2px 0;
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0;
    animation: fadeInLine 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.4s; }
.code-line:nth-child(4) { animation-delay: 0.6s; }
.code-line:nth-child(5) { animation-delay: 0.8s; }
.code-line:nth-child(6) { animation-delay: 1.0s; }
.code-line:nth-child(7) { animation-delay: 1.2s; }
.code-line:nth-child(8) { animation-delay: 1.4s; }
.code-line:nth-child(9) { animation-delay: 1.6s; }
.code-line:nth-child(10) { animation-delay: 2.0s; }

@keyframes fadeInLine {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.line-number {
    color: rgba(255, 255, 255, 0.3);
    min-width: 24px;
    text-align: right;
    user-select: none;
}

.code-keyword {
    color: #ff7b72;
}

.code-variable {
    color: #79c0ff;
}

.code-string {
    color: #a5d6ff;
}

.code-function {
    color: #d2a8ff;
}

.code-property {
    color: #7ee787;
}

.code-comment {
    color: #8b949e;
    font-style: italic;
}

.cursor {
    color: #58a6ff;
    animation: blink 1s infinite;
}

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

.typing-line {
    background: rgba(88, 166, 255, 0.1);
    margin: 0 -var(--space-lg);
    padding-left: var(--space-lg) !important;
    padding-right: var(--space-lg) !important;
    border-left: 2px solid #58a6ff;
}

.output-line .code-comment {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { color: #8b949e; }
    50% { color: #7ee787; }
}

.code-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.stat-dot.green {
    background: #7ee787;
    box-shadow: 0 0 10px #7ee787;
}

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

.stat-value {
    color: #58a6ff;
    font-weight: 600;
}

/* Placeholder Styles */
.preview-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.placeholder-skeleton {
    height: 24px;
    background: linear-gradient(90deg, var(--color-gray-100) 25%, var(--color-gray-50) 50%, var(--color-gray-100) 75%);
    background-size: 200% 100%;
    border-radius: var(--radius-md);
    animation: shimmer 1.5s infinite;
}

.placeholder-skeleton.short {
    width: 60%;
    height: 16px;
}

.preview-placeholder.dark .placeholder-skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.placeholder-card {
    aspect-ratio: 4/3;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--color-gray-300);
}

.preview-placeholder.dark .placeholder-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.placeholder-label {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--color-gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-placeholder.dark .placeholder-label {
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    padding: var(--space-4xl) 0;
    background: rgba(0, 0, 0, 0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: start;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--color-gray-300);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-bounce);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.875rem;
    color: var(--color-gray-300);
    line-height: 1.6;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition-bounce);
}

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

.stat-card.large {
    grid-column: span 2;
    background: var(--gradient-primary);
    border: none;
    padding: var(--space-2xl);
}

.stat-card.large .stat-value,
.stat-card.large .stat-label {
    color: var(--color-white);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-card.large .stat-value {
    font-size: 3.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-300);
    font-weight: 500;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta {
    padding: var(--space-4xl) 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-4xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-actions .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.cta-actions .btn-primary:hover {
    background: var(--color-gray-100);
}

.cta-actions .btn-ghost {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    margin-top: var(--space-lg);
    max-width: 300px;
    line-height: 1.7;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    color: var(--color-gray-300);
}

.footer-links a {
    display: block;
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-gray-400);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Modal
   ========================================================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-gray-100);
    color: var(--color-gray-500);
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--color-gray-200);
    color: var(--color-dark);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Contact Modal
   ========================================================================== */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.contact-modal.active {
    display: flex;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.contact-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(124, 58, 237, 0.1);
}

.contact-modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
    z-index: 10;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-modal-close svg {
    width: 20px;
    height: 20px;
}

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

.contact-info {
    padding: var(--space-3xl);
    background: rgba(124, 58, 237, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

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

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

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span:not(.contact-label) {
    color: white;
    font-size: 0.9375rem;
}

.contact-item a:hover {
    color: var(--color-primary-light);
}

/* Contact Form */
.contact-form {
    padding: var(--space-3xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    color: white;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

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

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a2e;
    color: white;
}

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

.form-submit {
    width: 100%;
    position: relative;
}

.form-submit .btn-loading {
    display: none;
}

.form-submit.loading .btn-text,
.form-submit.loading .btn-arrow {
    opacity: 0;
}

.form-submit.loading .btn-loading {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* DSGVO Checkbox */
.dsgvo-group {
    margin-top: var(--space-md);
}

.dsgvo-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.dsgvo-checkbox input[type="checkbox"] {
    display: none;
}

.dsgvo-checkbox .checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.dsgvo-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #10b981;
    border-color: #10b981;
}

.dsgvo-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.dsgvo-text {
    line-height: 1.5;
}

.dsgvo-text a {
    color: #6366f1;
    text-decoration: underline;
}

.dsgvo-text a:hover {
    color: #818cf8;
}

.dsgvo-hint {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-xs);
    margin-left: 26px;
}

/* Form Success with Animated Checkmark */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-lg);
    padding: var(--space-2xl);
    min-height: 400px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
}

.form-success.show {
    display: flex;
    animation: successFadeIn 0.6s ease forwards;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-checkmark {
    width: 120px;
    height: 120px;
    position: relative;
    animation: checkmarkBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

@keyframes checkmarkBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-checkmark::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: successPulse 2s ease-in-out infinite;
}

.success-checkmark::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: successRing 1.5s ease-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}

@keyframes successRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    stroke-width: 2;
    stroke: #10b981;
    stroke-miterlimit: 10;
    position: relative;
    z-index: 1;
}

.checkmark-circle-bg {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: circleStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
    fill: rgba(16, 185, 129, 0.15);
}

.checkmark-check {
    stroke: #10b981;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 4;
    stroke-linecap: round;
    animation: checkStroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.7s forwards;
}

@keyframes circleStroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkStroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #10b981;
    margin: 0;
    animation: successSlideUp 0.5s ease 0.3s both;
}

.success-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 320px;
    line-height: 1.6;
    animation: successSlideUp 0.5s ease 0.4s both;
}

[data-theme="light"] .success-text {
    color: rgba(0, 0, 0, 0.7);
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

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

    .project-card.reverse {
        direction: ltr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-2xl);
    }

    .cta-content p {
        max-width: none;
    }

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

@media (max-width: 768px) {
    .header {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 20px;
    }

    .header .container {
        height: 56px;
    }

    .nav, .nav-cta {
        display: none;
    }

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

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

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

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

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

    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: var(--space-xl);
    }

    .contact-form {
        padding: var(--space-xl);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stat-card.large {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .project-actions {
        flex-direction: column;
    }

    .project-actions .btn {
        width: 100%;
    }

    .preview-content {
        padding: var(--space-md);
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Smooth page transitions */
.page-transition {
    animation: fadeIn 0.5s ease;
}

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

/* ============================================
   PARTNERS ULTRA PREMIUM - Bento Grid Design
   ============================================ */

.partners-ultra {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.partners-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
    transition: background 0.3s ease;
}

[data-theme="dark"] .partners-ultra::before {
    background: rgba(0, 0, 0, 0.6);
}

.partners-ultra > .container {
    position: relative;
    z-index: 1;
}

.partners-bg-glow {
    display: none;
}

/* Floating Label */
.partners-floating-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.label-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(222, 184, 135, 0.6), transparent);
}

.partners-floating-label span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #a08060;
    text-transform: uppercase;
}

/* Hero Text */
.partners-hero-text {
    text-align: center;
    margin-bottom: 60px;
}

.partners-hero-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.partners-hero-text p {
    font-size: 1.125rem;
    color: #666666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid */
.partners-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Bento Card Base */
.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(200, 160, 120, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 160, 120, 0.4);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 30px rgba(200, 160, 120, 0.15);
}

/* Bento Glow */
.bento-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bento-glow.blue {
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.bento-glow.purple {
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.bento-glow.gradient {
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
}

.bento-card:hover .bento-glow {
    opacity: 1;
}

/* Bento Content */
.bento-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Bento Badge */
.bento-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    background: rgba(200, 160, 120, 0.1);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a08060;
    margin-bottom: 20px;
}

/* Logo Area */
.bento-logo-area {
    margin-bottom: 20px;
}

.logo-3d {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 160, 120, 0.08);
    border-radius: 18px;
    border: 1px solid rgba(200, 160, 120, 0.15);
    transition: all 0.4s ease;
}

.logo-3d svg {
    width: 48px;
    height: 48px;
}

.bento-card:hover .logo-3d {
    transform: scale(1.05);
    border-color: rgba(200, 160, 120, 0.3);
    box-shadow: 0 8px 32px rgba(200, 160, 120, 0.15);
}

.bento-main:hover .logo-3d {
    box-shadow: 0 8px 32px rgba(200, 160, 120, 0.2);
}

.bento-secondary:hover .logo-3d {
    box-shadow: 0 8px 32px rgba(180, 140, 100, 0.2);
}

/* Bento Info */
.bento-info {
    flex: 1;
}

.bento-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

.bento-type {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #a08060;
    margin-bottom: 12px;
}

.bento-info p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Bento Link */
.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #888888;
    transition: all 0.3s ease;
}

.bento-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-link {
    color: #1a1a1a;
}

.bento-card:hover .bento-link svg {
    transform: translateX(4px);
}

/* Main Card - Spans 2 rows */
.bento-main {
    grid-row: span 2;
}

/* Stats Card */
.bento-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 180px;
}

.bento-stats .bento-content {
    align-items: center;
    justify-content: center;
}

.stats-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.stats-number .num {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c4956a 0%, #a07850 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stats-number .plus {
    font-size: 2rem;
    font-weight: 700;
    color: #a07850;
    margin-left: 2px;
}

.stats-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666666;
    margin-bottom: 16px;
}

.stats-bar {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.bar-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a78bfa);
    border-radius: 2px;
    animation: bar-grow 2s ease-out infinite;
}

@keyframes bar-grow {
    0%, 100% { width: 70%; }
    50% { width: 85%; }
}

.stats-sub {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999999;
}

/* CTA Card */
.bento-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: rgba(99, 102, 241, 0.2);
    cursor: pointer;
}

.bento-cta .bento-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.cta-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.cta-icon svg {
    width: 24px;
    height: 24px;
    stroke: #a78bfa;
}

.bento-cta:hover .cta-icon {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.25);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.bento-cta span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.bento-cta:hover span {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .partners-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bento-main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-secondary {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .partners-ultra {
        padding: 80px 0;
    }

    .partners-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bento-main,
    .bento-secondary {
        grid-column: span 1;
    }

    .partners-hero-text h2 {
        font-size: 2rem;
    }

    .bento-content {
        padding: 20px;
    }

    .stats-number .num {
        font-size: 2.5rem;
    }
}

/* Legacy placeholder */
@media (max-width: 900px) {
    .partners-showcase-grid-old {
        grid-template-columns: 1fr;
        opacity: 0.5;
        transform: none;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for readability */
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 0;
}

.testimonials > .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title,
.testimonials .section-subtitle,
.testimonials .trust-number,
.testimonials .trust-label,
.testimonials .testimonial-text,
.testimonials .testimonial-info h4,
.testimonials .testimonial-info span,
.testimonials .testimonial-verified,
.testimonials .trust-badge span {
    color: #fff;
}

.testimonials .section-subtitle,
.testimonials .trust-label,
.testimonials .testimonial-info span,
.testimonials .trust-badge span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Trust Stats */
.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
    padding: var(--space-md) var(--space-xl);
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.trust-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -var(--space-xl);
    padding: var(--space-md) 0;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.testimonials-carousel::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-primary) 0%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: var(--space-lg);
    animation: scrollTestimonials 35s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Card */
.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(99, 102, 241, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px 0;
}

.testimonial-info span {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating svg {
    width: 14px;
    height: 14px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 var(--space-lg) 0;
}

.testimonial-footer {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: #10b981;
}

.testimonial-verified svg {
    width: 14px;
    height: 14px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    stroke: #6366f1;
}

.trust-badge span {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .trust-stats {
        gap: var(--space-md);
    }

    .trust-stat {
        padding: var(--space-sm) var(--space-md);
    }

    .trust-number {
        font-size: 1.75rem;
    }

    .trust-label {
        font-size: 0.75rem;
    }

    .trust-divider {
        height: 30px;
    }

    .testimonial-card {
        width: 320px;
        padding: var(--space-lg);
    }

    .testimonials-carousel::before,
    .testimonials-carousel::after {
        width: 60px;
    }

    .trust-badges {
        gap: var(--space-sm);
    }

    .trust-badge {
        padding: var(--space-xs) var(--space-sm);
    }

    .trust-badge span {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   DARK MODE STYLES
   ========================================================================== */

[data-theme="dark"] {
    --theme-bg: #030303;
    --theme-text: #ffffff;
    --theme-text-secondary: rgba(255, 255, 255, 0.6);
    --theme-accent: #c4956a;
    --theme-accent-dark: #a07850;
    --theme-border: rgba(200, 160, 120, 0.15);
    --theme-card-bg: rgba(255, 255, 255, 0.02);
    --theme-header-bg: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body {
    background-color: #030303;
    color: #ffffff;
}

/* Dark Mode - Header */
[data-theme="dark"] .header {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(200, 160, 120, 0.15);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .logo {
    color: #ffffff;
}

[data-theme="dark"] .logo-icon {
    filter: none;
}

[data-theme="dark"] .nav-pills {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .theme-toggle svg {
    stroke: #ffffff;
}

/* Dark Mode - Hero */
[data-theme="dark"] .hero-title {
    color: #ffffff;
}

[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Dark Mode - Background Effects */
[data-theme="dark"] .bg-grid {
    background-image:
        linear-gradient(rgba(200, 160, 120, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 160, 120, 0.05) 1px, transparent 1px);
}

[data-theme="dark"] .bg-vignette {
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
}

[data-theme="dark"] .bg-noise {
    opacity: 0.2;
}

/* Dark Mode - Partners Section */
[data-theme="dark"] .partners-floating-label span {
    color: rgba(200, 160, 120, 0.7);
}

[data-theme="dark"] .label-line {
    background: linear-gradient(90deg, transparent, rgba(200, 160, 120, 0.4), transparent);
}

[data-theme="dark"] .partners-hero-text h2 {
    color: #ffffff;
}

[data-theme="dark"] .partners-hero-text p {
    color: rgba(255, 255, 255, 0.5);
}

/* Dark Mode - Bento Cards */
[data-theme="dark"] .bento-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

[data-theme="dark"] .bento-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(200, 160, 120, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .bento-badge {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .logo-3d {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .bento-card:hover .logo-3d {
    border-color: rgba(200, 160, 120, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .bento-info h3 {
    color: #ffffff;
}

[data-theme="dark"] .bento-type {
    color: rgba(200, 160, 120, 0.8);
}

[data-theme="dark"] .bento-info p {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .bento-link {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .bento-card:hover .bento-link {
    color: #ffffff;
}

[data-theme="dark"] .stats-label {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .stats-sub {
    color: rgba(255, 255, 255, 0.3);
}

/* Dark Mode - Sections */
[data-theme="dark"] .section-tag {
    color: rgba(200, 160, 120, 0.8);
}

[data-theme="dark"] .section-title {
    color: #ffffff;
}

/* Dark Mode - Mobile Menu */
[data-theme="dark"] .mobile-nav {
    background: rgba(0, 0, 0, 0.95);
}

[data-theme="dark"] .mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   PARTNER MODAL
   ========================================================================== */

.partner-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.partner-modal.active {
    opacity: 1;
    visibility: visible;
}

.partner-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.partner-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.partner-modal.active .partner-modal-content {
    transform: translateY(0) scale(1);
}

[data-theme="dark"] .partner-modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.partner-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.partner-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: #666;
}

[data-theme="dark"] .partner-modal-close {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .partner-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .partner-modal-close svg {
    stroke: #aaa;
}

.partner-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.partner-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(200, 160, 120, 0.15) 0%, rgba(180, 140, 100, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-modal-icon svg {
    width: 32px;
    height: 32px;
    stroke: #a08060;
}

.partner-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

[data-theme="dark"] .partner-modal-header h3 {
    color: #ffffff;
}

.partner-modal-header p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

[data-theme="dark"] .partner-modal-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Form Styles */
.partner-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.partner-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.partner-form label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
}

[data-theme="dark"] .partner-form label {
    color: rgba(255, 255, 255, 0.7);
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid rgba(200, 160, 120, 0.3);
    border-radius: 12px;
    background: #fff;
    color: #1a1a1a;
    transition: all 0.2s ease;
    font-family: inherit;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
    outline: none;
    border-color: #a08060;
    box-shadow: 0 0 0 3px rgba(200, 160, 120, 0.15);
}

[data-theme="dark"] .partner-form input,
[data-theme="dark"] .partner-form select,
[data-theme="dark"] .partner-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

[data-theme="dark"] .partner-form input::placeholder,
[data-theme="dark"] .partner-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.partner-form textarea {
    resize: vertical;
    min-height: 100px;
}

.partner-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #a08060 0%, #8a6a4a 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.partner-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160, 128, 96, 0.3);
}

.partner-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.partner-submit:hover svg {
    transform: translateX(4px);
}

/* Success State */
.partner-form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    animation: partnerSuccessFadeIn 0.5s ease forwards;
}

.partner-form-success.active {
    display: flex;
}

@keyframes partnerSuccessFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.partner-form-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    animation: partnerIconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.partner-form-success .success-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.3);
    animation: partnerRingExpand 1s ease 0.5s infinite;
}

@keyframes partnerIconPop {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes partnerRingExpand {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.partner-form-success svg {
    width: 40px;
    height: 40px;
    stroke: #10b981;
    stroke-width: 2.5;
}

.partner-form-success h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    animation: partnerTextSlide 0.4s ease 0.4s both;
}

[data-theme="dark"] .partner-form-success h4 {
    color: #ffffff;
}

.partner-form-success p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    animation: partnerTextSlide 0.4s ease 0.5s both;
}

[data-theme="dark"] .partner-form-success p {
    color: rgba(255, 255, 255, 0.6);
}

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

.partner-form.hidden {
    display: none;
}
