/* ============================
   MIXPROFI – Glassmorphism Purple Theme
   ============================ */

/* --- CSS Variables --- */
.mixprofi-site {
    /* Backgrounds: Deep Cosmos/Purple */
    --clr-bg-primary: #0F0C29;
    --clr-bg-gradient: linear-gradient(135deg, #0F0C29, #302B63, #24243E);

    /* Glass Components */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);

    /* Text */
    --clr-text-main: #FFFFFF;
    --clr-text-light: #CBD5E1;
    /* Slate 300 */
    --clr-text-muted: #94A3B8;
    /* Slate 400 */

    /* Accents: Cyberpunk Cyan & Hot Pink */
    --clr-accent-primary: #06B6D4;
    /* Cyan 500 */
    --clr-accent-secondary: #EC4899;
    /* Pink 500 */
    --clr-accent-glow: rgba(6, 182, 212, 0.5);

    /* Typography */
    --ff-main: 'Inter', sans-serif;
    --ff-heading: 'Outfit', sans-serif;

    /* Logic */
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    font-family: var(--ff-main);
    color: var(--clr-text-main);
    background: var(--clr-bg-gradient);
    background-attachment: fixed;
    /* Parallax-like fixed bg */
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.mixprofi-html {
    scroll-behavior: smooth;
}

/* --- Resets & Utilities --- */
.mixprofi-site *,
.mixprofi-site *::before,
.mixprofi-site *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.responsive-img {
    display: block;
    max-width: 100%;
    height: auto;
}

.center-text {
    text-align: center;
}

/* --- Glass Morphism Utility Class --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Loader --- */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F0C29;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-text {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--clr-accent-primary), var(--clr-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: textPulse 1.5s infinite alternate;
}

@keyframes textPulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--ff-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--clr-accent-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    border-color: var(--clr-accent-primary);
    box-shadow: 0 0 20px var(--clr-accent-glow);
}

.btn-accent {
    background: linear-gradient(90deg, var(--clr-accent-primary), var(--clr-accent-secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.btn-accent:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px var(--clr-accent-glow);
}

/* --- Header --- */
.site-header {
    background: rgba(15, 12, 41, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.header-container {
    max-width: 1400px;
    /* Wider for modern look */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--clr-accent-secondary);
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 30px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    text-decoration: none;
    color: var(--clr-text-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- Hero --- */
.hero-section {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Glowing Orbs Background */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    animation: orbFloat 10s infinite alternate;
}

.hero-section::before {
    background: var(--clr-accent-primary);
    top: -100px;
    left: -200px;
}

.hero-section::after {
    background: var(--clr-accent-secondary);
    bottom: -100px;
    right: -200px;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.hero-headline {
    font-family: var(--ff-heading);
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.hero-subline {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    margin-bottom: 40px;
    max-width: 550px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.current-price {
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px var(--clr-accent-secondary);
}

.hero-usp-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-bottom: 50px;
}

.hero-usp-item {
    font-size: 1rem;
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-usp-item::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--clr-accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--clr-accent-primary);
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

/* Glass card behind image */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    backdrop-filter: blur(5px);
}

.hero-image {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- Stats --- */
.stats-section {
    padding: 40px 0;
    margin-bottom: 80px;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-value {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--clr-accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Features --- */
.features-section {
    padding: 80px 0;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #fff;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent-primary), var(--clr-accent-secondary));
    margin: 20px auto 0;
    border-radius: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.feature-title {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
}

.feature-text {
    color: var(--clr-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Visual Section --- */
.visual-section {
    padding: 120px 0;
    position: relative;
}

.visual-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.visual-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.visual-headline {
    font-family: var(--ff-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, var(--clr-accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.visual-text {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 32px;
}

.visual-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Versatility --- */
.versatility-section {
    padding: 100px 0;
}

.versatility-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.versatility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.versatility-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 20px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.versatility-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--clr-accent-secondary);
    transform: scale(1.05);
}

.v-icon {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.versatility-item h4 {
    font-family: var(--ff-heading);
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.versatility-item p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* --- Reviews --- */
.reviews-section {
    padding: 100px 0;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(10px);
}

.review-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.review-stars {
    color: var(--clr-accent-secondary);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.review-text {
    font-style: italic;
    color: var(--clr-text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.review-author {
    font-family: var(--ff-heading);
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

/* --- Footer --- */
.site-footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    font-size: 0.9rem;
    margin-top: 60px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--clr-accent-primary);
}

.footer-heading {
    font-family: var(--ff-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent-primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-link,
.footer-modal-btn {
    display: inline-block;
    color: var(--clr-text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all var(--transition);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    text-align: left;
}

.footer-link:hover,
.footer-modal-btn:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-text {
    color: var(--clr-text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 2001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center everything */
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
    align-items: center;
    /* Center items */
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--ff-heading);
    display: block;
    /* Ensure full click area if needed, or inline for text only */
}

.mobile-menu-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center button */
}

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-container {
    background: rgba(20, 20, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.2);
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px;
}

.modal-content h2 {
    font-family: var(--ff-heading);
    color: #fff;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.modal-content p {
    color: var(--clr-text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .header-container {
        padding: 0 20px;
    }

    .desktop-nav,
    .header-cta-wrapper {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-container,
    .visual-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-image-wrapper,
    .visual-image-wrapper {
        order: -1;
    }

    .hero-usp-list {
        justify-content: center;
    }

    .hero-price-block {
        margin: 0 auto 40px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}