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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #faf5ff 100%);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    justify-content: center;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
    min-height: 80vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-red {
    background: linear-gradient(135deg, #ec4899, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    color: #6b7280;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
}

/* Consultation Form */
.consultation-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
}

.consultation-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
	text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.messenger-options {
    display: flex;
    gap: 1rem;
}

.messenger-option input {
    display: none;
}

.messenger-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.messenger-button:hover {
    border-color: #9ca3af;
}

.messenger-option input:checked + .messenger-button.whatsapp {
    border-color: #10b981;
    background-color: #ecfdf5;
    color: #047857;
}

.messenger-option input:checked + .messenger-button.telegram {
    border-color: #3b82f6;
    background-color: #eff6ff;
    color: #1d4ed8;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.submit-btn_c {
    width: 100%;
    background: linear-gradient(135deg, #161916, #8b5cf6);
    color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.submit-btn_telegram {
    max-width: 200px;
    background: linear-gradient(135deg, #161916, #5254DF);
    color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}


.submit-btn:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* How it Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: #f9fafb;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
}

.steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
	align-items: center;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-number.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-number.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.step-number.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.125rem;
    color: #6b7280;
}

.highlight-block {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
}

.highlight-block:hover {
    transform: scale(1.02);
}

.highlight-block h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.highlight-block p {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background-color: white;
}

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

.advantages-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-block {
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid;
}

.advantage-block.blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left-color: #3b82f6;
}

.advantage-block.green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-left-color: #10b981;
}

.advantage-block.blue2 {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left-color: #3b82f6;
	
    
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.advantage-icon {
    color: #3b82f6;
}

.advantage-block.green .advantage-icon {
    color: #10b981;
}

.advantage-block h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1f2937;
}

.advantage-block p {
    color: #6b7280;
    font-size: 1.125rem;
}

.video-examples-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.video-examples {
  
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.video-example {
    aspect-ratio: 16/16;
    background-color: #1f2937;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-example:hover {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.video-overlay.purple {
    background: linear-gradient(to top, rgba(139, 92, 246, 0.6), transparent);
}

.video-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 10;
}

.play-button {
    width: 4rem;
    height: 4rem;
    background-color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background-color 0.3s;
}

.play-button.purple {
    background-color: #8b5cf6;
}

.play-button:hover {
    background-color: #dc2626;
}

.play-button.purple:hover {
    background-color: #7c3aed;
}

.video-content p {
    font-size: 0.875rem;
    font-weight: 500;
}

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

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
	padding-bottom: 50px;
}

.pricing-plan {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
    position: relative;
}

.pricing-plan:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-plan.popular {
    border: 2px solid #8b5cf6;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8b5cf6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
}

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

.plan-header h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3b82f6;
}

.plan-price.purple {
    color: #8b5cf6;
}

.plan-price.red {
    color: #ef4444;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-feature .check-icon {
    color: #10b981;
    flex-shrink: 0;
}

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

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

.guarantee-left h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.guarantee-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon.green {
    background-color: #ecfdf5;
    color: #10b981;
}

.guarantee-icon.blue {
    background-color: #eff6ff;
    color: #3b82f6;
}

.guarantee-icon.purple {
    background-color: #faf5ff;
    color: #8b5cf6;
}

.guarantee-text h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: #6b7280;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 2rem 0;
}

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

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

.footer-logo svg {
    color: #3b82f6;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .advantages-content,
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logo {
        justify-content: center;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan.popular {
        transform: none;
    }
    
    .video-examples {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .messenger-options {
        flex-direction: column;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-left h2 {
        font-size: 2rem;
    }
    
    .footer-info {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .highlight-block h3 {
        font-size: 1.5rem;
    }
    
    .highlight-block p {
        font-size: 1.25rem;
    }
    
    .video-examples {
        grid-template-columns: 1fr;
 
    }
}