
        /* Psychological Design Variables */
        :root {
            --primary: #00c8ff;
            --secondary: #7b2dff;
            --accent: #ff2d7b;
            --dark: #0a0e17;
            --darker: #05080f;
            --light: #f0f5ff;
            --soft-gray: #8a9bb8;
            --text-light: #ffffff;
            --text-muted: #b0b0b0;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --border-radius: 12px;
            --border-radius-sm: 8px;
            --membrane-medium: rgba(123, 45, 255, 0.3);
            --glow: 0 0 20px rgba(0, 200, 255, 0.3);
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.15);
            --gradient-primary: linear-gradient(135deg, #00c8ff 0%, #7b2dff 100%);
            --gradient-dark: linear-gradient(135deg, #05080f 0%, #0a0e17 100%);
        }
        /* Calming Background Layers */
        .particle-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 20% 80%, rgba(123, 45, 255, 0.08) 0%, transparent 65%), radial-gradient(circle at 80% 20%, rgba(0, 200, 255, 0.08) 0%, transparent 65%), radial-gradient(circle at 40% 40%, rgba(255, 45, 123, 0.05) 0%, transparent 65%);
            opacity: 0.98;
        }

        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 20% 80%, rgba(123, 45, 255, 0.08) 0%, transparent 85%), radial-gradient(circle at 80% 20%, rgba(0, 200, 255, 0.08) 0%, transparent 85%), radial-gradient(circle at 40% 40%, rgba(255, 45, 123, 0.05) 0%, transparent 85%);
        }

        /* Subtle Glow Elements */
        .glow-element {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.12;
            z-index: -1;
            pointer-events: none;
        }

        .glow-center {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: gentle-pulse 20s ease-in-out infinite;
        }

        .glow-corner-1 {
            width: 300px;
            height: 300px;
            background: var(--secondary);
            top: -100px;
            left: -100px;
            animation: gentle-float 25s ease-in-out infinite;
        }

        .glow-corner-2 {
            width: 250px;
            height: 250px;
            background: var(--accent);
            bottom: -80px;
            right: -80px;
            animation: gentle-float 30s ease-in-out infinite reverse;
        }

        @keyframes gentle-pulse {
            0%,
            100% {
                opacity: 0.08;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.15;
                transform: translate(-50%, -50%) scale(1.05);
            }
        }

        @keyframes gentle-float {
            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(20px, 20px) rotate(120deg);
            }
            66% {
                transform: translate(-15px, 15px) rotate(240deg);
            }
        }
        /* Main Content Container */
        .main-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            position: relative;
            z-index: 1;
        }

        /* Delightful Divider */
        .content-divider {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 200, 255, 0.3) 25%, rgba(123, 45, 255, 0.3) 50%, rgba(0, 200, 255, 0.3) 75%, transparent 100%);
            margin: 3rem auto;
            width: 80%;
            position: relative;
        }

        .content-divider::before,
        .content-divider::after {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            animation: subtle-sparkle 4s infinite;
        }

        .content-divider::before {
            left: 25%;
            animation-delay: 0.5s;
        }

        .content-divider::after {
            right: 25%;
            animation-delay: 1.5s;
        }
        .video-placeholder {
            text-align: center;
            padding: 3rem;
            color: var(--primary);
        }

        .video-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .video-message {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .video-submessage {
            font-size: 1.1rem;
            color: var(--soft-gray);
            max-width: 500px;
            margin: 0 auto;
        }

        .image-placeholder {
            color: var(--primary);
            text-align: center;
            padding: 2rem;
        }

        .image-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Main Content Section */
        .content-section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            color: var(--soft-gray);
            max-width: 800px;
            margin: 0 auto 4rem;
            line-height: 1.6;
        }

        /* Integral Approach Section */
        .integral-approach {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 5rem;
        }

        .approach-content {
            padding-right: 2rem;
        }

        .approach-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .approach-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--soft-gray);
            margin-bottom: 2rem;
        }

        .approach-components {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .component {
            background: rgba(123, 45, 255, 0.05);
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
        }

        .component-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .component-title i {
            color: var(--secondary);
        }

        .component-description {
            color: var(--soft-gray);
            line-height: 1.7;
        }

        /* Lead Magnet Section */
        .lead-magnet-section {
            background: rgba(0, 200, 255, 0.03);
            border-radius: var(--border-radius);
            padding: 3rem;
            border: 1px solid rgba(0, 200, 255, 0.1);
            margin: 4rem 0;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .lead-magnet-content h3 {
            font-size: 2rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .lead-magnet-content p {
            color: var(--soft-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .lead-magnet-form {
            background: rgba(5, 8, 15, 0.7);
            padding: 2rem;
            border-radius: var(--border-radius-sm);
            border: 1px solid rgba(0, 200, 255, 0.2);
        }

        .lead-magnet-form h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.9rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-sm);
            color: var(--text-light);
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .download-btn {
            width: 100%;
            padding: 1rem;
            background: var(--gradient-primary);
            color: var(--text-light);
            border: none;
            border-radius: var(--border-radius-sm);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--glow);
        }

        .form-note {
            font-size: 0.85rem;
            color: var(--soft-gray);
            text-align: center;
            margin-top: 1rem;
            opacity: 0.8;
        }

        /* Professional Statement */
        .professional-statement {
            background: rgba(123, 45, 255, 0.03);
            border-radius: var(--border-radius);
            padding: 3rem;
            margin: 4rem 0;
            border-left: 4px solid var(--secondary);
        }

        .statement-title {
            color: var(--text-light);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .statement-title i {
            color: var(--secondary);
        }

        .statement-content {
            color: var(--soft-gray);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .statement-signature {
            color: var(--primary);
            font-weight: 600;
            margin-top: 1.5rem;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .integral-approach,
            .lead-magnet-section {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .approach-content {
                padding-right: 0;
            }

            .section-title {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .lead-magnet-section,
            .professional-statement {
                padding: 2rem;
            }
        }
   
        hero-container {
            display: block;
            position: relative;
            width: 100%;
            min-height: 60vh;
            overflow: hidden;
            margin-top: 80px;
            background: linear-gradient(135deg, rgba(10, 14, 23, 0.95) 0%, rgba(5, 8, 15, 0.98) 100%);
        }

        hero-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.25;
            z-index: 1;
        }

        hero-container h1 {
            position: relative;
            z-index: 3;
            color: white;
            text-shadow: 0 2px 20px rgba(0, 200, 255, 0.5);
            margin: 0 auto 20px auto;
            text-align: center;
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            padding-top: 50px;
            max-width: 1200px;
            line-height: 1.2;
        }

        hero-container > div {
            position: relative;
            z-index: 3;
            display: flex;
            justify-content: space-between;
            padding: 40px 60px;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        hero-container > div > div {
            width: 48%;
            display: flex;
            flex-direction: column;
        }

        hero-container h2 {
            color: var(--primary);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
            margin: 0 0 25px 0;
            letter-spacing: -0.02em;
            text-align: left;
            font-size: 1.9rem;
            font-weight: 600;
            border-bottom: 2px solid rgba(0, 200, 255, 0.3);
            padding-bottom: 15px;
        }

        hero-container p {
            margin: 0 0 1.8em 0;
            color: var(--text-light);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            line-height: 1.7;
            font-size: 1.15em;
            font-weight: 400;
        }

        hero-container ul {
            list-style-type: none;
            padding-left: 0;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            margin: 0 0 30px 0;
        }

        hero-container ul li {
            margin-bottom: 16px;
            line-height: 1.6;
            color: var(--light);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            font-size: 1.05em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        hero-container div > div > div > div {
            display: flex;
            flex-direction: row;
            gap: 20px;
            margin-top: 20px;
            width: 100%;
        }

        hero-container button {
            width: auto;
            padding: 16px 32px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 8px 20px rgba(0, 200, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        hero-container button:last-child {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }

        hero-container button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 200, 255, 0.4);
        }

        hero-container button:last-child:hover {
            background: var(--primary);
            color: var(--dark);
            border-color: var(--primary);
        }

        hero-container img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 200, 255, 0.2);
        }

        @media (max-width: 1024px) {
            hero-container h1 { font-size: 2.2rem; padding-top: 30px; }
            hero-container > div { flex-direction: column; padding: 30px; }
            hero-container > div > div { width: 100%; }
            hero-container h2 { font-size: 1.7rem; }
            hero-container div > div > div > div { flex-direction: column; }
            hero-container button { width: 100%; }
        }
        @media (max-width: 768px) {
            hero-container h1 { font-size: 1.8rem; }
        }
   