/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #07080c;
    --bg-secondary: #0d0f17;
    --bg-card: rgba(18, 21, 32, 0.6);
    --border-color: rgba(255, 255, 255, 0.07);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Brand Accents */
    --primary: #10b981; /* Emerald Green */
    --primary-hover: #059669;
    --primary-light: #34d399; /* Mint */
    --primary-glow: rgba(16, 185, 129, 0.35);
    
    --urgency: #ef4444; /* Bright Red/Coral */
    --urgency-bg: rgba(239, 68, 68, 0.1);
    --urgency-border: rgba(239, 68, 68, 0.2);
    
    --accent-orange: #f59e0b; /* Amber */
    --accent-orange-glow: rgba(245, 158, 11, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Shadows & Border Radii */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(16, 185, 129, 0.05);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ==========================================================================
   UTILITY CLASSES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-green {
    color: var(--primary-light);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-green::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0.3;
    border-radius: 2px;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #030712;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 4px 20px var(--primary-glow);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, background 0.2s ease;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #52e3b2, #059669);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px var(--primary-glow);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* Topbar Urgency */
.topbar {
    background-color: var(--urgency-bg);
    color: #fca5a5;
    border-bottom: 1px solid var(--urgency-border);
    padding: 10px 15px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    z-index: 100;
    position: relative;
    font-family: var(--font-heading);
}

.pulse-icon {
    display: inline-block;
    animation: fire-pulse 1.5s infinite ease-in-out;
}

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

/* Header */
.header {
    padding: 20px 0;
    background-color: rgba(7, 8, 12, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: sticky;
    top: 0;
    z-index: 99;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.logo-accent {
    color: var(--primary-light);
    font-weight: 900;
    margin-right: 4px;
}

.badge-online {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.indicator {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
    animation: blink-live 1s infinite alternate;
}

@keyframes blink-live {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 6px #ef4444; }
}

/* Hero Section */
.hero-section {
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 35px auto;
    font-weight: 400;
}

/* Timer Card */
.timer-card {
    background: rgba(18, 20, 29, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    max-width: 340px;
    margin: 0 auto 35px auto;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.timer-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.time-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
}

.time-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.time-separator {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin: 0 10px -10px 10px;
    animation: separator-pulse 1s infinite alternate;
}

@keyframes separator-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.hero-cta-wrapper {
    max-width: 450px;
    margin: 0 auto;
}

.cta-guarantees {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Proof Section */
.proof-section {
    padding: 60px 0;
    background-color: var(--bg-secondary);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
}

.proof-card {
    background: #0f111a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
}

.proof-card-header {
    background-color: #121622;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.status-avatar-proof {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.proof-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    color: #fff;
    line-height: 1.2;
}

.proof-time {
    font-size: 0.65rem;
    color: var(--primary-light);
    display: block;
}

.wa-icon-top {
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946C.06 5.348 5.397.01 12.008.01c3.202.001 6.212 1.246 8.477 3.514 2.266 2.268 3.507 5.28 3.505 8.484-.004 6.657-5.34 11.997-11.953 11.997-2.005-.001-3.973-.502-5.724-1.455L0 24zm6.59-4.846c1.6.95 3.188 1.449 4.825 1.451 5.436 0 9.86-4.37 9.864-9.799.002-2.63-1.023-5.101-2.885-6.963C16.59 2.019 14.12 1 11.492 1c-5.448 0-9.877 4.368-9.882 9.799A9.68 9.68 0 0 0 3.2 16.03L2.176 19.78l3.91-.989-.03-.017z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.proof-image-wrapper {
    background-color: #090a0f;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof-image-wrapper img {
    border-radius: var(--radius-sm);
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.benefit-item:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 1.8rem;
    line-height: 1;
    background: rgba(16, 185, 129, 0.1);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.benefit-text h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.benefit-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Syllabus Section */
.syllabus-section {
    padding: 60px 0;
    background-color: var(--bg-secondary);
}

.syllabus-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.syllabus-card {
    background: rgba(13, 15, 23, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.syllabus-card:hover {
    background: rgba(16, 18, 28, 0.9);
    border-color: rgba(255, 255, 255, 0.12);
}

.syllabus-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.syllabus-card:hover::before {
    opacity: 1;
}

.syllabus-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.25);
    line-height: 1;
    min-width: 40px;
    text-align: center;
}

.syllabus-card:hover .syllabus-number {
    color: var(--primary-light);
    transform: scale(1.1);
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.syllabus-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.syllabus-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Testimonials (Text-based) */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-comment {
    color: #f1f5f9;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #000000;
}

.gradient-avatar-1 { background: linear-gradient(135deg, #10b981, #6ee7b7); }
.gradient-avatar-2 { background: linear-gradient(135deg, #3b82f6, #93c5fd); }
.gradient-avatar-3 { background: linear-gradient(135deg, #f59e0b, #fde047); }
.gradient-avatar-4 { background: linear-gradient(135deg, #ec4899, #fbcfe8); }
.gradient-avatar-5 { background: linear-gradient(135deg, #8b5cf6, #c4b5fd); }

.user-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    display: block;
    line-height: 1.2;
}

.user-verified {
    font-size: 0.65rem;
    color: var(--primary-light);
    display: block;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.pricing-card {
    background: radial-gradient(100% 100% at 50% 0%, rgba(20, 24, 38, 0.8) 0%, rgba(10, 12, 19, 0.95) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.1);
    position: relative;
    z-index: 2;
}

.discount-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-orange), #d97706);
    color: #000;
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-light);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.price-box {
    margin-bottom: 25px;
}

.price-before {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 2px;
}

.price-after {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.currency {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: -2px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-details {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

@keyframes cta-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.price-urgency {
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #f87171;
}

.security-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.security-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 24px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.3rem;
    color: var(--primary-light);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 10px;
    display: none; /* Managed by JS */
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background-color: #030407;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 0;
    text-align: center;
}

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

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

.disclaimer {
    font-size: 0.65rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sticky Bottom Bar (High Conversion Mobile Element) */
.sticky-bottom-bar {
    position: fixed;
    bottom: -100px; /* Hidden initially, controlled by JS scroll detection */
    left: 0;
    width: 100%;
    background: rgba(13, 15, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Show bottom bar when JS toggles class */
.sticky-bottom-bar.visible {
    bottom: 0;
}

.sticky-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sticky-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sticky-discount {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent-orange);
    letter-spacing: 0.02em;
}

.sticky-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
}

.sticky-cta-btn {
    flex-grow: 1;
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
    border-radius: var(--radius-sm) !important;
}

/* ==========================================================================
   ANIMATIONS & PERFORMANCE
   ========================================================================== */
.animate-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.animate-scroll.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Tablet & Desktop Layout adjustments */
@media (min-width: 600px) {
    body {
        font-size: 17px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.6rem;
    }
    
    /* Layout upgrades to multi-columns on larger screens */
    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .sticky-bottom-bar {
        /* On larger screens, the sticky bar can be a floating card or disabled */
        bottom: -150px;
    }
    
    .sticky-bottom-bar.visible {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 450px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(16, 185, 129, 0.1);
    }
}

@media (min-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid .testimonial-card:nth-child(4),
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: span 1;
        max-width: 100%;
    }
}
