    /* ---------- CSS Variables ---------- */
    :root {
        --growfinix-dark: #0b2b26;
        --growfinix-green: #1a6b5a;
        --growfinix-light-green: #e8f3f0;
        --growfinix-navy: #1a2a3a;
        --growfinix-gray: #f5f7f8;
        --growfinix-border: #dee2e6;
        --growfinix-text: #1e2a3a;
        --growfinix-muted: #5a6a7a;
        --growfinix-white: #ffffff;
        --growfinix-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        --growfinix-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.10);
        --growfinix-radius: 12px;
        --growfinix-transition: 0.25s ease;
    }

    /* ---------- Base ---------- */
    body {
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        color: var(--growfinix-text);
        background: var(--growfinix-white);
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
    }

    a {
        color: var(--growfinix-green);
        text-decoration: none;
        transition: color var(--growfinix-transition);
    }

    a:hover {
        color: var(--growfinix-dark);
        text-decoration: underline;
    }

    /* ---------- Typography ---------- */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--growfinix-dark);
    }

    h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2.1rem;
        margin-bottom: 1.25rem;
    }

    h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    @media (max-width: 576px) {
        h1 {
            font-size: 2.0rem;
        }

        h2 {
            font-size: 1.6rem;
        }

        h3 {
            font-size: 1.2rem;
        }
    }

    /* ---------- Buttons ---------- */
    .btn-primary-custom {
        background-color: var(--growfinix-green);
        border: 2px solid var(--growfinix-green);
        color: #fff;
        font-weight: 600;
        padding: 0.7rem 2rem;
        border-radius: 50px;
        transition: all var(--growfinix-transition);
    }

    .btn-primary-custom:hover {
        background-color: var(--growfinix-dark);
        border-color: var(--growfinix-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: var(--growfinix-shadow-hover);
    }

    .btn-outline-custom {
        background: transparent;
        border: 2px solid var(--growfinix-green);
        color: var(--growfinix-green);
        font-weight: 600;
        padding: 0.7rem 2rem;
        border-radius: 50px;
        transition: all var(--growfinix-transition);
    }

    .btn-outline-custom:hover {
        background: var(--growfinix-green);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: var(--growfinix-shadow-hover);
    }

    /* ---------- Cards ---------- */
    .card-premium {
        background: var(--growfinix-white);
        border: 1px solid var(--growfinix-border);
        border-radius: var(--growfinix-radius);
        box-shadow: var(--growfinix-shadow);
        transition: all var(--growfinix-transition);
        height: 100%;
    }

    .card-premium:hover {
        box-shadow: var(--growfinix-shadow-hover);
        transform: translateY(-4px);
    }

    .card-premium .card-body {
        padding: 1.75rem;
    }

    /* ---------- Quick Answer ---------- */
    .quick-answer-block {
        background: var(--growfinix-light-green);
        border-left: 5px solid var(--growfinix-green);
        border-radius: var(--growfinix-radius);
        padding: 1.5rem 2rem;
    }

    /* ---------- Facts / Stats ---------- */
    .fact-item {
        background: var(--growfinix-white);
        border: 1px solid var(--growfinix-border);
        border-radius: var(--growfinix-radius);
        padding: 1.25rem 1.5rem;
        text-align: center;
        height: 100%;
        transition: all var(--growfinix-transition);
    }

    .fact-item:hover {
        box-shadow: var(--growfinix-shadow-hover);
        transform: translateY(-3px);
    }

    .fact-item .fact-icon {
        font-size: 1.8rem;
        color: var(--growfinix-green);
        margin-bottom: 0.5rem;
        display: block;
    }

    .fact-item .fact-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--growfinix-muted);
        font-weight: 600;
    }

    .fact-item .fact-value {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--growfinix-dark);
        margin-top: 0.2rem;
    }

    /* ---------- Domain Cards ---------- */
    .domain-card {
        background: var(--growfinix-white);
        border: 1px solid var(--growfinix-border);
        border-radius: var(--growfinix-radius);
        padding: 1.5rem;
        text-align: center;
        height: 100%;
        transition: all var(--growfinix-transition);
    }

    .domain-card:hover {
        box-shadow: var(--growfinix-shadow-hover);
        transform: translateY(-4px);
        border-color: var(--growfinix-green);
    }

    .domain-card .domain-icon {
        font-size: 2.2rem;
        color: var(--growfinix-green);
        margin-bottom: 0.75rem;
        display: block;
    }

    .domain-card h4 {
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 0.4rem;
        color: var(--growfinix-dark);
    }

    .domain-card p {
        font-size: 0.92rem;
        color: var(--growfinix-muted);
        margin-bottom: 0.75rem;
    }

    /* ---------- Process Steps ---------- */
    .step-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--growfinix-border);
    }

    .step-item:last-child {
        border-bottom: 0;
    }

    .step-number {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        background: var(--growfinix-green);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .step-content {
        flex: 1;
    }

    .step-content h5 {
        font-weight: 600;
        margin-bottom: 0.2rem;
        color: var(--growfinix-dark);
    }

    .step-content p {
        color: var(--growfinix-muted);
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    /* ---------- Comparison Table ---------- */
    .compare-table {
        border-radius: var(--growfinix-radius);
        overflow: hidden;
        border: 1px solid var(--growfinix-border);
    }

    .compare-table thead th {
        background: var(--growfinix-dark);
        color: #fff;
        font-weight: 600;
        padding: 1rem 1.25rem;
        border: 0;
    }

    .compare-table tbody td {
        padding: 0.9rem 1.25rem;
        border-color: var(--growfinix-border);
        vertical-align: middle;
    }

    .compare-table tbody tr:nth-child(even) {
        background: var(--growfinix-gray);
    }

    .compare-table .check-icon {
        color: var(--growfinix-green);
        font-weight: 700;
    }

    /* ---------- FAQ ---------- */
    .faq-accordion .accordion-item {
        border: 1px solid var(--growfinix-border);
        border-radius: var(--growfinix-radius) !important;
        margin-bottom: 0.75rem;
        overflow: hidden;
    }

    .faq-accordion .accordion-item:last-child {
        margin-bottom: 0;
    }

    .faq-accordion .accordion-button {
        font-weight: 600;
        color: var(--growfinix-dark);
        background: var(--growfinix-white);
        padding: 1.1rem 1.5rem;
        border: 0;
        box-shadow: none;
        font-size: 1.0rem;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        background: var(--growfinix-light-green);
        color: var(--growfinix-dark);
        box-shadow: none;
    }

    .faq-accordion .accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(26, 107, 90, 0.2);
        border-color: var(--growfinix-green);
    }

    .faq-accordion .accordion-body {
        padding: 1.25rem 1.5rem 1.5rem;
        background: var(--growfinix-white);
        color: var(--growfinix-text);
        border-top: 1px solid var(--growfinix-border);
    }

    .faq-accordion .accordion-body p:last-child {
        margin-bottom: 0;
    }

    /* ---------- Trust / Entity ---------- */
    .trust-badge {
        background: var(--growfinix-gray);
        border-radius: var(--growfinix-radius);
        padding: 1.5rem 2rem;
        border: 1px solid var(--growfinix-border);
    }

    /* ---------- Footer ---------- */
    .footer-premium {
        background: var(--growfinix-dark);
        color: rgba(255, 255, 255, 0.75);
        padding: 3rem 0 2rem;
        margin-top: 3rem;
    }

    .footer-premium a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }

    .footer-premium a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-premium h5 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .footer-premium .footer-divider {
        border-color: rgba(255, 255, 255, 0.08);
        margin: 2rem 0 1.5rem;
    }

    /* ---------- Sticky Mobile CTA ---------- */
    .sticky-cta-mobile {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--growfinix-white);
        padding: 0.75rem 1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 1040;
        border-top: 1px solid var(--growfinix-border);
    }

    .sticky-cta-mobile .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.6rem;
    }

    @media (max-width: 576px) {
        .sticky-cta-mobile {
            display: block;
        }

        body {
            padding-bottom: 80px;
        }
    }

    /* ---------- Reduced Motion ---------- */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }

        .card-premium:hover,
        .domain-card:hover,
        .fact-item:hover,
        .btn-primary-custom:hover,
        .btn-outline-custom:hover {
            transform: none !important;
        }
    }

    /* ---------- Utilities ---------- */
    .bg-soft-green {
        background: var(--growfinix-light-green);
    }

    .bg-soft-gray {
        background: var(--growfinix-gray);
    }

    .text-green {
        color: var(--growfinix-green);
    }

    .text-dark-custom {
        color: var(--growfinix-dark);
    }

    .border-green {
        border-color: var(--growfinix-green) !important;
    }

    .section-spacer {
        padding: 3.5rem 0;
    }

    .section-spacer-sm {
        padding: 2.5rem 0;
    }

    .shadow-soft {
        box-shadow: var(--growfinix-shadow);
    }

    .rounded-custom {
        border-radius: var(--growfinix-radius);
    }

    /* Hero animation - subtle floating chips */
    .hero-chip {
        display: inline-block;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--growfinix-dark);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        animation: floatChip 6s ease-in-out infinite alternate;
    }

    .hero-chip:nth-child(2) {
        animation-delay: 1.2s;
    }

    .hero-chip:nth-child(3) {
        animation-delay: 2.4s;
    }

    /* Breadcrumb */
    .breadcrumb-custom {
        background: transparent;
        padding: 0.5rem 0 0;
        margin-bottom: 0;
    }

    .breadcrumb-custom .breadcrumb-item a {
        color: var(--growfinix-muted);
        font-size: 0.9rem;
    }

    .breadcrumb-custom .breadcrumb-item a:hover {
        color: var(--growfinix-green);
    }

    .breadcrumb-custom .breadcrumb-item.active {
        color: var(--growfinix-dark);
        font-weight: 500;
    }