/* ========================
   Reset & Base Styles
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f8bbd0;
    --secondary-color: #4caf50;
    --accent-color: #ff9800;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================
   Container
   ======================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================
   Header
   ======================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* ========================
   Hero Section
   ======================== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #ffeaf2 100%);
}

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

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.stars {
    color: var(--accent-color);
    font-size: 20px;
}

.review-count {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

/* ========================
   Buttons
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 20px;
}

/* ========================
   Featured In
   ======================== */
.featured-in {
    padding: 40px 0;
    background: var(--white);
    text-align: center;
}

.featured-text {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.featured-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

/* ========================
   Section Titles
   ======================== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
    line-height: 1.4;
}

/* ========================
   Pricing Section
   ======================== */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.discount-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing {
    margin-bottom: 10px;
}

.original-price {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 10px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.per {
    font-size: 18px;
    font-weight: 500;
}

.total {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.strike {
    text-decoration: line-through;
    color: var(--text-light);
}

.shipping {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.shipping-free {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.guarantee-badge i {
    color: var(--secondary-color);
}

.bonus-text {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 20px;
}

.customers-say {
    text-align: center;
    padding: 40px 0;
}

.stars-large {
    color: var(--accent-color);
    font-size: 30px;
    margin-bottom: 15px;
}

.customers-text {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.satisfaction-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================
   Guarantee Section
   ======================== */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #ffeaf2 100%);
}

.guarantee-box {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================
   Ingredients Section
   ======================== */
.ingredients-section {
    padding: 80px 0;
    background: var(--white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ingredient-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    background: #fff5f8;
    transform: translateY(-5px);
}

.ingredient-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ingredient-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.ingredient-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.ingredient-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================
   Bonuses Section
   ======================== */
.bonuses-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.bonus-number {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.bonus-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-value {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

/* ========================
   Reviews Section
   ======================== */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    gap: 10px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-color);
}

.reviewer-location {
    color: var(--text-light);
    font-size: 14px;
}

.join-section {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #ffeaf2 100%);
    border-radius: 20px;
}

.join-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* ========================
   References Section
   ======================== */
.references-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.references-list {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
}

.references-list p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 8px;
}

/* ========================
   CTA Section
   ======================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
}

/* ========================
   Footer
   ======================== */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links p {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--primary-light);
    text-decoration: underline;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.legal-links a:hover {
    color: var(--white);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================
   Responsive Design
   ======================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav {
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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

    .guarantee-box {
        padding: 30px 20px;
    }

    .guarantee-box h2 {
        font-size: 24px;
    }

    .footer-links {
        font-size: 14px;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }
}