/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Fixed Banner */
.fixed-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #dc2626;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.clock-icon {
    width: 1rem;
    height: 1rem;
}

.main-content {
    padding-top: 3rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eef2ff 100%);
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
}

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

.hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-subtitle strong {
    color: #1f2937;
    font-weight: 700;
}

/* Color Classes */
.text-dark {
    color: #1f2937;
}

.text-blue {
    color: #2563eb;
}

.text-green {
    color: #16a34a;
}

.text-gray {
    color: #6b7280;
}

.text-gray-dark {
    color: #374151;
}

.font-bold {
    font-weight: 700;
}

/* Enhanced Typography */
.hero-title-bold {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-subtitle-bold {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-title-bold {
        font-size: 3.75rem;
    }
    
    .hero-subtitle-bold {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

.badge {
    display: inline-block;
    background-color: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.benefits-list {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .benefit-item {
        font-size: 1rem;
    }
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
    flex-shrink: 0;
}

.price-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 400px;
    text-align: center;
}

.old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: #059669;
    margin: 0.5rem 0;
}

@media (min-width: 768px) {
    .current-price {
        font-size: 2.5rem;
    }
}

.discount-badge {
    background-color: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Video Section */
.video-section {
    background-color: #000000;
    margin: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (min-width: 768px) {
    .video-section {
        margin: 0;
    }
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-width: 100%;
}

@media (min-width: 768px) {
    .video-container {
        height: 24rem;
    }
}

@media (min-width: 768px) {
    .video-container {
        height: 24rem;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eef2ff 100%);
    padding: 1.5rem 0;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-button {
        font-size: 1.25rem;
        padding: 1.5rem 3rem;
        width: auto;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .button-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 0;
    background-color: #f9fafb;
}

@media (min-width: 768px) {
    .benefits-section {
        padding: 4rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 1.25rem;
    }
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .benefit-card {
        padding: 2rem;
    }
}

.benefit-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .benefit-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }
}

.benefit-icon.green {
    background-color: #059669;
    color: white;
}

.benefit-icon.blue {
    background-color: #2563eb;
    color: white;
}

.benefit-icon.purple {
    background-color: #7c3aed;
    color: white;
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .benefit-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .benefit-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.benefit-card p {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .benefit-card p {
        font-size: 1rem;
    }
}

/* Features Section */
.features-section {
    padding: 2rem 0;
    background: white;
}

@media (min-width: 768px) {
    .features-section {
        padding: 4rem 0;
    }
}

.features-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .features-section h2 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

.features-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

@media (min-width: 768px) {
    .feature-item {
        gap: 1rem;
    }
}

.feature-icon {
    background-color: #eff6ff;
    padding: 0.5rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.feature-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.feature-icon.green {
    background-color: #d1fae5;
    color: #059669;
}

.feature-icon.purple {
    background-color: #ede9fe;
    color: #7c3aed;
}

.feature-icon.orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .feature-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.feature-item h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .feature-item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
}

.feature-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .feature-item p {
        font-size: 1rem;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 2rem 0;
    background: white;
}

@media (min-width: 768px) {
    .guarantee-section {
        padding: 4rem 0;
    }
}

.guarantee-card {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .guarantee-card {
        padding: 2rem;
    }
}

.guarantee-icon {
    background-color: #059669;
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .guarantee-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 1.5rem;
    }
}

.guarantee-icon svg {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 768px) {
    .guarantee-icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.guarantee-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .guarantee-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.guarantee-card p {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .guarantee-card p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

.guarantee-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-stats {
        gap: 1rem;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-weight: 700;
    font-size: 1rem;
    color: #059669;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 1.125rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 2rem 0;
    background-color: #f9fafb;
}

@media (min-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-header {
        margin-bottom: 2rem;
    }
}

.pricing-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .pricing-header h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
}

.pricing-header p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .pricing-header p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

.countdown, .countdown-final {
    background-color: #dc2626;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .countdown, .countdown-final {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
    }
}

.countdown svg, .countdown-final svg {
    width: 1.5rem;
    height: 1.5rem;
}

.pricing-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 2rem;
    }
}

.pricing-card .discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .pricing-card .discount-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

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

.pricing-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .pricing-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.price-section {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .price-section {
        margin-bottom: 2rem;
    }
}

.price-section .old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .price-section .old-price {
        font-size: 1.125rem;
    }
}

.price-section .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin: 0.25rem 0;
}

@media (min-width: 768px) {
    .price-section .current-price {
        font-size: 3rem;
        margin: 0.5rem 0;
    }
}

.payment-info {
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .payment-info {
        font-size: 0.875rem;
    }
}

.features-list {
    text-align: left;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .features-list {
        margin-bottom: 2rem;
    }
}

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

@media (min-width: 768px) {
    .feature-check {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

.feature-check svg {
    width: 1rem;
    height: 1rem;
    color: #059669;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .feature-check svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.feature-check span {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .feature-check span {
        font-size: 1rem;
    }
}

.purchase-button {
    width: 100%;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .purchase-button {
        font-size: 1.25rem;
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

.purchase-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.purchase-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .purchase-button svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.security-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .security-info {
        gap: 2rem;
        font-size: 0.875rem;
    }
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.security-item svg {
    width: 0.75rem;
    height: 0.75rem;
}

@media (min-width: 768px) {
    .security-item svg {
        width: 1rem;
        height: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 2rem 0;
    background: white;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
}

.testimonials-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-section h2 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

.testimonial-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-image {
        margin-bottom: 3rem;
    }
}

.testimonial-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
    .stats-grid {
        display: flex;
        justify-content: center;
        gap: 2rem;
        padding: 1.5rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 1.125rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .stat-item .stat-number {
        font-size: 1.5rem;
    }
}

.stat-item .stat-number.blue {
    color: #2563eb;
}

.stat-item .stat-number.green {
    color: #059669;
}

.stat-item .stat-number.purple {
    color: #7c3aed;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .stat-item .stat-label {
        font-size: 0.875rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background: white;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
}

.faq-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .faq-section h2 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

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

.faq-item {
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .faq-item {
        margin-bottom: 1rem;
    }
}

.faq-question {
    width: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
}

.faq-question:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question span {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1f2937;
    flex: 1;
}

@media (min-width: 768px) {
    .faq-question span {
        font-size: 1rem;
    }
}

.faq-icon {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .faq-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

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

.faq-answer.open {
    max-height: 200px;
}

.faq-answer p {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .faq-answer p {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }
}

.final-cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .final-cta-section h2 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
}

.final-cta-section p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .final-cta-section p {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
}

.warning-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .warning-text {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

.summary-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .summary-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

.summary-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .summary-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.summary-grid {
    display: grid;
    gap: 0.5rem;
    text-align: left;
}

@media (min-width: 768px) {
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item svg {
    width: 1rem;
    height: 1rem;
    color: #059669;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .summary-item svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.summary-item span {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .summary-item span {
        font-size: 1rem;
    }
}

.final-cta-button {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto 0.75rem;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .final-cta-button {
        font-size: 1.5rem;
        padding: 2rem 4rem;
        width: auto;
        margin-bottom: 1rem;
    }
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25);
}

.final-cta-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .final-cta-button svg {
        width: 2rem;
        height: 2rem;
    }
}

.security-text {
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .security-text {
        font-size: 0.875rem;
    }
}

/* Footer */
.footer {
    padding: 1.5rem 0;
    background-color: #1f2937;
    color: white;
    text-align: center;
}

@media (min-width: 768px) {
    .footer {
        padding: 2rem 0;
    }
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .footer-content {
        margin-bottom: 1rem;
    }
}

.footer-content svg {
    color: white;
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .footer-content svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.footer-content span {
    font-size: 1rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .footer-content span {
        font-size: 1.25rem;
    }
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.footer-copyright {
    font-size: 0.75rem;
    color: #6b7280;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #10b981;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

@media (min-width: 768px) {
    .whatsapp-button a {
        width: 4rem;
        height: 4rem;
    }
}

.whatsapp-button a:hover {
    background-color: #059669;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.whatsapp-button svg {
    width: 1.75rem;
    height: 1.75rem;
}

@media (min-width: 768px) {
    .whatsapp-button svg {
        width: 2rem;
        height: 2rem;
    }
}

/* Active FAQ */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Pulse Animations */
@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(5, 150, 105, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
    }
}

@keyframes pulse-price {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(5, 150, 105, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(5, 150, 105, 0.6);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(5, 150, 105, 0.3);
    }
}

/* Apply pulse animations directly to buttons and prices */
.cta-button,
.purchase-button,
.final-cta-button {
    animation: pulse-button 2s infinite;
}

.current-price {
    animation: pulse-price 2s infinite;
}

/* Enhanced button hover effects */
.cta-button:hover,
.purchase-button:hover,
.final-cta-button:hover {
    animation: none !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4) !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .main-content {
        padding-top: 2.5rem;
    }
    
    .video-section {
        margin: 0;
    }
}