* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #CE0000;
    --secondary-color: #1a1a1a;
    --accent-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #CE0000 0%, #a00000 100%);
}

.btn-primary{
    background-color: var(--primary-color);
    border: var(--primary-color);
}
.btn-primary:hover{
    background-color: rgba(210, 3, 3, 0.97);
    border: var(--primary-color);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/*!* Navigation *!*/
/*.navbar {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    background: rgba(255, 255, 255, 0.95);*/
/*    backdrop-filter: blur(10px);*/
/*    padding: 1rem 0;*/
/*    z-index: 1000;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.navbar.scrolled {*/
/*    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.nav-container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0 2rem;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.logo {*/
/*    max-width: 10rem;*/
/*    text-decoration: none;*/
/*}*/

/*.nav-menu {*/
/*    display: flex;*/
/*    list-style: none;*/
/*    gap: 2rem;*/
/*}*/

/*.nav-menu a {*/
/*    text-decoration: none;*/
/*    color: var(--text-dark);*/
/*    font-weight: 500;*/
/*    transition: color 0.3s ease;*/
/*    position: relative;*/
/*}*/

/*.nav-menu a:hover {*/
/*    color: var(--primary-color);*/
/*}*/

/*.nav-menu a::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    bottom: -5px;*/
/*    left: 0;*/
/*    background: var(--primary-color);*/
/*    transition: width 0.3s ease;*/
/*}*/

/*.nav-menu a:hover::after {*/
/*    width: 100%;*/
/*}*/

/*.mobile-menu {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    cursor: pointer;*/
/*}*/

/*.mobile-menu span {*/
/*    width: 25px;*/
/*    height: 3px;*/
/*    background: var(--text-dark);*/
/*    margin: 3px 0;*/
/*    transition: 0.3s;*/
/*}*/

.nav-link {
    font-weight: 500;
    color: #4B5563; /* gray-700 */
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-link {
    @apply text-gray-700 hover:text-[#CE0000] transition-colors;
}

.nav-link.active {
    @apply text-[#CE0000] font-semibold;
}

.logo {
    max-width: 10rem;
}
/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button-outline:hover {
    background: white;
    border: 2px solid white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Numbers Section */
.numbers {
    padding: 5rem 0;
    background: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.number-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.number-item:hover {
    transform: translateY(-10px);
}

.number-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.number-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--accent-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: bold;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Platforms Section */
.platforms {
    padding: 3rem 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.platform-logo {
    justify-content: center;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.platform-logo:hover {
    transform: scale(1.1);
}

.platform-logo img {
    max-height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.platform-logo:hover img {
    opacity: 1;
}

/* Sales Screenshots */
.sales-proof {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: white;
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sales-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.sales-item:hover {
    transform: translateY(-5px);
}

.sales-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.sales-info h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Blog Section */
.blog {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    background: var(--gradient);
    position: relative;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--accent-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Go to Top Button */
.go-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    transform: translateY(-3px);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    /*.nav-menu {*/
    /*    position: fixed;*/
    /*    top: 70px;*/
    /*    left: -100%;*/
    /*    width: 100%;*/
    /*    height: calc(100vh - 70px);*/
    /*    background: white;*/
    /*    flex-direction: column;*/
    /*    justify-content: start;*/
    /*    align-items: center;*/
    /*    padding-top: 2rem;*/
    /*    transition: left 0.3s ease;*/
    /*    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);*/
    /*}*/

    /*.nav-menu.active {*/
    /*    left: 0;*/
    /*}*/

    /*.nav-menu li {*/
    /*    margin: 1rem 0;*/
    /*}*/

    /*select {*/
    /*    width: 100%;*/
    /*    padding: 0.8rem;*/
    /*    border: 2px solid #eee;*/
    /*    border-radius: 8px;*/
    /*    font-size: 1rem;*/
    /*    transition: border-color 0.3s ease;*/
    /*}*/

    /*select:focus {*/
    /*    outline: none;*/
    /*    border-color: var(--primary-color);*/
    /*}*/

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

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

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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