
/* --- CSS RESET & BASIC SETUP --- */
        :root {
            --emerald-primary: #2ECC71;
            --dark-gray-text: #34495e;
            --mint-surface: #e8f8f5;
            --white-bg: #ffffff;
            --soft-shadow: 0 12px 28px rgba(52, 73, 94, 0.08);
            --hover-shadow: 0 15px 35px rgba(52, 73, 94, 0.12);
            --header-font: 'Arial Black', 'Impact', sans-serif; /* Fallback for extended look */
            --body-font: 'Arial', 'Helvetica', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        body {
            font-family: var(--body-font);
            background-color: var(--white-bg);
            color: var(--dark-gray-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* --- TYPOGRAPHY & HEADERS --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--header-font);
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--dark-gray-text);
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            line-height: 1.1;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 2.75rem);
            margin-top: 2.5rem;
            line-height: 1.2;
        }

        h3 {
            font-size: clamp(1.5rem, 4vw, 1.8rem);
            line-height: 1.3;
        }

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

        a {
            color: var(--emerald-primary);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        a:hover {
            opacity: 0.8;
        }

        /* --- LAYOUT & CONTAINERS --- */
        .page-continuum {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: clamp(4rem, 10vh, 6rem) 0;
        }
        
        /* --- HEADER & NAVIGATION --- */
        .stellar-header {
            width: 100%;
            padding: 1.5rem 0;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: box-shadow 0.3s ease;
        }
        
        .stellar-header.scrolled {
            box-shadow: var(--soft-shadow);
        }

        .nav-core {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            font-family: var(--header-font);
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--dark-gray-text);
        }
        .brand-logo span {
            color: var(--emerald-primary);
        }

        .primary-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            font-family: var(--header-font);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--dark-gray-text);
            position: relative;
            padding-bottom: 5px;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--emerald-primary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .nav-link:hover::after, .nav-link.active::after{
            transform: scaleX(1);
            transform-origin: left;
        }

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

        .mobile-nav-toggle .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--dark-gray-text);
            transition: all 0.3s ease-in-out;
        }


        /* --- CALL TO ACTION BUTTON --- */
        .callout-button {
            display: inline-block;
            background: var(--emerald-primary);
            color: var(--white-bg);
            padding: 1rem 2rem;
            font-family: var(--header-font);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: 50px;
            border: 2px solid var(--emerald-primary);
            box-shadow: var(--soft-shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .callout-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--hover-shadow);
            color: var(--white-bg);
            opacity: 1;
        }
        
        .callout-button.secondary {
            background: transparent;
            color: var(--emerald-primary);
        }
        
        .callout-button.secondary:hover {
            background: var(--emerald-primary);
            color: var(--white-bg);
        }

        /* --- HERO SECTION --- */
        .hero-realm {
            padding-top: 150px;
            padding-bottom: 80px;
            min-height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-realm::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 20%, rgba(232, 248, 245, 0.8), transparent 50%),
                        radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.1), transparent 50%);
            z-index: -1;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-content .sub-headline {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 1.5rem auto 2.5rem auto;
            color: var(--dark-gray-text);
            opacity: 0.9;
        }
        
        /* --- ARTICLE BLOCK --- */
        .article-vessel {
            background-color: var(--mint-surface);
            padding: clamp(4rem, 10vh, 6rem) 0;
        }

        .article-prologue {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }

        .article-title {
            font-family: var(--header-font);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--emerald-primary);
            margin-bottom: 0.5rem;
        }

        .article-subtitle {
            font-size: 1.2rem;
            color: var(--dark-gray-text);
            opacity: 0.8;
        }

        .article-body {
            background-color: var(--white-bg);
            padding: clamp(2rem, 5vw, 4rem);
            max-width: 900px;
            margin: 0 auto;
            border-radius: 16px;
            box-shadow: var(--soft-shadow);
        }

        .article-body h2 {
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--mint-surface);
            margin-top: 3rem;
            margin-bottom: 2rem;
        }
        .article-body h2:first-of-type {
            margin-top: 0;
        }

        .article-body p {
            padding: 0 0.5rem;
        }
        
        .article-body ul, .article-body ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .article-body li {
            margin-bottom: 0.75rem;
        }
        
        .article-body strong, .article-body b {
            font-weight: bold;
            color: #2c3e50;
        }
        
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
        }
        
        .article-body th, .article-body td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .article-body th {
            background-color: var(--mint-surface);
            font-family: var(--header-font);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }
        
        .article-body img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            height: auto;
            display: block;
        }


        /* --- "WHAT'S INCLUDED" BLOCK --- */
        .inclusion-zone {
            text-align: center;
        }
        .inclusion-grid {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .inclusion-item {
            background: var(--white-bg);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: var(--soft-shadow);
            transition: all 0.3s ease;
            text-align: center;
        }
        .inclusion-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--hover-shadow);
        }
        .inclusion-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1.5rem auto;
            color: var(--emerald-primary);
        }
        .inclusion-item h3 {
            font-size: 1.3rem;
        }
        .inclusion-item p {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: 0;
        }

        /* --- BENEFITS BLOCK --- */
        .benefits-matrix {
            background-color: var(--mint-surface);
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }
        .benefit-card {
            background-color: var(--white-bg);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--soft-shadow);
            transition: all 0.3s ease;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }
        .benefit-card:hover {
            transform: scale(1.03);
            box-shadow: var(--hover-shadow);
        }
        .benefit-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background-color: var(--mint-surface);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--emerald-primary);
        }
        .benefit-icon svg {
            width: 24px;
            height: 24px;
        }
        .benefit-card h3 {
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }
        .benefit-card p {
            margin-bottom: 0;
            opacity: 0.9;
        }
        

        /* --- FAQ SECTION --- */
        .faq-cluster{
            max-width: 900px;
            margin: 3rem auto 0 auto;
        }
        .faq-item {
            background-color: var(--white-bg);
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: var(--soft-shadow);
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover {
             box-shadow: var(--hover-shadow);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            cursor: pointer;
            font-family: var(--header-font);
            font-weight: 500;
            font-size: 1.1rem;
            letter-spacing: 0.03em;
            color: var(--dark-gray-text);
        }
        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            flex-shrink: 0;
            margin-left: 1rem;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;
        }
        
        .faq-answer-content {
             padding: 0 2rem 1.5rem 2rem;
             opacity: 0.8;
             line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            transition: max-height 1s cubic-bezier(1, 0, 1, 0), padding 0.5s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        /* --- TESTIMONIALS SECTION --- */
        .testimonials-continuum {
            background-color: var(--mint-surface);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .testimonial-card {
            background-color: var(--white-bg);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: var(--soft-shadow);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            border-top: 1px solid #ecf0f1;
            padding-top: 1.5rem;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--emerald-primary);
            color: var(--white-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--header-font);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .author-name {
            font-weight: bold;
            display: block;
        }
        .author-result {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* --- HOW IT WORKS SECTION --- */
        .process-flow {
            position: relative;
            display: flex;
            justify-content: space-between;
            margin-top: 4rem;
            gap: 2rem;
        }
        
        .process-flow::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--emerald-primary), var(--emerald-primary) 10px, transparent 10px, transparent 20px);
            z-index: 0;
        }
        
        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 1rem;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--white-bg);
            border: 3px solid var(--emerald-primary);
            color: var(--emerald-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--header-font);
            font-size: 2rem;
            margin: 0 auto 1.5rem auto;
            position: relative;
            z-index: 1;
            box-shadow: 0 0 0 8px var(--white-bg);
            transition: all 0.3s ease;
        }
        .process-step:hover .step-number {
             background-color: var(--emerald-primary);
             color: var(--white-bg);
             transform: scale(1.1);
        }
        .process-step h3 {
            font-size: 1.3rem;
        }
        .process-step p {
             font-size: 0.95rem;
             opacity: 0.8;
             margin-bottom: 0;
        }


        /* --- FOOTER --- */
        .cosmic-footer {
            background-color: var(--dark-gray-text);
            color: rgba(255, 255, 255, 0.7);
            padding: 5rem 0 2rem 0;
            position: relative;
        }
        
        .cosmic-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), transparent 30%);
            pointer-events: none;
        }

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

        .footer-about .brand-logo {
            color: var(--white-bg);
        }
        .footer-about p {
            margin-top: 1rem;
            max-width: 350px;
        }

        .footer-group h4 {
            font-family: var(--header-font);
            color: var(--white-bg);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--emerald-primary);
            opacity: 1;
            padding-left: 5px;
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- ANIMATIONS & RESPONSIVENESS --- */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- MEDIA QUERIES --- */
        @media (max-width: 992px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-about p {
                margin-left: auto;
                margin-right: auto;
            }
             .process-flow {
                flex-direction: column;
                align-items: center;
            }
            .process-flow::before {
                top: 5%;
                bottom: 5%;
                left: 50%;
                transform: translateX(-50%);
                width: 2px;
                height: 90%;
                 background: repeating-linear-gradient(180deg, var(--emerald-primary), var(--emerald-primary) 10px, transparent 10px, transparent 20px);
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            
            .primary-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--white-bg);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            }
            
            .primary-nav.active {
                right: 0;
            }
            
            .nav-link {
                font-size: 1.2rem;
            }
            
            .mobile-nav-toggle {
                display: block;
            }
            
             /* Hamburger animation */
            .mobile-nav-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }
            .mobile-nav-toggle.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .mobile-nav-toggle.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .hero-realm {
                 padding-top: 120px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .inclusion-grid {
                grid-template-columns: 1fr;
            }
        }
