/* ==========================================================================
   TestoTonic - Main Stylesheet
   High-Performance, SEO-Optimized Landing Page
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #7cb342;
    --primary-dark: #558b2f;
    --primary-light: #9ccc65;
    --secondary-color: #1a1a2e;
    --accent-color: #ff6b35;
    --text-color: #333333;
    --text-light: #666666;
    --text-dark: #1a1a1a;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #1a1a2e;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.3;
}

/* H1 - Main Heading */
h1 {
    font-size: 46px;
    font-weight: 700;
    color: #1a1a4e;
}

/* H2 - Sub Heading */
h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a4e;
}

/* H3 - Small Heading */
h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a4e;
}

/* H4, H5, H6 */
h4, h5, h6 {
    font-weight: 600;
    color: #1a1a4e;
}

/* Paragraph Text */
p {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
}

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

/* ==========================================================================
   Top Bar - HIDDEN ON MOBILE
   ========================================================================== */
.top-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 100%);
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* Hide on tablet and mobile */
@media (max-width: 1024px) {
    .top-bar {
        display: none !important;
    }
}

.top-bar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Header
   ========================================================================== */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--secondary-color);
}

.logo-accent {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
}

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

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

.header-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 179, 66, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.35);
}

.btn-large {
    padding: 20px 45px;
    font-size: 1.1rem;
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #f8fdf5 0%, #f0f7ea 50%, #e8f5e0 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(124, 179, 66, 0.15);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a4e;
}

.hero h1 .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.feature-icon {
    font-size: 1.2rem;
}

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

.hero-stock {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-badge-floating {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

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

.hero-badge-floating .rating {
    display: block;
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.hero-badge-floating .rating-text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-color);
}

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-section {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a4e;
}

.section-header p {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
}

/* ==========================================================================
   What Is Section
   ========================================================================== */
.what-is-section {
    padding: 100px 0;
    background: var(--background-light);
}

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

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

.what-is-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a4e;
}

.what-is-content p {
    margin-bottom: 20px;
    color: #000000;
    font-size: 18px;
    line-height: 1.8;
}

.what-is-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.step-card {
    background: var(--background-light);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

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

.step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(124, 179, 66, 0.15);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a4e;
}

.step-card p {
    color: #000000;
    font-size: 18px;
    line-height: 1.8;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 100%);
}

.benefits-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.benefits-section .section-header h2,
.benefits-section .section-header p {
    color: #ffffff;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--background-light);
}

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

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

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

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

.testimonial-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a4e;
    margin-bottom: 3px;
}

.testimonial-info .location {
    display: block;
    font-size: 16px;
    color: #000000;
}

.testimonial-info .verified {
    display: block;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-disclaimer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf5 100%);
}

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

.pricing-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
}

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

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

.popular-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e55a2b 100%);
}

.free-gift-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: inline-block;
}

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

.package-name {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.package-supply {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-image {
    margin: 20px 0;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.pricing-details {
    margin-bottom: 25px;
}

.bottles {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.price {
    margin-bottom: 10px;
}

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

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

.savings {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 15px;
}

.pricing-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.pricing-perks span {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.pricing-guarantee {
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

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

/* Bonus Section */
.bonus-section {
    margin-top: 60px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.bonus-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bonus-content img {
    max-width: 300px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.bonus-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a4e;
    margin-bottom: 10px;
}

.bonus-text p {
    color: #000000;
    font-size: 18px;
    line-height: 1.8;
    max-width: 400px;
}

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

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.guarantee-badge {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.guarantee-days {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.guarantee-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary-color);
    text-align: center;
}

.guarantee-details {
    max-width: 550px;
}

.guarantee-details h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a4e;
    margin-bottom: 20px;
}

.guarantee-details p {
    color: #000000;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #16213e 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-image {
    margin: 0 auto 30px;
    border-radius: var(--radius-md);
}

.final-cta-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.final-cta-badges span {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-light);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

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

.faq-question {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a4e;
    margin-bottom: 12px;
}

.faq-answer {
    color: #000000;
    font-size: 18px;
    line-height: 1.8;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

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

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

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

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

.footer-disclaimer {
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating CTA Button
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.4);
    z-index: 999;
    animation: bounce 2s infinite;
    display: none;
}

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

.floating-icon {
    font-size: 1.2rem;
}

/* ==========================================================================
   Exit Intent Popup
   ========================================================================== */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.exit-popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: popupSlide 0.4s ease;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.popup-close:hover {
    color: var(--text-dark);
}

.popup-body h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.popup-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.popup-body img {
    margin: 0 auto 20px;
}

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

.popup-original {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 15px;
}

.popup-sale {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.popup-guarantee {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==========================================================================
   Purchase Notification
   ========================================================================== */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 998;
    max-width: 300px;
    animation: slideIn 0.5s ease;
}

.purchase-notification.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.notification-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.notification-action {
    font-size: 0.85rem;
    color: var(--text-light);
}

.notification-time {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-badge-floating {
        left: auto;
        right: -10px;
    }
    
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .what-is-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .steps-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    /* Mobile Typography */
    h1 {
        font-size: 30px !important;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    h3 {
        font-size: 20px !important;
    }
    
    p {
        font-size: 16.5px;
        line-height: 1.8;
    }
    
    .top-bar {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-cta {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero h1 {
        font-size: 30px !important;
    }
    
    .hero-subtitle {
        font-size: 16.5px;
    }
    
    .hero-badge-floating {
        position: static;
        margin-top: 20px;
    }
    
    .section-header h2 {
        font-size: 24px !important;
    }
    
    .section-header p {
        font-size: 16.5px;
    }
    
    .what-is-content h2 {
        font-size: 24px !important;
    }
    
    .what-is-content p {
        font-size: 16.5px;
    }
    
    .step-card h3 {
        font-size: 20px !important;
    }
    
    .step-card p {
        font-size: 16.5px;
    }
    
    .benefit-card h3 {
        font-size: 20px !important;
    }
    
    .benefit-card p {
        font-size: 16px;
    }
    
    .testimonial-info h4 {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .faq-question {
        font-size: 18px !important;
    }
    
    .faq-answer {
        font-size: 16.5px;
    }
    
    .guarantee-details h2 {
        font-size: 24px !important;
    }
    
    .guarantee-details p {
        font-size: 16.5px;
    }
    
    .final-cta-content h2 {
        font-size: 24px !important;
    }
    
    .final-cta-content p {
        font-size: 16.5px;
    }
    
    .bonus-text h3 {
        font-size: 20px !important;
    }
    
    .bonus-text p {
        font-size: 16.5px;
    }
    
    .steps-grid,
    .benefits-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .what-is-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-cta {
        display: flex;
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .purchase-notification {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .popup-content {
        padding: 40px 25px;
    }
    
    .popup-body h3 {
        font-size: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 22px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    p {
        font-size: 16px;
    }
    
    .hero h1 {
        font-size: 28px !important;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-large {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .final-cta-badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* 200% Zoom Support */
@media (max-width: 640px) and (min-resolution: 2dppx) {
    html {
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .floating-cta,
    .exit-popup,
    .purchase-notification {
        display: none !important;
    }
}
