
/* CSS Variables */
        :root {
            --bg-dark-green: #0a2e28;
            --header-cream: #f0ead6;
            --text-mint: #bdf0e0;
            --icon-gold: #e5b873;
            --cta-accent: #a0f0d0;
            --hover-accent: #c8e6de;
        }

        /* Base & Typography */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark-green);
            color: var(--text-mint);
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--header-cream);
            font-family: 'Arial Black', 'Impact', 'Gadget', sans-serif;
            font-stretch: extra-expanded;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 0.5em; }
        h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1em; }
        h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.75em; }
        p { margin-bottom: 1.5rem; }
        
        a {
            color: var(--cta-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover { color: var(--header-cream); }

        ul, ol {
            padding-left: 25px;
            margin-bottom: 1.5rem;
        }
        li { margin-bottom: 0.75rem; }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
        }
        
        strong, b {
            color: var(--header-cream);
        }

        .l-container {
            width: 90%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .l-section {
            padding: 6rem 0;
            position: relative;
        }

        .l-section:nth-of-type(odd) {
            background-color: rgba(0,0,0,0.1);
        }

        .centralized-text {
            text-align: center;
        }

        .primary-cta-button {
            display: inline-block;
            background-color: var(--cta-accent);
            color: var(--bg-dark-green);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-family: 'Arial Black', 'Impact', sans-serif;
            font-stretch: expanded;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 15px rgba(160, 240, 208, 0.2);
            border: none;
            cursor: pointer;
        }
        .primary-cta-button:hover {
            transform: translateY(-5px);
            background-color: var(--header-cream);
        }
        
        /* Fade-in Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* --- Header --- */
        .site-summit {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(189, 240, 224, 0.2);
        }

        .firm-brand {
            font-size: 1.5rem;
            color: var(--header-cream);
            font-family: 'Arial Black', 'Impact', sans-serif;
            font-stretch: expanded;
            letter-spacing: 0.05em;
        }
        
        .firm-brand svg {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            vertical-align: middle;
            fill: var(--icon-gold);
        }

        .summit-navigation {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .summit-navigation a {
            color: var(--text-mint);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            padding: 0.5rem 0;
        }
        .summit-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--icon-gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }
        .summit-navigation a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        .summit-navigation a:hover {
            color: var(--header-cream);
        }

        .dropdown-capsule {
            position: relative;
        }
        .dropdown-trigger {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .dropdown-trigger .arrow-icon {
            transition: transform 0.3s ease;
            width: 14px;
            height: 14px;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--bg-dark-green);
            border: 1px solid rgba(189, 240, 224, 0.2);
            padding: 1rem;
            min-width: 250px;
            z-index: 100;
            border-radius: 8px;
            margin-top: 10px;
        }
        .dropdown-content a {
            display: block;
            padding: 0.75rem 0;
            text-transform: none;
            letter-spacing: normal;
        }
        .dropdown-content a::after {
            display: none;
        }
        .dropdown-capsule.open .dropdown-content {
            display: block;
        }
        .dropdown-capsule.open .arrow-icon {
            transform: rotate(180deg);
        }
        .mobile-nav-toggle { display: none; }
        
        /* --- Hero Section --- */
        .gateway-sector {
            min-height: 90vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 0;
            padding-bottom: 4rem;
        }
        .gateway-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .gateway-content .emotional-hook {
            font-size: 1.25rem;
            color: var(--cta-accent);
            max-width: 700px;
            margin: 1.5rem auto 2.5rem;
        }
        
        /* --- Benefits Section (Flip Cards) --- */
        .grid-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            perspective: 1500px;
        }
        .flip-card-unit {
            background-color: transparent;
            width: 100%;
            min-height: 350px;
            position: relative;
        }

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

        .flip-card-unit: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: 1px solid rgba(189, 240, 224, 0.3);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
        .flip-card-front {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .flip-card-back {
            background-color: #0d3d35;
            color: var(--text-mint);
            transform: rotateY(180deg);
        }
        .benefit-icon {
            width: 64px;
            height: 64px;
            fill: var(--icon-gold);
            margin-bottom: 1.5rem;
        }
        .flip-card-back p {
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .secondary-cta-button {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            border: 1px solid var(--cta-accent);
            color: var(--cta-accent);
            border-radius: 50px;
            font-weight: 500;
        }
        .secondary-cta-button:hover {
            background-color: var(--cta-accent);
            color: var(--bg-dark-green);
        }


        /* --- Article Section --- */
        .article-zone h2 {
            border-left: 4px solid var(--icon-gold);
            padding-left: 1rem;
            margin-top: 3rem;
            margin-bottom: 2rem;
        }
        .article-zone table {
             width: 100%;
             border-collapse: collapse;
             margin: 2rem 0;
             box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }
        .article-zone th, .article-zone td {
            border: 1px solid rgba(189, 240, 224, 0.2);
            padding: 1rem;
            text-align: left;
        }
        .article-zone th {
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--header-cream);
        }
        .section-intro-title {
            color: var(--header-cream);
            font-size: 1.2rem;
            text-align: center;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: normal;
        }
        .section-intro-subtitle {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--header-cream);
            font-family: 'Arial Black', 'Impact', sans-serif;
            font-stretch: expanded;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 3rem;
        }
        
        /* --- Product Composition --- */
        .composition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            align-items: center;
        }
        .composition-list ul {
            list-style-type: none;
            padding: 0;
        }
        .composition-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .composition-list .item-icon {
            width: 24px;
            height: 24px;
            fill: var(--icon-gold);
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .composition-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0,0,0,0.2);
            border-radius: 12px;
            padding: 3rem;
            min-height: 400px;
        }
        .composition-visual svg {
            width: 80%;
            max-width: 300px;
            height: auto;
            fill: var(--text-mint);
            opacity: 0.8;
        }

        /* --- Step-by-Step Process --- */
        .process-flow {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
        }
        .process-flow::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--icon-gold), var(--icon-gold) 10px, transparent 10px, transparent 20px);
            z-index: -1;
        }
        .process-step {
            text-align: center;
            flex-basis: 30%;
        }
        .step-orb {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background-color: var(--bg-dark-green);
            border: 3px solid var(--icon-gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            color: var(--icon-gold);
            font-family: 'Arial Black', sans-serif;
            font-stretch: expanded;
        }
        .process-step h3 {
            color: var(--cta-accent);
        }

        /* --- Final CTA --- */
        .final-call-zone {
            background: linear-gradient(45deg, #0e3b33, #1a5247);
            border-radius: 15px;
            padding: 4rem;
        }
        .final-call-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .final-call-form .form-group {
            margin-bottom: 1.5rem;
        }
        .final-call-form input {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--text-mint);
            background-color: transparent;
            border-radius: 8px;
            color: var(--header-cream);
            font-size: 1rem;
        }
        .final-call-form input::placeholder {
            color: var(--text-mint);
            opacity: 0.7;
        }
        .trust-elements {
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-mint);
            opacity: 0.8;
        }
        .trust-elements svg {
            width: 20px;
            height: 20px;
            fill: var(--cta-accent);
        }
        
        /* --- FAQ Section --- */
        .faq-accordion .faq-item {
            border-bottom: 1px solid rgba(189, 240, 224, 0.2);
            padding: 1.5rem 0;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.25rem;
            color: var(--header-cream);
            font-weight: 500;
        }
        .faq-icon {
            width: 30px;
            height: 30px;
            fill: var(--icon-gold);
            transition: transform 0.4s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
        }
        .faq-item.active .faq-answer {
            padding-top: 1.5rem;
            max-height: 500px; /* Adjust as needed */
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* --- Social Proof Section --- */
        .proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .testimonial-card {
            background-color: rgba(0,0,0,0.15);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid var(--icon-gold);
        }
        .testimonial-quote {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            background-color: var(--icon-gold);
            color: var(--bg-dark-green);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 1.5rem;
        }
        .author-info strong {
            display: block;
            color: var(--header-cream);
        }
        .author-info span {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* --- Footer --- */
        .site-nadir {
            padding: 4rem 0 2rem;
            background-color: #061f1a;
        }
        .nadir-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
        }
        .nadir-about h4, .nadir-column h4 {
            color: var(--header-cream);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        .nadir-about p {
            opacity: 0.8;
            font-size: 0.95rem;
        }
        .nadir-column ul {
            list-style: none;
            padding: 0;
        }
        .nadir-column li {
            margin-bottom: 1rem;
        }
        .nadir-column a {
            color: var(--text-mint);
            opacity: 0.9;
        }
        .nadir-column a:hover {
            opacity: 1;
            color: var(--header-cream);
            padding-left: 5px;
        }
        .site-copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(189, 240, 224, 0.2);
            font-size: 0.9rem;
            opacity: 0.7;
        }


        /* Responsive Styles */
        @media (max-width: 992px) {
            .final-call-grid {
                grid-template-columns: 1fr;
            }
            .nadir-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .summit-navigation {
                display: none; /* simple hide for this example */
            }
            /* A more complex solution would involve a JS-toggled mobile menu */
            .mobile-nav-toggle {
                display: block;
                cursor: pointer;
                background: none;
                border: none;
            }
            .mobile-nav-toggle svg {
                width: 30px;
                height: 30px;
                fill: var(--header-cream);
            }
            .process-flow {
                flex-direction: column;
            }
            .process-flow::before {
                top: 5%;
                bottom: 5%;
                left: 38px;
                width: 2px;
                height: auto;
                background: repeating-linear-gradient(180deg, var(--icon-gold), var(--icon-gold) 10px, transparent 10px, transparent 20px);
            }
            .nadir-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
             .nadir-about, .nadir-column {
                display: flex;
                flex-direction: column;
                align-items: center;
             }
        }


.contact-page-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: flex-start;
        }
        .contact-details-block .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .contact-details-block .contact-item-icon {
            width: 32px;
            height: 32px;
            fill: var(--icon-gold);
            flex-shrink: 0;
            margin-top: 5px;
        }
        .contact-details-block .contact-item h3 {
            font-size: 1.2rem;
            color: var(--cta-accent);
            margin-bottom: 0.25rem;
            text-transform: uppercase;
        }
        .contact-details-block .contact-item p {
            margin: 0;
            line-height: 1.6;
            opacity: 0.9;
        }
        .contact-form-wrapper {
            background-color: rgba(0,0,0,0.15);
            padding: 3rem;
            border-radius: 15px;
        }
        .contact-form-wrapper input,
        .contact-form-wrapper textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--text-mint);
            background-color: transparent;
            border-radius: 8px;
            color: var(--header-cream);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-family: inherit;
        }
        .contact-form-wrapper input::placeholder,
        .contact-form-wrapper textarea::placeholder {
            color: var(--text-mint);
            opacity: 0.7;
        }
        .contact-form-wrapper textarea {
            min-height: 150px;
            resize: vertical;
        }
        .map-wrapper {
            background-color: #061f1a;
            border: 1px solid rgba(189, 240, 224, 0.2);
            border-radius: 12px;
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--text-mint);
            opacity: 0.5;
            font-size: 1.2rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        @media (max-width: 992px) {
            .contact-page-grid {
                grid-template-columns: 1fr;
            }
        }

/* CSS Variables */
        :root {
            --bg-dark-green: #0a2e28;
            --header-cream: #f0ead6;
            --text-mint: #bdf0e0;
            --icon-gold: #e5b873;
            --cta-accent: #a0f0d0;
            --hover-accent: #c8e6de;
        }

/* Base & Typography */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark-green);
            color: var(--text-mint);
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--header-cream);
            font-family: 'Arial Black', 'Impact', 'Gadget', sans-serif;
            font-stretch: extra-expanded;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 0.5em; }
        h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1em; }
        h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.75em; }
        p { margin-bottom: 1.5rem; }

        a {
            color: var(--cta-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover { color: var(--header-cream); }

        ul, ol {
            padding-left: 25px;
            margin-bottom: 1.5rem;
        }
        li { margin-bottom: 0.75rem; }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
        }

        strong, b {
            color: var(--header-cream);
        }
        .l-container {
            width: 90%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .l-section {
            padding: 6rem 0;
            position: relative;
        }
        .l-section:nth-of-type(odd) {
            background-color: rgba(0,0,0,0.1);
        }
        .centralized-text {
            text-align: center;
        }
        .primary-cta-button {
            display: inline-block;
            background-color: var(--cta-accent);
            color: var(--bg-dark-green);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-family: 'Arial Black', 'Impact', sans-serif;
            font-stretch: expanded;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 15px rgba(160, 240, 208, 0.2);
            border: none;
            cursor: pointer;
        }
       .primary-cta-button:hover {
            transform: translateY(-5px);
            background-color: var(--header-cream);
        }

/* Fade-in Animation */
       .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
       .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

/* --- Header --- */
       .site-summit {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(189, 240, 224, 0.2);
        }
        .firm-brand {
            font-size: 1.5rem;
            color: var(--header-cream);
            font-family: 'Arial Black', 'Impact', sans-serif;
            font-stretch: expanded;
            letter-spacing: 0.05em;
        }
        .firm-brand svg {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            vertical-align: middle;
            fill: var(--icon-gold);
        }
        .summit-navigation {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .summit-navigation a {
            color: var(--text-mint);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            padding: 0.5rem 0;
        }
       .summit-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--icon-gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }
       .summit-navigation a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
       .summit-navigation a:hover {
            color: var(--header-cream);
        }
        .dropdown-capsule {
            position: relative;
        }
       .dropdown-trigger {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
       .dropdown-trigger.arrow-icon {
            transition: transform 0.3s ease;
            width: 14px;
            height: 14px;
        }
       .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--bg-dark-green);
            border: 1px solid rgba(189, 240, 224, 0.2);
            padding: 1rem;
            min-width: 250px;
            z-index: 100;
            border-radius: 8px;
            margin-top: 10px;
        }
       .dropdown-content a {
            display: block;
            padding: 0.75rem 0;
            text-transform: none;
            letter-spacing: normal;
        }
       .dropdown-content a::after {
            display: none;
        }
       .dropdown-capsule.open.dropdown-content {
            display: block;
        }
       .dropdown-capsule.open.arrow-icon {
            transform: rotate(180deg);
        }
       .mobile-nav-toggle { display: none; }

/* --- Hero Section --- */
       .gateway-sector {
            min-height: 90vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 0;
            padding-bottom: 4rem;
        }
       .gateway-content {
            max-width: 900px;
            margin: 0 auto;
        }
       .gateway-content.emotional-hook {
            font-size: 1.25rem;
            color: var(--cta-accent);
            max-width: 700px;
            margin: 1.5rem auto 2.5rem;
        }

/* --- Benefits Section (Flip Cards) --- */
       .grid-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            perspective: 1500px;
        }
       .flip-card-unit {
            background-color: transparent;
            width: 100%;
            min-height: 350px;
            position: relative;
        }
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        .flip-card-unit: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: 1px solid rgba(189, 240, 224, 0.3);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
       .flip-card-front {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .flip-card-back {
            background-color: #0d3d35;
            color: var(--text-mint);
            transform: rotateY(180deg);
        }
       .benefit-icon {
            width: 64px;
            height: 64px;
            fill: var(--icon-gold);
            margin-bottom: 1.5rem;
        }
       .flip-card-back p {
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
       .secondary-cta-button {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            border: 1px solid var(--cta-accent);
            color: var(--cta-accent);
            border-radius: 50px;
            font-weight: 500;
        }
       .secondary-cta-button:hover {
            background-color: var(--cta-accent);
            color: var(--bg-dark-green);
        }

/* --- Article Section --- */
       .article-zone h2 {
            border-left: 4px solid var(--icon-gold);
            padding-left: 1rem;
            margin-top: 3rem;
            margin-bottom: 2rem;
        }
       .article-zone table {
             width: 100%;
             border-collapse: collapse;
             margin: 2rem 0;
             box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }
       .article-zone th,.article-zone td {
            border: 1px solid rgba(189, 240, 224, 0.2);
            padding: 1rem;
            text-align: left;
        }
       .article-zone th {
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--header-cream);
        }
       .section-intro-title {
            color: var(--header-cream);
            font-size: 1.2rem;
            text-align: center;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: normal;
        }
       .section-intro-subtitle {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--header-cream);
            font-family: 'Arial Black', 'Impact', sans-serif;
            font-stretch: expanded;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 3rem;
        }

/* --- Product Composition --- */
       .composition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            align-items: center;
        }
       .composition-list ul {
            list-style-type: none;
            padding: 0;
        }
       .composition-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
       .composition-list.item-icon {
            width: 24px;
            height: 24px;
            fill: var(--icon-gold);
            margin-right: 1rem;
            flex-shrink: 0;
        }
       .composition-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0,0,0,0.2);
            border-radius: 12px;
            padding: 3rem;
            min-height: 400px;
        }
       .composition-visual svg {
            width: 80%;
            max-width: 300px;
            height: auto;
            fill: var(--text-mint);
            opacity: 0.8;
        }

/* --- Step-by-Step Process --- */
       .process-flow {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
        }
       .process-flow::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--icon-gold), var(--icon-gold) 10px, transparent 10px, transparent 20px);
            z-index: -1;
        }
       .process-step {
            text-align: center;
            flex-basis: 30%;
        }
       .step-orb {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background-color: var(--bg-dark-green);
            border: 3px solid var(--icon-gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            color: var(--icon-gold);
            font-family: 'Arial Black', sans-serif;
            font-stretch: expanded;
        }
       .process-step h3 {
            color: var(--cta-accent);
        }

/* --- Final CTA --- */
       .final-call-zone {
            background: linear-gradient(45deg, #0e3b33, #1a5247);
            border-radius: 15px;
            padding: 4rem;
        }
       .final-call-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
       .final-call-form.form-group {
            margin-bottom: 1.5rem;
        }
       .final-call-form input {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--text-mint);
            background-color: transparent;
            border-radius: 8px;
            color: var(--header-cream);
            font-size: 1rem;
        }
       .final-call-form input::placeholder {
            color: var(--text-mint);
            opacity: 0.7;
        }
       .trust-elements {
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-mint);
            opacity: 0.8;
        }
       .trust-elements svg {
            width: 20px;
            height: 20px;
            fill: var(--cta-accent);
        }

/* --- FAQ Section --- */
       .faq-accordion.faq-item {
            border-bottom: 1px solid rgba(189, 240, 224, 0.2);
            padding: 1.5rem 0;
        }
       .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.25rem;
            color: var(--header-cream);
            font-weight: 500;
        }
       .faq-icon {
            width: 30px;
            height: 30px;
            fill: var(--icon-gold);
            transition: transform 0.4s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }
       .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
        }
       .faq-item.active.faq-answer {
            padding-top: 1.5rem;
            max-height: 500px; /* Adjust as needed */
        }
       .faq-item.active.faq-icon {
            transform: rotate(45deg);
        }

/* --- Social Proof Section --- */
       .proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
       .testimonial-card {
            background-color: rgba(0,0,0,0.15);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid var(--icon-gold);
        }
       .testimonial-quote {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
       .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
       .author-avatar {
            width: 50px;
            height: 50px;
            background-color: var(--icon-gold);
            color: var(--bg-dark-green);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 1.5rem;
        }
       .author-info strong {
            display: block;
            color: var(--header-cream);
        }
       .author-info span {
            font-size: 0.9rem;
            opacity: 0.8;
        }

/* --- Footer --- */
       .site-nadir {
            padding: 4rem 0 2rem;
            background-color: #061f1a;
        }
       .nadir-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
        }
       .nadir-about h4,.nadir-column h4 {
            color: var(--header-cream);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
       .nadir-about p {
            opacity: 0.8;
            font-size: 0.95rem;
        }
       .nadir-column ul {
            list-style: none;
            padding: 0;
        }
       .nadir-column li {
            margin-bottom: 1rem;
        }
       .nadir-column a {
            color: var(--text-mint);
            opacity: 0.9;
        }
       .nadir-column a:hover {
            opacity: 1;
            color: var(--header-cream);
            padding-left: 5px;
        }
       .site-copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(189, 240, 224, 0.2);
            font-size: 0.9rem;
            opacity: 0.7;
        }

/* Responsive Styles */
        @media (max-width: 992px) {
           .final-call-grid {
                grid-template-columns: 1fr;
            }
           .nadir-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
           .summit-navigation {
                display: none; /* simple hide for this example */
            }
            /* A more complex solution would involve a JS-toggled mobile menu */
           .mobile-nav-toggle {
                display: block;
                cursor: pointer;
                background: none;
                border: none;
            }
           .mobile-nav-toggle svg {
                width: 30px;
                height: 30px;
                fill: var(--header-cream);
            }
           .process-flow {
                flex-direction: column;
            }
           .process-flow::before {
                top: 5%;
                bottom: 5%;
                left: 38px;
                width: 2px;
                height: auto;
                background: repeating-linear-gradient(180deg, var(--icon-gold), var(--icon-gold) 10px, transparent 10px, transparent 20px);
            }
           .nadir-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .nadir-about,.nadir-column {
                display: flex;
                flex-direction: column;
                align-items: center;
             }
        }

.faq-page-header {
            padding: 5rem 0;
            text-align: center;
            background-color: #061f1a;
        }
        .faq-page-header h1 {
            color: var(--header-cream);
        }
        .faq-page-header p {
            color: var(--text-mint);
            max-width: 800px;
            margin: 1rem auto 0;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .faq-section-container {
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .faq-category-title {
            text-align: center;
            border-bottom: 2px solid var(--icon-gold);
            padding-bottom: 1rem;
            margin-top: 1rem;
            margin-bottom: 2rem;
            display: inline-block;
        }




.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: rgba(0,0,0,0.15);
    border: 1px solid rgba(189, 240, 224, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.blog-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--header-cream);
}

.blog-card h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h4 a:hover {
    color: var(--cta-accent);
}

.blog-card p {
    flex-grow: 1;
    opacity: 0.9;
    color: var(--text-mint);
    margin-bottom: 2rem;
}

.blog-card .secondary-cta-button {
    margin-top: auto;
    align-self: flex-start;
}

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

/* FIX: force all sections visible (scroll reveal disabled for SEO preview) */
.reveal_on_scroll {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

