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

        :root {
            --primary: #E91E63;
            --primary-dark: #C2185B;
            --secondary: #1A1A2E;
            --accent: #FFE5EC;
            --rose-gold: #E8B4B8;
            --text-dark: #2C2C2C;
            --text-light: #6B6B6B;
            --bg-light: #FFF5F7;
            --gradient-1: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
            --gradient-2: linear-gradient(135deg, #FFE5EC 0%, #FFF5F7 100%);
            --gradient-3: linear-gradient(135deg, #1A1A2E 0%, #2C2C2C 100%);
        }

        body {
            font-family: 'Tajawal', sans-serif;
            overflow-x: hidden;
            background: #fff;
            color: var(--text-dark);
            line-height: 1.8;
        }

        .decorative-font {
            font-family: 'Amiri', serif;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 50%, #FFE5EC 100%);
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.03;
            animation: float-random 20s infinite ease-in-out;
        }

        .shape1 { width: 300px; height: 300px; background: var(--primary); top: 10%; left: 5%; animation-delay: 0s; }
        .shape2 { width: 200px; height: 200px; background: var(--rose-gold); bottom: 20%; right: 10%; animation-delay: 5s; }
        .shape3 { width: 250px; height: 250px; background: var(--primary); top: 60%; left: 70%; animation-delay: 10s; }

        @keyframes float-random {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(30px, -30px) rotate(90deg); }
            50% { transform: translate(-20px, 20px) rotate(180deg); }
            75% { transform: translate(20px, 30px) rotate(270deg); }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.3s;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            font-size: 2rem;
            filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.3));
        }

        .header-btn {
            background: var(--gradient-1);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
            font-size: 1.05rem;
        }

        .header-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(233, 30, 99, 0.5);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(233, 30, 99, 0.05) 100%);
            border: 2px solid rgba(233, 30, 99, 0.3);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            animation: fadeInDown 1s ease;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--text-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-subtitle {
            font-size: 1.6rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .price-container {
            background: white;
            border: 2px solid var(--accent);
            border-radius: 25px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .price-row {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .discount-badge {
            background: linear-gradient(135deg, #FF4757 0%, #E84118 100%);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 20px;
            font-weight: 800;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .old-price {
            font-size: 1.8rem;
            color: #999;
            text-decoration: line-through;
        }

        .new-price {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .price-note {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.8s backwards;
        }

        .primary-cta {
            background: var(--gradient-1);
            color: white;
            padding: 1.5rem 3.5rem;
            font-size: 1.4rem;
            font-weight: 800;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .primary-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .primary-cta:hover::before {
            width: 300px;
            height: 300px;
        }

        .primary-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(233, 30, 99, 0.6);
        }

        .trust-indicators {
            display: flex;
            gap: 2.5rem;
            padding-top: 2rem;
            border-top: 2px solid var(--accent);
            animation: fadeInUp 1s ease 1s backwards;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .trust-icon {
            font-size: 1.8rem;
            color: var(--primary);
        }

        /* Product Image Section */
        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.5s backwards;
        }

        .product-showcase {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 40px;
            padding: 3rem;
            box-shadow: 0 30px 90px rgba(0,0,0,0.12);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(233, 30, 99, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

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

        .product-image-main {
            width: 100%;
            height: 450px;
            background: var(--gradient-1);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        .floating-badge {
            position: absolute;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            font-weight: 700;
            animation: fadeInScale 1s ease backwards;
        }

        .badge-1 {
            top: 10%;
            left: -5%;
            animation-delay: 1.2s;
        }

        .badge-2 {
            bottom: 15%;
            right: -5%;
            animation-delay: 1.4s;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(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);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Features Section */
        .features {
            padding: 8rem 0;
            background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .section-label {
            color: var(--primary);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .section-description {
            font-size: 1.3rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .feature-card {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transition: all 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
            border-color: var(--accent);
        }

        .feature-card:hover::before {
            width: 200px;
            height: 200px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
        }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 800;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Results Timeline */
        .results-section {
            padding: 8rem 0;
            background: linear-gradient(180deg, #1A1A2E 0%, #2C2C2C 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .results-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(232, 180, 184, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
        }

        .results-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(233,30,99,0.2)"/></svg>');
            opacity: 0.4;
        }

        /* Particules flottantes */
        .results-section .results-container::before {
            content: '✨';
            position: absolute;
            top: 10%;
            left: 5%;
            font-size: 2rem;
            opacity: 0.3;
            animation: float-particle 6s ease-in-out infinite;
        }

        .results-section .results-container::after {
            content: '💫';
            position: absolute;
            top: 70%;
            right: 8%;
            font-size: 2.5rem;
            opacity: 0.25;
            animation: float-particle 8s ease-in-out infinite 2s;
        }

        @keyframes float-particle {
            0%, 100% { 
                transform: translateY(0) rotate(0deg); 
                opacity: 0.3;
            }
            50% { 
                transform: translateY(-30px) rotate(180deg); 
                opacity: 0.6;
            }
        }

        .results-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 1;
        }

        .results-section .section-label {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.95rem;
            font-weight: 800;
        }

        .results-section .section-title,
        .results-section .section-description {
            color: white;
        }

        .results-section .section-title {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
        }

        .timeline {
            margin-top: 5rem;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            right: 50%;
            transform: translateX(50%);
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, 
                var(--primary) 0%, 
                rgba(233, 30, 99, 0.6) 50%, 
                rgba(233, 30, 99, 0.2) 100%);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
        }

        .timeline-item {
            display: flex;
            gap: 3rem;
            margin-bottom: 5rem;
            align-items: center;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 30px;
            border: 3px solid rgba(233, 30, 99, 0.3);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .timeline-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(233, 30, 99, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .timeline-content:hover::after {
            opacity: 1;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 3px;
            background: var(--gradient-1);
            box-shadow: 0 0 15px rgba(233, 30, 99, 0.6);
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            left: -30px;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            right: -30px;
        }

        .timeline-content:hover {
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 
                0 30px 80px rgba(233, 30, 99, 0.4),
                0 0 60px rgba(233, 30, 99, 0.3),
                inset 0 0 40px rgba(233, 30, 99, 0.1);
        }

        .timeline-period {
            font-size: 3.5rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 30px rgba(233, 30, 99, 0.5);
            filter: drop-shadow(0 4px 15px rgba(233, 30, 99, 0.4));
            line-height: 1;
            display: inline-block;
        }

        .timeline-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            color: white;
            line-height: 1.3;
        }

        .timeline-content p {
            color: rgba(255,255,255,0.85);
            font-size: 1.2rem;
            line-height: 2;
            position: relative;
            z-index: 1;
        }

        /* Badge statistiques */
        .timeline-stats {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(233, 30, 99, 0.2);
            border: 2px solid rgba(233, 30, 99, 0.4);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 1rem;
            backdrop-filter: blur(10px);
        }

        .timeline-marker {
            width: 100px;
            height: 100px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 
                0 0 0 15px rgba(233, 30, 99, 0.2),
                0 0 0 30px rgba(233, 30, 99, 0.1),
                0 10px 40px rgba(233, 30, 99, 0.5),
                inset 0 -5px 20px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
            position: relative;
            transition: all 0.4s;
            animation: pulse-marker 3s ease-in-out infinite;
        }

        @keyframes pulse-marker {
            0%, 100% {
                transform: scale(1);
                box-shadow: 
                    0 0 0 15px rgba(233, 30, 99, 0.2),
                    0 0 0 30px rgba(233, 30, 99, 0.1),
                    0 10px 40px rgba(233, 30, 99, 0.5);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 
                    0 0 0 20px rgba(233, 30, 99, 0.3),
                    0 0 0 40px rgba(233, 30, 99, 0.15),
                    0 15px 50px rgba(233, 30, 99, 0.7);
            }
        }

        .timeline-marker::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: rotate-shine 3s linear infinite;
        }

        @keyframes rotate-shine {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .timeline-item:hover .timeline-marker {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 
                0 0 0 20px rgba(233, 30, 99, 0.3),
                0 0 0 40px rgba(233, 30, 99, 0.2),
                0 20px 60px rgba(233, 30, 99, 0.8);
        }

        /* Ingredients Section */
        .ingredients {
            padding: 8rem 0;
            background: white;
        }

        .ingredients-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .ingredient-card {
            background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
            padding: 2.5rem;
            border-radius: 25px;
            border-right: 5px solid var(--primary);
            transition: all 0.3s;
        }

        .ingredient-card:hover {
            transform: translateX(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .ingredient-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .ingredient-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .ingredient-card h3 {
            font-size: 1.6rem;
            color: var(--text-dark);
            font-weight: 800;
        }

        .ingredient-percentage {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 700;
        }

        .ingredient-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 8rem 0;
            background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            transition: all 0.4s;
            position: relative;
            border-top: 4px solid var(--primary);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(233, 30, 99, 0.2);
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .stars {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.3));
        }

        .testimonial-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--accent);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 800;
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
        }

        .author-info h4 {
            font-weight: 800;
            color: var(--text-dark);
            font-size: 1.2rem;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* FAQ Section */
        .faq {
            padding: 8rem 0;
            background: white;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .faq-item {
            background: var(--bg-light);
            margin-bottom: 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-question {
            padding: 2rem;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 2rem 2rem;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* Guarantee Section */
        .guarantee {
            padding: 8rem 0;
            background: var(--gradient-1);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .guarantee::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .guarantee-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 3rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .guarantee-icon {
            font-size: 6rem;
            margin-bottom: 2rem;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
        }

        .guarantee h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
        }

        .guarantee p {
            font-size: 1.4rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .guarantee-highlight {
            font-size: 1.8rem;
            font-weight: 800;
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: inline-block;
        }

        /* Final CTA */
        .final-cta {
            padding: 8rem 0;
            background: var(--secondary);
            color: white;
        }

        .final-cta-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 3rem;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 4rem;
            margin-bottom: 2rem;
            font-weight: 900;
        }

        .final-cta-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .final-cta-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.3rem;
        }

        .final-cta-feature-icon {
            color: var(--primary);
            font-size: 2rem;
        }

        .final-price {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 3rem;
            border: 2px solid rgba(212, 175, 55, 0.3);
        }

        .final-price .new-price {
            -webkit-text-fill-color: white;
        }

        .urgency-text {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 700;
            margin-top: 2rem;
            animation: pulse-text 2s infinite;
        }

        @keyframes pulse-text {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            text-align: center;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1.05rem;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(233, 30, 99, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #666;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .results-section .section-title {
                font-size: 2.8rem;
            }

            .features-grid,
            .testimonials-grid,
            .ingredients-grid {
                grid-template-columns: 1fr;
            }

            .cta-group {
                flex-direction: column;
            }

            .timeline-item {
                flex-direction: column !important;
                text-align: center;
                margin-bottom: 4rem;
            }

            .timeline::before {
                right: auto;
                left: 50%;
                transform: translateX(-50%);
            }

            .timeline-content::before {
                display: none;
            }

            .timeline-marker {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .timeline-content {
                padding: 2rem;
            }

            .timeline-period {
                font-size: 2.5rem;
            }

            .timeline-content h3 {
                font-size: 1.6rem;
            }

            .timeline-content p {
                font-size: 1.05rem;
            }

            .final-cta h2 {
                font-size: 2.5rem;
            }
        }
    