
/*
        =====================================================================
        VARIABLES & BASE STYLES
        =====================================================================
        */
        :root {
            --claret-deep: #4A001F;
            --claret-card: #600028;
            --gold-accent: #D4AF37;
            --rose-quartz-text: #BBA8A8;
            --pure-white: #FFFFFF;
            --font-headings: 'Verdana', sans-serif;
            --font-body: 'Georgia', serif;
            --scroll-padding: 100px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--scroll-padding);
        }

        body {
            background-color: var(--claret-deep);
            color: var(--rose-quartz-text);
            font-family: var(--font-body);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 16px;
        }

        /*
        =====================================================================
        TYPOGRAPHY & UTILITIES
        =====================================================================
        */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headings);
            color: var(--gold-accent);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 5vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); }

        p {
            margin-bottom: 1.5rem;
        }
        
        p:last-child {
            margin-bottom: 0;
        }

        a {
            color: var(--gold-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--pure-white);
        }

        .luminous-wrapper {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--gold-accent);
            color: var(--claret-deep);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-family: var(--font-headings);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            border: 2px solid var(--gold-accent);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background-color: transparent;
            color: var(--gold-accent);
        }

        /*
        =====================================================================
        ANIMATIONS
        =====================================================================
        */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /*
        =====================================================================
        HEADER & NAVIGATION
        =====================================================================
        */
        .celestial-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: background-color 0.4s ease, padding 0.4s ease;
            background-color: rgba(74, 0, 31, 0.8);
            backdrop-filter: blur(10px);
        }

        .header-scrolled {
            background-color: var(--claret-deep);
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .navigation-nexus {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

        .logo-anchor {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold-accent);
        }

        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        
        .main-navigation a {
            font-family: var(--font-headings);
            font-weight: 400;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
        }

        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--gold-accent);
            transition: width 0.4s ease;
        }

        .main-navigation a:hover::after {
            width: 100%;
        }

        .article-links {
            display: none; /* Hidden on desktop */
        }

        .mobile-menu-toggle {
            display: none; /* For mobile */
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-toggle .bar {
            width: 25px;
            height: 3px;
            background-color: var(--gold-accent);
            margin: 5px 0;
            transition: all 0.4s ease;
        }

        @media (max-width: 992px) {
            .main-navigation {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--claret-card);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
            }

            .main-navigation.active {
                right: 0;
            }

            .main-navigation ul {
                flex-direction: column;
                text-align: center;
                gap: 2.5rem;
            }

            .main-navigation a {
                font-size: 1.2rem;
            }

            .article-links {
                display: block;
                margin-top: 2rem;
                padding-top: 2rem;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
                text-align: center;
            }
            .article-links h4 { color: var(--rose-quartz-text); font-size: 1rem; margin-bottom: 1rem; }
            .article-links a { display: block; margin-bottom: 1rem; }

            .mobile-menu-toggle {
                display: block;
            }
            
            .mobile-menu-toggle.open .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .mobile-menu-toggle.open .bar2 { opacity: 0; }
            .mobile-menu-toggle.open .bar3 { transform: rotate(45deg) translate(-5px, -6px); }
        }

        /*
        =====================================================================
        HERO SECTION
        =====================================================================
        */
        .hero-vortex {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: var(--scroll-padding) 2rem 5rem;
            overflow: hidden;
        }

        .hero-vortex::before {
            content: 'SECURE DOWNLOAD GUIDE';
            position: absolute;
            top: 20%;
            left: -10%;
            font-size: 15vw;
            font-weight: 100;
            font-family: var(--font-headings);
            color: rgba(212, 175, 55, 0.05);
            transform: rotate(-10deg);
            z-index: 0;
            pointer-events: none;
            font-style: italic;
            white-space: nowrap;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .hero-content h1 {
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }

        /*
        =====================================================================
        BENEFITS SECTION
        =====================================================================
        */
        .transformation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .flip-card-container {
            background-color: transparent;
            width: 100%;
            height: 350px;
            perspective: 1000px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .flip-card-container:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            background-color: var(--claret-card);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .flip-card-back {
            transform: rotateY(180deg);
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
            stroke: var(--gold-accent);
        }
        
        .card-front-title {
            color: var(--gold-accent);
            font-family: var(--font-headings);
            font-size: 1.4rem;
        }

        .card-back-text {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .card-button {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            color: var(--claret-card);
        }

        /*
        =====================================================================
        ARTICLE BLOCK
        =====================================================================
        */
        .article-container {
            background-color: rgba(0,0,0,0.1);
            padding: 4rem;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .article-section-title {
            font-family: var(--font-headings);
            color: var(--rose-quartz-text);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        /* Styles for content inside <!--Article--> */
        .article-container h2 {
            border-bottom: 2px solid var(--gold-accent);
            padding-bottom: 0.5rem;
            margin-top: 3rem;
            margin-bottom: 2rem;
        }
        
        .article-container h2:first-of-type {
            margin-top: 0;
        }
        
        .article-container p {
            padding: 0 1rem;
        }
        
        .article-container ul, .article-container ol {
            padding-left: 3rem;
            margin-bottom: 1.5rem;
        }

        .article-container li {
            margin-bottom: 0.75rem;
        }
        
        .article-container img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
        }
        
        .article-container table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(0,0,0,0.1);
        }
        
        .article-container th, .article-container td {
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 1rem;
            text-align: left;
        }
        
        .article-container th {
            background-color: var(--claret-card);
            color: var(--gold-accent);
            font-family: var(--font-headings);
        }
        
        /*
        =====================================================================
        WHAT'S INCLUDED
        =====================================================================
        */
        .inclusion-matrix {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .inclusion-matrix-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
            background-color: var(--claret-card);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }
        
        .visual-core {
            width: 100px;
            height: 100px;
            background: var(--gold-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px var(--gold-accent);
        }
        
        .visual-core svg { width: 50px; height: 50px; stroke: var(--claret-deep); }
        
        .orbit {
            position: absolute;
            border-radius: 50%;
            border: 1px dashed rgba(212, 175, 55, 0.4);
        }
        
        .orbit-1 { width: 200px; height: 200px; animation: spin 20s linear infinite; }
        .orbit-2 { width: 300px; height: 300px; animation: spin-reverse 30s linear infinite; }
        .orbit-3 { width: 400px; height: 400px; animation: spin 40s linear infinite; }
        
        .orbit-point {
            width: 12px;
            height: 12px;
            background: var(--rose-quartz-text);
            border-radius: 50%;
            position: absolute;
        }
        .orbit-point:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%);}
        .orbit-point:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%);}

        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

        .inclusion-matrix-list {
            flex: 1;
        }
        
        .inclusion-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-family: var(--font-headings);
        }
        
        .inclusion-icon {
            width: 24px;
            height: 24px;
            stroke: var(--gold-accent);
            flex-shrink: 0;
        }

        /*
        =====================================================================
        HOW IT WORKS
        =====================================================================
        */
        .process-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .process-timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: rgba(212, 175, 55, 0.2);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-step {
            padding: 10px 40px;
            position: relative;
            width: 50%;
        }
        
        .timeline-step::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -14px;
            background-color: var(--claret-deep);
            border: 4px solid var(--gold-accent);
            top: 20px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-step.left {
            left: 0;
            text-align: right;
        }
        
        .timeline-step.right {
            left: 50%;
        }
        
        .timeline-step.left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 27px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--claret-card);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--claret-card);
        }
        
        .timeline-step.right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 27px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--claret-card);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--claret-card) transparent transparent;
        }
        
        .timeline-step.right::after {
            left: -14px;
        }
        
        .step-content {
            padding: 20px 30px;
            background-color: var(--claret-card);
            position: relative;
            border-radius: 6px;
        }

        .step-content h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }

        /*
        =====================================================================
        TESTIMONIALS
        =====================================================================
        */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background: var(--claret-card);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid var(--gold-accent);
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-quote {
            flex-grow: 1;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold-accent);
        }
        
        .author-info h4 {
            color: var(--pure-white);
            margin: 0;
            font-size: 1.1rem;
        }
        
        .author-info span {
            font-size: 0.9rem;
            color: var(--gold-accent);
        }
        
        /*
        =====================================================================
        FAQ SECTION
        =====================================================================
        */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .faq-question {
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 1.5rem 1rem;
            font-family: var(--font-headings);
            font-size: 1.2rem;
            color: var(--pure-white);
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            color: var(--gold-accent);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 2rem;
            color: var(--gold-accent);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 1rem;
        }
        
        .faq-answer-content {
            padding: 1rem 0 2rem 0;
        }
        
        /*
        =====================================================================
        FOOTER
        =====================================================================
        */
        .quantum-footer {
            background-color: #21000E; /* Darker than body */
            padding: 4rem 0 2rem 0;
            position: relative;
        }

        .footer-content {
            max-width: 1200px;
            width: 90%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: center;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: var(--rose-quartz-text);
            font-size: 0.95rem;
        }
        .footer-column a:hover {
            color: var(--gold-accent);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            font-size: 0.9rem;
            color: var(--rose-quartz-text);
            opacity: 0.7;
        }
        
        /*
        =====================================================================
        RESPONSIVE ADJUSTMENTS
        =====================================================================
        */
        @media (max-width: 768px) {
            .luminous-wrapper { padding: 4rem 0; }
            .inclusion-matrix { flex-direction: column; text-align: center; }
            .process-timeline::after { left: 12px; }
            .timeline-step { width: 100%; padding-left: 50px; padding-right: 15px; margin-bottom: 2rem; }
            .timeline-step.right { left: 0; }
            .timeline-step::after { left: 0; }
            .timeline-step.left::before, .timeline-step.right::before {
                left: 35px;
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--claret-card) transparent transparent;
            }
            .timeline-step.left { text-align: left; }
            .article-container { padding: 2rem; }
        }


/*         =====================================================================
        VARIABLES & BASE STYLES
        =====================================================================         */
        :root {
            --claret-deep: #4A001F;
            --claret-card: #600028;
            --gold-accent: #D4AF37;
            --rose-quartz-text: #BBA8A8;
            --pure-white: #FFFFFF;
            --font-headings: 'Verdana', sans-serif;
            --font-body: 'Georgia', serif;
            --scroll-padding: 100px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--scroll-padding);
        }

        body {
            background-color: var(--claret-deep);
            color: var(--rose-quartz-text);
            font-family: var(--font-body);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 16px;
        }

        /*         =====================================================================
        TYPOGRAPHY & UTILITIES
        =====================================================================         */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headings);
            color: var(--gold-accent);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 5vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); }

        p {
            margin-bottom: 1.5rem;
        }
        
        p:last-child {
            margin-bottom: 0;
        }

        a {
            color: var(--gold-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--pure-white);
        }
        .luminous-wrapper {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--gold-accent);
            color: var(--claret-deep);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-family: var(--font-headings);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            border: 2px solid var(--gold-accent);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            background-color: transparent;
            color: var(--gold-accent);
        }
        
        /*         =====================================================================
        ANIMATIONS
        =====================================================================         */
       .reveal-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /*         =====================================================================
        HEADER & NAVIGATION
        =====================================================================         */
       .celestial-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: background-color 0.4s ease, padding 0.4s ease;
            background-color: rgba(74, 0, 31, 0.8);
            backdrop-filter: blur(10px);
        }
        .header-scrolled {
            background-color: var(--claret-deep);
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }
        .navigation-nexus {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }
        .logo-anchor {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold-accent);
        }
        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        
        .main-navigation a {
            font-family: var(--font-headings);
            font-weight: 400;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
        }
        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--gold-accent);
            transition: width 0.4s ease;
        }
        .main-navigation a:hover::after {
            width: 100%;
        }
        .article-links {
            display: none; /* Hidden on desktop */
        }
        .mobile-menu-toggle {
            display: none; /* For mobile */
            cursor: pointer;
            z-index: 1001;
        }
        .mobile-menu-toggle .bar {
            width: 25px;
            height: 3px;
            background-color: var(--gold-accent);
            margin: 5px 0;
            transition: all 0.4s ease;
        }

        @media (max-width: 992px) {
           .main-navigation {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--claret-card);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
                display: flex;
            }
            .main-navigation.active {
                right: 0;
            }
            .main-navigation ul {
                flex-direction: column;
                text-align: center;
                gap: 2.5rem;
            }
            .main-navigation a {
                font-size: 1.2rem;
            }
            .article-links {
                display: block;
                margin-top: 2rem;
                padding-top: 2rem;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
                text-align: center;
            }
           .article-links h4 { color: var(--rose-quartz-text); font-size: 1rem; margin-bottom: 1rem; }
           .article-links a { display: block; margin-bottom: 1rem; }
            .mobile-menu-toggle {
                display: block;
            }
            
            .mobile-menu-toggle.open .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
           .mobile-menu-toggle.open .bar2 { opacity: 0; }
           .mobile-menu-toggle.open .bar3 { transform: rotate(45deg) translate(-5px, -6px); }
        }

        /*         =====================================================================
        HERO SECTION
        =====================================================================         */
       .hero-vortex {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: var(--scroll-padding) 2rem 5rem;
            overflow: hidden;
        }
        .hero-vortex::before {
            content: 'SECURE DOWNLOAD GUIDE';
            position: absolute;
            top: 20%;
            left: -10%;
            font-size: 15vw;
            font-weight: 100;
            font-family: var(--font-headings);
            color: rgba(212, 175, 55, 0.05);
            transform: rotate(-10deg);
            z-index: 0;
            pointer-events: none;
            font-style: italic;
            white-space: nowrap;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }
        .hero-content h1 {
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            margin-bottom: 1.5rem;
        }
        .hero-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }
        
        /*         =====================================================================
        BENEFITS SECTION
        =====================================================================         */
       .transformation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .flip-card-container {
            background-color: transparent;
            width: 100%;
            height: 350px;
            perspective: 1000px;
        }
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        .flip-card-container:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            background-color: var(--claret-card);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .flip-card-back {
            transform: rotateY(180deg);
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
            stroke: var(--gold-accent);
        }
        
        .card-front-title {
            color: var(--gold-accent);
            font-family: var(--font-headings);
            font-size: 1.4rem;
        }
        .card-back-text {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .card-button {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            color: var(--claret-card);
        }

        /*         =====================================================================
        ARTICLE BLOCK
        =====================================================================         */
       .article-container {
            background-color: rgba(0,0,0,0.1);
            padding: 4rem;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .article-section-title {
            font-family: var(--font-headings);
            color: var(--rose-quartz-text);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        /* Styles for content inside <!--Article--> */
       .article-container h2 {
            border-bottom: 2px solid var(--gold-accent);
            padding-bottom: 0.5rem;
            margin-top: 3rem;
            margin-bottom: 2rem;
        }
        
        .article-container h2:first-of-type {
            margin-top: 0;
        }
        
        .article-container p {
            padding: 0 1rem;
        }
        
        .article-container ul, .article-container ol {
            padding-left: 3rem;
            margin-bottom: 1.5rem;
        }
        .article-container li {
            margin-bottom: 0.75rem;
        }
        
        .article-container img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
        }
        
        .article-container table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(0,0,0,0.1);
        }
        
        .article-container th, .article-container td {
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 1rem;
            text-align: left;
        }
        
        .article-container th {
            background-color: var(--claret-card);
            color: var(--gold-accent);
            font-family: var(--font-headings);
        }

        /*         =====================================================================
        WHAT'S INCLUDED
        =====================================================================         */
       .inclusion-matrix {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .inclusion-matrix-visual {
            flex: 1;
            position: relative;
            min-height: 400px;
            background-color: var(--claret-card);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }
        
        .visual-core {
            width: 100px;
            height: 100px;
            background: var(--gold-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px var(--gold-accent);
        }
        
        .visual-core svg { width: 50px; height: 50px; stroke: var(--claret-deep); }
        
        .orbit {
            position: absolute;
            border-radius: 50%;
            border: 1px dashed rgba(212, 175, 55, 0.4);
        }
        
        .orbit-1 { width: 200px; height: 200px; animation: spin 20s linear infinite; }
       .orbit-2 { width: 300px; height: 300px; animation: spin-reverse 30s linear infinite; }
       .orbit-3 { width: 400px; height: 400px; animation: spin 40s linear infinite; }
        
        .orbit-point {
            width: 12px;
            height: 12px;
            background: var(--rose-quartz-text);
            border-radius: 50%;
            position: absolute;
        }
       .orbit-point:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%);}
       .orbit-point:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%);}

        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
        .inclusion-matrix-list {
            flex: 1;
        }
        
        .inclusion-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-family: var(--font-headings);
        }
        
        .inclusion-icon {
            width: 24px;
            height: 24px;
            stroke: var(--gold-accent);
            flex-shrink: 0;
        }

        /*         =====================================================================
        HOW IT WORKS
        =====================================================================         */
       .process-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .process-timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: rgba(212, 175, 55, 0.2);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-step {
            padding: 10px 40px;
            position: relative;
            width: 50%;
        }
        
        .timeline-step::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -14px;
            background-color: var(--claret-deep);
            border: 4px solid var(--gold-accent);
            top: 20px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-step.left {
            left: 0;
            text-align: right;
        }
        
        .timeline-step.right {
            left: 50%;
        }
        
        .timeline-step.left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 27px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--claret-card);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--claret-card);
        }
        
        .timeline-step.right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 27px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--claret-card);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--claret-card) transparent transparent;
        }
        
        .timeline-step.right::after {
            left: -14px;
        }
        
        .step-content {
            padding: 20px 30px;
            background-color: var(--claret-card);
            position: relative;
            border-radius: 6px;
        }
        .step-content h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }

        /*         =====================================================================
        TESTIMONIALS
        =====================================================================         */
       .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background: var(--claret-card);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid var(--gold-accent);
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-quote {
            flex-grow: 1;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold-accent);
        }
        
        .author-info h4 {
            color: var(--pure-white);
            margin: 0;
            font-size: 1.1rem;
        }
        
        .author-info span {
            font-size: 0.9rem;
            color: var(--gold-accent);
        }
        
        /*         =====================================================================
        FAQ SECTION
        =====================================================================         */
       .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .faq-question {
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 1.5rem 1rem;
            font-family: var(--font-headings);
            font-size: 1.2rem;
            color: var(--pure-white);
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            color: var(--gold-accent);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 2rem;
            color: var(--gold-accent);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 1rem;
        }
        
        .faq-answer-content {
            padding: 1rem 0 2rem 0;
        }

        /*         =====================================================================
        FOOTER
        =====================================================================         */
       .quantum-footer {
            background-color: #21000E; /* Darker than body */
            padding: 4rem 0 2rem 0;
            position: relative;
        }
        .footer-content {
            max-width: 1200px;
            width: 90%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: center;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 0.8rem;
        }
        .footer-column a {
            color: var(--rose-quartz-text);
            font-size: 0.95rem;
        }
       .footer-column a:hover {
            color: var(--gold-accent);
            padding-left: 5px;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            font-size: 0.9rem;
            color: var(--rose-quartz-text);
            opacity: 0.7;
        }

        /*         =====================================================================
        RESPONSIVE ADJUSTMENTS
        =====================================================================         */
        @media (max-width: 768px) {
           .luminous-wrapper { padding: 4rem 0; }
           .inclusion-matrix { flex-direction: column; text-align: center; }
           .process-timeline::after { left: 12px; }
           .timeline-step { width: 100%; padding-left: 50px; padding-right: 15px; margin-bottom: 2rem; }
           .timeline-step.right { left: 0; }
           .timeline-step::after { left: 0; }
           .timeline-step.left::before, .timeline-step.right::before {
                left: 35px;
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--claret-card) transparent transparent;
            }
           .timeline-step.left { text-align: left; }
           .article-container { padding: 2rem; }
        }
        
        /*         =====================================================================
        ADDITIONAL STYLES FOR PRIVACY PAGE
        =====================================================================         */
        .page-header {
            padding-top: calc(var(--scroll-padding) + 4rem);
            padding-bottom: 2rem;
            text-align: center;
            background: var(--claret-deep);
        }
        
        .page-header .luminous-wrapper {
            padding: 0 1rem;
        }
        
        .page-header .hero-subtitle {
            margin-bottom: 1rem;
        }

        .article-container h3 {
            color: var(--rose-quartz-text);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

.faq-hero {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 12rem 2rem 8rem;
            min-height: 60vh;
            background: linear-gradient(rgba(74, 0, 31, 0.8), var(--claret-deep)), var(--claret-deep);
        }
        .faq-hero-content {
            max-width: 900px;
        }
        #faq-page-main .section-title {
            text-align: left;
            margin-bottom: 2rem;
        }
        #faq-page-main .faq-accordion {
            max-width: none;
        }




/* =====================================================================
   BLOG GRID STYLES
   ===================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--claret-card);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.blog-card-image-link {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image-link img {
    transform: scale(1.05);
}

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

.blog-card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--gold-accent);
}

.blog-card-title a:hover {
    color: var(--pure-white);
}

.blog-card-description {
    font-size: 0.95rem;
    color: var(--rose-quartz-text);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-link {
    font-family: var(--font-headings);
    color: var(--gold-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    align-self: flex-start;
}

.read-more-link:hover {
    color: var(--pure-white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
