/* ============================================
   XENBURN - REVITALIZING BODY PATCHES
   Main Stylesheet - Optimized for Performance
   ============================================ */

/* CSS Variables */
:root {
    --primary-purple: #4A1D6E;
    --primary-orange: #FF6B35;
    --gradient-orange: linear-gradient(135deg, #FF8A00 0%, #FF4500 100%);
    --gradient-purple: linear-gradient(135deg, #6B2D8B 0%, #4A1D6E 100%);
    --text-dark: #1A1A2E;
    --text-gray: #555;
    --text-light: #777;
    --bg-light: #FAFAFA;
    --bg-cream: #FFF9F5;
    --bg-white: #FFFFFF;
    --border-light: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-orange: 0 4px 20px rgba(255,107,53,0.35);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --max-width: 1200px;
    --section-padding: 80px 20px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: -0.5px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: var(--transition-normal);
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-orange);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-normal);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,53,0.45);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 50%, #F5F0FF 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(74,29,110,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.hero h1 span {
    display: block;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: #22C55E;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-orange);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,107,53,0.5);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    color: var(--primary-purple);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-purple);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: #fff;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 4s ease-in-out infinite;
}

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

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

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

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

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

.trust-item svg {
    width: 20px;
    height: 20px;
    color: #22C55E;
}

/* ============================================
   WHAT IS XENBURN SECTION
   ============================================ */
.what-is {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(74,29,110,0.08);
    color: var(--primary-purple);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

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

.what-is-content {
    padding-right: 20px;
}

.what-is-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.what-is-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.what-is-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.what-is-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.what-is-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.what-is-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-orange);
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-purple);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: var(--section-padding);
    background: var(--bg-white);
}

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

.benefits-image {
    position: relative;
}

.benefits-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.benefits-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 16px 24px;
    background: var(--gradient-purple);
    color: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.benefits-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefits-badge small {
    font-size: 0.85rem;
    opacity: 0.9;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: var(--bg-cream);
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-purple);
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #4A1D6E 0%, #2D1142 100%);
    color: #fff;
}

.ingredients .section-header {
    color: #fff;
}

.ingredients .section-tag {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.ingredients .section-header h2 {
    color: #fff;
}

.ingredients .section-header p {
    color: rgba(255,255,255,0.8);
}

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

.ingredient-card {
    padding: 32px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.ingredient-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: var(--gradient-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.ingredient-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #fff;
}

.ingredient-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-cream);
}

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

.testimonial-card {
    padding: 32px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #FFB800;
    fill: #FFB800;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

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

.testimonial-disclaimer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,107,53,0.08);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: var(--section-padding);
    background: var(--bg-white);
}

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

.pricing-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-orange);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    max-height: 180px;
    margin: 0 auto;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.pricing-supply {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.price-amount sup {
    font-size: 1.5rem;
    top: -0.8em;
}

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

.price-total {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
}

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

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: #22C55E;
    flex-shrink: 0;
}

.pricing-features svg.red {
    color: #EF4444;
}

.pricing-cta {
    width: 100%;
    padding: 16px;
    background: var(--gradient-orange);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-normal);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,53,0.5);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.payment-icons img {
    height: 24px;
    opacity: 0.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #4A1D6E 0%, #2D1142 50%, #4A1D6E 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.final-cta-image {
    margin: 40px auto;
    max-width: 500px;
}

.final-cta-image img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--primary-orange);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question svg {
    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-inner {
    padding: 0 24px 24px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--primary-orange);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--gradient-orange);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255,107,53,0.5);
    animation: pulse 2s infinite;
    transition: var(--transition-normal);
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255,107,53,0.6);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(255,107,53,0.5); }
    50% { box-shadow: 0 8px 40px rgba(255,107,53,0.7); }
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.popup-close:hover {
    background: var(--primary-orange);
    color: #fff;
}

.popup-close svg {
    width: 20px;
    height: 20px;
}

.popup-image {
    margin-bottom: 24px;
}

.popup-image img {
    max-height: 150px;
    margin: 0 auto;
}

.popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-purple);
}

.popup-content p {
    font-size: 1rem;
    margin-bottom: 24px;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-orange);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-normal);
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,53,0.5);
}

/* ============================================
   PURCHASE NOTIFICATION
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
    max-width: 320px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.purchase-notification.show {
    transform: translateX(0);
}

.notification-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
}

.notification-content strong {
    color: var(--primary-purple);
}

.notification-content small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding: 140px 20px 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: var(--primary-purple);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .what-is-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .what-is-content {
        padding-right: 0;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredients-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 16px;
    }
    
    .header-inner {
        padding: 10px 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .what-is-images {
        grid-template-columns: 1fr;
    }
    
    .what-is-img img {
        height: 250px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .purchase-notification {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 14px 24px;
    }
    
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .popup-content {
        padding: 30px 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-cta,
    .purchase-notification,
    .popup-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}
