/* Base Styles */
:root {
    --primary: #ffc107;
    --primary-dark: #e6a800;
    --secondary: #212121;
    --text: #f5f5f5;
    --text-dark: #1a1a1a;
    --background: #121212;
    --card-bg: #1e1e1e;
    --border: #333;
    --success: #4CAF50;
    --highlight: #ffc107;
    --accent: #ff4500;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

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

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.bold {
    font-weight: 700;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.dark {
    background-color: var(--secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Button Styles */
.cta-button, .cta-button-sm {
    background-color: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.cta-button-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cta-button:hover, .cta-button-sm:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5);
}

.cta-button:active, .cta-button-sm:active {
    transform: translateY(1px);
}

.pulse {
    animation: pulse 2s infinite;
}



@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    }
}

/* Layout */
section {
    padding: 5rem 2rem;
}

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

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nav-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 193, 7, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-timer i {
    color: var(--primary);
    animation: pulse 2s infinite;
}

.mini-countdown {
    color: var(--primary);
}

.countdown-display-mini {
    font-weight: 700;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(to bottom, #121212, #1a1a1a);
    padding-bottom: 0;
    overflow: hidden;
    border-bottom: 3px solid var(--primary);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1579547621706-1a9c79d5c9f1?q=80&w=2070') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    text-align: center;
    padding: 0 1.2rem;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    border: 1px solid var(--primary);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strike-through {
    position: relative;
    color: #ff6b6b;
}

.strike-through::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ff6b6b;
    top: 50%;
    left: 0;
    transform: rotate(-5deg);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    padding-top: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.08);
}

.hero-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-cta {
    margin-top: 2.5rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    gap: 1rem;
}

.mini-avatars {
    display: flex;
    margin-right: 0.5rem;
}

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

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

.social-proof-text {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 500;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--success);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    z-index: 1;
    padding: 0;
    p{
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--primary);
    }
}

.dashboard-preview {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.dashboard-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.hero-overlay-text {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    z-index: 10;
    padding: 20px 25px;
    border-radius: 12px;
    background-color: rgb(0 0 0 / 82%);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.before-after {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.before, .after {
    text-align: left;
    flex: 1;
}

.before h3, .after h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before h3 {
    color: #ff6b6b;
}

.after h3 {
    color: var(--success);
}

.before-after ul {
    list-style: none;
    padding: 0;
}

.before-after li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.before li i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.after li i {
    color: var(--success);
    font-size: 1.2rem;
}

.divider {
    width: 2px;
    background-color: var(--border);
    align-self: stretch;
    border-radius: 2px;
}

.floating-badge {
    position: absolute;
    top: -25px;
    right: 25px;
    background: var(--primary);
    color: var(--text-dark);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(10deg);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5), 0 0 0 5px rgba(255, 193, 7, 0.3);
    z-index: 10;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.badge-content {
    text-align: center;
}

.badge-label {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 2px;
}

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

.hero-bottom-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--card-bg);
    padding: 1rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.guarantee-mini, .payment-mini, .instant-access-mini, .support-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.guarantee-mini i, .payment-mini i, .instant-access-mini i, .support-mini i {
    color: var(--primary);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-overlay-text {
        top: 15px;
        right: 15px;
        padding: 1rem;
    }
    
    .before-after {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .nav-timer {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-bottom-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .guarantee-mini, .payment-mini, .instant-access-mini, .support-mini {
        flex: 1 1 40%;
        justify-content: center;
    }
    
    .hero-overlay-text {
        position: relative;
        top: auto;
        right: auto;
        margin-top: -30px;
        margin-bottom: 30px;
        z-index: 3;
    }
}

@media (max-width: 576px) {
    .hero-tag {
        font-size: 0.67rem;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-feature {
        padding: 0.6rem 0.8rem;
    }
    
    .hero-social-proof {
        flex-direction: column;
    }
    
    .hero-bottom-bar {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 1rem;
        padding: 1rem;
    }
    
    .hero-visual {
        padding: 0px;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
}

/* Pain Points Section */
.pain-points {
    background-color: var(--secondary);
    text-align: center;
}

.pain-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.pain-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pain-solution {
    margin-top: 3rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.procrastination-warning {
    margin-top: 4rem;
    background-color: rgba(255, 69, 0, 0.1);
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--accent);
}

.procrastination-warning h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.action-box {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.action-box p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

/* Solution Section */
.solution {
    background: linear-gradient(to bottom, #1a1a1a, #121212);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
}

.feature {
    display: flex;
    gap: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-content h3 {
    margin-bottom: 0.5rem;
}

.solution-visual {
    margin-top: 4rem;
    text-align: center;
}

.solution-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Areas Section */
.areas {
    background-color: var(--secondary);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.area-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background-color: rgba(255, 193, 7, 0.1);
}

.area-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.area-card.more {
    background-color: var(--primary);
}

.area-card.more i,
.area-card.more h3 {
    color: var(--text-dark);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to bottom, #1a1a1a, #121212);
    text-align: center;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    margin: 0 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* How it Works Section */
.how-it-works {
    background-color: var(--secondary);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    counter-reset: step;
    margin-top: 3rem;
}

.step {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.step-number {
    background-color: var(--primary);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* Offer Section */
.offer {
    background: url('https://images.unsplash.com/photo-1607705703571-c5a8695f18f6?q=80&w=2070') center/cover no-repeat;
    position: relative;
    text-align: center;
    padding: 5rem 2rem;
}

.offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.offer-container {
    position: relative;
    z-index: 1;
    background-color: rgba(30, 30, 30, 0.9);
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
}

.countdown-display {
    font-weight: 700;
    color: var(--primary);
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: -0.5px;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2px;
    color: #ccc;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.discount-badge {
    background-color: var(--primary);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
}

.offer-features {
    margin: 2rem 0;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.offer-feature i {
    color: var(--success);
    font-size: 1.5rem;
}

.offer-feature p {
    margin-bottom: 0;
    text-align: left;
}

.cta-container {
    margin-top: 2rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

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

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.secure-payment i {
    color: var(--success);
}

/* FAQ Section */
.faq {
    background: linear-gradient(to bottom, #1a1a1a, #121212);
}

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

.faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

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

/* Final CTA */
.final-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=2070') center/cover no-repeat;
    text-align: center;
    padding: 6rem 2rem;
}

.final-cta h2 {
    font-size: 2.8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.final-cta .cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
}

.guarantee-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee-text i {
    color: var(--success);
}

/* Footer */
footer {
    background-color: var(--background);
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

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

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

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: none;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-overlay-text {
        top: 15px;
        right: 15px;
        padding: 1rem;
    }
    
    .before-after {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem 0rem;
    }
    
    .nav-timer {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-bottom-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .guarantee-mini, .payment-mini, .instant-access-mini, .support-mini {
        flex: 1 1 40%;
        justify-content: center;
    }
    
    .hero-overlay-text {
        position: relative;
        top: auto;
        right: auto;
        margin-top: -30px;
        margin-bottom: 30px;
        z-index: 3;
    }
}

@media (max-width: 576px) {
    .hero-tag {
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-feature {
        padding: 0.6rem 0.8rem;
    }
    
    .hero-social-proof {
        flex-direction: column;
    }
    
    .hero-bottom-bar {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 1rem;
        padding: 1rem;
    }
    
    .hero-visual {
        padding: 0px;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
}

/* Offer Section Enhancements */
.offer-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.benefits-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.benefits-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.one-time-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--success);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.one-time-payment i {
    color: var(--success);
    font-size: 1.3rem;
}

.currency-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
    text-align: center;
}

.highlight-feature {
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    border: 1px dashed var(--primary);
    margin: 1.5rem 0;
}

.highlight-feature i {
    color: var(--primary);
}

.offer-features {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.8rem;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.offer-feature:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.offer-feature i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.offer-feature p {
    margin-bottom: 0;
    text-align: left;
}

.cta-button, .cta-button-sm {
    background-color: var(--primary);
    color: var(--text-dark);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

@media (max-width: 768px) {
    .offer-features {
        grid-template-columns: 1fr;
    }
}

/* Urgency Section */
.urgency {
    background-color: var(--secondary);
    padding: 4rem 2rem;
}

.urgency-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.urgency-reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.urgency-reason {
    flex: 1 1 300px;
    max-width: 300px;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.urgency-reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.urgency-reason i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.urgency-reason h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Creator Section */
.creator {
    background-color: var(--card-bg);
    padding: 5rem 2rem;
}

.creator-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.creator-image {
    flex: 0 0 300px;
}

.creator-photo {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.creator-content {
    flex: 1;
}

.creator-content h2 {
    margin-bottom: 1.5rem;
}

.creator-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .creator-container {
        flex-direction: column;
        text-align: center;
    }
    
    .creator-image {
        flex: 0 0 auto;
        max-width: 200px;
        margin: 0 auto 2rem;
    }
}

/* Oferta e Garantia */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.guarantee-content h3 {
    color: var(--success);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.guarantee-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Hero Carousel Styles */
.carousel-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background-color: #000;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%; /* Increased aspect ratio for better visibility */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed to contain instead of cover */
    border-radius: 12px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}

.carousel-navigation {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 15px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 8px 15px;
    border-radius: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.7);
}

.carousel-prev,
.carousel-next {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    z-index: 5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.carousel-prev i,
.carousel-next i {
    font-size: 18px;
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 32px;
        height: 32px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-overlay-text {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 10px;
    }

    .cta-button-sm {
        padding: 7px 15px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .carousel-navigation {
        bottom: 10px;
    }
    
    .carousel-dots {
        gap: 6px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 28px;
        height: 28px;
    }
    
    .carousel-prev i,
    .carousel-next i {
        font-size: 14px;
    }
    
    .hero-overlay-text {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-top: -50px;
        margin-bottom: 20px;
    }
}

/* Estilos mejorados para el slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mySlides {
    display: none;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    height: 100%;
}

.mySlides.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.dashboard-preview {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mySlides p {
    position: absolute;
    top: 15px;
    left: 20px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 5;
}

/* Mejorar los controles */
.dots-container {
    text-align: center;
    padding: 10px 0;
    position: relative;
    margin-top: -25px;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.dot.active, .dot:hover {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* Estilos para Hero Price Tag */
.hero-price-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.original-price {
    color: #999;
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 10px;
}

.current-price {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.discount-pill {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.4);
}