/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Colors */
:root {
    --dark-navy: #0f172a;
    --deep-black: #020617;
    --vibrant-orange: #ff6b35;
    --neon-green: #10b981;
    --light-gray: #f8fafc;
    --text-gray: #d1d5db;
    --border-color: rgba(255, 255, 255, 0.1);
}

.text-orange {
    color: var(--vibrant-orange);
}

.text-green {
    color: var(--neon-green);
}

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn-primary, .btn-offer, .btn-urgency, .btn-footer {
    background: linear-gradient(135deg, var(--neon-green) 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover, .btn-offer:hover, .btn-urgency:hover, .btn-footer:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-offer {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
}

.btn-urgency {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        transform: scale(1);
    }
    70% { 
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        transform: scale(1);
    }
}

/* Background Gradients */
.bg-green {
    background: linear-gradient(135deg, var(--neon-green) 0%, #059669 100%);
}

.bg-orange {
    background: linear-gradient(135deg, var(--vibrant-orange) 0%, #ea580c 100%);
}

.bg-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Mockup Responsive */
.hero-mockup img {
    max-width: 65%;
    width: 100%;
    border-radius: 20px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
    .hero-mockup img {
        max-width: 30%;
    }
}

/* Ajusta em telas grandes (monitores full HD/4K) */
@media (min-width: 1400px) {
    .hero-mockup img {
        max-width: 40%;
    }
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 10;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-benefits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.hero-price-preview {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    display: inline-block;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    color: #ff4c3f;
    text-decoration: line-through;
    font-size: 1.75rem;
}

.current-price {
    color: #00c853;
    font-size: 2rem;
    font-weight: 900;
}

.payment-info {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Product Explanation */
.product-explanation {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* Enhanced Feature Cards */
.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

/* Product Showcase */
.product-showcase {
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.showcase-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: scale(1.05);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 0.75rem;
}

.category-card ul {
    list-style: none;
    color: var(--text-gray);
}

.category-card li {
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.testimonial-header h4 {
    font-weight: 700;
}

.testimonial-header p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.testimonial-content {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: #fbbf24;
}

/* Bonus Section */
.bonus-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.bonus-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: #15ff00;
    color: black;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

.bonus-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.bonus-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.bonus-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.bonus-price .current-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.bonus-total {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00c853;
}

/* Main Offer Section */
.main-offer {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.main-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    z-index: 1;
}

.offer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.offer-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 4rem;
}

.plans-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.plan-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.plan-card:hover {
    transform: scale(1.02);
}

.plan-basic {
    border: 2px solid #3b82f6;
}

.plan-premium {
    border: 2px solid var(--vibrant-orange);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
    animation: premium-glow 3s ease-in-out infinite alternate;
}

.plan-premium:hover {
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.5);
}

@keyframes premium-glow {
    0% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
    }
}

.plan-badge {
    position: absolute;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
    border: 2px solid white;
}

@keyframes badge-pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.plan-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.plan-features {
    flex: 1;
}

.plan-features ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.plan-image {
    width: 200px;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-pricing {
    text-align: center;
}

.pricing-info {
    margin-bottom: 1.5rem;
}

.normal-value-label {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-with-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.original-price-large {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #ff4e41;
}

.bonus-value {
    color: #38d673;
    font-size: 0.875rem;
}

.price-box {
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-box-basic {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25), 0 0 20px rgba(59, 130, 246, 0.1);
}

.price-box-basic:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.35), 0 0 30px rgba(59, 130, 246, 0.2);
}

.price-box-premium {
    background: linear-gradient(135deg, var(--vibrant-orange) 0%, #fbbf24 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25), 0 0 20px rgba(255, 107, 53, 0.1);
}

.price-box-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35), 0 0 30px rgba(255, 107, 53, 0.2);
}

.price-label {
    color: white;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.final-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.payment-term {
    color: white;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.btn-plan {
    width: 100%;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-basic {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-basic:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-premium {
    background: linear-gradient(135deg, var(--neon-green) 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 2s infinite;
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.payment-methods-global {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 2rem;
    text-align: center;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.guarantee-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-green);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-icon {
    width: 6rem;
    height: 6rem;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.guarantee-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.guarantee-feature-icon {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
}

.guarantee-feature h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-feature p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(153, 27, 27, 0.3) 0%, rgba(194, 65, 12, 0.3) 100%);
    z-index: 1;
}

.urgency-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.urgency-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.urgency-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.urgency-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #ef4444;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.urgency-message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vibrant-orange);
}

.countdown-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.countdown-separator {
    font-size: 1.5rem;
}

.urgency-access-info {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-weight: 700;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Footer Section */
.footer-section {
    padding: 4rem 0;
    background: var(--deep-black);
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-legal {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    top: 20px;
    right: -400px;
    width: 350px;
    background: linear-gradient(135deg, var(--neon-green) 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sales-notification.show {
    right: 20px;
    animation: slideInAndOut 6s ease-in-out forwards;
}

.sales-notification.hidden {
    right: -400px;
}

.notification-content {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.notification-text {
    flex: 1;
}

.notification-main {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.notification-details {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.2;
}

@keyframes slideInAndOut {
    0% {
        right: -400px;
        opacity: 0;
    }
    15% {
        right: 20px;
        opacity: 1;
    }
    85% {
        right: 20px;
        opacity: 1;
    }
    100% {
        right: -400px;
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-offer {
        padding: 3rem 0;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-mockup img {
        max-width: 80% !important;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .urgency-title {
        font-size: 2rem;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .offer-content {
        padding: 0 0.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .plan-premium {
        transform: scale(1);
    }
    
    .plan-premium:hover {
        transform: scale(1.02);
    }
    
    .final-price {
        font-size: 2rem;
    }
    
    .plan-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .plan-image {
        width: 170px;
        height: 170px;
    }
    
    .price-with-bonus {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .plan-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .price-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .sales-notification {
        width: 300px;
        right: -320px;
    }
    
    .sales-notification.show {
        right: 10px;
    }
    
    .notification-content {
        padding: 12px;
    }
    
    .notification-main {
        font-size: 13px;
    }
    
    .notification-details {
        font-size: 11px;
    }
}