:root {
    --color-bg: #0a0a0f;
    --color-surface: #13131a;
    --color-primary: #00ff88;
    --color-secondary: #ff0080;
    --color-accent: #00d4ff;
    --color-text: #e8e8f0;
    --color-text-dim: #8a8a9f;
    --color-border: #2a2a35;
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'JetBrains Mono', monospace;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Development Notice Popup */
.dev-notice-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: overlayFadeIn 0.3s ease-out;
}

.dev-notice-overlay.hidden {
    display: none;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dev-notice-popup {
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
    max-width: 600px;
    width: 100%;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    box-shadow: 0 20px 80px rgba(0, 255, 136, 0.3);
    animation: popupSlideIn 0.5s ease-out;
    position: relative;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dev-notice-popup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dev-notice-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.dev-notice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    }
}

.dev-notice-icon svg {
    color: var(--color-primary);
}

.dev-notice-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.dev-notice-body {
    padding: 2.5rem 3rem;
}

.dev-notice-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
}

.dev-notice-body strong {
    color: var(--color-primary);
    font-weight: 700;
}

.dev-notice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dev-notice-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--color-text-dim);
}

.dev-notice-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.dev-notice-footer {
    padding: 2rem 3rem 3rem;
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--color-border);
}

.dev-notice-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    border: none;
}

.dev-notice-btn.secondary {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
}

.dev-notice-btn.secondary:hover {
    border-color: var(--color-text);
    transform: translateY(-3px);
}

.dev-notice-btn.primary {
    background: var(--color-primary);
    color: var(--color-bg);
    border: 2px solid var(--color-primary);
}

.dev-notice-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
    gap: 1rem;
}

@media (max-width: 768px) {
    .dev-notice-popup {
        max-width: 100%;
    }
    
    .dev-notice-header {
        padding: 2rem 2rem 1.5rem;
    }
    
    .dev-notice-header h2 {
        font-size: 1.5rem;
    }
    
    .dev-notice-body {
        padding: 2rem;
    }
    
    .dev-notice-footer {
        padding: 1.5rem 2rem 2rem;
        flex-direction: column;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-bracket {
    color: var(--color-primary);
}

.logo-text {
    color: var(--color-text);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.nav-cta:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.3) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(50px, -50px) scale(1.1);
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 136, 0.03) 50%,
        transparent 100%
    );
    background-size: 100% 4px;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-primary);
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.title-line {
    animation: slideInLeft 0.8s ease-out backwards;
    position: relative;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.title-glitch {
    position: relative;
    display: inline-block;
}

.title-glitch::before,
.title-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.title-glitch::before {
    color: var(--color-accent);
    animation: glitchTop 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.title-glitch::after {
    color: var(--color-secondary);
    animation: glitchBottom 2.5s infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitchTop {
    0%, 90%, 100% { opacity: 0; transform: translate(0); }
    92% { opacity: 0.8; transform: translate(-2px, -2px); }
    94% { opacity: 0.8; transform: translate(2px, 1px); }
}

@keyframes glitchBottom {
    0%, 85%, 100% { opacity: 0; transform: translate(0); }
    87% { opacity: 0.8; transform: translate(2px, 2px); }
    89% { opacity: 0.8; transform: translate(-1px, -1px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-highlight {
    color: var(--color-primary);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-mini-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.stat-mini-label {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-mini-divider {
    width: 1px;
    height: 30px;
    background: var(--color-border);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    position: relative;
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover .btn-glow {
    opacity: 1;
    animation: btnShine 1.5s ease-in-out infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
}

/* Hero Visual - Dashboard */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.dashboard-container {
    width: 100%;
    height: 100%;
    background: rgba(19, 19, 26, 0.6);
    border: 2px solid var(--color-border);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    animation: slideInRight 1s ease-out 0.8s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.dash-title svg {
    color: var(--color-primary);
}

.dash-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    height: calc(100% - 80px);
}

.dash-widget {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 1rem;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: var(--transition);
    animation: fadeInScale 0.6s ease-out backwards;
}

.dash-widget:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.widget-1 { animation-delay: 0.9s; }
.widget-2 { animation-delay: 1s; }
.widget-3 { animation-delay: 1.1s; }
.widget-4 { animation-delay: 1.2s; }
.widget-5 { animation-delay: 1.3s; }
.widget-6 { animation-delay: 1.4s; }

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.widget-label {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-header svg {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
}

.widget-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.widget-change {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.widget-change.positive {
    color: var(--color-primary);
}

.widget-change.negative {
    color: var(--color-secondary);
}

.widget-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: var(--color-primary);
    opacity: 0.6;
    transition: var(--transition);
    animation: barGrow 1s ease-out backwards;
}

.dash-widget:hover .chart-bar {
    opacity: 1;
}

@keyframes barGrow {
    from { height: 0 !important; }
}

.widget-progress {
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--color-primary);
    animation: progressGrow 1.5s ease-out backwards 1.2s;
}

@keyframes progressGrow {
    from { width: 0 !important; }
}

.widget-mini-chart {
    height: 30px;
    margin-top: 0.5rem;
}

.widget-mini-chart svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-label {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

.status-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.activity-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
}

.quick-btn {
    flex: 1;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.quick-btn:hover {
    border-color: var(--color-primary);
    background: rgba(0, 255, 136, 0.1);
    color: var(--color-primary);
}

.quick-btn svg {
    color: var(--color-accent);
}

.quick-btn:hover svg {
    color: var(--color-primary);
}

.visual-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 10;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 130%;
    height: 130%;
    animation: ringPulse 4s ease-in-out infinite 1.3s;
}

.ring-3 {
    width: 160%;
    height: 160%;
    animation: ringPulse 4s ease-in-out infinite 2.6s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--color-bg);
    border: 3px solid var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4);
    z-index: 2;
}

.core-text {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.core-subtext {
    font-size: 0.65rem;
    color: var(--color-text-dim);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.floating-card {
    position: absolute;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
    overflow: visible;
}

.card-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.floating-card:hover .card-glow {
    opacity: 1;
}

.floating-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    z-index: 10;
}

.card-1 {
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    min-height: 170px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: 5%;
    width: 170px;
    min-height: 170px;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    width: 190px;
    min-height: 190px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    animation-delay: 2s;
}

.card-4 {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    width: 170px;
    min-height: 170px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    animation-delay: 3s;
}

.card-5 {
    bottom: 15%;
    left: 5%;
    width: 180px;
    min-height: 180px;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    animation-delay: 4s;
}

.card-6 {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    min-height: 190px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    color: var(--color-primary);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.card-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
    text-align: center;
    line-height: 1.2;
}

.card-desc {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    height: 2px;
    opacity: 0.3;
    animation: lineFlow 3s ease-in-out infinite;
}

.line-1 {
    width: 80px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.line-2 {
    width: 100px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.line-3 {
    width: 120px;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
}

.line-4 {
    width: 100px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.line-5 {
    width: 90px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.line-6 {
    width: 80px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.data-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 3s;
}

.particle:nth-child(4) {
    bottom: 30%;
    left: 50%;
    animation-delay: 4.5s;
}

.particle:nth-child(5) {
    top: 70%;
    right: 40%;
    animation-delay: 6s;
}

.particle:nth-child(6) {
    top: 10%;
    left: 60%;
    animation-delay: 7.5s;
}

.particle:nth-child(7) {
    top: 25%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(8) {
    bottom: 20%;
    right: 30%;
    animation-delay: 5s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) scale(1.5);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-dim);
    animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
}

/* Main Product Section */
.main-product {
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.main-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-visual {
    position: relative;
    height: 500px;
}

.erp-modules {
    position: relative;
    width: 100%;
    height: 100%;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connect-line {
    stroke-width: 2;
    stroke-dasharray: 8, 4;
    animation: lineDash 20s linear infinite, lineGlow 3s ease-in-out infinite;
}

@keyframes lineDash {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.4;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 3;
    }
}

.h-line-1 { animation-delay: 0s; }
.h-line-2 { animation-delay: 0.5s; }
.h-line-3 { animation-delay: 1s; }
.h-line-4 { animation-delay: 1.5s; }
.h-line-5 { animation-delay: 2s; }
.h-line-6 { animation-delay: 2.5s; }

.v-line-1 { animation-delay: 0.3s; }
.v-line-2 { animation-delay: 0.8s; }
.v-line-3 { animation-delay: 1.3s; }
.v-line-4 { animation-delay: 1.8s; }
.v-line-5 { animation-delay: 2.3s; }
.v-line-6 { animation-delay: 2.8s; }

.data-dot {
    filter: drop-shadow(0 0 8px var(--color-primary));
}

.module-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 140px;
    background: var(--color-bg);
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4), inset 0 0 30px rgba(0, 255, 136, 0.1);
    z-index: 10;
}

.center-rings {
    position: absolute;
    inset: 0;
}

.center-ring {
    position: absolute;
    inset: -15px;
    border: 2px solid var(--color-primary);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    opacity: 0;
}

.ring-1 {
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    animation: ringPulse 3s ease-in-out infinite 1.5s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.center-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.center-subtitle {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    font-weight: 400;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.module-node {
    position: absolute;
    background: var(--color-surface);
    border: 2px solid var(--color-accent);
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    animation: fadeInScale 0.6s ease-out backwards;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.module-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 6px;
    flex-shrink: 0;
}

.module-icon svg {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
}

.module-node:hover {
    border-color: var(--color-primary);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 255, 136, 0.4);
    z-index: 15;
}

.module-node:hover .module-icon {
    background: rgba(0, 255, 136, 0.25);
}

.module-node:hover .module-icon svg {
    color: var(--color-primary);
}

/* Left Side Modules */
.node-left-1 {
    top: 15%;
    left: 5%;
}

.node-left-2 {
    top: 45%;
    left: 5%;
}

.node-left-3 {
    bottom: 10%;
    left: 5%;
}

/* Right Side Modules */
.node-right-1 {
    top: 15%;
    right: 5%;
}

.node-right-2 {
    top: 45%;
    right: 5%;
}

.node-right-3 {
    bottom: 15%;
    right: 5%;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-headline {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.product-text {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.feature-icon {
    color: var(--color-primary);
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Side Products Section */
.side-products {
    background: var(--color-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.product-card {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 3rem;
    position: relative;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.product-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .card-corner {
    opacity: 1;
}

.card-header {
    margin-bottom: 2rem;
}

.card-icon-large {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card-icon-large svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.card-body {
    margin-bottom: 2rem;
}

.card-description {
    color: var(--color-text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
}

.card-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.card-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.card-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.card-btn {
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.card-btn:hover {
    gap: 1rem;
}

.btn-arrow {
    transition: var(--transition);
}

/* Pricing Section */
.pricing {
    background: var(--color-surface);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-description {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, var(--color-bg) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 255, 136, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    color: var(--color-primary);
    transition: var(--transition);
}

.pricing-card:hover .pricing-icon {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.price-amount-free {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-dim);
}

.price-custom {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--color-text-dim);
    font-size: 0.95rem;
}

.pricing-features li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.pricing-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.pricing-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.pricing-card.featured .pricing-btn {
    background: var(--color-primary);
    color: var(--color-bg);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--color-text);
    border-color: var(--color-text);
}

/* AI Features Section */
.ai-section {
    background: var(--color-surface);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.ai-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: aiGlow 8s ease-in-out infinite;
}

@keyframes aiGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.ai-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.ai-text {
    position: relative;
    z-index: 2;
}

.ai-headline {
    margin-bottom: 2rem;
}

.ai-title-line {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    animation: slideInLeft 0.8s ease-out;
}

.ai-title-sub {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    margin-top: 1rem;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.ai-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text-dim);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ai-feature-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    padding: 2rem;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: var(--transition);
    animation: fadeInScale 0.6s ease-out backwards;
}

.ai-feature-card:nth-child(1) { animation-delay: 0.5s; }
.ai-feature-card:nth-child(2) { animation-delay: 0.6s; }
.ai-feature-card:nth-child(3) { animation-delay: 0.7s; }
.ai-feature-card:nth-child(4) { animation-delay: 0.8s; }
.ai-feature-card:nth-child(5) { animation-delay: 0.9s; }
.ai-feature-card:nth-child(6) { animation-delay: 1s; }

.ai-feature-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.3);
}

.ai-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 128, 0.1);
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.ai-feature-card:hover .ai-feature-icon {
    background: rgba(255, 0, 128, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.ai-feature-icon svg {
    color: var(--color-secondary);
}

.ai-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.ai-feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-dim);
}

/* AI Visual */
.ai-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.ai-brain {
    position: relative;
    width: 400px;
    height: 400px;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--color-bg);
    border: 3px solid var(--color-secondary);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255, 0, 128, 0.5);
    z-index: 10;
}

.core-pulse {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--color-secondary);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    animation: corePulse 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.brain-icon {
    color: var(--color-secondary);
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6));
    animation: brainPulse 4s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.neural-network {
    position: absolute;
    inset: 0;
}

.neural-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--color-secondary);
    border: 2px solid var(--color-bg);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-1 { top: 10%; left: 10%; animation-delay: 0s; }
.node-2 { top: 10%; right: 10%; animation-delay: 0.5s; }
.node-3 { top: 50%; left: 0%; animation-delay: 1s; }
.node-4 { top: 50%; right: 0%; animation-delay: 1.5s; }
.node-5 { bottom: 10%; left: 10%; animation-delay: 2s; }
.node-6 { bottom: 10%; right: 10%; animation-delay: 2.5s; }
.node-7 { top: 0%; left: 50%; animation-delay: 3s; }
.node-8 { bottom: 0%; left: 50%; animation-delay: 3.5s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.neural-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neural-line {
    stroke: var(--color-secondary);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.3;
    animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; stroke-dashoffset: 0; }
    50% { opacity: 0.8; stroke-dashoffset: 10; }
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.ai-stat-item {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    padding: 2rem 1.5rem;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: var(--transition);
}

.ai-stat-item:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.ai-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.ai-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Roadmap Section - Hexagonal Design */
.roadmap-section {
    background: var(--color-bg);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.roadmap-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.roadmap-section .section-subtitle {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 1.2rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-visual {
    max-width: 1400px;
    margin: 6rem auto 0;
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Hub */
.roadmap-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-rings {
    position: relative;
    width: 200px;
    height: 200px;
}

.hub-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    animation: hubRotate 20s linear infinite;
}

.hub-ring.ring-1 {
    animation-duration: 20s;
    border-color: var(--color-primary);
    opacity: 0.3;
}

.hub-ring.ring-2 {
    inset: 20px;
    animation-duration: 15s;
    animation-direction: reverse;
    border-color: var(--color-accent);
    opacity: 0.4;
}

.hub-ring.ring-3 {
    inset: 40px;
    animation-duration: 10s;
    border-color: var(--color-primary);
    opacity: 0.5;
}

@keyframes hubRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hub-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--color-surface);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.4),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
    animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 255, 136, 0.4),
            inset 0 0 30px rgba(0, 255, 136, 0.1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(0, 255, 136, 0.6),
            inset 0 0 50px rgba(0, 255, 136, 0.2);
    }
}

.hub-year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hub-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-dim);
    letter-spacing: 3px;
    margin-top: 0.25rem;
}

/* Connection Lines */
.roadmap-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke-width: 2;
    stroke-dasharray: 10 5;
    animation: lineDash 2s linear infinite;
}

@keyframes lineDash {
    to {
        stroke-dashoffset: -15;
    }
}

.data-particle {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Hexagonal Cards */
.roadmap-hex {
    position: absolute;
    width: 280px;
    height: 320px;
    z-index: 5;
    animation: fadeInScale 0.8s ease-out backwards;
}

.roadmap-hex.hex-q1 {
    top: 5%;
    left: 10%;
    animation-delay: 0.2s;
}

.roadmap-hex.hex-q2 {
    top: 5%;
    right: 10%;
    animation-delay: 0.4s;
}

.roadmap-hex.hex-q3 {
    bottom: 5%;
    left: 10%;
    animation-delay: 0.6s;
}

.roadmap-hex.hex-q4 {
    bottom: 5%;
    right: 10%;
    animation-delay: 0.8s;
}

.hex-shape {
    width: 100%;
    height: 100%;
    position: relative;
}

.hex-inner {
    width: 100%;
    height: 100%;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hex-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-hex:hover .hex-inner {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.roadmap-hex:hover .hex-glow {
    opacity: 1;
}

.roadmap-hex.active .hex-inner {
    border-color: var(--color-primary);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
    animation: hexPulse 3s ease-in-out infinite;
}

.roadmap-hex.active .hex-glow {
    opacity: 0.8;
}

.roadmap-hex.completed .hex-inner {
    border-color: var(--color-primary);
}

@keyframes hexPulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 20px 70px rgba(0, 255, 136, 0.6);
    }
}

.hex-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hex-quarter {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.roadmap-hex.active .hex-quarter,
.roadmap-hex.completed .hex-quarter {
    color: var(--color-primary);
}

.hex-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Progress Ring */
.hex-progress {
    margin-bottom: 1.5rem;
}

.progress-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.progress-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.progress-bg {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 4;
}

.progress-fill {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
    transition: stroke-dashoffset 1s ease-out;
}

.roadmap-hex.active .progress-fill,
.roadmap-hex.completed .progress-fill {
    stroke: var(--color-primary);
    filter: drop-shadow(0 0 8px var(--color-primary));
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Hex Features */
.hex-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.hex-features li {
    position: relative;
    padding-left: 1rem;
}

.hex-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 0.9rem;
}

.roadmap-hex.active .hex-features li::before,
.roadmap-hex.completed .hex-features li::before {
    color: var(--color-primary);
}

/* Roadmap CTA */
.roadmap-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 3rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 20;
}

.roadmap-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
}

.roadmap-cta p {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.roadmap-cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* Responsive Roadmap */
@media (max-width: 1200px) {
    .roadmap-visual {
        min-height: 1000px;
    }
    
    .roadmap-hex {
        width: 240px;
        height: 280px;
    }
    
    .roadmap-hub .hub-rings {
        width: 160px;
        height: 160px;
    }
    
    .roadmap-hub .hub-core {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .roadmap-visual {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
    }
    
    .roadmap-hub {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 3rem;
    }
    
    .roadmap-hex {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }
    
    .roadmap-connections {
        display: none;
    }
    
    .roadmap-section {
        padding: 5rem 1.5rem;
    }
}

.roadmap-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 3rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.roadmap-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
}

.roadmap-cta p {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.roadmap-cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* Responsive Roadmap */
@media (max-width: 1024px) {
    .roadmap-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .roadmap-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .roadmap-section {
        padding: 5rem 1.5rem;
    }
    
    .quarter-label {
        font-size: 2.5rem;
    }
    
    .roadmap-title {
        font-size: 1.5rem;
    }
}

/* Mobile Compatibility Section */
.mobile-section {
    background: var(--color-bg);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.mobile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.mobile-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-devices {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1200px;
}

.mobile-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--color-surface);
    border: 8px solid var(--color-border);
    border-radius: 40px;
    position: relative;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 255, 136, 0.2),
        inset 0 0 40px rgba(0, 255, 136, 0.05);
    transform: rotateY(-8deg) translateX(20px);
    transition: all 0.5s ease;
}

.phone-mockup:hover {
    transform: rotateY(0deg) translateX(0) translateY(-10px);
    box-shadow: 
        0 40px 100px rgba(0, 255, 136, 0.3),
        0 0 0 1px var(--color-primary),
        inset 0 0 40px rgba(0, 255, 136, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: var(--color-bg);
    border-radius: 0 0 18px 18px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 29px;
    overflow: hidden;
    position: relative;
}

.phone-button {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: rgba(0, 255, 136, 0.3);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.mobile-app {
    padding: 1.8rem 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-icon span {
    width: 18px;
    height: 2px;
    background: var(--color-primary);
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.mobile-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.mobile-header svg {
    color: var(--color-text-dim);
}

.mobile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.mobile-stat-card {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: all 0.3s ease;
}

.mobile-stat-card:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.mobile-stat-label {
    font-size: 0.65rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.mobile-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    height: 70px;
    padding: 0.9rem;
    background: rgba(0, 255, 136, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 4px;
}

.mobile-chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-primary), var(--color-accent));
    opacity: 0.7;
    animation: mobileBarGrow 1s ease-out backwards;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    transition: opacity 0.3s ease;
}

.mobile-chart-bar:hover {
    opacity: 1;
}

@keyframes mobileBarGrow {
    from { height: 0 !important; }
}

.mobile-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-list-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-list-item:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateX(3px);
}

.mobile-list-icon {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--color-accent);
}

.mobile-list-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.7rem;
}

.mobile-list-text span:first-child {
    color: var(--color-text);
    font-weight: 500;
}

.mobile-list-time {
    color: var(--color-text-dim);
    font-size: 0.6rem;
}

.mobile-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-headline {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text);
}

.mobile-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dim);
}

.mobile-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mobile-features li svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.mobile-features li div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-features li strong {
    color: var(--color-text);
    font-size: 1rem;
}

.mobile-features li span {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.mobile-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.store-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

/* Laptop Mockup */
.laptop-mockup {
    width: 500px;
    height: 320px;
    position: relative;
    z-index: 1;
    transform: rotateY(8deg) translateX(-20px);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.laptop-mockup:hover {
    transform: rotateY(0deg) translateX(0) translateY(-10px);
}

.laptop-screen {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, var(--color-surface) 0%, rgba(17, 24, 39, 0.95) 100%);
    border: 6px solid var(--color-border);
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.05);
    transition: all 0.5s ease;
    transform-origin: bottom center;
    animation: laptopOpen 2s ease-out;
}

@keyframes laptopOpen {
    0% {
        transform: rotateX(-90deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.laptop-mockup:hover .laptop-screen {
    box-shadow: 
        0 40px 100px rgba(0, 212, 255, 0.3),
        0 0 0 1px var(--color-accent),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.laptop-base {
    width: 110%;
    height: 12px;
    background: linear-gradient(to bottom, 
        var(--color-border) 0%, 
        rgba(17, 24, 39, 0.9) 50%,
        var(--color-bg) 100%
    );
    margin: 0 -5%;
    border-radius: 0 0 15px 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: rgba(0, 255, 136, 0.3);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.laptop-app {
    height: 100%;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    animation: laptopContentFadeIn 2.5s ease-out;
}

@keyframes laptopContentFadeIn {
    0%, 60% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.laptop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.laptop-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.laptop-nav {
    display: flex;
    gap: 1.2rem;
}

.laptop-nav-item {
    font-size: 0.65rem;
    color: var(--color-text-dim);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
}

.laptop-nav-item:hover {
    color: var(--color-text);
    background: rgba(0, 212, 255, 0.05);
}

.laptop-nav-item.active {
    color: var(--color-accent);
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 2px solid var(--color-accent);
}

.laptop-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.laptop-notification {
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.laptop-notification:hover {
    opacity: 1;
    transform: scale(1.1);
}

.laptop-user {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    font-size: 0.65rem;
    cursor: pointer;
    transition: var(--transition);
}

.laptop-user:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.laptop-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    overflow: hidden;
}

.laptop-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.laptop-stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 0.7rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.laptop-stat-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.laptop-stat-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.laptop-stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.laptop-stat-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.laptop-stat-label {
    font-size: 0.55rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.laptop-stat-change {
    font-size: 0.55rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

.laptop-stat-change.positive {
    color: var(--color-primary);
}

.laptop-stat-change.negative {
    color: #ff4444;
}

.laptop-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.8rem;
    flex: 1;
}

.laptop-chart-main {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.laptop-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.laptop-chart-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text);
}

.laptop-chart-period {
    font-size: 0.55rem;
    color: var(--color-text-dim);
    padding: 0.2rem 0.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 2px;
}

.laptop-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    height: 100%;
    padding-top: 0.5rem;
}

.laptop-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
}

.laptop-bar {
    width: 100%;
    background: linear-gradient(to top, var(--color-accent), rgba(0, 212, 255, 0.5));
    opacity: 0.7;
    animation: laptopBarGrow 1.5s ease-out backwards;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    position: relative;
}

.laptop-bar-wrapper:hover .laptop-bar {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.laptop-bar-label {
    font-size: 0.5rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    margin-top: auto;
}

@keyframes laptopBarGrow {
    from { height: 0 !important; }
}

.laptop-activity {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.laptop-activity-header {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.laptop-activity-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.5rem;
    background: rgba(0, 255, 136, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.laptop-activity-item:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: var(--color-primary);
    transform: translateX(3px);
}

.laptop-activity-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-top: 0.3rem;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulse 2s ease-in-out infinite;
}

.laptop-activity-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.laptop-activity-text span:first-child {
    font-size: 0.6rem;
    color: var(--color-text);
    font-weight: 500;
}

.laptop-activity-time {
    font-size: 0.5rem;
    color: var(--color-text-dim);
}

.store-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.store-badge svg {
    color: var(--color-primary);
    width: 32px;
    height: 32px;
}

.store-badge div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.store-badge span {
    font-size: 0.7rem;
    color: var(--color-text-dim);
}

.store-badge strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text);
}

/* E-Commerce Integrations Section */
.ecommerce-section {
    background: var(--color-bg);
    padding: 8rem 2rem;
    position: relative;
}

.ecommerce-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    color: var(--color-text-dim);
    line-height: 1.8;
}

.ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.ecommerce-card {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    animation: fadeInScale 0.6s ease-out backwards;
}

.ecommerce-card:nth-child(1) { animation-delay: 0s; }
.ecommerce-card:nth-child(2) { animation-delay: 0.1s; }
.ecommerce-card:nth-child(3) { animation-delay: 0.2s; }
.ecommerce-card:nth-child(4) { animation-delay: 0.3s; }
.ecommerce-card:nth-child(5) { animation-delay: 0.4s; }
.ecommerce-card:nth-child(6) { animation-delay: 0.5s; }
.ecommerce-card:nth-child(7) { animation-delay: 0.6s; }
.ecommerce-card:nth-child(8) { animation-delay: 0.7s; }

.ecommerce-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.ecommerce-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.ecommerce-logo svg {
    color: var(--color-accent);
    transition: var(--transition);
}

.ecommerce-card:hover .ecommerce-logo svg {
    color: var(--color-primary);
    transform: scale(1.1);
}

.platform-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
}

.ecommerce-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.ecommerce-features li {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    padding-left: 1.5rem;
    position: relative;
}

.ecommerce-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.integration-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.integration-status.active .status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.integration-status.developing {
    background: rgba(255, 165, 0, 0.1);
    border-color: #ffa500;
}

.integration-status.developing .status-dot {
    width: 8px;
    height: 8px;
    background: #ffa500;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ecommerce-cta {
    text-align: center;
    padding: 3rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.ecommerce-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.ecommerce-cta p {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Stats Section */
.stats {
    background: var(--color-surface);
    padding: 4rem 2rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: var(--color-border);
}

/* Contact Section */
.contact {
    background: var(--color-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-text {
    color: var(--color-text-dim);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-form {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 3rem;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Footer */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-tagline {
    color: var(--color-text-dim);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--color-text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .product-showcase,
    .contact-content,
    .mobile-content,
    .ai-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .ai-title-line {
        font-size: 3rem;
    }
    
    .ai-title-sub {
        font-size: 1.5rem;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-brain {
        width: 300px;
        height: 300px;
    }
    
    .mobile-headline {
        font-size: 2.5rem;
    }
    
    .mobile-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ai-title-line {
        font-size: 2.5rem;
    }
    
    .ai-title-sub {
        font-size: 1.2rem;
    }
    
    .ai-stats {
        grid-template-columns: 1fr;
    }
    
    .mobile-headline {
        font-size: 2rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-badges {
        flex-direction: column;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    overflow: hidden;
    background: var(--color-bg);
}

.contact-hero-container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    background: var(--color-surface);
    padding: 6rem 2rem;
    position: relative;
}

.contact-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    padding: 2.5rem;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.info-card:hover .info-card-icon {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.info-card-icon svg {
    color: var(--color-primary);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--color-text-dim);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    padding: 3rem;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--color-text-dim);
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--color-text-dim);
}

.form-checkbox label a {
    color: var(--color-primary);
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

/* Contact Map */
.contact-map {
    position: relative;
    height: 500px;
    background: var(--color-bg);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-surface);
    position: relative;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.map-info {
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
    padding: 3rem;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.map-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--color-text-dim);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .info-card {
        padding: 2rem;
    }
}
