
/* --- CSS RESET & BASE STYLES --- */
        :root {
            --bg-white: #FCFCFC;
            --primary-dark-pink: #C73866;
            --text-gray: #4A4A4A;
            --surface-powder: #F8F3F5;
            --border-color: #EAEAEA;
            --font-mono: 'Courier New', Courier, monospace;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --transition-speed: 0.5s;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-white);
            color: var(--text-gray);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-mono);
            color: var(--primary-dark-pink);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.75rem; }
        p { margin-bottom: 1rem; }
        a {
            color: var(--primary-dark-pink);
            text-decoration: none;
            transition: opacity var(--transition-speed) ease;
        }
        a:hover { opacity: 0.7; }

        /* --- LAYOUT & HELPERS --- */
        .vl-container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 0;
        }

        .vl-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .vl-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        @media(max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .vl-grid-2, .vl-grid-4 {
                grid-template-columns: 1fr;
            }
        }

        /* --- SCROLL ANIMATION --- */
        .vl-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .vl-animate.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HEADER --- */
        .vl-main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(252, 252, 252, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
        }

        .vl-logo {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-gray);
            letter-spacing: -1px;
        }

        .vl-logo span {
            color: var(--primary-dark-pink);
        }

        .vl-main-nav a {
            font-family: var(--font-mono);
            color: var(--text-gray);
            margin-left: 2rem;
            font-size: 1rem;
            text-transform: uppercase;
        }

        /* --- HERO SECTION --- */
        .vl-hero-unit {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px; /* Header height */
             background-image: 
                linear-gradient(45deg, var(--border-color) 25%, transparent 25%), 
                linear-gradient(-45deg, var(--border-color) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, var(--border-color) 75%),
                linear-gradient(-45deg, transparent 75%, var(--border-color) 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
        }

        .vl-hero-content {
            max-width: 800px;
        }
        
        .vl-hero-content .vl-subtitle {
            font-family: var(--font-mono);
            font-size: 1.2rem;
            margin: 1.5rem 0;
            color: var(--text-gray);
        }

        .vl-cta-group {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
        }

        .vl-cta-btn {
            display: inline-block;
            padding: 1rem 2rem;
            font-family: var(--font-mono);
            text-transform: uppercase;
            font-size: 1rem;
            border: 2px solid var(--primary-dark-pink);
            transition: all var(--transition-speed) ease;
        }
        
        .vl-cta-btn.primary {
            background-color: var(--primary-dark-pink);
            color: var(--bg-white);
        }

        .vl-cta-btn.secondary {
            background-color: transparent;
            color: var(--primary-dark-pink);
        }

        .vl-cta-btn:hover {
            background-color: #a52f55;
            border-color: #a52f55;
            color: var(--bg-white);
        }
        
        .vl-cta-btn.secondary:hover {
            background-color: var(--surface-powder);
        }

        /* --- ARTICLE SECTION --- */
        .vl-article-wrapper {
            background-color: var(--surface-powder);
            padding: 5rem 5%;
        }

        .vl-article-wrapper .vl-section-title {
            font-family: var(--font-mono);
            text-transform: uppercase;
            color: var(--text-gray);
            letter-spacing: 2px;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .vl-article-wrapper .vl-section-subtitle {
            font-size: 2.5rem;
            font-family: var(--font-mono);
            color: var(--text-gray);
            max-width: 700px;
            margin-bottom: 3rem;
        }
        
        .vl-article-content h2 {
            border-top: 2px solid var(--primary-dark-pink);
            padding-top: 1.5rem;
            margin-top: 3rem;
            margin-bottom: 2rem;
        }
        
        .vl-article-content p {
            padding: 0 1rem;
        }

        .vl-article-content ul, .vl-article-content ol {
            padding-left: 3rem;
            margin-bottom: 1.5rem;
        }

        .vl-article-content li {
            margin-bottom: 0.5rem;
        }
        
        .vl-article-content strong, .vl-article-content b {
            font-weight: 700;
            color: #000;
        }

        .vl-article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
        }
        
        .vl-article-content th, .vl-article-content td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .vl-article-content th {
            background-color: var(--surface-powder);
            font-family: var(--font-mono);
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        
        .vl-article-content img {
            width: 100%;
            height: auto;
            display: block;
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }

        /* --- HOW IT WORKS --- */
        .vl-steps-block {
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        .vl-step-card {
            padding: 2rem;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .vl-step-number {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 4rem;
            font-family: var(--font-mono);
            color: var(--surface-powder);
            line-height: 1;
        }

        /* --- WHATS INCLUDED --- */
        .vl-included-block {
            background-color: var(--surface-powder);
        }

        .vl-included-item {
            background-color: var(--bg-white);
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            border: 1px solid var(--border-color);
            transition: transform var(--transition-speed) ease;
        }

        .vl-included-item:hover {
            transform: scale(1.02);
        }

        .vl-included-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            color: var(--primary-dark-pink);
        }

        /* --- BENEFITS --- */
        .vl-benefits-card {
            background-color: var(--surface-powder);
            padding: 2.5rem 2rem;
        }

        .vl-benefit-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 1.5rem;
            color: var(--primary-dark-pink);
        }

        /* --- FAQ --- */
        .vl-faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 1.5rem 0;
        }
        
        .vl-faq-question {
            font-family: var(--font-mono);
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: var(--text-gray);
        }

        .vl-faq-question:hover {
            color: var(--primary-dark-pink);
        }

        .vl-faq-toggle {
            font-size: 2rem;
            line-height: 1;
            transform: rotate(45deg);
            transition: transform var(--transition-speed) ease;
        }
        
        .vl-faq-item.active .vl-faq-toggle {
            transform: rotate(0deg);
        }

        .vl-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
        }
        
        .vl-faq-answer p {
            padding: 0;
        }

        /* --- TESTIMONIALS --- */
        .vl-testimonials-block {
            background-color: var(--surface-powder);
        }
        
        .vl-testimonial-grid {
             display: grid;
             grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
             gap: 2rem;
        }

        .vl-testimonial-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            padding: 2rem;
        }
        
        .vl-testimonial-card p {
            font-style: italic;
        }

        .vl-testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .vl-author-avatar {
            width: 50px;
            height: 50px;
            background-color: var(--primary-dark-pink);
            color: var(--bg-white);
            font-family: var(--font-mono);
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vl-author-details {
            font-size: 0.9rem;
        }
        
        .vl-author-details strong {
            display: block;
            color: var(--text-gray);
            font-family: var(--font-sans);
            font-weight: 700;
        }
        
        .vl-author-details span {
            color: var(--primary-dark-pink);
            font-weight: 700;
        }

        /* --- FOOTER --- */
        .vl-main-footer {
            background-color: #2b2b2b;
            color: #d1d1d1;
            padding: 5rem 5% 2rem;
        }

        .vl-footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid #4a4a4a;
        }

        .vl-footer-grid h4 {
            font-family: var(--font-mono);
            color: var(--bg-white);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
        }

        .vl-footer-links li {
            list-style: none;
            margin-bottom: 0.75rem;
        }
        
        .vl-footer-links a {
            color: #d1d1d1;
        }
        
        .vl-footer-about p {
           color: #d1d1d1;
        }
        
        .vl-footer-bottom {
            padding-top: 2rem;
            text-align: center;
            font-size: 0.8rem;
            color: #888;
        }

        @media screen and (max-width: 900px) {
            .vl-footer-grid {
                grid-template-columns: 1fr;
            }
        }


.article-main-image {

            width: 100%;

            height: auto;

            border-radius: 8px;

            border: 1px solid var(--border-color);

            margin: -2rem 0 3rem 0;

        }

        .vl-article-content table {

            width: 100%;

            border-collapse: collapse;

            margin: 2rem 0;

            border: 1px solid var(--border-color);

        }

        .vl-article-content th, .vl-article-content td {

            padding: 1rem;

            text-align: left;

            border-bottom: 1px solid var(--border-color);

        }

        .vl-article-content th {

            background-color: var(--surface-powder);

            font-family: var(--font-mono);

            text-transform: uppercase;

            font-size: 0.9rem;

        }

        .vl-article-content ul, .vl-article-content ol {

            padding-left: 2rem;

            margin-bottom: 1.5rem;

        }

        .vl-article-content li {

            margin-bottom: 0.75rem;

        }

        .vl-article-content h2 {

            border-top: 2px solid var(--primary-dark-pink);

            padding-top: 2rem;

            margin-top: 3.5rem;

        }

        .vl-article-content h3 {

             margin-top: 2.5rem;

        }

        .vl-article-content p, .vl-article-content li {

            font-size: 1.1rem;

            color: #333;

        }