    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #fff;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b35, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 3px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: #ff6b35;
        }

        .nav-cta {
            background: linear-gradient(135deg, #ff6b35, #ff8c5a);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
        }

        /* Hero - Pain Point Focus */
        .hero {
            margin-top: 80px;
            min-height: 95vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 3rem 5%;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.1); opacity: 0.25; }
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            z-index: 10;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            color: #ff6b35;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: fadeIn 0.8s ease-out;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #ff6b35, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #ccc;
            margin-bottom: 3rem;
            line-height: 1.6;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.4s ease-out;
        }

        .btn-primary {
            font-size: 1.3rem;
            padding: 1.3rem 3.5rem;
            background: linear-gradient(135deg, #ff6b35, #ff8c5a);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 800;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
        }

        .btn-secondary {
            font-size: 1.3rem;
            padding: 1.3rem 3.5rem;
            background: transparent;
            color: white;
            border: 2px solid #ff6b35;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 107, 53, 0.1);
            transform: translateY(-3px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Pain Points Section */
        .pain-section {
            padding: 8rem 5%;
            background: #0f0f0f;
            text-align: center;
        }

        .pain-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #ff6b35;
        }

        .pain-section .subtitle {
            font-size: 1.3rem;
            color: #999;
            margin-bottom: 5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pain-card {
            background: linear-gradient(135deg, #1a1a1a, #141414);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.4s ease;
            text-align: left;
        }

        .pain-card:hover {
            transform: translateY(-10px);
            border-color: #ff6b35;
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
        }

        .pain-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .pain-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .pain-card p {
            color: #aaa;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Dream Outcome Section */
        .dream-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }

        .dream-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
        }

        .dream-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .dream-section h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #fff, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dream-section .intro {
            font-size: 1.4rem;
            color: #ccc;
            margin-bottom: 5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .outcome-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
        }

        .outcome-card:hover {
            background: rgba(255, 107, 53, 0.05);
            transform: scale(1.05);
        }

        .outcome-card .icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .outcome-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: #ff6b35;
        }

        .outcome-card p {
            color: #bbb;
            line-height: 1.7;
        }

        /* Value Stack Section */
        .value-section {
            padding: 8rem 5%;
            background: #0a0a0a;
        }

        .value-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .value-section h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .value-section .subtitle {
            font-size: 1.3rem;
            color: #999;
            margin-bottom: 5rem;
        }

        .value-stack {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            border-radius: 20px;
            padding: 4rem;
            border: 2px solid rgba(255, 107, 53, 0.3);
            margin-bottom: 3rem;
        }

        .value-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: left;
        }

        .value-item:last-child {
            border-bottom: none;
        }

        .value-item-content {
            flex: 1;
        }

        .value-item h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .value-item p {
            color: #aaa;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        .value-price {
            font-size: 1.8rem;
            color: #ff6b35;
            font-weight: 700;
            white-space: nowrap;
            margin-left: 2rem;
        }

        .total-value {
            background: linear-gradient(135deg, #ff6b35, #ff8c5a);
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .total-value .label {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .total-value .amount {
            font-size: 3.5rem;
            font-weight: 900;
            text-decoration: line-through;
            opacity: 0.7;
        }

        /* Guarantee Section */
        .guarantee-section {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #1a0a0a, #0f0f0f);
            text-align: center;
        }

        .guarantee-box {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            padding: 4rem;
            border-radius: 20px;
            border: 2px solid #ff6b35;
        }

        .guarantee-badge {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #ff6b35, #ff8c5a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 3rem;
        }

        .guarantee-box h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #ff6b35;
        }

        .guarantee-box p {
            font-size: 1.3rem;
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .guarantee-box .highlight-text {
            font-size: 1.5rem;
            color: #fff;
            font-weight: 700;
            margin-top: 2rem;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 8rem 5%;
            background: #0a0a0a;
            text-align: center;
        }

        .pricing-section h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .pricing-section .subtitle {
            font-size: 1.3rem;
            color: #999;
            margin-bottom: 5rem;
        }

        .pricing-card {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            padding: 4rem;
            border-radius: 20px;
            border: 3px solid #ff6b35;
            position: relative;
            box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6b35, #ff8c5a);
            padding: 0.5rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-card h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #ff6b35;
        }

        .price-container {
            margin-bottom: 3rem;
        }

        .old-price {
            font-size: 2rem;
            text-decoration: line-through;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .new-price {
            font-size: 4.5rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }

        .new-price span {
            font-size: 2rem;
            color: #ff6b35;
        }

        .price-note {
            font-size: 1.1rem;
            color: #aaa;
            margin-top: 1rem;
        }

        .features-list {
            text-align: left;
            margin-bottom: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .check-icon {
            color: #ff6b35;
            font-size: 1.5rem;
            margin-right: 1rem;
            font-weight: 900;
        }

        .feature-item span {
            font-size: 1.1rem;
            color: #ccc;
        }

        .cta-button {
            width: 100%;
            font-size: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #ff6b35, #ff8c5a);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6);
        }

        .urgency {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .urgency p {
            color: #ff6b35;
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 8rem 5%;
            background: #0f0f0f;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 5rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #1a1a1a, #141414);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .stars {
            color: #ff6b35;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-card p {
            font-size: 1.1rem;
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b35, #ff8c5a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.3rem;
        }

        .author-info h4 {
            color: #fff;
            font-size: 1.1rem;
        }

        .author-info p {
            color: #888;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Final CTA */
        .final-cta {
            padding: 8rem 5%;
            background: linear-gradient(135deg, #1a0a0a, #0a0a0a);
            text-align: center;
        }

        .final-cta h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .final-cta p {
            font-size: 1.4rem;
            color: #ccc;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(255, 107, 53, 0.1);
        }

        .card {
            width: fit-content;
            height: fit-content;
            background-color: rgb(238, 238, 238);
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 25px 25px;
            gap: 20px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 1rem 0;
        }

        .socialContainer {
            width: 52px;
            height: 52px;
            background-color: rgb(44, 44, 44);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition-duration: 0.3s;
        }

        .containerOne:hover {
            background-color: #d62976;
            transition-duration: 0.3s;
            transform: scale(1.5);
            border-radius: 15px;
        }

        .containerTwo:hover {
            background-color: #00acee;
            transition-duration: 0.3s;
            transform: scale(1.5);
            border-radius: 15px;
        }

        .containerThree:hover {
            background-color: #0072b1;
            transition-duration: 0.3s;
            transform: scale(1.5);
            border-radius: 15px;
        }

        .containerFour:hover {
            background-color: #25d366;
            transition-duration: 0.3s;
            transform: scale(1.5);
            border-radius: 15px;
        }

        .socialContainer:active {
            transform: scale(0.9);
            transition-duration: 0.3s;
        }

        .socialSvg {
            width: 17px;
        }

        .socialSvg path {
            fill: rgb(255, 255, 255);
        }

        .socialContainer:hover .socialSvg {
            animation: slide-in-top 0.3s both;
        }

        @keyframes slide-in-top {
            0% {
                transform: translateY(50px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .card:has(.socialContainer:hover) .socialContainer:not(:hover) {
            opacity: 0.1;
        }

        footer p {
            color: #666;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }

            .value-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .value-price {
                margin-left: 0;
            }

            .pricing-card {
                padding: 2rem;
            }

            nav ul {
                display: none;
            }
        }