/* Audimaxa Stylesheet - Premium White & Reddish Theme */

:root {
    --primary-red: #d32f2f;
    --dark-red: #b71c1c;
    --light-red: #ffebee;
    --pure-white: #ffffff;
    --off-white: #fafafa;
    --text-main: #2c3e50;
    --text-muted: #5d6d7e;
    --border-color: #ecf0f1;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-bold: 0 10px 30px rgba(211, 47, 47, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--pure-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--pure-white);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--light-red);
    transform: translateY(-2px);
}

/* Page Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--pure-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.loader-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.loader-spinner {
    width: 35px;
    height: 35px;
    border: 3px solid var(--light-red);
    border-top: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Ad Banner */
.ad-banner {
    background: var(--light-red);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(211, 47, 47, 0.1);
}

.ad-text {
    margin: 0;
    font-size: 0.75rem;
    color: var(--dark-red);
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.h-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary-red);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.nav-list {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--primary-red);
    margin: 4px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100dvh;
    background: var(--pure-white);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
}

.close-menu {
    font-size: 2.8rem;
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.mobile-nav-list li {
    margin-bottom: 1.8rem;
}

.mobile-nav-link {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
}

.mobile-nav-footer {
    margin-top: 0;
}

/* Hero Section */
.hero {
    padding: 5rem 0 7rem;
    background: radial-gradient(circle at top right, var(--light-red) 0%, var(--pure-white) 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    display: inline-block;
    background: var(--light-red);
    color: var(--primary-red);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -0.04em;
    color: var(--text-main);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-trust-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.hero-image-box {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-bold);
    z-index: 2;
    position: relative;
    border: 8px solid var(--pure-white);
}

.image-accent {
    position: absolute;
    inset: -1.5rem 1.5rem 1.5rem -1.5rem;
    background: var(--light-red);
    border-radius: 40px;
    z-index: 1;
}

/* Sections General */
.about-section,
.features-section,
.testimonials-section,
.faq-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 1.8rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

/* Features */
.features-section {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 4.5rem;
}

.card {
    background: var(--pure-white);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-bold);
}

.icon-box {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

.card h3 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    text-align: left;
}

.rating {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.testimonial-author {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary-red);
}

/* FAQ */
.faq-list {
    margin-top: 4rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 2.2rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: var(--text-main);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    max-height: 300px;
    padding-bottom: 2.2rem;
}

/* Footer */
.footer {
    background: var(--text-main);
    color: var(--pure-white);
    padding: 7rem 0 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 4.5rem;
    margin-bottom: 5rem;
}

.footer-desc {
    opacity: 0.7;
    margin-top: 1.8rem;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2.2rem;
    color: var(--primary-red);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-link {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-link:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--primary-red);
}

.footer-contact {
    opacity: 0.7;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4.5rem;
    text-align: center;
}

.footer-ad-notice {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 900px;
    margin-inline: auto;
    border-radius: 12px;
}

.copyright {
    opacity: 0.4;
    font-size: 0.8rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 62, 80, 0.9);
    z-index: 4000;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--pure-white);
    padding: 4.5rem;
    max-width: 650px;
    width: 100%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 24px;
}

.modal-close {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--primary-red);
    line-height: 0.5;
}

.modal-title {
    margin-bottom: 2rem;
    color: var(--primary-red);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 2rem;
    max-width: 420px;
    background: var(--pure-white);
    padding: 2.8rem;
    z-index: 3000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: bottom 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-popup.active {
    bottom: 2rem;
}

.cookie-btns {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    .nav-menu,
    .header-cta-box {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        text-align: center;
    }

    .hero-image-box {
        order: -1;
        max-width: 550px;
        margin: 0 auto;
    }

    .hero-description {
        margin-inline: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .modal-content {
        padding: 2.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: none;
    }
}