* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 50;
    border-bottom: 1px solid #1f2937;
}

nav .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E43636;
}

.nav-btn {
    padding: 0.5rem 1.5rem;
    background-color: #E43636;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(228, 54, 54, 0.5);
}

/* Hero Section */
.hero {
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
}

.hero .container {
    max-width: 1280px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-highlight {
    color: #E43636;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #E2DDB4;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #E43636;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(228, 54, 54, 0.5);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #E43636;
    border: 2px solid #E43636;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    transform: scale(1.1);
    background-color: rgba(228, 54, 54, 0.1);
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background-color: #0a0a0a;
    overflow: hidden;
}

.reviews h2 {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-scroll {
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #E43636;
    background-color: #000;
    transition: all 0.3s;
}

.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(228, 54, 54, 0.5);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    fill: #E43636;
    color: #E43636;
}

.review-text {
    margin-bottom: 1rem;
    color: #E2DDB4;
}

.review-author {
    border-top: 1px solid #E43636;
    padding-top: 1rem;
}

.author-name {
    font-weight: bold;
    color: #F6EFD2;
}

/* Services Section */
.services {
    padding: 5rem 1.5rem;
}

.services .container {
    max-width: 1280px;
    margin: 0 auto;
}

.services h2 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #E43636;
    background-color: #0a0a0a;
    transition: all 0.3s;
}

.service-card:hover {
    transform: scale(1.05) translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(228, 54, 54, 0.5);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    color: #E43636;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #F6EFD2;
}

.service-desc {
    color: #E2DDB4;
}

/* Benefits Section */
.benefits {
    padding: 5rem 1.5rem;
    background-color: #0a0a0a;
}

.benefits .container {
    max-width: 1280px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateX(0.5rem);
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #E43636;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text {
    font-size: 1.125rem;
    color: #E2DDB4;
}

.stat-card {
    border-radius: 1rem;
    padding: 3rem;
    border: 2px solid #E43636;
    background-color: #000;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(228, 54, 54, 0.5);
}

.stat-number {
    font-size: 3.75rem;
    font-weight: bold;
    color: #E43636;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.5rem;
    color: #F6EFD2;
    margin-bottom: 2rem;
}

.stat-desc {
    color: #E2DDB4;
}

/* Contact Section */
.contact {
    padding: 5rem 1.5rem;
}

.contact .container {
    max-width: 56rem;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #E2DDB4;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #F6EFD2;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid #E43636;
    background-color: #000;
    color: #F6EFD2;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    transform: scale(1.05);
}

input:hover,
textarea:hover {
    border-color: rgba(228, 54, 54, 0.8);
}

textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #E43636;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.submit-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(228, 54, 54, 0.5);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
footer {
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid #1f2937;
    background-color: #050505;
}

footer .container {
    max-width: 1280px;
    margin: 0 auto;
}


.container-footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-info .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E43636;
    margin-bottom: 1rem;
}

.footer-text {
    color: #E2DDB4;
    max-width: 24rem;
    margin: 0 auto;
}

.footer-contact h3 {
    color: #F6EFD2;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #E2DDB4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #E43636;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #6b7280;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .services h2,
    .benefits h2,
    .contact h2 {
        font-size: 2.5rem;
    }

    .container-footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-text {
        margin-bottom: 1rem;
    }
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}