    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: #000;
        color: #fff;
        overflow-x: hidden;
    }

    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        background-image: url('hero-background.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        width: 100%;
    }

    .profile-section {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
        animation: fadeInDown 1s ease-out;
    }

    .profile-image {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #666;
        border: 4px solid #fff;
        overflow: hidden;
    }

    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .profile-info h1 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 5px;
        text-align: left;
    }

    .profile-info p {
        font-size: 16px;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .verified-badge {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: #1DA1F2;
        border-radius: 50%;
        position: relative;
    }

    .verified-badge::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 12px;
        font-weight: bold;
    }

    .webinar-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.1);
        padding: 12px 24px;
        border-radius: 50px;
        margin-bottom: 30px;
        backdrop-filter: blur(10px);
        animation: fadeIn 1.2s ease-out;
    }

    .play-icon {
        width: 40px;
        height: 40px;
        background: #FF0000;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .play-icon::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 12px solid #fff;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: 3px;
    }

    .webinar-tag span {
        font-size: 16px;
        font-weight: 500;
    }

    .hero-headline {
        font-size: 56px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 30px;
        animation: fadeInUp 1.4s ease-out;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subheadline {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.6;
        color: #ccc;
        margin-bottom: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1.6s ease-out;
    }

    .cta-button {
        background: #2563EB;
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        padding: 20px 60px;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        animation: fadeInUp 1.8s ease-out;
        box-shadow: 0 10px 40px rgba(37, 99, 235, 0.5);
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(37, 99, 235, 0.7);
    }

    /* Registration Form */
    .registration-form-container {
        background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
        padding: 60px 40px;
        border-radius: 20px;
        max-width: 600px;
        margin: 0 auto;
        box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
        position: relative;
        overflow: hidden;
        animation: fadeInUp 2s ease-out;
    }

    .registration-form-container::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent
        );
        animation: shine 3s infinite;
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }

    .form-content {
        position: relative;
        z-index: 2;
    }

    .form-heading {
        font-size: 32px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 15px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .form-subheading {
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.9);
    }

    .registration-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-label {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-input {
        padding: 16px 20px;
        font-size: 16px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.95);
        color: #1F2937;
        transition: all 0.3s ease;
    }

    .form-input:focus {
        outline: none;
        border-color: #fff;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    }

    .form-input::placeholder {
        color: #9CA3AF;
    }

    .submit-button {
        padding: 18px 40px;
        font-size: 20px;
        font-weight: 700;
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: #1F2937;
        color: #fff;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .submit-button:hover {
        background: #111827;
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .submit-button:active {
        transform: translateY(0);
    }

    .instant-access-badge {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .instant-access-badge::before {
        content: '⚡';
        font-size: 18px;
    }

    /* Social Proof Section */
    .social-proof-section {
        background: #E5E7EB;
        padding: 80px 20px;
        position: relative;
    }

    .badge-container {
        text-align: center;
        margin-bottom: 60px;
        animation: fadeIn 2.2s ease-out;
    }

    .earnings-badge {
        display: inline-block;
        background: #A5B4FC;
        color: #1E1B4B;
        font-size: 24px;
        font-weight: 700;
        padding: 16px 50px;
        border-radius: 50px;
    }

    .section-heading {
        font-size: 48px;
        font-weight: 800;
        color: #000;
        text-align: center;
        margin-bottom: 20px;
    }

    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 60px auto 0;
        padding: 0 20px;
    }

    .testimonial-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
    }

    .testimonial-image {
        width: 100%;
        height: 400px;
        background: #D1D5DB;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #6B7280;
    }

    /* Problem Section */
    .problem-section {
        background: #000;
        padding: 100px 20px;
        text-align: center;
    }

    .problem-section .section-heading {
        color: #fff;
        margin-bottom: 60px;
    }

    .problem-headline {
        font-size: 44px;
        font-weight: 700;
        line-height: 1.3;
        max-width: 1100px;
        margin: 0 auto 30px;
    }

    .problem-subheadline {
        font-size: 20px;
        font-weight: 400;
        color: #ccc;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Before/After Section */
    .before-after-section {
        background: #000;
        padding: 100px 20px;
    }

    .comparison-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .comparison-column {
        background: rgba(255,255,255,0.05);
        border-radius: 20px;
        padding: 60px 40px;
        backdrop-filter: blur(10px);
    }

    .comparison-image {
        width: 100%;
        height: 300px;
        background: #333;
        border-radius: 15px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
    }

    .comparison-title {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 30px;
    }

    .comparison-list {
        list-style: none;
    }

    .comparison-list li {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 20px;
        padding-left: 40px;
        position: relative;
    }

    .comparison-list li::before {
        content: '✗';
        position: absolute;
        left: 0;
        color: #EF4444;
        font-size: 24px;
        font-weight: bold;
    }

    .comparison-column.after .comparison-list li::before {
        content: '✓';
        color: #10B981;
    }

    /* Agreement Section */
    .agreement-section {
        background: #E5E7EB;
        padding: 100px 20px;
    }

    .agreement-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .agreement-heading {
        font-size: 48px;
        font-weight: 800;
        color: #000;
        text-align: center;
        margin-bottom: 80px;
    }

    .agreement-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .agreement-image {
        width: 100%;
        height: 600px;
        background: #D1D5DB;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6B7280;
    }

    .agreement-text {
        font-size: 20px;
        font-weight: 400;
        color: #1F2937;
        line-height: 1.8;
    }

    .agreement-text p {
        margin-bottom: 25px;
    }

    .highlight-text {
        font-weight: 700;
        color: #000;
        font-size: 24px;
        margin-top: 30px;
        font-style: italic;
    }

    /* Final CTA Section */
    .final-cta-section {
        background: #E5E7EB;
        padding: 100px 20px;
    }

    .final-cta-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .final-cta-text h2 {
        font-size: 48px;
        font-weight: 800;
        color: #000;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .ticket-graphic {
        width: 100%;
        height: 500px;
        background: #D1D5DB;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6B7280;
        font-size: 16px;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 968px) {
        .comparison-container,
        .agreement-content,
        .final-cta-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .testimonial-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .hero-headline {
            font-size: 32px;
            padding: 0 10px;
        }

        .hero-subheadline {
            font-size: 18px;
            padding: 0 10px;
        }

        .profile-section {
            flex-direction: column;
            text-align: center;
        }

        .profile-info {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .profile-info h1 {
            font-size: 24px;
            text-align: center;
        }

        .profile-info p {
            font-size: 14px;
            justify-content: center;
        }

        .webinar-tag {
            font-size: 14px;
            padding: 10px 20px;
        }

        .webinar-tag span {
            font-size: 14px;
        }

        .section-heading {
            font-size: 28px;
            padding: 0 15px;
        }

        .problem-headline {
            font-size: 24px;
            padding: 0 15px;
        }

        .problem-subheadline {
            font-size: 16px;
            padding: 0 15px;
        }

        .cta-button {
            font-size: 20px;
            padding: 16px 40px;
            width: 90%;
            max-width: 400px;
        }

        .comparison-column {
            padding: 40px 25px;
        }

        .comparison-title {
            font-size: 28px;
        }

        .comparison-list li {
            font-size: 16px;
        }

        .comparison-image {
            height: 250px;
        }

        .testimonial-image {
            height: 300px;
        }

        .agreement-heading {
            font-size: 32px;
            padding: 0 15px;
        }

        .agreement-text {
            font-size: 18px;
            padding: 0 15px;
        }

        .agreement-image {
            height: 400px;
        }

        .final-cta-text h2 {
            font-size: 32px;
            text-align: center;
        }

        .ticket-graphic {
            height: 350px;
        }

        .registration-form-container {
            padding: 40px 25px;
            margin: 40px 20px 0;
        }

        .form-heading {
            font-size: 26px;
        }

        .form-input {
            font-size: 16px;
        }

        .submit-button {
            font-size: 18px;
        }

        .earnings-badge {
            font-size: 18px;
            padding: 12px 30px;
        }

        .badge-container {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .hero-headline {
            font-size: 26px;
        }

        .profile-image {
            width: 80px;
            height: 80px;
        }

        .profile-info h1 {
            font-size: 20px;
        }

        .section-heading {
            font-size: 24px;
        }

        .problem-headline {
            font-size: 22px;
        }

        .comparison-title {
            font-size: 24px;
        }

        .comparison-list li {
            font-size: 15px;
            padding-left: 35px;
        }

        .agreement-heading {
            font-size: 26px;
        }

        .agreement-text {
            font-size: 16px;
        }

        .final-cta-text h2 {
            font-size: 26px;
        }

        .registration-form-container {
            padding: 30px 20px;
        }

        .form-heading {
            font-size: 22px;
        }
    }
