html, body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.hero {
    background: url("./assets/minimalist.jpg") no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .hero {
        background: url("./assets/minimalist.jpg") no-repeat center center/cover;
    }
}

@media (max-width: 480px) {
    .hero {
        background: url("./assets/minimalist.jpg") no-repeat center center/cover;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to top,
        rgba(43, 36, 56, 0.9) 0%,
        rgba(47, 43, 63, 0) 100%
    );
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 2;
}

.btn {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background-color: #ee5e11;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
}

.hero .btn:hover {
    background-color: #d94f0f;
}

.btn-secondary {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background-color: transparent;
    border: 2px solid #ee5e11;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #ee5e11;
    color: #ffffff;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
}

.models {
    padding: 40px 20px;
    text-align: center;
    color: #1E1E1E;
}

.models-title {
    color: #ffffff;
    padding-bottom: 30px;
}

.model-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 145px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .media-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.model-card {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 300px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(50px);
    padding-bottom: 16px;
}

.model-card p {
    height: 80px;
}

@media (max-width: 480px) {
    .hero p {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .models,
    .testimonials,
    .final-cta,
    .faq {
        padding: 20px 10px;
    }
}

.details-toggle {
    background: none;
    border: none;
    color: #ee5e11;
    font-weight: 500;
    cursor: pointer;
    margin: 12px 0;
    font-size: 14px;
}

.details-toggle:hover {
    text-decoration: underline;
}

.model-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding-bottom: 10px;
}

.model-card.active .model-details {
    max-height: 240px;
    opacity: 1;
}

.model-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 14px;
    padding-bottom: 8px;
}

.model-details li {
    margin-bottom: 6px;
    color: #1E1E1E;
}

.btn.small {
    padding: 8px 18px;
    font-size: 14px;
    padding-bottom: 6px;
}

.model-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-card img {
    width: 100%;
}

.section-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    margin: 6rem 0;
}


.testimonials {
    min-height: 60vh;
    height: auto;
    background: url("./assets/minimalist2.jpg") no-repeat center center/cover;
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.testimonials h2 {
    padding-bottom: 30px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 300px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(50px);
    color: #000000;
    text-align: left;
    padding: 12px 12px;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials img {
    width: 100%;
}

.author {
    color: rgba(39, 39, 39, 0.65);
}

.features-bar {
    padding: 30px 20px 30px;
    background: rgba(255, 255, 255, 0.9);
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: float 12s linear infinite;
}

@media (max-width: 600px) {
    .features-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@keyframes float {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20px); }
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.features-list .icon {
    font-size: 1.2rem;
    opacity: 1;
}

.final-cta {
    padding: 120px 20px;
    text-align: center;
    background-color: rgba(43, 36, 56, 0.4);
}

.final-cta .btn {
    padding: 14px 32px;
    font-size: 17px;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.final-cta p {
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 32px;
}

.faq h2 {
    text-align: center;
}

.faq {
    padding: 80px 20px;
    background-color: rgba(43, 36, 56, 0.4);
    min-height: 40vh;
    height: auto;
}

.accordion {
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    padding: 25px 10px;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.accordion:hover {
    color: #ee5e11;
}

.accordion.active:hover {
    background-color: #363249;
}

.accordion::after {
    content: "+";
    font-size: 13px;
    color: rgba(255,255,255,1);
    float: right;
    margin-left: 5px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion.active::after {
    content: "-";
    color: #ee5e11;
}

.panel {
    background-color: transparent;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: rgba(255,255,255,0.7);
}

footer {
    background-color: #242030;
    color: #e5e7eb;
    padding: 80px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container h3 {
    color: #fff;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

footer h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-nav ul li a:hover {
    color: #ee5e11;
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #ee5e11;
}

.footer-contact a {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: #ee5e11;
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(107, 114, 128, 0.2); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: #ee5e11;
    color: #fff;
    transform: translateY(-3px);
    border-color: #ee5e11;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid #1f2937;
    padding-top: 30px;
    margin-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #6b7280;
}

@media (max-width: 640px) {
    footer {
        padding: 40px 24px;
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .footer-container h3 {
        max-width: 100% !important;
        margin: 0 auto 15px auto !important;
        text-align: center !important;
    }

    .footer-container p {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

.why {
    padding: 120px 20px;
    background-color: rgba(249, 249, 249, 0.9);
    text-align: center;
    color: #333;
    margin: 0 20px;
    position: relative;
    z-index: 5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.why-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.why-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.why-title {
    color: #000;
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .testimonials, .faq {
        height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .testimonial-grid {
        gap: 20px;
    }

    .accordion {
        font-size: 1rem;
        padding: 20px 5px;
    }
}