
/* CSS RESET & DEFAULTS */
        :root {
            --abyss-green: #0a2e28;
            --forest-green: #1A4314;
            --off-white: #faf9f6;
            --mint-cta: #98ffc2;
            --mint-hover: #baffd9;
            --terracotta-accent: #E2725B;
            --frame-border: #e0e0e0;
            --font-header: 'Arial Black', 'Impact', sans-serif;
            --font-body: 'Helvetica Neue', Arial, sans-serif;
        }
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--off-white);
            color: var(--forest-green);
            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-header);
            font-weight: 900; /* bold is not enough for condensed */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--abyss-green);
        }
        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 2rem; }
        h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 2rem; }
        h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: 1rem; }
        p { margin-bottom: 1.5rem; }
        a { color: var(--forest-green); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: var(--terracotta-accent); }

        /* LAYOUT & UTILITIES */
        .page-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-prime {
            padding: 80px 0;
            border-bottom: 1px solid var(--frame-border);
        }
        .section-heading-caps {
            font-family: var(--font-header);
            text-transform: uppercase;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            color: var(--abyss-green);
        }

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

        /* HEADER */
        .apex-header-zone {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid var(--frame-border);
        }
        .apex-logo-title {
            font-family: var(--font-header);
            font-size: 1.5rem;
            color: var(--abyss-green);
            text-transform: uppercase;
        }
        .apex-header-nav-link {
            font-size: 1rem;
            padding: 10px 15px;
            border: 1px solid transparent;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .apex-header-nav-link:hover {
            border-color: var(--forest-green);
        }

        /* CTA BUTTONS */
        .apex-cta-primary {
            display: inline-block;
            background-color: var(--mint-cta);
            color: var(--abyss-green);
            padding: 15px 35px;
            font-family: var(--font-header);
            font-size: 1.1rem;
            text-transform: uppercase;
            border: 2px solid var(--mint-cta);
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        }
        .apex-cta-primary:hover {
            background-color: var(--mint-hover);
            transform: translateY(-3px);
        }

        /* HERO SECTION */
        .apex-hero-sector {
            min-height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding: 100px 0;
        }
        .apex-hero-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .apex-hero-subtext {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem auto;
            color: var(--forest-green);
        }
        .apex-hero-urgency-trigger {
            margin-top: 1.5rem;
            font-style: italic;
            color: var(--terracotta-accent);
        }

        /* CARD STYLES (for Benefits, Steps, Proof) */
        .apex-grid-container {
            display: grid;
            gap: 40px;
        }
        .apex-boxed-card {
            padding: 30px;
            border: 1px solid var(--frame-border);
            transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
        }
        .apex-boxed-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
        }
        .apex-card-icon {
            margin-bottom: 20px;
            height: 48px;
            width: 48px;
            color: var(--terracotta-accent);
        }
        @media (min-width: 600px) {
            .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 900px) {
            .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        }

        /* STEPS SECTION */
        .apex-step-card h3 {
            position: relative;
            padding-left: 50px;
        }
        .apex-step-card h3::before {
            content: attr(data-step);
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--terracotta-accent);
            border: 2px solid var(--terracotta-accent);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* WHAT'S INCLUDED SECTION */
        .apex-inclusion-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .apex-inclusion-item {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            padding: 15px;
            border: 1px solid var(--frame-border);
        }
        .apex-inclusion-icon {
            width: 24px;
            height: 24px;
            margin-right: 15px;
            color: var(--mint-cta);
            stroke-width: 3;
            background: var(--abyss-green);
            padding: 4px;
            border-radius: 4px;
        }

        /* ARTICLE SECTION */
        .apex-article-segment { background-color: white; border: 1px solid var(--frame-border); padding: 40px; }
        .apex-article-super-title { text-align: center; text-transform: uppercase; font-family: var(--font-body); letter-spacing: 2px; color: var(--terracotta-accent); margin-bottom: 10px; font-weight: bold; }
        .apex-article-segment h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 40px 0 20px 0; padding-bottom: 10px; border-bottom: 2px solid var(--terracotta-accent); }
        .apex-article-segment p { line-height: 1.7; margin-bottom: 20px; padding: 0 10px; }
        .apex-article-segment ul { list-style-position: inside; margin-bottom: 20px; padding-left: 20px; }
        .apex-article-segment li { margin-bottom: 10px; }
        .apex-article-segment strong { color: var(--abyss-green); }
        .apex-article-segment img { display: block; width: 100%; max-width: 100%; height: auto; border-radius: 8px; margin: 30px auto; border: 1px solid var(--frame-border); }
        .apex-article-segment table { width: 100%; border-collapse: collapse; margin: 30px 0; }
        .apex-article-segment th, .apex-article-segment td { border: 1px solid var(--frame-border); padding: 12px; text-align: left; }
        .apex-article-segment th { background-color: var(--off-white); font-family: var(--font-header); text-transform: uppercase; }

        /* FAQ SECTION */
        .apex-faq-item {
            border: 1px solid var(--frame-border);
            margin-bottom: 15px;
        }
        .apex-faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px;
            text-align: left;
            font-size: 1.2rem;
            font-family: var(--font-header);
            text-transform: uppercase;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--abyss-green);
        }
        .apex-faq-question-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }
        .apex-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 20px;
        }
        .apex-faq-item.active .apex-faq-answer {
            max-height: 500px; /* Adjust as needed */
            padding: 0px 20px 20px 20px;
        }
        .apex-faq-item.active .apex-faq-question-icon {
            transform: rotate(45deg);
        }

        /* FOOTER */
        .apex-main-footer {
            background-color: var(--abyss-green);
            color: var(--off-white);
            padding: 60px 0 20px 0;
        }
        .apex-footer-grid {
            display: grid;
            gap: 40px;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            margin-bottom: 40px;
        }
        .apex-footer-col h4 {
            color: var(--mint-cta);
            font-size: 1.2rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .apex-footer-col ul {
            list-style: none;
        }
        .apex-footer-col li {
            margin-bottom: 10px;
        }
        .apex-footer-col a {
            color: var(--off-white);
            opacity: 0.8;
        }
        .apex-footer-col a:hover {
            opacity: 1;
            color: var(--mint-cta);
        }
        .apex-footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.6;
        }


