/* NeuroDance Tech CSS Framework */
:root {
    --primary: #06b6d4;      /* Cyan */
    --primary-hover: #0891b2;
    --secondary: #0f172a;    /* Deep dark blue */
    --secondary-hover: #1e293b;
    --accent: #8b5cf6;       /* Purple for AI elements */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #cbd5e1;
    --success: #10b981;
    --font-stack: 'Space Grotesk', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 15px -3px rgba(6, 182, 212, 0.15); /* Tinted shadow */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-stack); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { color: var(--secondary); font-weight: 700; line-height: 1.2; }
p { color: var(--text-muted); }
a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-hover); }
.text-center { text-align: center; }
.margin-top-lg { margin-top: 40px; }
.hidden { display: none !important; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; font-weight: 600; font-size: 1rem; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: all 0.3s ease; text-align: center; font-family: var(--font-stack); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #3b82f6); color: var(--bg-white); border: none; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; }
.btn-secondary { background-color: var(--secondary); border-color: var(--secondary); color: var(--bg-white); }
.btn-secondary:hover { background-color: var(--secondary-hover); color: var(--bg-white); }
.btn-outline { background-color: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: var(--bg-white); }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-full { display: block; width: 100%; }

/* Header */
.site-header { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--secondary); letter-spacing: -0.5px; text-transform: uppercase; }
.logo span { color: var(--primary); }
.nav-list { display: flex; list-style: none; gap: 32px; }
.nav-list a { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; }
.nav-list a:hover { color: var(--primary); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-toggle .bar { width: 25px; height: 3px; background-color: var(--secondary); transition: all 0.3s ease; }

/* Hero */
.hero-section { padding: 80px 0; background: radial-gradient(circle at right top, #e0f2fe 0%, #f8fafc 100%); overflow: hidden;}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
.badge-accent { display: inline-block; background-color: #cffafe; color: var(--primary-hover); padding: 8px 16px; font-size: 0.85rem; font-weight: 600; border-radius: 50px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.hero-text h1 { font-size: 3.5rem; margin-bottom: 24px; letter-spacing: -1px; }
.hero-text p { font-size: 1.15rem; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; }
.hero-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(6, 182, 212, 0.2); }

/* Features */
.home-features { padding: 100px 0; background-color: var(--bg-white); }
.section-header { max-width: 700px; margin: 0 auto 60px auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card { padding: 40px 32px; background-color: var(--bg-light); border-radius: var(--radius-md); border: 1px solid var(--border-color); transition: transform 0.2s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.feature-icon-wrapper { width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 24px; background-color: #e0f2fe; display: flex; align-items: center; justify-content: center; }
.feature-icon-wrapper img { width: 60%; height: 60%; object-fit: contain; }

/* Interactive Demo */
.interactive-demo { padding: 100px 0; background-color: var(--secondary); color: white; }
.interactive-demo h2, .interactive-demo p, .interactive-demo label { color: white; }
.interactive-demo p { opacity: 0.8; }
.demo-container-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.demo-status-box { margin-top: 32px; padding: 16px; background-color: rgba(255,255,255,0.05); border-radius: var(--radius-sm); border-left: 4px solid var(--accent); font-family: monospace; }
.status-idle { color: #94a3b8; }
.status-active { color: var(--primary); font-weight: 600; text-shadow: 0 0 5px rgba(6, 182, 212, 0.5); }
.demo-player-box { background-color: #020617; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5); border: 1px solid #1e293b; }
.player-header { background-color: #0f172a; padding: 12px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #1e293b;}
.player-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.player-header .player-dot:nth-child(1) { background-color: #ef4444; }
.player-header .player-dot:nth-child(2) { background-color: #eab308; }
.player-header .player-dot:nth-child(3) { background-color: #22c55e; }
.player-title { color: #64748b; font-size: 0.8rem; margin-left: auto; font-family: monospace; }
.player-screen { position: relative; height: 280px; display: flex; align-items: center; justify-content: center; }
.player-screen img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.player-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(2, 6, 23, 0.85); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--primary); gap: 16px; font-family: monospace; }
.spinner { width: 50px; height: 50px; border: 3px solid rgba(6, 182, 212, 0.2); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.demo-alert { position: absolute; background-color: rgba(15, 23, 42, 0.95); padding: 20px; border-radius: var(--radius-sm); width: 80%; text-align: center; color: white; border: 1px solid var(--success); backdrop-filter: blur(4px); }
.demo-alert h4 { color: var(--success); margin-bottom: 4px; }
.player-controls { padding: 24px; background-color: #0f172a; }
.progress-container { margin-top: 20px; font-family: monospace; font-size: 0.9rem; color: #94a3b8; }
.progress-bar-bg { width: 100%; height: 8px; background-color: #1e293b; border-radius: 10px; margin-top: 8px; overflow: hidden; }
.progress-bar-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--accent), var(--primary)); transition: width 0.1s linear; }

/* Rewards/Models Preview */
.rewards-preview-sec { padding: 100px 0; background-color: var(--bg-light); border-top: 1px solid var(--border-color); }
.rewards-grid-four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.reward-mini-card { background-color: var(--bg-white); padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); transition: all 0.2s; }
.reward-mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.reward-mini-card img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 16px; border: 1px solid var(--border-color); }
.reward-mini-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.reward-mini-card p { font-size: 0.9rem; }

/* Inner Pages Titles */
.page-title-section { padding: 80px 0; background: var(--secondary); color: var(--bg-white); text-align: center; }
.page-title-section h1 { color: var(--bg-white); font-size: 3rem; margin-bottom: 16px; }
.page-title-section p { color: #94a3b8; font-size: 1.2rem; }

/* Content Rich / Legal Layout */
.content-rich-layout, .legal-narrow-container, .faq-narrow-container { max-width: 800px; margin: 60px auto; padding: 0 24px; }
.guide-block, .trust-point { margin-bottom: 48px; background-color: var(--bg-white); padding: 32px; border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.guide-block h2, .trust-point h2 { font-size: 1.6rem; margin-bottom: 16px; color: var(--primary); }
.legal-text-section h2 { font-size: 1.4rem; margin: 40px 0 16px 0; }
.legal-text-section p { margin-bottom: 16px; text-align: justify; }

/* Catalog (Models) */
.catalog-section { padding: 80px 0; background-color: var(--bg-light); }
.catalog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.catalog-item { display: flex; gap: 24px; padding: 24px; background-color: var(--bg-white); border-radius: var(--radius-md); border: 1px solid var(--border-color); align-items: center; }
.catalog-item img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; border: 4px solid var(--bg-light); }
.item-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--bg-white); background-color: var(--accent); padding: 4px 12px; border-radius: 50px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

/* FAQ Accordion */
.faq-accordion-section { padding: 40px 0; }
.faq-item { border: 1px solid var(--border-color); margin-bottom: 16px; border-radius: var(--radius-sm); background-color: var(--bg-white); overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: none; border: none; font-size: 1.1rem; font-weight: 600; color: var(--secondary); padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-stack); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 300; }
.faq-item.active .faq-question { background-color: #f1f5f9; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 24px 20px 24px; color: var(--text-muted); }

/* Contact Form */
.contact-section-layout { padding: 80px 0; }
.contact-grid-container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
.modern-form .form-group { margin-bottom: 24px; }
.modern-form label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.modern-form input, .modern-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border-color); border-radius: var(--radius-sm); font-family: var(--font-stack); font-size: 1rem; background-color: var(--bg-white); }
.modern-form input:focus, .modern-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15); }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-group input { margin-top: 5px; }
.error-msg { color: #ef4444; font-size: 0.85rem; margin-top: 6px; display: none; font-weight: 500; }
.contact-success { background-color: #f0fdf4; border: 1px solid #86efac; padding: 32px; border-radius: var(--radius-md); text-align: center; }
.contact-success h3 { color: var(--success); margin-bottom: 12px; }

.sidebar-card { background-color: var(--secondary); color: white; padding: 32px; border-radius: var(--radius-md); margin-bottom: 24px; }
.sidebar-card h3 { margin-bottom: 16px; font-size: 1.3rem; color: white; }
.corp-details-list { list-style: none; }
.corp-details-list li { margin-bottom: 12px; font-size: 1rem; color: #94a3b8; }
.highlight-card { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; border: none; }
.highlight-card h3, .highlight-card p { color: white; }

/* Footer */
.site-footer { background-color: var(--bg-white); padding: 80px 0 40px 0; border-top: 1px solid var(--border-color); }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.site-footer h4 { margin-bottom: 20px; font-size: 1.1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 12px; }
.site-footer a { color: var(--text-muted); font-size: 0.95rem; }
.site-footer a:hover { color: var(--primary); }
.footer-disclaimer { border-top: 1px solid var(--border-color); padding-top: 32px; font-size: 0.82rem; }
.footer-disclaimer p { color: #94a3b8; margin-bottom: 12px; }
.copyright { margin-top: 20px; font-weight: 500;}

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 24px; right: 24px; max-width: 420px; background-color: var(--bg-white); border: 1px solid var(--border-color); box-shadow: var(--shadow-lg); border-radius: var(--radius-md); padding: 24px; z-index: 2000; }
.cookie-content h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--secondary); }
.cookie-content p { font-size: 0.9rem; margin-bottom: 16px; }
.cookie-buttons { display: flex; gap: 12px; }

/* Media Queries */
@media (max-width: 992px) {
    .hero-container, .demo-container-grid, .contact-grid-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .rewards-grid-four, .catalog-grid { grid-template-columns: 1fr 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: 80px; left: 0; width: 100%; background-color: var(--bg-white); border-bottom: 1px solid var(--border-color); padding: 24px; box-shadow: var(--shadow-md); }
    .main-nav.active { display: block; }
    .nav-list { flex-direction: column; gap: 16px; text-align: center; }
    .menu-toggle { display: flex; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .header-cta { display: none; }
    .rewards-grid-four, .catalog-grid { grid-template-columns: 1fr; }
    .cookie-banner { left: 24px; max-width: calc(100% - 48px); }
    .catalog-item { flex-direction: column; text-align: center; }
    .catalog-item img { border-radius: var(--radius-sm); width: 100%; height: 180px;}
}
