:root {
    --primary: #ec4899;
    --secondary: #10b981;
    --dark: #1f2937;
    --light: #f9fafb;
    --accent: #fdf2f8;
}

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

html {
    overflow-x: hidden;
}

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

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

/* Urgency Banner */
.urgency-banner {
    background: var(--primary);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.urgency-text {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Hero */
.hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span.title-pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-title span.title-red {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-small-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    background: var(--secondary);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* Carousel */
/* Carousel Premium */
.what-you-get { 
    padding: 100px 0; 
    background: #fff; 
    position: relative;
    text-align: center;
}

.carousel-container { 
    position: relative; 
    max-width: 100%; 
    margin: 0 auto; 
    padding: 10px 0;
    overflow: hidden;
}

.carousel-track { 
    display: flex; 
    gap: 12px;
    padding: 10px;
    will-change: transform;
}

.carousel-slide { 
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .carousel-slide { min-width: 18%; }
    .carousel-container { padding: 20px 0; }
    .carousel-track { gap: 20px; padding: 20px; }
}

.slide-card { 
    background: white; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
    border: 1px solid rgba(0,0,0,0.05); 
    position: relative;
    height: 392px;
    aspect-ratio: 9 / 16;
}

@media (min-width: 768px) {
    .slide-card { height: auto; aspect-ratio: 9 / 16; border-radius: 16px; }
}

.slide-card img { 
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}

.slide-card:hover img {
    transform: scale(1.05);
}

.slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 8px;
    text-align: center;
    font-weight: 800;
    font-size: 0.65rem;
    color: white;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .slide-label { padding: 10px; font-size: 0.8rem; }
}

.carousel-nav { 
    display: none; /* Mobile first: hide arrows */
}

@media (min-width: 1024px) {
    .carousel-nav { 
        display: flex; 
        position: absolute; 
        top: 50%; 
        transform: translateY(-50%); 
        width: 50px; 
        height: 50px; 
        background: white; 
        border-radius: 50%; 
        align-items: center; 
        justify-content: center; 
        box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
        cursor: pointer; 
        z-index: 10; 
        font-size: 1.2rem; 
        transition: all 0.3s ease;
        border: 1px solid #f3f4f6;
    }
    .carousel-nav:hover { 
        background: var(--primary); 
        color: white;
        transform: translateY(-50%) scale(1.1); 
    }
    .carousel-nav.prev { left: 20px; }
    .carousel-nav.next { right: 20px; }
}

.carousel-dots {
    display: none;
}

.dot {
    width: 8px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    background: var(--primary);
    border-radius: 10px;
}

/* Profit Calc */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    display: block;
}

.guarantee-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #be185d;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

/* Profit Calc */
.profit-calc-section { 
    padding: 80px 0; 
    background: #fdf2f2; 
    border-top: 2px dashed #fecaca; 
    text-align: center;
}

.profit-calc-card { 
    background: white; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 40px; 
    border-radius: 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    text-align: center; 
}

.profit-calc-card p { 
    font-size: 1.3rem; 
    margin-bottom: 10px; 
}

.daily-profit { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--secondary); 
    margin: 15px 0; 
}

.monthly-profit { 
    font-size: 2.5rem; 
    font-weight: 900; 
    color: var(--primary); 
    margin: 20px 0; 
}

.profit-small-text { 
    color: #64748b; 
    font-size: 1rem; 
}

.pricing-plans { 
    padding: 80px 0; 
    background: var(--light); 
    text-align: center;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 25px;
}

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

.countdown-box {
    background: white;
    border: 2px solid #ec4899;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.countdown-box span {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ec4899;
    line-height: 1;
}

.countdown-box small {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6b7280;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Bonus Section */
.bonuses-grid-horizontal { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
    max-width: 900px; 
    margin: 0 auto; 
}

.bonus-horizontal-item { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    background: #fff; 
    padding: 25px; 
    border-radius: 24px; 
    border: 2px solid #fbcfe8; 
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.05); 
}

.bonus-img-wrapper { 
    flex: 1; 
    min-width: 250px;
}

.bonus-img-wrapper img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 16px; 
    border: 1px solid #fbcfe8; 
}

.bonus-info { 
    flex: 1.5; 
    text-align: left;
}

.bonus-info h3 { 
    font-size: 1.5rem; 
    color: #db2777; 
    margin-bottom: 10px; 
    font-weight: 900; 
}

.bonus-info p { 
    color: #4b5563; 
    font-size: 1.1rem; 
}

@media (max-width: 768px) {
    .bonus-horizontal-item {
        flex-direction: column;
        text-align: center;
    }
    .bonus-img-wrapper {
        width: 100%;
    }
    .bonus-info {
        text-align: center;
    }
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}
.plan-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s;
}
.plan-card.popular {
    border: 3px solid var(--primary);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.15);
    transform: scale(1.03);
    background: linear-gradient(180deg, #fff 0%, #fdf2f8 100%);
}
.plan-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    padding: 7px 22px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}
.plan-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 5px;
}
.plan-card.popular h3 { color: #be185d; }
.price-anchor {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 10px;
}
.price-anchor s {
    color: #9ca3af;
}
.price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.promo-seal {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 6px;
    margin-bottom: 8px;
}
.price-savings {
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    margin-top: -2px;
    margin-bottom: 5px;
}
.price { margin: 5px 0 5px; }
.currency { font-size: 1.3rem; font-weight: 700; vertical-align: top; color: #4b5563; }
.amount { font-size: 3rem; font-weight: 900; color: #1f2937; }
.plan-card.popular .amount { color: #be185d; }
.payment-info { font-size: 0.85rem; color: #9ca3af; font-weight: 600; margin-bottom: 10px; }
.plan-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 15px;
}
.plan-divider::before,
.plan-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f3e8ff;
}
.plan-divider span {
    font-size: 0.7rem;
    font-weight: 800;
    color: #be185d;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.plan-features {
    list-style: none;
    text-align: left;
    margin: 0 0 20px;
    padding: 0;
}
.plan-features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    color: #374151;
    line-height: 1.4;
}
.plan-features i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.plan-features li.highlight {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.95rem;
}
.plan-features li.highlight i { color: var(--primary); }
.plan-features li.bonus-feature {
    color: #059669;
    font-weight: 700;
    font-size: 0.85rem;
}
.plan-features li.bonus-feature i { color: #059669; }
.plan-features li.no-benefit { color: #c0c5cc; }
.plan-features li.no-benefit i { color: #d1d5db; }
.plan-button {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.basic-button {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}
.basic-button:hover { background: #e5e7eb; }
.premium-button {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
}
.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}
.social-proof {
    margin-top: 15px;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.faq-title {
    color: #be185d !important;
    font-size: 2.2rem !important;
    margin-bottom: 8px !important;
}

.faq-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 40px;
}

.faq-accordion { 
    max-width: 650px; 
    margin: 0 auto; 
}

.faq-item { 
    background: #fdf2f8;
    margin-bottom: 10px; 
    border-radius: 12px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #fce7f3;
}

.faq-question { 
    width: 100%; 
    padding: 18px 22px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: none; 
    border: none; 
    font-size: 0.95rem; 
    font-weight: 700; 
    cursor: pointer; 
    text-align: left;
    color: #1f2937;
    transition: all 0.3s;
}

.faq-icon {
    font-size: 1.3rem;
    color: #9ca3af;
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer { 
    padding: 0 22px 18px; 
    display: none; 
    color: #4b5563; 
    line-height: 1.7;
    font-size: 0.9rem;
}

.faq-item.active {
    background: #fce7f3;
}

.faq-item.active .faq-question {
    color: #be185d;
    padding-bottom: 8px;
}

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

.faq-item.active .faq-icon { 
    transform: rotate(45deg); 
    color: #be185d;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem !important;
    }
    .faq-question {
        font-size: 0.9rem;
        padding: 16px 18px;
    }
    .faq-answer {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: #fdf2f8;
}
.testimonials-title {
    color: #be185d !important;
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
}
.testimonials-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}
.testimonials-carousel:active {
    cursor: grabbing;
}
.testimonials-carousel::-webkit-scrollbar {
    display: none;
}
.testimonials-track {
    display: flex;
    gap: 15px;
    padding: 5px;
}
.testimonial-slide {
    flex-shrink: 0;
    width: 280px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.testimonial-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .testimonials-section { padding: 40px 0; }
    .testimonials-title { font-size: 1.5rem !important; }
    .testimonial-slide { width: 240px; }
}

/* Social Notification */
.social-notification {
    position: fixed;
    bottom: 20px;
    left: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    z-index: 9000;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.social-notification.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.notif-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #be185d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.notif-icon i {
    color: white;
    font-size: 0.75rem;
}
.notif-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.notif-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1f2937;
}
.notif-action {
    font-size: 0.65rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .social-notification {
        bottom: 14px;
        left: 10px;
        max-width: 260px;
        padding: 8px 12px;
    }
    .notif-icon { width: 30px; height: 30px; }
    .notif-name { font-size: 0.7rem; }
    .notif-action { font-size: 0.6rem; }
}

/* Guarantee Section */
.guarantee-section { padding: 80px 0; background: #fff; }
.guarantee-card {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
}
.guarantee-badge { display: inline-block; margin-bottom: 25px; }
.badge-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f59e0b, #d97706);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4), inset 0 -2px 4px rgba(0,0,0,0.1), inset 0 2px 4px rgba(255,255,255,0.3);
    border: 3px solid #fbbf24;
}
.badge-number { font-size: 2.2rem; font-weight: 900; color: white; line-height: 1; }
.badge-text { font-size: 0.55rem; font-weight: 800; color: white; letter-spacing: 1px; }
.badge-label { font-size: 0.6rem; font-weight: 700; color: #fef3c7; background: rgba(0,0,0,0.15); padding: 1px 8px; border-radius: 8px; margin-top: 2px; }
.guarantee-title { font-size: 1.5rem; font-weight: 900; color: #1f2937; margin-bottom: 15px; }
.guarantee-desc { font-size: 0.95rem; color: #6b7280; line-height: 1.7; margin-bottom: 20px; }
.guarantee-tags {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 25px;
    border: 1px solid #fbcfe8;
    border-radius: 20px;
    padding: 8px 20px;
}
.guarantee-cta { display: block; max-width: 400px; margin: 0 auto; }

/* Footer */
.footer { background: var(--dark); color: white; padding: 40px 0; text-align: center; }
.footer p { margin-bottom: 10px; opacity: 0.8; }

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}
.popup-overlay.active { display: flex; }
.popup-card {
    background: white;
    max-width: 420px;
    width: 85%;
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}
.popup-confetti-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}
.popup-badge-top {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
}
.popup-close {
    position: absolute;
    top: 8px; right: 14px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    z-index: 4;
    line-height: 1;
    padding: 0;
}
.popup-close:hover { color: white; }
.popup-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1f2937;
    margin: 22px 25px 6px;
    position: relative;
    z-index: 2;
}
.popup-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 25px 15px;
    position: relative;
    z-index: 2;
}
.popup-subtitle strong { color: #be185d; }
.popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 30px 15px;
    text-align: left;
    position: relative;
    z-index: 2;
}
.popup-benefits li {
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.popup-benefits i {
    color: #10b981;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.popup-price {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    padding: 16px 20px;
    margin: 0 25px;
    border-radius: 14px;
    position: relative;
    z-index: 2;
}
.popup-old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
}
.popup-new-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #be185d;
    display: block;
    line-height: 1.1;
}
.popup-urgency {
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 700;
    margin: 10px 0 0;
    position: relative;
    z-index: 2;
    letter-spacing: 0.3px;
}
.popup-btn {
    width: calc(100% - 50px);
    margin: 0 auto;
    display: block;
    padding: 15px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}
.popup-btn-accept {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    margin-top: 18px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}
.popup-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.popup-btn-decline {
    background: none;
    color: #b0b5bd;
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 22px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.main-feature-title {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: var(--primary);
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1.2px;
    line-height: 1.2;
    margin-bottom: 40px !important;
    text-shadow: 0 5px 15px rgba(236, 72, 153, 0.1);
}

@media (max-width: 768px) {
    .main-feature-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px;
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 20px 0 30px;
        min-height: 85vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -1px;
        margin-bottom: 15px;
        padding: 0 10px;
        line-height: 1.2;
    }
    .hero-small-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 15px;
        line-height: 1.4;
    }
    .cta-button {
        padding: 16px 20px;
        font-size: 1rem;
        width: 95%;
        margin: 0 auto;
        display: block;
    }
    .urgency-banner {
        padding: 8px 0;
    }
    .urgency-text {
        font-size: 0.75rem;
    }
    .container {
        padding: 0 15px;
    }
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
    }
    .carousel-slide {
        min-width: 45%;
    }
    .main-feature-title {
        font-size: 1.6rem !important;
    }
    .bonus-horizontal-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .bonus-img-wrapper {
        width: 100%;
        min-width: unset;
    }
    .bonus-img-wrapper img {
        height: 160px;
    }
    .profit-calc-card {
        padding: 20px;
    }
    .monthly-profit {
        font-size: 1.8rem;
    }
    .amount {
        font-size: 2.8rem;
    }
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .plan-card {
        padding: 25px 20px;
    }
    .plan-card.popular {
        transform: none;
    }
    .plan-features li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    .plan-button {
        padding: 15px;
        font-size: 0.95rem;
    }
    .plan-divider {
        margin: 15px 0 10px;
    }
}
