/* ===================================
   MLM Platform - Modern CSS Styles
   ================================== */

/* === CSS Variables === */
:root {
    /* Gradient Colors */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-6: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%);
    
    /* Primary Colors */
    --primary-blue: #4facfe;
    --primary-purple: #667eea;
    --primary-pink: #f093fb;
    --primary-orange: #ff9a56;
    --primary-green: #43e97b;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #1a1a2e;
    --color-gray: #6c757d;
    --color-light-gray: #f8f9fa;
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* === Scroll Progress Bar === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* === Header & Navigation === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
}

.logo i {
    color: var(--primary-purple);
    font-size: 32px;
}

.logo .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-hero-primary {
    background: var(--gradient-1);
    color: var(--color-white);
    padding: 18px 40px;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-hero-secondary {
    background: var(--color-white);
    color: var(--color-dark);
    padding: 18px 40px;
    font-size: 16px;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.btn-hero-secondary:hover {
    background: var(--gradient-1);
    color: var(--color-white);
    border-color: transparent;
}

.btn-gradient-large {
    background: var(--gradient-2);
    color: var(--color-white);
    padding: 18px 45px;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.btn-gradient-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.4);
}

.btn-gradient {
    background: var(--gradient-1);
    color: var(--color-white);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* === Section Styles === */
section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-3);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--gradient-4);
    top: 30%;
    right: 5%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    animation: floating 6s infinite ease-in-out;
}

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

.image-wrapper img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.image-badge {
    position: absolute;
    background: var(--color-white);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.badge-1 {
    top: 10%;
    left: -20px;
}

.badge-1 i {
    color: #ffd700;
}

.badge-2 {
    bottom: 15%;
    right: -20px;
}

.badge-2 i {
    color: #ff6a88;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-gray);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--color-gray);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

.scroll-indicator p {
    font-size: 12px;
    color: var(--color-gray);
    font-weight: 500;
}

/* === Products Section === */
.products {
    background: var(--color-light-gray);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: var(--gradient-2);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 10;
}

.product-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-icon {
    font-size: 80px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 12px 25px;
    background: var(--color-white);
    color: var(--primary-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .btn-quick-view {
    transform: translateY(0);
}

.product-content {
    padding: 25px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

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

.stars {
    display: flex;
    gap: 3px;
    color: #ffd700;
}

.rating-text {
    font-size: 14px;
    color: var(--color-gray);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-purple);
}

.btn-add-cart {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.btn-add-cart:hover {
    transform: rotate(360deg) scale(1.1);
}

.products-cta {
    text-align: center;
}

/* === MLM Plan Section === */
.mlm-plan {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(240, 147, 251, 0.03) 100%);
}

.plan-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.plan-card {
    background: var(--color-white);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 3px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular {
    border-color: var(--primary-purple);
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    background: var(--gradient-2);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.plan-green .plan-icon {
    background: var(--gradient-4);
}

.plan-blue .plan-icon {
    background: var(--gradient-3);
}

.plan-purple .plan-icon {
    background: var(--gradient-1);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-gray);
}

.plan-price .amount {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .period {
    font-size: 16px;
    color: var(--color-gray);
}

.plan-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--color-light-gray);
    border-radius: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary-purple);
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-label {
    font-size: 12px;
    color: var(--color-gray);
}

.highlight-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--primary-green);
    font-size: 18px;
}

.btn-plan {
    width: 100%;
    padding: 15px;
    background: var(--gradient-1);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.bonus-structure {
    text-align: center;
}

.bonus-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--color-dark);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bonus-item {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--color-white);
}

.bonus-item:nth-child(2) .bonus-icon {
    background: var(--gradient-2);
}

.bonus-item:nth-child(3) .bonus-icon {
    background: var(--gradient-3);
}

.bonus-item:nth-child(4) .bonus-icon {
    background: var(--gradient-5);
}

.bonus-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.bonus-item p {
    color: var(--color-gray);
    font-size: 15px;
}

/* === Testimonials Section === */
.testimonials {
    background: var(--color-light-gray);
}

.testimonials-slider {
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    position: relative;
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    opacity: 0.1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid;
    object-fit: cover;
}

.testimonial-pink .testimonial-avatar {
    border-color: var(--primary-pink);
}

.testimonial-blue .testimonial-avatar {
    border-color: var(--primary-blue);
}

.testimonial-purple .testimonial-avatar {
    border-color: var(--primary-purple);
}

.testimonial-orange .testimonial-avatar {
    border-color: var(--primary-orange);
}

.testimonial-green .testimonial-avatar {
    border-color: var(--primary-green);
}

.testimonial-red .testimonial-avatar {
    border-color: #f5576c;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    color: #ffd700;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-income {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    border-radius: 15px;
    font-size: 15px;
    color: var(--color-dark);
}

.testimonial-income i {
    font-size: 20px;
    color: var(--primary-green);
}

.testimonial-income strong {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-purple);
}

/* Swiper Custom Styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-purple);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-purple);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 20px;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-box .stat-number {
    font-size: 48px;
}

.stat-box .stat-label {
    font-size: 16px;
}

/* === Blog Section === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-blue {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
}

.blog-green {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.2) 0%, rgba(56, 249, 215, 0.2) 100%);
}

.blog-orange {
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.2) 0%, rgba(255, 106, 136, 0.2) 100%);
}

.blog-purple {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.blog-red {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.2) 0%, rgba(240, 147, 251, 0.2) 100%);
}

.blog-pink {
    background: linear-gradient(135deg, rgba(247, 112, 154, 0.2) 0%, rgba(254, 225, 64, 0.2) 100%);
}

.blog-icon {
    font-size: 70px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: var(--color-white);
    color: var(--primary-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 13px;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-purple);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 15px;
}

.blog-cta {
    text-align: center;
}

/* === FAQ Section === */
.faq {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(240, 147, 251, 0.03) 100%);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-illustration {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--color-white);
    animation: pulse 3s infinite;
}

.faq-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-badge {
    background: var(--color-white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.feature-badge:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-badge i {
    font-size: 24px;
    color: var(--primary-purple);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark);
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-purple);
}

.accordion-header i {
    font-size: 18px;
    color: var(--primary-purple);
    transition: var(--transition);
}

.accordion-item.active .accordion-header {
    color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    display: none;
}

.accordion-item.active .accordion-body {
    padding: 0 25px 20px;
    max-height: 500px;
}

.accordion-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-gray);
}

.faq-contact {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    text-align: center;
}

.faq-contact p {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq-contact i {
    color: var(--primary-purple);
}

/* === Contact Section === */
.contact {
    background: var(--color-light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.contact-info-text {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.detail-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-white);
    flex-shrink: 0;
}

.detail-blue {
    background: var(--gradient-3);
}

.detail-green {
    background: var(--gradient-4);
}

.detail-purple {
    background: var(--gradient-1);
}

.detail-orange {
    background: var(--gradient-6);
}

.detail-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.detail-content p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-social h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.social-buttons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    transition: var(--transition);
}

.social-facebook {
    background: #1877f2;
}

.social-twitter {
    background: #1da1f2;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-linkedin {
    background: #0077b5;
}

.social-youtube {
    background: #ff0000;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-purple);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-dark);
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--color-gray);
    cursor: pointer;
}

.btn-submit-form {
    padding: 18px 40px;
    background: var(--gradient-1);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-submit-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--primary-green);
}

/* === Footer === */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--color-white);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-purple);
    font-size: 32px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 10px;
}

.footer-links i {
    font-size: 12px;
    color: var(--primary-purple);
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: scale(1.1) rotate(15deg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-purple);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-content i {
    color: #ff6a88;
}

/* === Back to Top Button === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .section-title {
        font-size: 42px;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .faq-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-tiers {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: scale(1);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* === Product Detail Modal === */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.product-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-dark);
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    background: var(--gradient-1);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
}

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

.modal-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-details h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-rating .stars {
    display: flex;
    gap: 3px;
    color: #ffd700;
}

.modal-rating .rating-text {
    font-size: 14px;
    color: var(--color-gray);
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
}

.modal-benefits h4,
.modal-usage h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.modal-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-benefits li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-gray);
}

.modal-benefits li::before {
    content: '\\2713';
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: bold;
    font-size: 18px;
}

.modal-usage p {
    color: var(--color-gray);
    background: rgba(102, 126, 234, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-purple);
}

.modal-actions {
    margin-top: auto;
}

.modal-add-cart {
    width: 100%;
    justify-content: center;
    gap: 10px;
}

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

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

@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        height: 300px;
    }
    
    .modal-details {
        padding: 30px 20px;
    }
    
    .modal-details h2 {
        font-size: 24px;
    }
    
    .modal-price {
        font-size: 28px;
    }
}
