/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.badge {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title, .hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.money-text {
    color: #00ff88;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.warning-text {
    color: #ff4757;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: blink 1s infinite;
}

.danger-text {
    color: #ff4757;
    font-weight: 700;
    background: rgba(255, 71, 87, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid #ff4757;
}

.offer-text {
    color: #00ff88;
    font-weight: 600;
    background: rgba(0, 255, 136, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid #00ff88;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.price-highlight {
    color: #ffd700;
    font-weight: 800;
    font-size: 2rem;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.proof-item {
    text-align: center;
}

.proof-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
}

.proof-item .text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-section {
    margin-bottom: 50px;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 25px 50px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.6);
}

.button-text {
    display: block;
    font-size: 1.4rem;
}

.button-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.urgency {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    z-index: 2;
    text-align: center;
}

.visual-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.result-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.result-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.2;
}

.product-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-item-preview {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item-preview:hover {
    transform: translateY(-5px);
}

.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-item-preview h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.product-item-preview p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Problem Section */
.problem-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.problem-section h2 {
    font-size: 2.5rem;
    color: #ff4757;
    margin-bottom: 50px;
    font-weight: 700;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.problem-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: white;
}

.solution-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.product-item > * {
    position: relative;
    z-index: 2;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-item ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.product-item li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.product-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
}

.total-value {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 3rem;
    color: #ff4757;
    font-weight: 800;
}

.savings {
    font-size: 1.2rem;
    color: #00ff88;
    font-weight: 600;
}

/* Results Section */
.results-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.results-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #667eea;
    font-weight: bold;
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.author strong {
    display: block;
    font-weight: 700;
    color: #2c3e50;
}

.author span {
    color: #00ff88;
    font-weight: 600;
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: white;
}

.bonuses-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.bonus-list {
    max-width: 800px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #00ff88;
}

.bonus-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.bonus-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.bonus-value {
    color: #00ff88;
    font-weight: 600;
}

.bonus-total {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.bonus-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.final-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
}

/* Guarantee Section */
.guarantee-section {
    background: #00ff88;
    padding: 60px 0;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.offer-box {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    position: relative;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.offer-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.discount-badge {
    background: #ff4757;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-list {
    text-align: left;
    margin-bottom: 30px;
}

.offer-item {
    padding: 10px 0;
    font-size: 1.1rem;
}

.pricing {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.2rem;
    opacity: 0.8;
    text-decoration: line-through;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin: 10px 0;
}

.payment-info {
    font-size: 1rem;
    opacity: 0.8;
}

.final-cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 25px 50px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.6);
}

.button-main {
    display: block;
    font-size: 1.4rem;
}

.button-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.urgency-final {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Objections Section */
.objections-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.objections-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.objection-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
}

.objection-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.objection-question .icon {
    font-size: 2rem;
    color: #667eea;
}

.objection-question h3 {
    color: #2c3e50;
    font-weight: 700;
}

.objection-answer p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 25px;
    background: white;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Why Now Section */
.why-now-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.why-now-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-now-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.why-now-item:hover {
    transform: translateY(-10px);
}

.why-now-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-now-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-now-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Credibility Section */
.credibility-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.credibility-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.creator-profile {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.creator-image {
    flex-shrink: 0;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.creator-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.creator-credentials p {
    margin-bottom: 10px;
    color: #555;
    font-size: 1rem;
}

.creator-quote {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 5px solid #667eea;
}

.creator-quote p {
    font-style: italic;
    color: #2c3e50;
    margin: 0;
}

.media-logos {
    text-align: center;
}

.media-logos h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    color: #2c3e50;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background: white;
}

.video-testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-testimonial .video-placeholder {
    background: #2c3e50;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-testimonial .video-placeholder:hover {
    background: #34495e;
    transform: scale(1.05);
}

.video-testimonial .play-button {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.video-testimonial p {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

/* Risk Reversal */
.risk-reversal {
    padding: 80px 0;
    background: linear-gradient(135deg, #00ff88 0%, #00d4aa 100%);
    color: white;
}

.risk-reversal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.guarantee-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 30px;
    align-items: center;
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-feature span {
    font-size: 1.2rem;
}

.guarantee-stats {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.guarantee-stats p {
    margin-bottom: 5px;
}


/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: white;
}

.payment-methods h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.payment-method {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.payment-method h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-method p {
    color: #555;
    font-size: 0.9rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-content {
        flex-direction: column;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cta-button {
        padding: 20px 30px;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .button-text {
        font-size: 1.1rem;
    }
    
    .button-subtitle {
        font-size: 0.8rem;
    }
    
    .urgency {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-now-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .creator-profile {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .results-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-preview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .result-item {
        padding: 15px;
    }
    
    .result-number {
        font-size: 1.5rem;
    }
    
    .result-label {
        font-size: 0.8rem;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .cta-button {
        padding: 15px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin: 0 auto;
    }
    
    .button-text {
        font-size: 1rem;
    }
    
    .button-subtitle {
        font-size: 0.7rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .urgency {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .proof-item .number {
        font-size: 2rem;
    }
    
    .proof-item .text {
        font-size: 0.8rem;
    }
    
    .product-item {
        padding: 20px;
    }
    
    .product-item h3 {
        font-size: 1.2rem;
    }
    
    .offer-box {
        padding: 20px;
        margin: 0 10px;
    }
    
    .final-cta-button {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .button-main {
        font-size: 1.1rem;
    }
    
    .button-sub {
        font-size: 0.7rem;
    }
    
    .results-showcase {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .product-preview {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .result-item {
        padding: 10px;
        gap: 10px;
    }
    
    .result-number {
        font-size: 1.2rem;
    }
    
    .result-label {
        font-size: 0.7rem;
    }
    
    .visual-container {
        padding: 20px;
    }
}
