:root {
            --gold: #d4af37;
            --gold-light: #e8d098;
            --cream: #f5f0e8;
            --navy: #1a2332;
            --white: #ffffff;
            --gray-100: #f7fafc;
            --gray-300: #e2e8f0;
            --gray-600: #718096;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant', serif;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-family: 'Cormorant', serif;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .logo .navy {
            color: var(--navy);
        }

        .logo .gold {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .btn {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.875rem;
        }

        .btn-primary {
            background: var(--gold);
            color: white;
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }

        .btn-outline:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            background: linear-gradient(to bottom, #e8f0f5, white, #f5f0e8);
            position: relative;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(40px);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .particle-1 {
            width: 80px;
            height: 80px;
            background: rgba(212, 175, 55, 0.2);
            top: 20%;
            left: 10%;
        }

        .particle-2 {
            width: 128px;
            height: 128px;
            background: rgba(255, 255, 255, 0.4);
            top: 40%;
            right: 20%;
            animation-duration: 8s;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            text-align: left;
        }

        .badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 0.5rem;
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero h1 .navy {
            color: var(--navy);
        }

        .hero h1 .gold {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            padding-top: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-family: 'Cormorant', serif;
            font-weight: 700;
            color: var(--gold);
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--gray-600);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 1rem;
            animation: float 6s ease-in-out infinite;
        }

        /* Product Section */
        .product-section {
            padding: 6rem 2rem;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .product-image img {
            width: 100%;
            border-radius: 1rem;
        }

        .product-info h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .product-info p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .checkmark {
            width: 20px;
            height: 20px;
            color: var(--gold);
        }

        .price-section {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--gray-600);
            font-size: 0.875rem;
        }

        .new-price {
            font-size: 2.5rem;
            font-family: 'Cormorant', serif;
            font-weight: 700;
            color: var(--gold);
        }

        /* Special Offer */
        .special-offer {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #d8e8f0, #f0e8d8);
        }

        .offer-badge {
            background: #ef4444;
            color: white;
            border: none;
        }

        /* Benefits */
        .benefits {
            padding: 6rem 2rem;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .benefit-card {
            padding: 2rem;
            background: linear-gradient(135deg, white, var(--cream));
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--navy);
        }

        .benefit-card p {
            font-size: 0.875rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Ingredients */
        .ingredients {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f0e8d8, #e8f0f5);
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .ingredient-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .ingredient-card:hover {
            transform: scale(1.05);
        }

        .ingredient-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .ingredient-card h4 {
            padding: 1rem;
            text-align: center;
            font-size: 1rem;
            color: var(--navy);
        }

        /* Reviews */
        .reviews {
            padding: 6rem 2rem;
            background: white;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .review-card {
            padding: 2rem;
            background: linear-gradient(135deg, white, var(--cream));
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .reviewer img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
        }

        .reviewer-info h4 {
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 0.25rem;
        }

        .reviewer-info p {
            font-size: 0.75rem;
            color: var(--gray-600);
        }

        .stars {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .review-text {
            font-size: 0.875rem;
            color: var(--gray-600);
            font-style: italic;
            line-height: 1.6;
        }

        /* How to Use */
        .how-to-use {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #e8f0f5, white);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-family: 'Cormorant', serif;
            font-weight: 700;
            color: white;
        }

        .step h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--navy);
        }

        .step p {
            font-size: 0.875rem;
            color: var(--gray-600);
        }

        /* FAQ */
        .faq {
            padding: 6rem 2rem;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 0.5rem;
            background: linear-gradient(to right, white, var(--cream));
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            color: var(--gold);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 1.5rem 1.5rem;
        }

        /* CTA */
        .cta {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .cta p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta .btn {
            background: white;
            color: var(--gold);
            font-size: 1.125rem;
            padding: 1rem 2.5rem;
        }

        .cta .btn:hover {
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: var(--navy);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .footer-col h4 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.5rem;
        }

        .footer-col a {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: var(--gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cbd5e0;
            font-size: 0.875rem;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: white;
            border-radius: 1rem;
            max-width: 500px;
            width: 100%;
            padding: 3rem 2rem;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--gray-600);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: var(--gray-100);
            color: var(--navy);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .modal-header h3 {
            font-size: 2rem;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .modal-header p {
            color: var(--gray-600);
            font-size: 0.875rem;
        }

        .modal-product {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: linear-gradient(135deg, var(--cream), white);
            border-radius: 0.5rem;
            margin-bottom: 2rem;
        }

        .modal-product img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 0.5rem;
        }

        .modal-product-info h4 {
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 0.25rem;
        }

        .modal-product-price {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-product-price .old-price {
            font-size: 0.875rem;
        }

        .modal-product-price .new-price {
            font-size: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--navy);
            font-weight: 600;
            font-size: 0.875rem;
        }

        .form-group input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid var(--gray-300);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .form-group input::placeholder {
            color: var(--gray-600);
        }

        .modal-submit {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .modal-guarantee {
            text-align: center;
            font-size: 0.75rem;
            color: var(--gray-600);
            padding-top: 1rem;
            border-top: 1px solid var(--gray-300);
        }

        .modal-guarantee span {
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid,
            .ingredients-grid,
            .reviews-grid,
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }