:root {
    --primary-color: #ff0044;
    --primary-glow: rgba(255, 0, 68, 0.6);
    --primary-dark: #cc0033;
    --secondary-color: #00ffff;
    --secondary-glow: rgba(0, 255, 255, 0.4);
    --dark-bg: #0a0a0a;
    --dark-card: #151515;
    --light-text: #f0f0f0;
    --gray-text: #9ca3af;
    --border-radius: 8px;
    --box-shadow: 0 10px 15px -3px rgba(255, 0, 68, 0.3), 0 4px 6px -2px rgba(255, 0, 68, 0.2);
    --neon-shadow: 0 0 15px var(--primary-glow), 0 0 30px var(--primary-glow);
    --secondary-shadow: 0 0 15px var(--secondary-glow), 0 0 30px var(--secondary-glow);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

body {
    color: var(--light-text);
    background-color: var(--dark-bg);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

ul {
    list-style: none;
}

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 0, 68, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
    letter-spacing: 1px;
}

.logo h1 i {
    margin-right: 8px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 500;
    transition: var(--transition);
    color: var(--light-text);
}

nav a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-glow);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    box-shadow: var(--neon-shadow);
    position: relative;
    overflow: hidden;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.8s;
}

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

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 68, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 68, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

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

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 0, 68, 0.3);
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 30px;
    background-color: #252525;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background-color: #ff5f57; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #28ca41; }

.mockup-sidebar {
    width: 60px;
    background-color: #252525;
    height: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mockup-content {
    flex: 1;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.sidebar-item {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background-color: #3a3a3a;
}

.sidebar-item.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.mockup-content {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
}

.content-header {
    height: 30px;
    background-color: #252525;
    border-radius: 4px;
}

.content-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 10px;
}

.chart-bar {
    width: 15%;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 0, 68, 0.3);
}

.content-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    flex: 1;
    height: 40px;
    background-color: #252525;
    border-radius: 4px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.hero h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-glow);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 5px var(--primary-glow);
}

.section-heading h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background-color: #0c0c0c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 68, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 68, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
}

.feature-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    background-color: rgba(255, 0, 68, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 0, 68, 0.2);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-text);
}

.feature-card p {
    color: var(--gray-text);
}

/* Why Choose Section */
.why-choose {
    background-color: #0e0e0e;
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-card {
    background-color: var(--dark-card);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
    border: 1px solid rgba(255, 0, 68, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 68, 0.3);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--light-text);
}

.testimonials {
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--dark-card);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 0, 68, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    line-height: 0;
    color: rgba(255, 0, 68, 0.1);
    font-family: serif;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 20px;
    padding: 0 10px;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--light-text);
}

.author-company {
    color: var(--gray-text);
    font-size: 14px;
}

/* Meeting Image Section */
.meeting-image {
    padding: 40px 0;
    background-color: #0c0c0c;
}

.team-meeting-img {
    width: 100%;
    max-width: 1000px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: block;
    margin: 0 auto;
}

/* 3D Logo Styling */
.logo-3d-container {
    text-align: center;
    margin: 20px 0;
}

.logo-3d {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* Live Feedback Section */
.live-feedback {
    background-color: #080808;
    padding: 80px 0;
}

#comments-container {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 0, 68, 0.1);
}

.new-comment {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#comment-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 0, 68, 0.3);
    background-color: rgba(10, 10, 10, 0.6);
    color: var(--light-text);
    font-size: 16px;
    transition: var(--transition);
}

#comment-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.comments-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment {
    background-color: rgba(21, 21, 21, 0.6);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.comment-author {
    font-weight: 600;
    color: var(--primary-color);
}

.comment-time {
    font-size: 12px;
    color: var(--gray-text);
}

.comment-text {
    color: var(--light-text);
}

/* Contact Section */
.contact {
    background-color: #0c0c0c;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--dark-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 68, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--light-text);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light-text);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 0, 68, 0.3);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 16px;
    color: var(--light-text);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px var(--primary-glow);
}

.contact-form .cta-button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 10px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.info-card {
    background-color: var(--dark-card);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 68, 0.1);
}

.info-card h3 {
    font-size: 24px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 20px;
    color: var(--gray-text);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 18px;
    text-shadow: 0 0 5px var(--primary-glow);
}

/* Footer */
footer {
    background-color: #050505;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 0, 68, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.footer-logo h2 i {
    margin-right: 8px;
}

.footer-logo p {
    color: var(--gray-text);
}

.footer-links,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--light-text);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-glow);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--gray-text);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-text);
    font-size: 14px;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px var(--primary-glow);
    }
    50% {
        box-shadow: 0 0 20px var(--primary-glow), 0 0 30px var(--primary-glow);
    }
    100% {
        box-shadow: 0 0 10px var(--primary-glow);
    }
}

.feature-card, .stat-card, .testimonial-card, .contact-form, .info-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.cta-button {
    animation: pulse 2s infinite;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }
.feature-card:nth-child(7) { animation-delay: 0.6s; }
.feature-card:nth-child(8) { animation-delay: 0.7s; }

/* Scroll bar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 20px;
    }
    
    .stat-card {
        min-width: 45%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-heading h3 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        min-width: 100%;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
}