/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Critical Above-the-Fold Styles */
:root {
    --dark-bg: #0a0e1a;
    --card-bg: #141b2d;
    --card-hover: #1a2332;
    --primary-green: #fbbf24;
    --accent-gold: #f59e0b;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --border-color: #1f2937;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color-scheme: dark;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-gold);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

/* Batch Flash Alert */
.batch-flash {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 25px;
    animation: flashPulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.flash-icon {
    font-size: 1.2rem;
    animation: flicker 1.5s infinite alternate;
}

.flash-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.flash-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

@keyframes flashPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
    }
}

@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  content-visibility: auto;
}

.logo-tagline {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: normal;
    text-align: center;
    padding: 0 10px;
}


.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

/* Text Gradient Effect (GET HIRED style) */
.text-gradient {
    background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Price Container */
.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.discount-badge {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Button */
.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(251, 191, 36, 0.7);
    }
    100% {
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    }
}

.cta-icon {
    font-size: 1.3rem;
}

.cta-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.cta-secondary:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Payment Trust Signals */
.payment-trust {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Secondary CTA */
.secondary-cta {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.whatsapp-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* ===================================
   LIVE ACTIVITY BUBBLES
   =================================== */
.live-activity-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    max-width: 350px;
    will-change: transform, opacity;
}

.activity-bubble {
    background: rgba(20, 27, 45, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out;
}

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

.activity-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.activity-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-text strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.activity-text span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===================================
   SECTION TITLES
   =================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 60px;
}

/* ===================================
   WHY THIS COURSE
   =================================== */
.why-section {
    padding: 100px 20px;
    position: relative;
}

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

.benefit-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-green);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   COURSE SYLLABUS
   =================================== */
.syllabus-section {
    padding: 100px 20px;
    background: rgba(20, 27, 45, 0.3);
}

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

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-green);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(251, 191, 36, 0.05);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.module-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.module-badge.bonus {
    background: var(--gradient-gold);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.syllabus-list {
    list-style: none;
    padding: 0;
}

.syllabus-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.syllabus-list li:last-child {
    border-bottom: none;
}

.syllabus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* ===================================
   WHO SHOULD JOIN
   =================================== */
.audience-section {
    padding: 100px 20px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.audience-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-green);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.audience-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.audience-card:hover .audience-icon {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.audience-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    padding: 100px 20px;
    background: rgba(20, 27, 45, 0.3);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    contain: layout style paint;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-tag {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

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

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

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

/* ===================================
   OFFER SECTION
   =================================== */
.offer-section {
    padding: 100px 20px;
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.offer-badge {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.offer-bonuses {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary-green);
}

.bonus-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 30px;
}

.countdown-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(251, 191, 36, 0.15);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.countdown-label-small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

.countdown-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-align: center;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.offer-old-price {
    font-size: 1.8rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.offer-current-price {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.offer-guarantee {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    padding: 100px 20px;
    background: rgba(251, 191, 36, 0.05);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.final-cta-highlight {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 40px;
}

.cta-xl {
    padding: 22px 60px;
    font-size: 1.3rem;
}

.final-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

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

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: rgba(20, 27, 45, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-brand {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.footer-brand strong {
    color: var(--primary-green);
    font-weight: 700;
}

.footer-links {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(20, 27, 45, 0.95);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--border-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .batch-flash {
        padding: 10px 18px;
        margin-bottom: 20px;
    }

    .flash-text {
        font-size: 0.85rem;
    }

    .flash-icon {
        font-size: 1rem;
    }

    .payment-trust {
        font-size: 0.85rem;
        gap: 5px;
    }

    .secondary-cta {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .benefits-grid,
    .audience-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 15px;
    }

    .badge {
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    .logo {
        max-width: 180px;
        max-height: 60px;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .offer-title {
        font-size: 1.5rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 12px 15px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .final-cta-title {
        font-size: 1.8rem;
    }

    .final-cta-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .cta-large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .cta-xl {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .accordion-header {
        padding: 20px;
        font-size: 1rem;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 20px 20px;
    }

    .live-activity-container {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        bottom: 100px;
    }

    .activity-bubble {
        padding: 12px 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .price-container {
        gap: 10px;
    }

    .old-price {
        font-size: 1.2rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .discount-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .final-trust-indicators {
        gap: 25px;
    }

    .trust-number {
        font-size: 2rem;
    }

    .offer-price {
        flex-direction: column;
        gap: 10px;
    }
}
