
:root {
            --primary-emerald: #009B77;
            --text-dark-gray: #333333;
            --surface-mint: #E0F2F1;
            --background-white: #FFFFFF;
            --heading-font: 'Arial', sans-serif;
            --body-font: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
            --scroll-behavior: smooth;
        }

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

        html {
            scroll-behavior: var(--scroll-behavior);
            font-size: 16px;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-dark-gray);
            background-color: var(--background-white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .spatial-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--heading-font);
            font-weight: 700;
            font-stretch: expanded;
            letter-spacing: 0.05em;
            line-height: 1.3;
            color: var(--text-dark-gray);
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; margin-bottom: 2rem; }
        h3 { font-size: 1.75rem; font-stretch: normal; }
        h4 { font-size: 1.25rem; font-stretch: normal; }
        p { margin-bottom: 1.5rem; }
        a { color: var(--primary-emerald); text-decoration: none; transition: opacity 0.3s ease; }
        a:hover { opacity: 0.8; }

        /* HEADER & NAVIGATION */
        .page-pinnacle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        .page-pinnacle.scrolled {
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .brand-emblem {
            font-family: var(--heading-font);
            font-weight: 900;
            font-stretch: extra-expanded;
            font-size: 1.8rem;
            color: var(--primary-emerald);
        }

        .pinnacle-navigator nav {
            display: flex;
            gap: 30px;
        }
        
        .pinnacle-navigator nav a {
            font-weight: 600;
            color: var(--text-dark-gray);
            position: relative;
            padding: 5px 0;
        }

        .pinnacle-navigator nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-emerald);
            transition: width 0.3s ease-out;
        }

        .pinnacle-navigator nav a:hover::after, .pinnacle-navigator nav a.active::after {
            width: 100%;
        }

        /* HERO SECTION */
        .genesis-block {
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 100px;
            background-image: radial-gradient(circle at top right, var(--surface-mint) 0%, transparent 40%);
        }

        .genesis-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .genesis-content p {
            font-size: 1.2rem;
            max-width: 650px;
            margin: 1.5rem auto 2.5rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary-emerald);
            color: var(--background-white);
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 155, 119, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 155, 119, 0.4);
            color: var(--background-white);
            opacity: 1;
        }

        /* ARTICLE SECTION */
        .article-platter {
            background-color: var(--background-white);
            padding: 60px 0;
        }

        .article-platter-title {
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #999;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            display: block;
        }

        .article-platter-subtitle {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            font-family: var(--heading-font);
            font-weight: 700;
            font-stretch: expanded;
        }
        
        .article-content h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--surface-mint);
        }
        .article-content p {
            padding: 0 1rem;
        }
        .article-content ul, .article-content ol {
            margin: 0 0 1.5rem 3rem;
            padding: 0 1rem;
        }
        .article-content li {
            margin-bottom: 0.75rem; 
        }
        .article-content strong, .article-content b {
            color: var(--primary-emerald);
            font-weight: 600;
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            font-size: 0.95rem;
        }
        .article-content th, .article-content td {
            text-align: left;
            padding: 12px 15px;
            border-bottom: 1px solid var(--surface-mint);
        }
        .article-content th {
            background-color: var(--surface-mint);
            font-weight: 700;
        }
        .article-content .article-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }


        /* BENEFITS SECTION (FLIP CARDS) */
        .benefits-matrix {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .flipper-pod {
            aspect-ratio: 1 / 1;
            perspective: 1000px;
        }

        .flipper-core {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .flipper-pod:hover .flipper-core {
            transform: rotateY(180deg);
        }

        .card-face {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px;
            border-radius: 12px;
        }
        
        .card-front {
            background: var(--surface-mint);
        }

        .card-face-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 1.5rem;
            stroke: var(--primary-emerald);
            fill: none;
            stroke-width: 1.5px;
        }

        .card-front h4 {
            color: var(--primary-emerald);
        }

        .card-back {
            background: var(--primary-emerald);
            color: white;
            transform: rotateY(180deg);
        }

        .card-back h4 {
            color: white;
            margin-bottom: 1rem;
        }
        .card-back p {
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .mini-cta {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
        }
        .mini-cta:hover {
            background: white;
            color: var(--primary-emerald);
        }

        /* FINAL CTA */
        .final-call-zone {
            background-color: var(--surface-mint);
            text-align: center;
        }

        .capture-form {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 2rem 0;
        }

        .capture-form input[type="email"] {
            width: 100%;
            max-width: 350px;
            padding: 15px 25px;
            border: 1px solid #ccc;
            border-radius: 50px;
            font-size: 1rem;
        }

        .capture-form input[type="email"]:focus {
            outline: none;
            border-color: var(--primary-emerald);
            box-shadow: 0 0 0 3px rgba(0, 155, 119, 0.2);
        }

        .trust-elements {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #555;
        }

        /* GUARANTEES / COMMITMENT */
        .commitment-sector {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .commitment-item {
            padding: 30px;
            border: 1px solid var(--surface-mint);
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .commitment-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .commitment-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            stroke-width: 1;
            stroke: var(--primary-emerald);
        }
        .commitment-item h4 {
            margin-bottom: 0.5rem;
        }

        /* REVIEWS */
        .review-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .review-card {
            background-color: var(--surface-mint);
            padding: 30px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
        }
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-emerald);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 15px;
        }
        .review-author span {
            display: block;
        }
        .author-name {
            font-weight: bold;
        }
        .author-result {
            font-size: 0.9rem;
            color: #555;
        }
        .review-card p {
            flex-grow: 1;
            font-style: italic;
        }
        .review-card p::before { content: '“'; }
        .review-card p::after { content: '”'; }


        /* FAQ ACCORDION */
        .faq-accordion .faq-item {
            border-bottom: 1px solid var(--surface-mint);
        }
        .faq-accordion .faq-item:first-child {
            border-top: 1px solid var(--surface-mint);
        }
        .faq-question {
            cursor: pointer;
            padding: 25px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            fill: var(--primary-emerald);
            transition: transform 0.3s ease;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease;
            padding: 0 15px;
        }
        .faq-answer p {
            padding: 0 0 20px;
        }
        .faq-item.active .faq-answer {
            /* max-height is set by JS */
            padding-top: 10px;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* HOW IT WORKS */
        .process-flow {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .process-step {
            padding: 30px;
            text-align: center;
            position: relative;
        }
        .step-number {
            position: absolute;
            top: 0;
            left: 0;
            font-size: 4rem;
            font-weight: 900;
            color: var(--surface-mint);
            line-height: 1;
            z-index: -1;
            font-stretch: extra-expanded;
        }
        .process-step h4 { margin: 1.5rem 0 0.5rem; }


        /* FOOTER */
        .page-terminus {
            background-color: var(--text-dark-gray);
            color: #ddd;
            padding: 60px 5%;
        }
        
        .terminus-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .terminus-about .brand-emblem {
            color: var(--background-white);
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        .terminus-about p {
            font-size: 0.9rem;
            color: #bbb;
        }

        .terminus-group h4 {
            color: white;
            font-stretch: normal;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .terminus-nav {
            list-style: none;
        }

        .terminus-nav li {
            margin-bottom: 12px;
        }
        .terminus-nav a {
            color: #bbb;
        }
        .terminus-nav a:hover {
            color: white;
            opacity: 1;
        }

        .terminus-bottom {
            border-top: 1px solid #555;
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        }


        /* ANIMATIONS & RESPONSIVE */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .benefits-matrix, .review-gallery, .process-flow {
                grid-template-columns: repeat(2, 1fr);
            }
            .terminus-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .pinnacle-navigator nav { display: none; } /* In a real project, a JS-powered hamburger menu would be here */

            .genesis-block { min-height: auto; padding: 150px 0 50px; }
            
            .benefits-matrix,
            .commitment-sector,
            .review-gallery,
            .process-flow {
                grid-template-columns: 1fr;
            }
            .flipper-pod {
                aspect-ratio: auto;
                height: 350px;
            }
            .terminus-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .terminus-about p {
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
        }


.article-main-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 4rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .video-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 4rem;
        }
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }