.hero-subtitle-secondary {
  display: block;
  font-size: 1.5rem;
  color: #b0b0b0;
  margin-bottom: 1.2rem;
  text-align: center;
  font-weight: 500;
}
/* Quebra de linha para '24 Horas' no mobile e ajuste de subtítulo */
.break-mobile {
  display: inline;
}
.only-mobile {
  display: none;
}
.only-desktop {
  display: inline;
}
@media (max-width: 600px) {
  .break-mobile {
    display: block;
    width: 100%;
  }
  .only-mobile {
    display: block;
  }
  .only-desktop {
    display: none;
  }
  .mobile-subtitle {
    font-size: 1.1em;
    color: #222;
    margin-top: 0.5em;
    margin-bottom: 1em;
    text-align: left;
  }
}
/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00cc6a, #00ff88);
}

.btn-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #00ff88;
    padding: 1rem 2rem;
    border: 2px solid #00ff88;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

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

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ff88;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff88;
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* VSL Section */
.vsl-section {
    padding: 80px 0;
    background: #111;
}

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

/* Testimonials Carousel Section */
.testimonials-carousel-section {
    padding: 80px 0;
    background: #0a0a0a;
    overflow: hidden; /* Hide overflow for continuous scroll */
}

.testimonials-carousel-section .section-title,
.testimonials-carousel-section .section-subtitle {
    margin-bottom: 2rem;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0; /* Add some padding for shadow/spacing */
}

.carousel-track {
    display: flex;
    width: fit-content; /* Allow content to define width */
    animation: scroll-left 30s linear infinite; /* Adjust duration based on number of images */
}

.carousel-track img {
    height: 300px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Space between images */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    flex-shrink: 0; /* Prevent images from shrinking */
}

/* Duplicate images for seamless loop */
.carousel-track::after {
    content: '';
    display: flex;
    width: 100%; /* This will be filled by duplicated images via JS */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Scroll half the track to create infinite loop with duplicated content */
    }
}

/* New Benefits Section (formerly Not For You) */
.new-benefits-section {
    padding: 80px 0;
    background: #111;
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item-new {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item-new:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
}

.benefit-item-new i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.benefit-item-new h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.benefit-item-new p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #00ff88;
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #00ff88;
    margin-top: 0.2rem;
    min-width: 24px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #00ff88;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.5;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Benefits Section (original) */
.benefits-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    border-color: #00ff88;
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #000;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefit-value {
    background: #333;
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.total-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.total-value .old-price {
    text-decoration: line-through;
    color: #ff4444;
}

.total-value .impact-phrase {
    font-size: 1.2rem;
    color: #00ff88;
    margin-top: 1rem;
    font-weight: 500;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    position: relative;
}

.bonus-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto 2rem;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-item {
    background: #222;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #00ff88;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.bonus-item i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.bonus-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.bonus-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: #111;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #333;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #00ff88;
    transform: scale(1.05);
    background: #222;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
}

.price {
    margin-bottom: 2rem;
}

.price .old-price {
    display: block;
    font-size: 1rem;
    color: #ff4444;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price .current-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.price .payment-info {
    display: block;
    font-size: 1rem;
    color: #b0b0b0;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #b0b0b0;
}

.features-list i {
    color: #00ff88;
    font-size: 1rem;
}

.guarantee-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #00ff88;
    margin-top: 3rem;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-badge i {
    font-size: 2rem;
    color: #000;
}

.guarantee-text h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Expert Section */
.expert-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.expert-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.expert-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.expert-text h3 {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.expert-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #333;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.expert-description p {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.social-proof {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    margin-top: 2rem;
}

.social-proof h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.social-proof ul {
    list-style: none;
}

.social-proof li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #b0b0b0;
}

.social-proof i {
    color: #00ff88;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #111;
}

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

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00ff88;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #222;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #ffffff;
}

.faq-question i {
    color: #00ff88;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.urgency-elements {
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.countdown span {
    font-size: 1.2rem;
    color: #ff4444;
    font-weight: 600;
}

#countdown-timer {
    display: flex;
    gap: 1rem;
}

.time-unit {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #ff4444;
    text-align: center;
    min-width: 80px;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff4444;
}

.time-unit label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: #00ff88;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-contact p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #00ff88;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    margin-bottom: 2rem;
}

.copyright p {
    color: #b0b0b0;
}

.legal-disclaimer {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.legal-disclaimer p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expert-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expert-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
    }
    
    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    #countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .carousel-track img {
        height: 200px; /* Smaller images on mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-primary.large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-image img,
    .about-image img,
    .expert-image img {
        height: 300px;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-item,
    .problem-item,
    .bonus-item {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Scroll animations */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.45s ease;
}

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

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .section-title,
    .hero-title .highlight {
        color: #00ff88;
        -webkit-text-fill-color: #00ff88;
    }
}

.total-value .btn-primary {
    margin-top: 2rem;
}





