/* ============================================
   TestoTonic - Main Stylesheet
   High-Performance Landing Page CSS
   ============================================ */

/* CSS Variables */
:root {
    --primary-green: #7cb518;
    --primary-green-dark: #5a8a10;
    --primary-green-light: #9ed63a;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1a;
    --navy-blue: #0a1628;
    --dark-navy: #0d1b2a;
    --text-dark: #000000;
    --text-light: #f8f9fa;
    --text-muted: #000000;
    --accent-gold: #ffc107;
    --accent-red: #dc3545;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --border-light: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(124, 181, 24, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --section-padding: 80px 20px;
    
    /* Typography - Desktop */
    --h1-size: 46px;
    --h2-size: 36px;
    --h3-size: 28px;
    --p-size: 18px;
    --line-height-text: 1.9;
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-navy);
}

h1 {
    font-size: var(--h1-size);
    font-weight: 800;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 600;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 600;
}

p {
    font-size: var(--p-size);
    line-height: var(--line-height-text);
    color: var(--text-dark);
}

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

/* Soft Disclaimer */
.soft-disclaimer-container {
    background: var(--off-white);
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.soft-disclaimer {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.text-green { color: var(--primary-green); }
.bg-dark { background: var(--dark-bg); }
.bg-light { background: var(--off-white); }

/* ============================================
   Header Styles
   ============================================ */
.top-header {
    background: linear-gradient(90deg, var(--dark-bg), var(--darker-bg));
    padding: 12px 20px;
    text-align: center;
}

.top-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.top-header .highlight {
    color: var(--primary-green);
    font-weight: 600;
}

.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
}

.logo-text span {
    color: var(--primary-green);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.guarantee-badge svg {
    color: var(--primary-green);
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(124, 181, 24, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 181, 24, 0.5);
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.15rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(124, 181, 24, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(124, 181, 24, 0.6); }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::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='%237cb518' fill-opacity='0.05'%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");
    opacity: 0.5;
}

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

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

.hero-badge {
    display: inline-block;
    background: rgba(124, 181, 24, 0.2);
    border: 1px solid var(--primary-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero h1 {
    font-size: var(--h1-size);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary-green);
    display: block;
}

.hero-description {
    font-size: var(--p-size);
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: var(--line-height-text);
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
}

.hero-benefit svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 450px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: float 3s ease-in-out infinite;
}

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

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.trust-badge {
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-badge svg {
    color: var(--primary-green);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: var(--section-padding);
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124, 181, 24, 0.15), rgba(124, 181, 24, 0.05));
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: var(--h2-size);
    color: var(--dark-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title span {
    color: var(--primary-green);
}

.section-subtitle {
    font-size: var(--p-size);
    color: var(--text-dark);
    line-height: var(--line-height-text);
}

/* ============================================
   What Is Section
   ============================================ */
.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.what-is-text h3 {
    font-size: var(--h3-size);
    margin-bottom: 25px;
    color: var(--dark-navy);
    font-weight: 700;
}

.what-is-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: var(--line-height-text);
    font-size: var(--p-size);
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-navy);
    font-weight: 700;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(124, 181, 24, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 181, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    color: var(--primary-green);
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-navy);
    font-weight: 700;
}

.step-card p {
    color: var(--text-dark);
    line-height: var(--line-height-text);
    font-size: var(--p-size);
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 35px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(124, 181, 24, 0.15), rgba(124, 181, 24, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-navy);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-dark);
    line-height: var(--line-height-text);
    font-size: 17px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    position: relative;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}

.testimonials .section-subtitle {
    opacity: 0.8;
}

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

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

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
}

.testimonial-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-stars svg {
    color: var(--accent-gold);
    width: 18px;
    height: 18px;
}

.testimonial-text {
    color: rgba(255,255,255,0.9);
    line-height: var(--line-height-text);
    font-style: italic;
    font-size: 17px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-size: 0.8rem;
    margin-top: 15px;
}

.testimonial-disclaimer {
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    background: var(--off-white);
}

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

.price-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

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

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.price-card-header {
    margin-bottom: 25px;
}

.price-card-header h3 {
    font-size: 24px;
    color: var(--dark-navy);
    margin-bottom: 5px;
    font-weight: 700;
}

.price-card-header span {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.price-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.price-image img {
    max-height: 100%;
    object-fit: contain;
}

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

.price-per-bottle {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.price-per-bottle sup {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-label {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.price-savings {
    background: rgba(124, 181, 24, 0.1);
    color: var(--primary-green);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.price-features {
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

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

.price-features svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.price-card .btn {
    width: 100%;
}

.money-back-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.money-back-badge svg {
    color: var(--primary-green);
}

/* ============================================
   Guarantee Section
   ============================================ */
.guarantee {
    background: var(--white);
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, rgba(124, 181, 24, 0.05), rgba(124, 181, 24, 0.02));
    border: 2px solid var(--primary-green);
    border-radius: 24px;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
}

.guarantee-content h2 {
    font-size: var(--h2-size);
    color: var(--dark-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-content p {
    color: var(--text-dark);
    line-height: var(--line-height-text);
    margin-bottom: 15px;
    font-size: var(--p-size);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--off-white);
}

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

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

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow);
}

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

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-green);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: var(--line-height-text);
    font-size: 16px;
    margin: 0;
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 181, 24, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.final-cta h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 800;
}

.final-cta h2 span {
    color: var(--primary-green);
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: var(--p-size);
    margin-bottom: 40px;
    line-height: var(--line-height-text);
}

.final-cta-image {
    margin-bottom: 40px;
}

.final-cta-image img {
    max-width: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.urgency-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid var(--accent-red);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--white);
    margin-bottom: 30px;
    animation: urgencyPulse 1.5s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-content {
    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);
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    padding: 8px 0;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
}

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

/* ============================================
   Floating Order Button
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    animation: floatBounce 2s ease-in-out infinite;
}

.floating-cta .btn {
    border-radius: 50px;
    padding: 16px 30px;
    box-shadow: 0 6px 25px rgba(124, 181, 24, 0.5);
    font-weight: 700;
}

@keyframes floatBounce {
    0%, 100% { 
        transform: translateY(0); 
        box-shadow: 0 6px 25px rgba(124, 181, 24, 0.5);
    }
    50% { 
        transform: translateY(-10px); 
        box-shadow: 0 12px 35px rgba(124, 181, 24, 0.7);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ============================================
   Exit Intent Popup
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

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

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

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 35px;
    height: 35px;
    border: none;
    background: var(--off-white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.popup-close:hover {
    background: var(--accent-red);
    color: var(--white);
}

.popup-content h2 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.popup-content h2 span {
    color: var(--primary-green);
}

.popup-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.popup-image img {
    max-width: 200px;
    margin: 0 auto;
}

/* ============================================
   Purchase Notification
   ============================================ */
.purchase-notification {
    position: fixed;
    bottom: 100px;
    left: 25px;
    background: var(--white);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9998;
    max-width: 320px;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

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

.notification-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.notification-content {
    flex-grow: 1;
}

.notification-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.notification-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --h1-size: 38px;
        --h2-size: 30px;
        --h3-size: 24px;
        --p-size: 17px;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .pricing-grid,
    .testimonials-grid,
    .benefits-grid,
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 15px;
        --h1-size: 30px;
        --h2-size: 24px;
        --h3-size: 20px;
        --p-size: 16.5px;
    }
    
    .top-header {
        display: none;
    }
    
    .main-header {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .guarantee-badge {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 280px;
    }
    
    .what-is-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid,
    .testimonials-grid,
    .benefits-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: auto;
    }
    
    .floating-cta .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        border-radius: 50px;
        box-shadow: 0 6px 30px rgba(124, 181, 24, 0.6);
    }
    
    .purchase-notification {
        left: 15px;
        right: 15px;
        max-width: none;
    }
    
    .step-card h3 {
        font-size: 20px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .what-is-text h3 {
        font-size: 22px;
    }
    
    .guarantee-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --h1-size: 28px;
        --h2-size: 22px;
        --h3-size: 18px;
        --p-size: 16.5px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .hero-benefit {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .price-card {
        padding: 30px 20px;
    }
    
    .popup-content {
        padding: 40px 25px;
    }
    
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
}

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