@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');


/* ==== ANCHORS ==== */
#products {
    /* Add margin on top after anchor scroll */
    scroll-margin-top: 50px; 
}

/* --- STARTER CTA STRIP --- */
.starter-cta-strip {
    /* Uses your brand gradient for high impact */
    background: var(--sanctus-gradient);
    padding: 2.5rem 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(142, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.starter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative; 
    z-index: 2;
}

.starter-info {
    display: flex;
    align-items: flex-start; /* Aligns tag and text */
    gap: 1.5rem;
}

.starter-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.3);
}

.starter-text h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.starter-text p {
    margin: 0;
    font-size: 1.05rem;
    opacity: 0.9;
    font-weight: 400;
}

/* The Button (Inverse Style) */
.btn-starter-dl {
    background: white;
    color: #8E00FF; /* Matches the gradient end */
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-starter-dl:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    color: #D300FF;
}

/* Mobile Response */
@media (max-width: 900px) {
    .starter-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .starter-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .starter-text h3 { font-size: 1.3rem; }
    .btn-starter-dl { width: 100%; justify-content: center; }
}



/* --- CORE VARIABLES --- */
        :root {
            --sanctus-bg: #F5F5F7;
            --sanctus-text: #1A1A1A;
            --sanctus-text-light: #555555;
            --sanctus-gradient: linear-gradient(135deg, #D300FF 0%, #8E00FF 100%);
            --sanctus-font: 'Inter', system-ui, -apple-system, sans-serif;
            --header-height: 80px;
        }

        /* --- GLOBAL RESET --- */
        *, *::before, *::after { box-sizing: border-box; }
        body, html {
            margin: 0; padding: 0;
            font-family: var(--sanctus-font);
            background-color: var(--sanctus-bg);
            color: var(--sanctus-text);
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: opacity 0.2s; }

        /* --- 1. NAVIGATION BAR --- */
        .sanctus-header {
            position: fixed; top: 0; left: 0; width: 100%;
            min-height: var(--header-height);
            display: flex; 
            flex-direction: column;
            background: rgba(245, 245, 247, 0.95);
            backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .nav-container {
            width: 100%; max-width: 1200px; margin: 0 auto;
            padding: 0 2rem;
            display: flex; justify-content: space-between; align-items: center;
            height: var(--header-height);
            
        }

/* Logo Styling */
.logo-img {
    height: 40px; /* Slightly larger height to make the text readable */
    width: auto;  /* Maintains the aspect ratio */
    display: block;
}

/* Optional: Ensure the link container doesn't have extra padding/gap */
.brand-logo {
    display: flex;
    align-items: center;
    /* Removed 'gap' since there is no text next to it */
}

        .nav-links {
            display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0;
        }
        .nav-links li a {
            font-size: 0.95rem; font-weight: 500; color: var(--sanctus-text-light);
        }
        .nav-links li a:hover { color: #8E00FF; }

        .nav-cta {
            background: var(--sanctus-text); color: white;
            padding: 0.7rem 1.4rem; border-radius: 10px;
            font-size: 0.9rem; font-weight: 600; white-space: nowrap;
        }
        .nav-cta:hover { background: black; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

        .mobile-toggle { 
            display: none; cursor: pointer; font-size: 1.5rem; margin-left: 1rem;
            user-select: none;
        }
        
        .mobile-menu-dropdown {
            display: none; position: fixed; top: var(--header-height); left: 0;
            width: 100%; background: white;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding: 2rem;
            flex-direction: column; gap: 1.5rem;
            z-index: 999;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .mobile-menu-dropdown a {
            font-size: 1.1rem; font-weight: 600; color: var(--sanctus-text);
        }

        

        /* --- 2. HERO SECTION --- */
        .sanctus-hero {
            padding-top: calc(var(--header-height) + 5rem); 
            padding-bottom: 3rem; 
            padding-left: 2rem; padding-right: 2rem;
            min-height: 55vh; 
            display: flex; flex-direction: column; 
            justify-content: center; align-items: center;
            position: relative;
        }

        .hero-container {
            max-width: 1200px; width: 100%;
            display: flex; flex-direction: column; gap: 4rem; /* Gap between Content and Stats */
        }

        .hero-split {
            display: grid; grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem; align-items: center;
        }

        /* Text Side */
        .hero-text-side { display: flex; flex-direction: column; gap: 1.5rem; }

        .creator-badge {
            display: inline-flex; align-items: center; gap: 0.6rem;
            background: white; border: 1px solid rgba(0,0,0,0.08);
            padding: 0.4rem 0.9rem; border-radius: 100px;
            font-size: 0.85rem; font-weight: 600; color: var(--sanctus-text);
            width: fit-content;
        }
        .creator-badge span.dot {
            height: 8px; width: 8px;
            background: var(--sanctus-gradient);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(211, 0, 255, 0.4);
        }

        h1 {
            font-size: 3.5rem; line-height: 1.1;
            font-weight: 800; letter-spacing: -0.02em; margin: 0;
        }
        h1 span.gradient-text {
            background: var(--sanctus-gradient);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        p.lead {
            font-size: 1.15rem; line-height: 1.6;
            color: var(--sanctus-text-light); max-width: 90%; margin: 0;
        }

        .hero-actions { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap;}

        .btn {
            padding: 0.9rem 1.8rem; border-radius: 12px;
            font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-primary {
            background: var(--sanctus-gradient); color: white;
            box-shadow: 0 10px 25px -5px rgba(142, 0, 255, 0.3);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 30px -5px rgba(142, 0, 255, 0.4);}

        .btn-secondary {
            background: white; color: var(--sanctus-text);
            border: 1px solid rgba(0,0,0,0.15);
        }
        .btn-secondary:hover { background: #f0f0f0; }

        /* Video Side */
        .hero-visual-side { position: relative; }
        .hero-visual-side::before {
            content: ''; position: absolute;
            top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 90%; height: 90%;
            background: var(--sanctus-gradient);
            filter: blur(90px); opacity: 0.3; z-index: -1;
        }

        .video-card {
            background: white; border-radius: 20px; padding: 10px;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
            transform: rotate(-2deg); transition: transform 0.5s ease;
            overflow: hidden;
        }
        .video-card:hover { transform: rotate(0deg) scale(1.01); }
        .video-card video {
            width: 100%; border-radius: 14px; display: block; background: #eee;
        }

        /* --- SOCIAL PROOF (CENTERED) --- */
        .social-proof-row {
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex; 
            justify-content: center; /* CENTERED HERE */
            gap: 4rem;
            color: var(--sanctus-text-light); 
            font-size: 0.9rem;
            width: 100%;
        }
        
        .stat-item { display: flex; align-items: center; gap: 0.5rem; }
        .stat-item strong { color: var(--sanctus-text); font-weight: 700; font-size: 1.1rem; }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .nav-cta { padding: 0.6rem 1rem; font-size: 0.85rem; }
        }

        @media (max-width: 900px) {
            .hero-split { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
            .hero-text-side { align-items: center; }
            .hero-actions { justify-content: center; }
            .hero-visual-side { order: -1; max-width: 500px; margin: 0 auto; }
            h1 { font-size: 2.5rem; }
            
            .social-proof-row { justify-content: center; flex-wrap: wrap; gap: 1.5rem; text-align: center;}
            .stat-item { flex-direction: column; gap: 0.2rem; }
        }
        
/* Authority Strip */
    .authority-strip {
        background: #1A1A1A;
        color: white;
        padding: 1.5rem;
        text-align: center;
        width: 100%;
    }
    .authority-content {
        max-width: 1200px; margin: 0 auto;
        display: flex; justify-content: center; align-items: center; gap: 0.8rem;
        font-size: 1.1rem;
    }
    .badge-star { color: #FFD700; font-size: 1.4rem; }

    /* General Section Styles */
    .section-container {
        padding: 6rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    .section-header h2 {
        font-size: 2.5rem; font-weight: 800; margin: 0 0 1rem 0;
    }
    .section-header p {
        color: var(--sanctus-text-light); font-size: 1.1rem;
    }

    /* Product Grid */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .product-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex; flex-direction: column;
    }
    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .card-image {
        height: 200px; width: 100%;
        display: flex; align-items: center; justify-content: center;
        color: #ccc; font-weight: bold; font-size: 2rem;
    }

    .card-content {
        padding: 2rem;
        display: flex; flex-direction: column; flex-grow: 1;
    }

    .card-content h3 { margin: 0 0 0.5rem 0; font-size: 1.4rem; font-weight: 700; }
    .card-desc { color: var(--sanctus-text-light); font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem; }
    
    .card-bullets {
        list-style: none; padding: 0; margin: 0 0 2rem 0;
        font-size: 0.9rem; color: var(--sanctus-text);
        display: flex; flex-direction: column; gap: 0.5rem;
    }

    /* Action Buttons Area */
    .card-actions {
        margin-top: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .btn-card {
        text-align: center; padding: 0.8rem 0.5rem;
        border-radius: 10px; font-weight: 600; font-size: 0.9rem;
        transition: all 0.2s;
        display: flex; align-items: center; justify-content: center;
    }

    /* Outline Button */
    .btn-outline {
        background: transparent;
        border: 1px solid #ddd;
        color: var(--sanctus-text);
    }
    .btn-outline:hover { border-color: #1A1A1A; background: #f9f9f9; }

    /* Fill Button (Accent) */
    .btn-fill {
        background: var(--sanctus-gradient);
        border: none;
        color: white;
        box-shadow: 0 4px 10px rgba(142, 0, 255, 0.2);
    }
    .btn-fill:hover {
        opacity: 0.95;
        box-shadow: 0 6px 15px rgba(142, 0, 255, 0.3);
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 3rem;
        margin-top: 2rem;
        text-align: center; /* FORCED CENTER ALIGNMENT */
    }
    
    .feature-item {
        /* No text-align left here anymore */
        display: flex; flex-direction: column; align-items: center;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        background: var(--sanctus-gradient);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        margin-bottom: 1rem;
    }
    
    .feature-item h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
    .feature-item p { font-size: 0.95rem; color: var(--sanctus-text-light); line-height: 1.6; }

    @media (max-width: 768px) {
        .authority-content { flex-direction: column; text-align: center; gap: 0.2rem; }
        .section-header h2 { font-size: 2rem; }
    }
    
/* --- REVIEWS GRID CSS --- */
    
    .reviews-grid {
        display: grid;
        /* Creates a responsive grid: min 300px wide, fills available space */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .review-card {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        border: 1px solid rgba(0,0,0,0.03);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.2s ease;
    }
    
    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .stars {
        color: #FFD700;
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        /* Keeps the gradient text effect */
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
       
    }

    .review-text {
        font-size: 1.05rem;
        line-height: 1.6;
        font-style: italic;
        color: var(--sanctus-text);
        margin-bottom: 2rem;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        font-size: 1.1rem;
        flex-shrink: 0; /* Prevents circle from squishing */
    }

    .reviewer-details {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
    .reviewer-details strong { font-size: 0.95rem; color: #1A1A1A; }
    .reviewer-details span { font-size: 0.8rem; color: #888; }

/* --- SPOTLIGHT SECTION CSS --- */
    .spotlight-section {
        background: #111;
        color: white;
        padding: 4rem 2rem 4rem 2rem;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 3rem; 
    }

    /* Glow Effect */
    .spotlight-section::before {
        content: ''; position: absolute;
        top: -20%; right: -10%; width: 600px; height: 600px;
        background: radial-gradient(circle, rgba(211,0,255,0.1) 0%, rgba(0,0,0,0) 70%);
        pointer-events: none;
    }

    /* Slide Animation - SOFTER TRANSITION */
    .spotlight-slide {
        display: none; 
        width: 100%;
    }
    
    .fade {
        animation-name: fade;
        animation-duration: 1.2s; /* Slower, more elegant */
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); /* Smooth ease-in-out */
    }

    @keyframes fade {
        from {opacity: 0} /* Start from invisible */
        to {opacity: 1}
    }

    .spotlight-content {
        max-width: 1200px; margin: 0 auto;
        display: grid; 
        grid-template-columns: 0.8fr 1.2fr;
        gap: 4rem; 
        align-items: center;
    }

    /* --- TEXT STYLING --- */
    .spotlight-text { z-index: 2; }

    .spotlight-label {
        display: inline-flex; align-items: center; gap: 0.5rem;
        text-transform: uppercase; letter-spacing: 1px;
        font-size: 0.8rem; font-weight: 700; color: #D300FF;
        margin-bottom: 1rem;
    }
    .pulse-dot {
        width: 8px; height: 8px; background: #D300FF; border-radius: 50%;
        box-shadow: 0 0 10px #D300FF; animation: pulse 2s infinite;
    }

    .spotlight-text h2 {
        font-size: 2.5rem; font-weight: 800; margin: 0 0 0.5rem 0; 
        line-height: 1.1; color: white;
    }

    .work-title {
        font-size: 1.5rem; font-weight: 400; font-style: italic; color: #ccc; margin: 0;
    }

    .artist-name {
        font-size: 1.1rem; color: #888; margin: 0.5rem 0 2rem 0;
    }
    .artist-link {
        color: white; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.2);
        transition: all 0.2s;
    }
    .artist-link:hover { color: #D300FF; border-bottom-color: #D300FF; }

    .spotlight-desc {
        color: #999; line-height: 1.6; margin-bottom: 2rem;
        border-left: 2px solid #333; padding-left: 1rem;
    }

    .discord-note {
        font-size: 0.95rem; color: #888; margin: 0;
    }
    .discord-note a { color: white; text-decoration: none; border-bottom: 1px solid #444; transition: 0.2s; }
    .discord-note a:hover { color: #D300FF; border-color: #D300FF; }


    /* --- VISUAL STYLING --- */
    .spotlight-visual-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1000px;
        height: 500px; 
        width: 100%;
    }

    .spotlight-img {
        max-width: 100%;
        max-height: 100%;
        width: auto; height: auto;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.15);
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        transform: rotate(-2deg);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s;
    }

    .spotlight-img:hover {
        transform: rotate(0deg) scale(1.01);
        border-color: rgba(255,255,255,0.4);
    }


    /* --- CONTROLS --- */
    .carousel-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 10;
        margin-top: 1rem;
    }

    .nav-btn {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.1);
        color: white;
        width: 45px; height: 45px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.2s;
        display: flex; align-items: center; justify-content: center;
    }
    .nav-btn:hover {
        background: white; color: black; border-color: white;
    }

    .carousel-dots { display: flex; align-items: center; gap: 0.8rem; }
    
    .dot {
        cursor: pointer; height: 8px; width: 8px;
        background-color: #444; border-radius: 50%;
        transition: background-color 0.3s ease, transform 0.3s;
    }
    
    .dot.active-dot { 
        background-color: #D300FF; 
        transform: scale(1.3); 
    }
    .dot:hover { background-color: #666; }


    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        .spotlight-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
        .spotlight-visual-wrapper { order: -1; height: 350px; }
        .spotlight-desc { border-left: none; padding-left: 0; }
        .spotlight-label { justify-content: center; }
        .spotlight-img { transform: rotate(0deg); }
    }
        
/* --- FOOTER CSS --- */
    .sanctus-footer {
        background: #111; /* Very dark grey, almost black */
        color: white;
        padding: 5rem 2rem 2rem 2rem;
        margin-top: 0;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-col h4 {
        color: white;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-col ul li a {
        color: #999;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

    .footer-col ul li a:hover {
        color: white;
        text-decoration: underline;
    }

    /* Brand Column Specifics */
    .brand-col p {
        color: #999;
        line-height: 1.6;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .footer-logo {
        display: flex; align-items: center; gap: 0.5rem;
        font-weight: 800; font-size: 1.3rem; margin-bottom: 1rem;
    }
    .logo-symbol-small {
        width: 24px; height: 24px;
        background: white; color: black;
        border-radius: 4px; display: flex; align-items: center; justify-content: center;
        font-size: 0.9rem;
    }

    /* Social Icons */
.footer-socials {
    display: flex; gap: 1rem;
    margin-top: 1rem;
}

.footer-socials a {
    color: #999; 
    font-size: 1.4rem; /* Controls the size of the new icons */
    transition: color 0.2s, transform 0.2s;
    display: flex; align-items: center;
}

.footer-socials a:hover {
    color: #D300FF;
    transform: translateY(-2px);
}

    /* Footer Button */
    .btn-footer {
        display: inline-block;
        padding: 0.6rem 1.2rem;
        border: 1px solid #333;
        border-radius: 8px;
        color: white;
        font-size: 0.9rem;
        font-weight: 600;
    }
    .btn-footer:hover {
        background: #333;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .footer-container {
            grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
        }
    }
    @media (max-width: 600px) {
        .footer-container {
            grid-template-columns: 1fr; /* 1 column on mobile */
            gap: 2rem;
            text-align: center;
        }
        .brand-col p { margin: 0 auto 1.5rem auto; }
        .footer-socials { justify-content: center; }
        .footer-logo { justify-content: center; }
    }
        
/* --- PRODUCT HERO CSS --- */
    .product-hero {
        background: #F5F5F7; /* Matches Homepage Base */
        color: #1A1A1A;
        padding: 8rem 2rem 4rem 2rem; /* Top padding accounts for fixed header */
        min-height: 80vh;
        display: flex; align-items: center;
    }

    .product-hero-container {
        max-width: 1200px; margin: 0 auto;
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    /* -- VISUALS SIDE -- */
    .ph-visuals {
        display: flex; flex-direction: column; align-items: center; gap: 2rem;
    }

    .digital-box-container {
        width: 100%; max-width: 450px;
        aspect-ratio: 1 / 1;
        display: flex; justify-content: center; align-items: center;
        /* Optional: Add a subtle floor shadow */
        background: radial-gradient(ellipse at center bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
        background-size: 80% 20px;
        background-repeat: no-repeat;
        background-position: center bottom;
    }
    
    .digital-box-img {
        width: 100%; height: auto;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
        transition: transform 0.3s ease;
    }
    .digital-box-img:hover { transform: translateY(-10px) scale(1.02); }

    .compatibility-row {
        display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
    }
    .comp-icon {
        display: flex; align-items: center; gap: 0.5rem;
        background: white; padding: 0.5rem 1rem; border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.05);
        font-size: 0.85rem; font-weight: 600; color: #555;
    }
    .comp-icon svg { width: 18px; height: 18px; }


    /* -- CONTENT SIDE -- */
    .ph-content {
        display: flex; flex-direction: column; align-items: flex-start;
    }

    .breadcrumbs {
        font-size: 0.85rem; color: #888; margin-bottom: 1rem;
    }
    .breadcrumbs a { color: #888; text-decoration: none; }
    .breadcrumbs span { color: #1A1A1A; font-weight: 600; }

    .product-title {
        font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin: 0 0 0.5rem 0;
    }

    /* Authority Badge */
    .authority-badge {
        display: inline-flex; align-items: center; gap: 0.4rem;
        background: #1A1A1A; color: white;
        padding: 0.4rem 0.8rem; border-radius: 6px;
        font-size: 0.85rem; margin-bottom: 1.5rem;
    }
    .authority-badge .star { color: #FFD700; }

    .product-short-desc {
        font-size: 1.1rem; line-height: 1.6; color: #555;
        margin-bottom: 2rem; max-width: 90%;
    }

    /* License Selector */
    .license-selector {
        display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
        width: 100%; flex-wrap: wrap;
    }

    .license-option {
        flex: 1; min-width: 100px;
        border: 2px solid rgba(0,0,0,0.1);
        border-radius: 10px;
        padding: 0.8rem;
        cursor: pointer;
        transition: all 0.2s;
        text-align: center;
        background: white;
    }
    
    .license-option:hover { border-color: #8E00FF; }
    
    .active-license {
        border-color: #8E00FF;
        background: rgba(142, 0, 255, 0.05);
        box-shadow: 0 0 0 1px #8E00FF;
    }

    .lic-name { display: block; font-size: 0.85rem; font-weight: 700; color: #555; margin-bottom: 0.2rem; }
    .lic-price { display: block; font-size: 1.1rem; font-weight: 800; color: #1A1A1A; }

    /* License Details Box */
    .license-details-box {
        width: 100%;
        background: white;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 12px;
        padding: 1.2rem;
        margin-bottom: 2rem;
    }
    
    #lic-features-list {
        list-style: none; padding: 0; margin: 0;
        display: flex; flex-direction: column; gap: 0.6rem;
    }
    #lic-features-list li {
        font-size: 0.95rem; color: #333; display: flex; gap: 0.5rem;
    }

    /* CTA Area */
    .cta-area { width: 100%; }

    .btn-buy-primary {
        display: block; width: 100%; text-align: center;
        padding: 1.2rem; border-radius: 12px;
        background: linear-gradient(135deg, #D300FF 0%, #8E00FF 100%);
        color: white; font-weight: 700; font-size: 1.2rem;
        text-decoration: none;
        box-shadow: 0 10px 20px -5px rgba(142, 0, 255, 0.3);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-buy-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px -5px rgba(142, 0, 255, 0.4);
    }

    .guarantee-text {
        text-align: center; font-size: 0.85rem; color: #666;
        margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .product-hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
        .ph-content { align-items: center; }
        .digital-box-container { max-width: 300px; margin: 0 auto; }
        .product-short-desc { max-width: 100%; }
        .license-selector { justify-content: center; }
        #lic-features-list li { justify-content: center; }
    }


/* =========================================
   BEFORE/AFTER SLIDER SECTION (Complete)
   ========================================= */

/* --- 1. SECTION & CARD CONTAINER --- */
.ba-showcase-section {
    padding: 6rem 2rem;
    /* Uses your site variable, falls back to light gray */
    background-color: var(--sanctus-bg, #F5F5F7);
    display: flex;
    justify-content: center;
}

.ba-card {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 1000px;
    
    /* Spacing: 3rem sides/top, 4rem bottom (to prevent cramping) */
    padding: 3rem 3rem 4rem 3rem;
    
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.ba-card .section-header {
    margin-bottom: 2rem; /* Tighter gap between text and slider */
    text-align: center;
}

.ba-card h2 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    margin-bottom: 0.5rem; 
    color: #1A1A1A; 
}

.ba-card p { 
    font-size: 1.1rem; 
    color: #666; 
}


/* --- 2. SLIDER CONTAINER (Universal Ratio) --- */
.ba-slider {
    position: relative;
    
    /* Size Control: Limits max width, centers it */
    max-width: 600px; 
    width: 100%;
    margin: 0 auto;
    
    /* IMPORTANT: Lets the image dictate the height naturally */
    aspect-ratio: auto !important;
    height: auto !important;
    
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    user-select: none;
    display: block;
    
    /* "Ghost Space" Fix: Removes the tiny gap under images */
    font-size: 0;
}


/* --- 3. IMAGE LAYERS --- */

/* BOTTOM IMAGE (The Anchor) - Sets the container height */
.ba-img-static {
    display: block;
    width: 100%;
    height: auto; 
    margin: 0;
    padding: 0;
    object-fit: contain; 
}

/* TOP IMAGE WRAPPER (The Clipped Mask) */
.ba-clipped-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Default clip: 50% from the right */
    clip-path: inset(0 50% 0 0); 
}

/* TOP IMAGE - Forces exact match to bottom image */
.ba-img-absolute {
    width: 100%;
    height: 100%;
    object-fit: fill; /* Stretches to match the container perfectly */
    display: block;
}


/* --- 4. INTERFACE ELEMENTS --- */

/* LABELS (Now independent of clipping) */
.ba-label {
    /* Reset font size since parent is 0 */
    font-size: 0.85rem; 
    line-height: normal;
    
    position: absolute; top: 1.5rem;
    background: rgba(0,0,0,0.7); color: white;
    padding: 0.4rem 0.8rem; border-radius: 6px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; 
    pointer-events: none; /* Let clicks pass through */
    backdrop-filter: blur(4px);
    z-index: 20; /* High Z-index ensures always visible */
}

.label-before { left: 1.5rem; }
.label-after { right: 1.5rem; }

/* HANDLE CONTAINER */
.ba-handle {
    position: absolute; top: 0; bottom: 0; 
    left: 50%; width: 4px;
    transform: translateX(-50%);
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; 
    z-index: 15;
}

/* Vertical Line */
.handle-line {
    position: absolute; width: 100%; height: 100%;
    background: #D300FF;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Draggable Button Circle */
.handle-circle {
    width: 48px; height: 48px;
    background: var(--sanctus-gradient, linear-gradient(135deg, #D300FF 0%, #8E00FF 100%));
    border-radius: 50%; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(142, 0, 255, 0.4);
    border: 3px solid white;
    position: relative; z-index: 2;
}

/* INVISIBLE INPUT (The real controller) */
.ba-range {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; cursor: col-resize; 
    z-index: 25; /* Must be highest to capture mouse/touch */
    margin: 0;
    touch-action: none; /* Prevents page scrolling while dragging on mobile */
}


/* --- 5. RESPONSIVE --- */
@media (max-width: 768px) {
    .ba-card { 
        padding: 2rem 1.5rem; /* Smaller padding on mobile */
    }
    .ba-slider { 
        max-width: 100%; /* Full width on mobile */
    }
    .ba-card h2 {
        font-size: 1.8rem;
    }
}


/* --- GALLERY SECTION CSS --- */
.gallery-section {
    padding: 6rem 2rem;
    background: white;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* FILTERS */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
}

.filter-btn:hover {
    border-color: #8E00FF;
    color: #8E00FF;
}

.filter-btn.active {
    background: #1A1A1A;
    color: white;
    border-color: #1A1A1A;
}

/* GRID */
.gallery-grid {
    display: grid;
    /* Auto-fit: Creates as many columns as possible (min 150px wide) */
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    /* --- FIX: Stops the page from jumping when content loads --- */
    overflow-anchor: none;
}

/* THUMBNAIL CARD */
.asset-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Forces square shape */
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s, border-color 0.2s;
    display: block; 
    text-decoration: none;
    color: inherit;
}

.asset-card.dark-bg {
    background: #2a2a2a; /* Dark gray, like a chat window */
    border-color: rgba(255,255,255,0.1); /* Subtle light border */
}

.asset-card.dark-bg .asset-name {
    background: rgba(0,0,0,0.85); /* Dark semi-transparent bg */
    color: #f0f0f0; /* Light text color */
}

.asset-card.dark-bg .asset-img {
    /* Ensures the whole image is visible, no cropping */
    object-fit: contain;
    
    /* Optional: Adds a little breathing room so the decal doesn't touch the card edges */
    padding: 0.5rem; 
    
    /* Ensures the background behind the now-smaller image remains transparent so the dark card shows through */
    background-color: transparent; 
}

.asset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.asset-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0; 
    transition: opacity 0.3s;
}
.asset-img.loaded { opacity: 1; }

.asset-name {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem;
    font-size: 0.75rem; font-weight: 600; text-align: center;
    color: #333;
    transform: translateY(100%); /* Hidden by default */
    transition: transform 0.2s;
}

.asset-card.has-link {
    cursor: pointer;
}

.asset-card.has-link:hover {
    border-color: #D300FF; 
}

.asset-card:hover .asset-name {
    transform: translateY(0); /* Show on hover */
}

/* LOAD MORE AREA */
.gallery-status {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid #1A1A1A;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-load-more:hover {
    background: #1A1A1A; color: white;
}

.type-filters {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.type-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #999;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.2s;
}
.type-btn:hover { color: #1A1A1A; }
.type-btn.active { color: #D300FF; border-bottom: 2px solid #D300FF; }

/* Category Filters (Row 2: Pills) */
.category-filters {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 3rem;
    min-height: 40px; /* Prevents layout jump if no categories */
}

.cat-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-size: 0.85rem;
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
}
.cat-btn:hover { border-color: #8E00FF; color: #8E00FF; }
.cat-btn.active { background: #1A1A1A; color: white; border-color: #1A1A1A; }

/* --- HEADER TAGLINE (The "Procedural Solutions..." text) --- */
.header-tagline {
    border-left: 1px solid rgba(0,0,0,0.1); /* The vertical divider line */
    padding-left: 1rem;
    margin-left: 1rem;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.2;
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    white-space: nowrap; /* Keeps it on one line if possible */
}

/* Ensure the logo container aligns everything horizontally */
.brand-logo {
    display: flex; 
    align-items: center; 
    text-decoration: none;
}

/* Hide Tagline on Mobile (It gets too crowded) */
@media (max-width: 900px) {
    .header-tagline { display: none; }
}


/* --- ANNOUNCEMENT BAR (Optional Top Strip) --- */
.announcement-bar {
    background: var(--sanctus-gradient);
    color: white;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    width: 100%;
    /* If your header is fixed (sticky), this needs to sit on top of it */
    position: relative; 
    z-index: 1001; 
}

.ann-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: center; align-items: center; gap: 1rem;
    flex-wrap: wrap; text-align: center;
}

.ann-badge {
    background: white; color: #8E00FF;
    font-weight: 800; font-size: 0.75rem;
    padding: 0.2rem 0.5rem; border-radius: 4px;
    text-transform: uppercase;
}

.ann-link {
    text-decoration: underline; font-weight: 700;
}
.ann-link:hover { text-decoration: none; opacity: 0.9; }


/* --- NAVIGATION DROPDOWN --- */

/* 1. Parent Item */
.nav-links li {
    position: relative; /* Anchors the absolute menu to this item */
}

/* 2. The Dropdown Box (Hidden by default) */
.dropdown-menu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px); /* Start slightly down */
    background: white;
    padding: 0.5rem 0;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    
    /* Animation State: Hidden */
    opacity: 0;
    visibility: hidden; 
    transition: all 0.2s ease;
    
    /* Formatting inside */
    list-style: none;
    display: flex; flex-direction: column; gap: 0;
    z-index: 1100;
}

/* 3. Show on Hover */
.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Slide up into place */
}

/* 4. Dropdown Links */
.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    color: var(--sanctus-text);
    white-space: nowrap;
    transition: background 0.2s;
}

.dropdown-menu li a:hover {
    background: #f5f5f7;
    color: #8E00FF;
}

/* Divider Line (Optional) */
.dropdown-menu .divider {
    height: 1px;
    background: #eee;
    margin: 0.4rem 0;
}

/* Tiny Arrow Rotation on Hover */
.dropdown-parent:hover .dropdown-trigger svg {
    transform: rotate(180deg);
}
.dropdown-trigger svg { transition: transform 0.2s; }

/* --- CONTACT PAGE STYLES --- */

.contact-hero {
    padding: calc(var(--header-height) + 4rem) 2rem 3rem 2rem;
    text-align: center;
    background: white;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--sanctus-text);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--sanctus-text-light);
    line-height: 1.6;
}

/* The Grid Section */
.contact-section {
    padding: 2rem 2rem 6rem 2rem;
    background: var(--sanctus-bg); /* Light gray background */
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    /* This creates 3 equal columns, but wraps automatically if too small */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* The Cards */
.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none; /* Removes underline from links */
    color: var(--sanctus-text);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Icon Styling */
.icon-circle {
    width: 60px; height: 60px;
    background: #f5f5f7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    transition: background 0.2s, color 0.2s;
}

.contact-card:hover .icon-circle {
    background: #1A1A1A;
    color: white;
}

/* Text Styling */
.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    flex-grow: 1; /* Pushes the link to the bottom */
}

.fake-link {
    font-weight: 700;
    color: #8E00FF;
    font-size: 0.95rem;
}

/* Special Style for the Main Support Option (Discord) */
.accent-card {
    border: 2px solid rgba(142, 0, 255, 0.1);
}
.accent-card:hover {
    border-color: #8E00FF;
}
.accent-card .icon-circle {
    background: rgba(142, 0, 255, 0.1);
    color: #8E00FF;
}
.accent-card:hover .icon-circle {
    background: #8E00FF;
    color: white;
}

/* --- PATREON BUTTON --- */
.patreon-wrapper {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.btn-patreon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FF424D; /* Patreon Brand Color */
    color: white !important; /* Force white text */
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-patreon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 66, 77, 0.4);
    background-color: #ff5c65;
}

.patreon-note {
    font-size: 0.75rem;
    color: #666;
    margin-left: 0.5rem; /* Aligns slightly with text */
    font-style: italic;
}

/* --- UPDATED CONTACT LAYOUT --- */

.contact-container {
    max-width: 900px; /* Tighter width for better reading */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* 1. Support Grid (Top Row) */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* 2. Form Container (Bottom Row) */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.form-header h2 { margin: 0 0 0.5rem 0; font-size: 2rem; font-weight: 800; }
.form-header p { color: #666; margin: 0; }

/* 3. Form Styling */
.sanctus-form {
    display: flex; flex-direction: column; gap: 1.5rem;
}

.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}

.form-group {
    display: flex; flex-direction: column; gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem; font-weight: 700; color: #1A1A1A; margin-left: 0.2rem;
}

/* Inputs & Textarea */
.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: var(--sanctus-font);
    font-size: 1rem;
    color: #1A1A1A;
    background: #f9f9f9;
    transition: all 0.2s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #8E00FF;
    background: white;
    box-shadow: 0 0 0 4px rgba(142, 0, 255, 0.1);
}

/* Submit Button */
.btn-submit {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: var(--sanctus-text); /* Black button */
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--sanctus-gradient); /* Gradient on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(142, 0, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-container { padding: 1.5rem; }
}

/* --- FEATURE HIGHLIGHT --- */
.feature-highlight {
    background: white; /* Or var(--sanctus-bg) for contrast */
    padding: 6rem 2rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8E00FF;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.highlight-text h2 { font-size: 2.5rem; margin: 0 0 1rem 0; color: #1A1A1A; }
.highlight-text p { font-size: 1.1rem; color: #666; line-height: 1.6; margin-bottom: 2rem; }

.highlight-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.highlight-list li { display: flex; gap: 0.8rem; align-items: center; font-size: 1rem; color: #333; font-weight: 500; }
.highlight-list li i { color: #8E00FF; }

/* The Tilted Card */
.video-card-tilted {
    background: white;
    padding: 10px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: rotate(2deg); /* Tilted Right */
    transition: transform 0.3s ease;
}
.video-card-tilted:hover { transform: rotate(0deg) scale(1.02); }

.video-card-tilted video {
    width: 100%; border-radius: 16px; display: block;
}

/* Mobile */
@media (max-width: 900px) {
    .highlight-grid { grid-template-columns: 1fr; text-align: center; }
    .highlight-list { align-items: center; } /* Center bullets */
    .highlight-visual { margin-top: 2rem; }
}
/* --- COMPARISON TABLE --- */
.table-responsive-wrapper {
    overflow-x: auto; /* Allows scroll on mobile */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.sanctus-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px; /* Forces scroll on small screens */
}

.sanctus-table th {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    border-bottom: 2px solid #f0f0f0;
    color: #1A1A1A;
}

.sanctus-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-weight: 500;
}

/* Column Alignments */
.sanctus-table th.feature-col, 
.sanctus-table td:first-child {
    text-align: left;
    padding-left: 2rem;
    font-weight: 700;
    color: #1A1A1A;
}

/* Highlight Colors */
.text-green { color: #00C853; font-size: 1.2rem; }
.text-red { color: #FF5252; opacity: 1; font-size: 1.2rem; }

/* Header Colors (Matching your request) */
.starter-col { color: #aa2cc6ed !important; }
.personal-col { color: #b956ff !important; }
.commercial-col { color: #8E00FF !important; /* Updated to brand purple */ }

/* Zebra Striping */
.sanctus-table tbody tr:nth-child(odd) { background-color: #fafafa; }

/* Button Group Container */
.button-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

/* Primary Button (Purple Gradient) */
.btn-buy-primary {
    flex: 1; /* Takes 50% width */
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: var(--sanctus-gradient);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 20px -5px rgba(142, 0, 255, 0.3);
    transition: transform 0.2s;
    border: 2px solid transparent; /* Keeps size equal to secondary */
}

/* Secondary Button (White with Purple Border) */
.btn-buy-secondary {
    flex: 1; /* Takes 50% width */
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: white;
    color: #8E00FF;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid #8E00FF; /* The outline */
    transition: background 0.2s, transform 0.2s;
}

/* Hover Effects */
.btn-buy-primary:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.btn-buy-secondary:hover {
    transform: translateY(-2px);
    background: #f9f0ff; /* Very light purple tint */
}

/* Mobile: Stack buttons */
@media (max-width: 600px) {
    .button-group { flex-direction: column; }
}

/* --- INTERACTIVE SHOWCASE --- */
.showcase-section {
    background: #fff;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid #eee;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover { color: #555; border-color: #ccc; }

.tab-btn.active {
    color: #8E00FF;
    border-color: #8E00FF;
}

/* The Content Box */
.showcase-display {
    background: #F9F9F9;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 400px; /* Prevents layout jumping */
}

.tab-content {
    display: none; /* Hidden by default */
    animation: fadeEffect 0.5s;
}
.active-content { display: block; }

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-text h3 { margin-top: 0; font-size: 2rem; }
.tab-text p { font-size: 1.1rem; color: #666; line-height: 1.6; }

.tab-bullets { margin-top: 1.5rem; padding-left: 1.2rem; }
.tab-bullets li { margin-bottom: 0.5rem; color: #444; }

.tab-visual img, .tab-visual video {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .tab-grid { grid-template-columns: 1fr; text-align: center; }
    .tab-bullets { display: inline-block; text-align: left; }
}

/* --- SPECS & FAQ --- */
.faq-section { background: #fff; border-top: 1px solid #eee; }

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
}

.specs-col h3, .faq-col h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }

/* Specs Box */
.specs-box {
    background: #F9F9F9;
    padding: 2rem;
    border-radius: 16px;
}

.spec-row {
    display: flex; flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}
.spec-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.spec-row strong { color: #1A1A1A; margin-bottom: 0.3rem; }
.spec-row span { color: #666; }

/* Accordion */
.accordion-item { border-bottom: 1px solid #eee; }

.accordion-btn {
    width: 100%;
    background: none; border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.1rem; font-weight: 600; color: #1A1A1A;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.accordion-btn:hover { color: #8E00FF; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 2rem;
}
.accordion-content p { margin: 0 0 1.5rem 0; color: #666; line-height: 1.6; }

/* Active State */
.accordion-btn.active .acc-icon { transform: rotate(45deg); }
.acc-icon { font-size: 1.5rem; transition: transform 0.3s; }

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
}