  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #6ED25A;
            --primary-black: #000000;
            --dark-bg: #0a0a0a;
            --card-bg: #111111;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --gradient-overlay: linear-gradient(135deg, rgba(110, 210, 90, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--primary-black);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .dark body {
            background-color: var(--dark-bg);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -2;
        }

        .hero-bg img,
        .hero-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-content {
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
        }

        /* Mobile Hero Layout */
        @media (max-width: 640px) {
            .hero {
                min-height: auto;
                flex-direction: column;
                padding: 0;
                position: relative;
            }

            .hero-bg {
                position: relative;
                width: 100%;
                height: 50vh;
                min-height: 300px;
                z-index: 0;
            }

            .hero-bg img,
            .hero-bg video {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .hero-content {
                position: relative;
                z-index: 1;
                background: var(--primary-black);
                width: 100%;
                padding: 3rem 1rem;
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.1;
            color: #6ED25A;
            text-transform: uppercase;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: #ffffff;
            margin-bottom: 3rem;
            font-weight: 300;
            line-height: 1.8;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1.25rem 3.5rem;
            background: var(--primary-green);
            color: var(--primary-black);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.125rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 10px 40px rgba(110, 210, 90, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(110, 210, 90, 0.5);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Breathing animation for CTA buttons */
        @keyframes breathe {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(110, 210, 90, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 15px 60px rgba(110, 210, 90, 0.6);
                transform: scale(1.02);
            }
        }

        .cta-button {
            animation: breathe 3s ease-in-out infinite;
        }

        .cta-button:hover {
            animation: none;
        }

        /* Logo Section */
        .logos {
            padding: 4rem 2rem;
            background: linear-gradient(180deg, var(--primary-black) 0%, var(--dark-bg) 100%);
        }

        .logos-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 3rem;
            align-items: center;
            justify-items: center;
        }

        .logos-container img {
            max-width: 180px;
            height: auto;
            opacity: 0.7;
            filter: grayscale(100%) brightness(1.5);
            transition: all 0.3s ease;
        }

        .logos-container img:hover {
            opacity: 1;
            filter: grayscale(0%) brightness(1);
            transform: scale(1.1);
        }

        /* Content Sections */
        .section {
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-alt {
            background: var(--card-bg);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .media-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .media-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            animation: fadeIn 1s ease-out;
        }

        .media-item:nth-child(even) {
            direction: rtl;
        }

        .media-item:nth-child(even) > * {
            direction: ltr;
        }

        .media-content h3 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-green);
        }

        .media-content p {
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.8;
        }

        .media-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(110, 210, 90, 0.2);
        }

        .media-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .media-image:hover img {
            transform: scale(1.05);
        }

        /* Text Content Sections */
        .text-section {
            background: var(--card-bg);
            padding: 2rem;
            margin: 3rem 0;
            border-left: 5px solid var(--primary-green);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .text-section:hover {
            background: #1a1a1a;
        }

        .text-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .text-section h2 {
            font-size: clamp(1.75rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .toggle-icon {
            font-size: 2rem;
            color: var(--primary-green);
            transition: transform 0.3s ease;
            font-weight: bold;
        }

        .text-section.expanded .toggle-icon {
            transform: rotate(180deg);
        }

        .text-section-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            padding: 0;
        }

        .text-section.expanded .text-section-content {
            max-height: 1000px;
            padding: 2rem 0 1rem 0;
        }

        .text-section p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            line-height: 1.9;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .feature-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(110, 210, 90, 0.2);
        }

        .feature-content {
            display: flex;
            flex-direction: column;
        }

        .feature-card h3 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
        }

        .feature-card h4 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .feature-card p,
        .feature-card ul {
            color: var(--text-secondary);
            font-size: clamp(1.125rem, 1.5vw, 1.375rem);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .feature-card ul {
            list-style: none;
            padding-left: 0;
        }

        .feature-card li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .feature-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }

        .feature-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Alternate layout for even cards */
        .feature-card:nth-child(even) {
            direction: rtl;
        }

        .feature-card:nth-child(even) > * {
            direction: ltr;
        }

        /* Results Image */
        .results-image {
            margin: 4rem 0;
            text-align: center;
        }

        .results-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(110, 210, 90, 0.3);
        }

        /* Testimonials Section */
        .testimonials {
            background: var(--card-bg);
            padding: 6rem 2rem;
            margin: 4rem 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1400px;
            margin: 4rem auto;
        }

        .testimonial {
            text-align: center;
        }

        .testimonial img {
            width: 100%;
            max-width: 300px;
            height: auto;
            aspect-ratio: 1;
            border-radius: 15px;
            margin: 0 auto 2rem;
            border: 5px solid var(--primary-green);
            box-shadow: 0 10px 40px rgba(110, 210, 90, 0.3);
            object-fit: cover;
        }

        .testimonial h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-green);
        }

        @media (max-width: 968px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, var(--primary-green) 0%, #4fb83f 100%);
            padding: 6rem 2rem;
            text-align: center;
            margin-top: 6rem;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .final-cta p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--primary-black);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .final-cta .cta-button {
            background: var(--primary-black);
            color: var(--primary-green);
            margin-top: 2rem;
        }

        .final-cta .cta-button:hover {
            background: #1a1a1a;
        }

        /* Floating Mobile CTA Button */
        .floating-cta {
            display: none;
            position: fixed;
            bottom: 24px;
            left: 16px;
            right: 16px;
            z-index: 1000;
            padding-bottom: env(safe-area-inset-bottom, 0px);
        }

        .floating-cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            padding: 1.1rem 2rem;
            background: var(--primary-green);
            color: var(--primary-black);
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 8px 30px rgba(110, 210, 90, 0.5), 0 0 0 0 rgba(110, 210, 90, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: floatingBreathe 2s ease-in-out infinite;
        }

        .floating-cta-button:active {
            transform: scale(0.96);
            box-shadow: 0 4px 20px rgba(110, 210, 90, 0.4);
            animation: none;
        }

        .floating-cta-button svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        @keyframes floatingBreathe {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 30px rgba(110, 210, 90, 0.5), 0 0 0 0 rgba(110, 210, 90, 0.4);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 12px 50px rgba(110, 210, 90, 0.8), 0 0 20px 5px rgba(110, 210, 90, 0.3);
            }
        }

        @media (max-width: 768px) {
            .floating-cta {
                display: block;
            }

            /* Add padding to bottom of page to prevent content being hidden by floating button */
            body {
                padding-bottom: 120px;
            }

            .final-cta {
                padding-bottom: 8rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .media-item {
                grid-template-columns: 1fr;
            }

            .media-item:nth-child(even) {
                direction: ltr;
            }

            .logos-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 968px) {
            .feature-card {
                grid-template-columns: 1fr;
            }

            .feature-card:nth-child(even) {
                direction: ltr;
            }
        }

        @media (max-width: 640px) {
            .logos {
                padding: 3rem 1rem;
            }

            .logos-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section {
                padding: 1rem 1rem;
            }

            .text-section {
                padding: 1.5rem 1rem;
            }

            .feature-card {
                padding: 2rem 1rem;
            }

            .testimonials {
                padding: 4rem 1rem;
            }

            .final-cta {
                padding: 4rem 1rem;
            }

            .media-item {
                gap: 2rem;
            }

            .features-grid {
                gap: 2rem;
            }

            .testimonials-grid {
                gap: 2rem;
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            :root {
                --card-bg: #0f0f0f;
                --dark-bg: #000000;
            }
        }