:root {
    --primary-text-color: #f0f0f0;
    --secondary-text-color: #cccccc;
    --bg-color: #000000;
    --button-primary-bg: #ff6b6b;
    --button-secondary-bg: #333333;
    --border-color: #444444;
    --card-bg-color: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #4c0000, #000000);
    color: var(--primary-text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-text-color);
}

p {
    color: var(--secondary-text-color);
}

span {
    color: var(--button-primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: transparent;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: right;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-badge {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    border-radius: 50%;
    color: transparent;
}

.nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--button-primary-bg);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: left;
    background-color: transparent;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    margin-bottom: 40px;
    max-width: 400px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text-color);
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--button-secondary-bg);
    color: var(--primary-text-color);
    border: 1px solid var(--border-color);
}

.primary-btn:hover {
    background-color: #555555;
    border-color: #666666;
}

.secondary-btn {
    background-color: var(--button-primary-bg);
    color: var(--primary-text-color);
}

.secondary-btn:hover {
    background-color: #ff8b8b;
}

.hero-info-card {
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid var(--border-color);
    padding: 30px;
    padding-bottom: 60px;
    border-radius: 15px;
    max-width: 500px;
    margin-left: auto;
    text-align: right;
    backdrop-filter: blur(5px);
}

.hero-info-card p {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
    text-align: left;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-background-shapes::before,
.hero-background-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.hero-background-shapes::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,107,0.7) 0%, rgba(255,107,107,0) 70%);
    top: -100px;
    right: -100px;
    animation: float1 15s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 50px); }
    100% { transform: translate(0, 0); }
}

.hero-background-shapes::after {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107,180,255,0.7) 0%, rgba(107,180,255,0) 70%);
    bottom: -200px;
    left: -200px;
    animation: float2 20s infinite ease-in-out;
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
    100% { transform: translate(0, 0); }
}

.features-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.section-tagline {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.feature-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    padding: 25px 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--button-primary-bg);
}

.feature-card .icon {
    font-size: 1.5rem;
    color: var(--button-primary-bg);
}

.feature-card .client-logo {
    width: 24px;
    height: 24px;
    filter: invert(100%);
}

.demo-btn {
    background-color: transparent;
    color: var(--primary-text-color);
    border: 1px solid var(--border-color);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
}

.demo-btn:hover {
    background-color: var(--button-secondary-bg);
}

.benefits-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-text-color);
}

.benefit-cards {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.benefit-cards :hover{
    background-color: var(--button-primary-bg);
    color: var(--primary-text-color);
}
.benefit-cards :hover h3{
    color: var(--card-bg-color);
}
.benefit-cards :hover p{
    color: var(--primary-text-color);
}

.benefit-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 15px;
    max-width: 350px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--button-primary-bg);
    transition: color 0.3s ease;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
    transition: color 0.3s ease;
}

.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: transparent;
    color: var(--primary-text-color);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    max-width: 700px;
    margin: 20px auto;
    color: var(--secondary-text-color);
}

.footer-section {
    color: var(--secondary-text-color);
    text-align: center;
    padding: 30px 0;
    margin-top: 80px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    .hero-background-shapes::before,
    .hero-background-shapes::after {
        filter: blur(80px);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links ul {
        gap: 15px;
    }
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-info-card {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .features-section, .benefits-section, .contact-section {
        padding: 50px 0;
    }
    .feature-cards, .benefit-cards {
        flex-direction: column;
        align-items: center;
    }
    .feature-card, .benefit-card {
        width: 90%;
        max-width: 400px;
    }
    .hero-background-shapes::before,
    .hero-background-shapes::after {
        filter: blur(60px);
        width: 400px;
        height: 400px;
    }
    .contact-form {
        padding: 0 20px;
    }

    .support-hero-section .hero-title {
        font-size: 2.5rem;
    }
    .search-support {
        flex-direction: column;
        align-items: center;
    }
    .search-support input,
    .search-support .btn {
        max-width: 90%;
        width: auto;
    }
    .faq-items {
        padding: 0 10px;
    }
    .faq-item {
        padding: 20px;
    }
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    .contact-option-card {
        width: 90%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    .nav-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .feature-card, .benefit-card {
        padding: 20px;
    }

    .support-hero-section .hero-title {
        font-size: 2rem;
    }
    .faq-item h3 {
        font-size: 1.1rem;
    }
    .contact-option-card h3 {
        font-size: 1.1rem;
    }
}