:root {
    --primary-blue: #0A192F;
    --dark-bg: #060e17;
    --white: #FFFFFF;
    --black: #111111;
    --text-light: #e0e0e0;
    --text-dark: #333333;
    --gold: #FFB800;
    --orange: #FF7A00;
    --light-bg: #f8f9fa;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.text-gold {
    color: var(--gold);
}

.bg-light {
    background-color: var(--light-bg);
}

.center {
    text-align: center;
}

.mt-50 {
    margin-top: 50px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--black);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background-color: #0d2240;
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.glow-btn {
    animation: glow 2s infinite alternate;
}

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

/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, var(--primary-blue), #0d2240);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* HERO SECTION */
.hero-section {
    background-color: var(--primary-blue);
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.trust-badge-top i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-emotional {
    background: rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--gold);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-style: italic;
    color: #cbd5e1;
    max-width: 700px;
}

.hero-cta-area {
    margin-bottom: 30px;
}

.urgency-text {
    font-size: 0.9rem;
    color: #ffaaaa;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.trust-img {
    height: 30px;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
}

.student-count {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.plus-students {
    background: var(--gold);
    color: var(--black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: -10px;
    border: 2px solid var(--primary-blue);
    z-index: 1;
}

.hero-mockup {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.mockup-container {
    perspective: 1000px;
}

.mockup-frame {
    background: var(--dark-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px;
    box-shadow: var(--shadow-heavy);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
    position: relative;
}

.mockup-frame:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding-bottom: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.glass-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}

.glass-badge.floating-1 {
    top: 20px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

.glass-badge.floating-2 {
    bottom: 30px;
    left: -30px;
    animation: float 5s ease-in-out infinite reverse;
}

.glass-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* EMOTIONAL SECTION */
.emotional-section {
    padding: 80px 0;
}

.emotional-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 16px;
}

.lead-text {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

.emotional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.emo-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.emo-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-blue);
}

.emo-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.emo-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* WHAT YOU WILL LEARN */
.what-you-learn {
    padding: 80px 0;
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    transition: var(--transition);
}

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

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

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* TRANSFORMATION */
.transformation-section {
    padding: 80px 0;
    background: #0A192F url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%23ffffff"/></svg>');
    color: var(--white);
}

.transformation-section .section-header h2 {
    color: var(--white);
}

.transformation-section .section-header p {
    color: var(--text-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.timeline-content {
    margin-left: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--radius-md);
    flex-grow: 1;
    transition: var(--transition);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.timeline-content h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* BONUS SECTION */
.bonus-section {
    padding: 80px 0;
}

.bonus-box {
    background: var(--dark-bg);
    border-radius: var(--radius-lg);
    color: var(--white);
    display: flex;
    overflow: hidden;
    position: relative;
}

.glowing-border {
    position: relative;
}

.glowing-border::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    z-index: -1;
    filter: blur(10px);
    background-size: 400%;
    animation: glowing 20s linear infinite;
    border-radius: calc(var(--radius-lg) + 2px);
}

.bonus-content {
    padding: 50px;
    flex: 1;
}

.bonus-badge {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.bonus-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #aaa;
}

.bonus-list {
    margin-top: 20px;
}

.bonus-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bonus-list i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.bonus-image {
    flex: 1;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESULTS / BENEFITS */
.benefits-section {
    padding: 80px 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 24px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--primary-blue);
    color: var(--white);
}

.benefit-card:hover i {
    color: var(--white);
}

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

.benefit-icon i {
    color: var(--primary-blue);
    transition: var(--transition);
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 80px 0;
    background: #fdfdfd;
    overflow: hidden;
}

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

.testimonial-card {
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

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

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

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.student-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.student-info span {
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* WHO IS IT FOR */
.who-for-section {
    padding: 80px 0;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.tag {
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

/* PRICING */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--gold);
    position: relative;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price-strike {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.today-only {
    font-size: 0.9rem;
    background: #ffebeb;
    color: #ff0000;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.pricing-features i {
    color: #27c93f;
    font-size: 1.2rem;
    font-weight: bold;
}

.secure-checkout {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.payment-methods {
    margin-top: 15px;
}

.payment-methods img {
    height: 30px;
}

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

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.faq-question i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px; /* arbitrary max height for transition */
}

/* FINAL CTA */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), #0d2240);
    color: var(--white);
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

/* FOOTER */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 15px;
    color: #aaa;
}

.footer-contact a {
    color: #aaa;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #aaa;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links a {
    margin-left: 15px;
}

.legal-links a:hover {
    color: var(--white);
}

/* FLOATING ELEMENTS */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 99;
    display: none; /* Mobile only */
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-heavy);
    z-index: 100;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* POPUPS */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-popup-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.exit-popup-content {
    background: var(--dark-bg);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid var(--gold);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 0 50px rgba(255, 184, 0, 0.2);
}

.exit-popup-overlay.show .exit-popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: var(--transition);
}

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

.exit-popup-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.exit-popup-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* EVERGREEN COUNTDOWN */
.countdown-section {
    padding: 60px 0 20px;
}
.evergreen-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.evergreen-countdown .time-box {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    box-shadow: var(--shadow-heavy);
}
.evergreen-countdown .time-box span {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}
.evergreen-countdown .time-box small {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.time-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
}

.time-box small {
    font-size: 0.8rem;
    color: #aaa;
}

/* SALES NOTIFICATION */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-heavy);
    z-index: 100;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--primary-blue);
}

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

.popup-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e6f7eb;
    color: #27c93f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-text p {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.notification-text small {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
}

/* ANIMATIONS */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 153, 0, 0.2); }
    100% { box-shadow: 0 0 20px rgba(255, 153, 0, 0.6); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 5)); } /* adjust based on card width + gap */
}

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

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Fade in for scroll observer */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* REMOVED: Bonus image is now shown by default */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-emotional {
        border-left: none;
        border-top: 4px solid var(--gold);
        border-radius: 8px;
    }
    
    .trust-badges {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .bonus-box {
        flex-direction: column;
    }
    
    .bonus-content {
        padding: 30px 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 20px;
        padding: 15px;
    }
    
    .whatsapp-float {
        bottom: 80px; /* Above sticky CTA */
    }
    
    .sticky-mobile-cta {
        display: block;
    }
    
    .sales-notification {
        bottom: 80px;
    }
    
    /* Duplicate scroll for track calculation */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-380px * 5)); } 
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-current {
        font-size: 2.8rem;
    }
}

/* LEFT STICKY WIDGET */
.left-sticky-widget {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    max-width: 320px;
}

.bank-transfer-alert {
    background: #fff0f5;
    border: 2px dashed #8b104e;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.bank-transfer-alert .close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.alert-icon {
    background: #fff;
    border-radius: 50%;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b104e;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.alert-content strong {
    color: #8b104e;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.alert-content p {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.3;
    margin: 0;
}

.powered-by-badge {
    background: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-size: 0.85rem;
    color: #555;
    border: 1px solid #eee;
}

/* Adjust on mobile so it doesn't block content */
@media (max-width: 768px) {
    .left-sticky-widget {
        top: auto;
        bottom: 140px;
        transform: scale(0.85);
        transform-origin: left bottom;
        max-width: 280px;
    }
}

/* IMAGE TESTIMONIALS GALLERY */
.proof-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.proof-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #fff;
    cursor: pointer;
}

.proof-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

@media (max-width: 600px) {
    .proof-gallery {
        grid-template-columns: 1fr;
    }
}
