/* ===================================
   VARIABLES & RESET
   =================================== */

:root {
    /* Color Palette - Warm Beige/Brown Theme */
    --primary-color: #8B6F47;
    --primary-dark: #6B5333;
    --primary-light: #A68A5C;
    --secondary-color: #D4A574;
    --accent-color: #C4976A;
    
    --beige-100: #FAF7F2;
    --beige-200: #F5EFE6;
    --beige-300: #E8DCC9;
    --beige-400: #D4C4AD;
    
    --brown-100: #9B8268;
    --brown-200: #7D6B5A;
    --brown-300: #5A4A3A;
    
    --white: #FFFFFF;
    --black: #1A1614;
    --text-dark: #2C2520;
    --text-light: #6B6158;
    --text-muted: #9C8F84;
    
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    
    --shadow-sm: 0 2px 8px rgba(139, 111, 71, 0.08);
    --shadow-md: 0 4px 16px rgba(139, 111, 71, 0.12);
    --shadow-lg: 0 8px 32px rgba(139, 111, 71, 0.16);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --container-max: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===================================
   UTILITIES
   =================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.75rem;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-hide {
        display: flex !important;
    }
}

.mobile-hide {
    display: none;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--beige-100) 0%, var(--beige-200) 100%);
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    order: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.hero-feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

.hero-feature strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.125rem;
}

.hero-feature span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.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);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--secondary-color);
}

.hero-image {
    order: 1;
}

.product-showcase {
    position: relative;
    padding: 2rem;
}

.product-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: 0;
}

.badge-2 {
    bottom: 10%;
    left: 0;
}

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

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text,
    .hero-image {
        order: 0;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   TRUST BADGES
   =================================== */

.trust-badges {
    background: var(--white);
    padding: 2rem 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem;
}

.badge-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.badge-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   LIMITED OFFER SECTION
   =================================== */

.limited-offer {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.offer-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--warning);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.offer-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.save-badge {
    background: var(--success);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-offer {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
    .offer-header h2 {
        font-size: 3.5rem;
    }
    
    .countdown-item {
        min-width: 120px;
    }
}

/* ===================================
   BEFORE/AFTER GALLERY
   =================================== */

.before-after {
    padding: var(--spacing-xl) 0;
    background: var(--beige-100);
}

.ba-grid {
    display: grid;
    gap: 2rem;
}

.ba-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ba-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.ba-label {
    position: absolute;
    top: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 50px;
}

.before-label {
    left: 1rem;
    background: var(--error);
    color: var(--white);
}

.after-label {
    right: 1rem;
    background: var(--success);
    color: var(--white);
}

.ba-info {
    padding: 1.5rem;
    text-align: center;
}

.ba-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.ba-info p {
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

@media (min-width: 768px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ba-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: var(--beige-100);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   VIDEO DEMO SECTION
   =================================== */

.video-demo {
    padding: var(--spacing-xl) 0;
    background: var(--beige-200);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-item i {
    color: var(--success);
    font-size: 1.25rem;
}

/* ===================================
   COMPARISON TABLE
   =================================== */

.comparison {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--beige-300);
}

.comparison-table thead th {
    background: var(--beige-200);
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.highlight-col {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--white) !important;
}

.best-choice {
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td {
    font-size: 0.9rem;
}

.success {
    color: var(--success);
    font-size: 1.25rem;
}

.warning {
    color: var(--warning);
    font-size: 1.25rem;
}

.error {
    color: var(--error);
    font-size: 1.25rem;
}

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

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--beige-100);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--warning);
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   VIDEO TESTIMONIALS
   =================================== */

.video-testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.video-testimonials-grid {
    display: grid;
    gap: 2rem;
}

.video-testimonial-card {
    background: var(--beige-100);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-testimonial-info {
    padding: 1.5rem;
}

.video-testimonial-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.video-testimonial-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   UPSELL PRODUCTS
   =================================== */

.upsell-products {
    padding: var(--spacing-xl) 0;
    background: var(--beige-200);
}

.products-grid {
    display: grid;
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 1;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

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

.product-price .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}

.product-price .new-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.btn-product {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--beige-100);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
}

.faq-question:hover {
    background: var(--beige-200);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */

.guarantee {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.guarantee-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-text p {
    font-size: 1.125rem;
    max-width: 700px;
    opacity: 0.95;
}

.guarantee-features {
    display: grid;
    gap: 2rem;
}

.guarantee-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    backdrop-filter: blur(10px);
}

.guarantee-feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.guarantee-feature p {
    opacity: 0.9;
}

@media (min-width: 768px) {
    .guarantee-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   SHIPPING POLICY
   =================================== */

.shipping-policy {
    padding: var(--spacing-xl) 0;
    background: var(--beige-100);
}

.policy-grid {
    display: grid;
    gap: 2rem;
}

.policy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.policy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.policy-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-card ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
}

.policy-card li i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   REFERRAL PROGRAM
   =================================== */

.referral-program {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.referral-steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.referral-step {
    background: var(--beige-100);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.referral-step i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.referral-step h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.referral-step p {
    color: var(--text-light);
}

.step-arrow {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.referral-cta {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.referral-code {
    margin-bottom: 2rem;
}

.referral-code label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.code-input {
    display: flex;
    gap: 1rem;
}

.code-input input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--beige-300);
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    background: var(--beige-100);
}

.code-input button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.code-input button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.referral-stats .stat {
    background: var(--beige-100);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.referral-stats strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.referral-stats span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.loyalty-program {
    background: var(--beige-100);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.loyalty-program h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.loyalty-program > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.loyalty-tiers {
    display: grid;
    gap: 1.5rem;
}

.tier {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.tier i {
    color: var(--warning);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.tier span {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .referral-steps {
        grid-template-columns: 1fr auto 1fr auto 1fr;
    }
    
    .step-arrow {
        display: block;
    }
    
    .loyalty-tiers {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   FINAL CTA
   =================================== */

.final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--beige-200) 0%, var(--beige-300) 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary-large {
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.3);
}

.cta-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-reassurance i {
    color: var(--success);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--text-dark);
    color: var(--beige-200);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.footer-section p {
    color: var(--beige-300);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li a {
    color: var(--beige-300);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--beige-300);
}

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

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1.75rem;
}

.payment-methods i {
    color: var(--beige-300);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--beige-300);
    font-size: 0.875rem;
}

.footer-badges i {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   POPUP MODAL
   =================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.popup-overlay.active .popup-modal {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--beige-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 1;
}

.popup-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.popup-content {
    padding: 3rem 2rem;
    text-align: center;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.popup-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.popup-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-form input {
    padding: 1rem;
    border: 2px solid var(--beige-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.popup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-popup {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-popup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.popup-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ===================================
   CHAT WIDGET
   =================================== */

.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--error);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--white);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-width: calc(100vw - 2rem);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-box.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.chat-header strong {
    display: block;
    font-weight: 600;
}

.status-online {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    opacity: 0.9;
}

.status-online i {
    font-size: 0.5rem;
    color: var(--success);
}

.chat-header button {
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.chat-header button:hover {
    transform: scale(1.2);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
    background: var(--beige-100);
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chat-message img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    flex-shrink: 0;
}

.message-content {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    max-width: 80%;
}

.message-content p {
    color: var(--text-dark);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-replies button {
    padding: 0.75rem;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--beige-300);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    text-align: left;
    transition: var(--transition);
}

.quick-replies button:hover {
    background: var(--beige-200);
    border-color: var(--primary-color);
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--beige-300);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--beige-300);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-input button:hover {
    transform: scale(1.1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .offer-header h2 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .nav-menu.active {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

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

/* ===================================
   SCROLLBAR CUSTOM
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--beige-200);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===================================
   ACCESSIBILITY
   =================================== */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}