* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="nails" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%23ff69b4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23nails)"/></svg>');
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 182, 193, 0.1) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ff69b4;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff69b4, #ffd700);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
    background: linear-gradient(135deg, #ff1493 0%, #dc143c 100%);
}

.cta-button.large {
    padding: 22px 45px;
    font-size: 1.2rem;
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff69b4, #ffd700);
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #ff69b4;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.benefit-icon {
    color: #ff69b4;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Transformation Section */
.transformation {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
}

.transformation-content {
    text-align: center;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.before, .after {
    text-align: center;
}

.before h3, .after h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: #ff69b4;
    border: 3px solid #ff69b4;
    background: rgba(255, 255, 255, 0.8);
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #666;
}

.arrow {
    font-size: 2rem;
    color: #ff69b4;
}

.transformation-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #555;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Target Audience Section */
.target-audience {
    padding: 100px 0;
    background: #fff;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.audience-icon {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 1.5rem;
}

.audience-item p {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff69b4;
    font-family: 'Playfair Display', serif;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    font-size: 4rem;
    color: #ff69b4;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #ff69b4;
    font-size: 1rem;
}

/* Bonus Section */
.bonus {
    padding: 100px 0;
    background: #fff;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f8 0%, #ffeef8 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #ff69b4;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.bonus-icon {
    font-size: 2.5rem;
    color: #ffd700;
    flex-shrink: 0;
}

.bonus-item p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    text-align: center;
}

.pricing .section-title {
    color: white;
}

.pricing .section-title::after {
    background: #ffd700;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-original {
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-current {
    margin-bottom: 2rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.installments {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-answer {
    background: white;
    padding: 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.badge i {
    color: #ff69b4;
    font-size: 1.2rem;
}

.footer-text {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Fixed CTA */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.fixed-cta.show {
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .benefits-grid,
    .audience-grid,
    .testimonials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        flex-direction: column;
        gap: 2rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* Testimonial Photo */
.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff69b4;
}

/* Marketing Call Section */
.marketing-call {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff1493 0%, #dc143c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.marketing-call::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="sparkles" patternUnits="userSpaceOnUse" width="30" height="30"><text x="15" y="20" font-size="16" fill="%23ffd700" opacity="0.3">✨</text></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>');
    animation: sparkleMove 20s linear infinite;
}

@keyframes sparkleMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(30px); }
}

.marketing-content {
    position: relative;
    z-index: 2;
}

.marketing-icon {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.marketing-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.marketing-title .highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6); }
}

.marketing-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.cta-button.mega {
    padding: 25px 50px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c2c2c;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
}

.cta-button.mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button.mega:hover::before {
    left: 100%;
}

.cta-button.mega:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

.cta-subtitle {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 400;
    opacity: 0.8;
}

.guarantee-text {
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.guarantee-text i {
    color: #ffd700;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marketing-title {
        font-size: 2.2rem;
    }
    
    .urgency-timer {
        gap: 1rem;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .cta-button.mega {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .bonus-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Dynamic Hero Section */
.hero-dynamic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-background-dynamic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-1 { top: 20%; left: 10%; animation-delay: 0s; }
.float-2 { top: 60%; left: 15%; animation-delay: 1s; }
.float-3 { top: 30%; right: 20%; animation-delay: 2s; }
.float-4 { top: 70%; right: 10%; animation-delay: 3s; }
.float-5 { top: 10%; left: 60%; animation-delay: 4s; }
.float-6 { top: 80%; left: 70%; animation-delay: 5s; }

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-dynamic {
    color: white;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.3) 100%);
    border: 1px solid rgba(255, 105, 180, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tag-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.hero-title-dynamic {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
}

.title-word {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #ff69b4 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.word-1 { animation-delay: 0s; }
.word-2 { animation-delay: 0.3s; }
.word-3 { animation-delay: 0.6s; }

.title-underline {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ffd700);
    margin-top: 1rem;
    border-radius: 2px;
    animation: underlineGrow 2s ease-out;
}

.hero-subtitle-dynamic {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #cccccc;
}

.highlight-income {
    background: linear-gradient(135deg, #ff69b4, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.4rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-cta-dynamic {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-main-dynamic {
    display: inline-block;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ffd700 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    align-self: flex-start;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: glow 2s infinite;
}

.cta-main-dynamic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.price-info {
    color: #ffd700;
}

.guarantee-info {
    color: #28a745;
}

/* Hero Visual */
.hero-visual-dynamic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 20, 147, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.circle-content {
    text-align: center;
    color: white;
}

.success-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-text {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.2;
}

.circle-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ff69b4;
    border-right: 2px solid #ffd700;
    border-radius: 50%;
    animation: rotate 4s linear infinite;
}

.floating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    color: white;
    animation: bubble 3s ease-in-out infinite;
}

.stat-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.stat-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.stat-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.bubble-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff69b4;
}

.bubble-text {
    font-size: 0.8rem;
    color: #cccccc;
}

.nail-showcase {
    position: absolute;
    width: 100%;
    height: 100%;
}

.nail-sample {
    position: absolute;
    font-size: 2.5rem;
    animation: showcase 4s ease-in-out infinite;
}

.sample-1 {
    bottom: 20%;
    right: 20%;
    animation-delay: 0s;
}

.sample-2 {
    top: 30%;
    left: 5%;
    animation-delay: 1.5s;
}

.sample-3 {
    bottom: 40%;
    left: 10%;
    animation-delay: 3s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

@keyframes underlineGrow {
    0% { width: 0; }
    100% { width: 200px; }
}

@keyframes glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bubble {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes showcase {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title-dynamic {
        font-size: 3.5rem;
    }
    
    .visual-container {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title-dynamic {
        font-size: 2.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .visual-container {
        width: 300px;
        height: 300px;
    }
    
    .main-circle {
        width: 150px;
        height: 150px;
    }
    
    .success-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-dynamic {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-dynamic {
        font-size: 1.1rem;
    }
    
    .cta-main-dynamic {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .visual-container {
        width: 250px;
        height: 250px;
    }
}

/* Modern Testimonials Section */
.testimonials-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
}

.testimonials-modern::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="testimonial-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="1" fill="%23ff69b4" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    position: relative;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ffd700);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1.5rem;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ffd700);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff 0%, #ffeef8 100%);
    border: 2px solid #ff69b4;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-photo-container {
    position: relative;
    flex-shrink: 0;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.photo-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff69b4, #ffd700);
    z-index: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.success-badge, .verified-badge, .growth-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    z-index: 3;
}

.success-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c2c2c;
}

.verified-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.growth-badge {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: #ff69b4;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-results {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff69b4;
}

.result-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    justify-content: center;
}

.testimonial-achievement {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c2c2c;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    justify-content: center;
}

.achievement-icon {
    font-size: 1.2rem;
}

/* Simple testimonial cards */
.testimonial-card.simple {
    padding: 1.5rem;
    text-align: center;
}

.testimonial-header-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.testimonial-avatar-simple {
    font-size: 3rem;
    color: #ff69b4;
}

.testimonial-info-simple {
    text-align: left;
}

.testimonial-text-simple {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-rating-simple {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.testimonial-rating-simple i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Testimonials Stats */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
    .testimonial-results {
        gap: 1rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-photo {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-header-simple {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonial-info-simple {
        text-align: center;
    }
}

/* Sale Notification Popup */
.sale-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    z-index: 10000;
    min-width: 320px;
    max-width: 400px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.sale-notification.show {
    top: 20px;
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
    position: relative;
}

.notification-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.notification-text {
    flex: 1;
}

.buyer-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.purchase-text {
    font-size: 13px;
    opacity: 0.9;
}

.notification-close {
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    opacity: 0.7;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.notification-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.notification-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    animation: progress 5s linear;
}

.sale-notification.show .notification-progress::after {
    animation: progress 5s linear;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes progress {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .sale-notification {
        min-width: 280px;
        max-width: 90vw;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .notification-content {
        padding: 14px 16px;
    }
    
    .buyer-name {
        font-size: 15px;
    }
    
    .purchase-text {
        font-size: 12px;
    }
}

/* Testimonial Photo Container for Simple Cards */
.testimonial-card.simple .testimonial-photo-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.testimonial-card.simple .testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff69b4;
}

.testimonial-card.simple .photo-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.testimonial-card.simple .verified-badge,
.testimonial-card.simple .growth-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff69b4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-card.simple .growth-badge {
    background: #28a745;
}

/* Update header layout for simple cards with photos */
.testimonial-card.simple .testimonial-header-simple {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card.simple .testimonial-info-simple {
    text-align: center;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .testimonial-card.simple .testimonial-photo-container {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-card.simple .testimonial-photo {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-card.simple .verified-badge,
    .testimonial-card.simple .growth-badge {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
}


/* Marketing Breakthrough Section */
.marketing-breakthrough {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.breakthrough-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-diamonds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.diamond {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatDiamond 6s ease-in-out infinite;
}

.diamond-1 { top: 10%; left: 10%; animation-delay: 0s; }
.diamond-2 { top: 20%; right: 15%; animation-delay: 1s; }
.diamond-3 { top: 60%; left: 5%; animation-delay: 2s; }
.diamond-4 { top: 70%; right: 10%; animation-delay: 3s; }
.diamond-5 { top: 40%; left: 80%; animation-delay: 4s; }
.diamond-6 { top: 80%; left: 70%; animation-delay: 5s; }

@keyframes floatDiamond {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.breakthrough-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 105, 180, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.2) 0%, transparent 50%);
}

.breakthrough-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.breakthrough-badge {
    display: inline-block;
    position: relative;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #1a1a2e;
    position: relative;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeGlow 2s linear infinite;
}

@keyframes badgeGlow {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.breakthrough-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line-1 {
    color: #ffffff;
    opacity: 0.9;
}

.title-line-2 {
    color: #ffffff;
}

.highlight-gradient {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d, #ff6b6b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-line-3 {
    color: #ffd93d;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.breakthrough-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.highlight-text {
    color: #ffd93d;
    font-weight: 600;
}

.countdown-container {
    margin-bottom: 3rem;
}

.countdown-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 80px;
    position: relative;
    overflow: hidden;
}

.timer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: timerShine 2s linear infinite;
}

@keyframes timerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.timer-digit {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd93d;
    line-height: 1;
}

.timer-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.timer-separator {
    font-size: 2rem;
    color: #ffd93d;
    font-weight: 700;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.breakthrough-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

.cta-breakthrough {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #1a1a2e;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-breakthrough:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: ctaShine 3s linear infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.breakthrough-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 2rem;
    color: #ffd93d;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    color: #ffd93d;
    font-size: 1.1rem;
}

.guarantee-text span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breakthrough-title {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .timer-box {
        padding: 1rem 0.5rem;
        min-width: 60px;
    }
    
    .timer-digit {
        font-size: 1.8rem;
    }
    
    .breakthrough-features {
        flex-direction: column;
        align-items: center;
    }
    
    .breakthrough-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .breakthrough-title {
        font-size: 2rem;
    }
    
    .breakthrough-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-breakthrough {
        padding: 15px 25px;
        font-size: 1rem;
    }
}