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

:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary: #EC4899;
    --background: #0F0F1E;
    --surface: #1A1A2E;
    --surface-light: #25253E;
    --text: #FFFFFF;
    --text-muted: #A0A0B8;
    --success: #10B981;
    --error: #EF4444;
    --border: #2D2D44;
    --shadow: rgba(139, 92, 246, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.85) 0%, rgba(26, 26, 46, 0.85) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

.badge-emoji {
    font-size: 16px;
}

.language-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease-out 0.1s backwards, pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    }
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-pricing {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.hero-pricing strong {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}

/* Form Container */
.form-container {
    max-width: 600px;
    margin: 0 auto 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.form-step.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.step-indicator {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.input-group {
    position: relative;
    margin-bottom: 24px;
}

.input-group input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    background: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text);
    width: 100%;
    box-shadow: 0 4px 20px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--surface-light);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--primary);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.form-actions {
    display: flex;
    gap: 12px;
}

.form-actions .btn-secondary {
    flex: 0 0 auto;
    padding: 16px 24px;
}

.form-actions .btn-primary {
    flex: 1;
}

/* Loading State */
.loader {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading h3, #success h3, #error h3 {
    font-size: 24px;
    margin-bottom: 12px;
    text-align: center;
}

#loading p, #success p, #error p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

.success-icon, .error-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 24px;
}

/* Form Error */
.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
    animation: shake 0.4s ease-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.trust-item {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    padding: 120px 20px;
    background: var(--background);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px var(--shadow);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.package-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 16px;
}

.package-price {
    margin-bottom: 12px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    vertical-align: top;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.package-description {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 15px;
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-guarantee {
    max-width: 600px;
    margin: 80px auto 0;
    text-align: center;
    padding: 40px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
}

.secure-checkout-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
    border-radius: 12px;
}

.guarantee-badge {
    font-size: 48px;
    margin-bottom: 16px;
}

.pricing-guarantee h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.pricing-guarantee p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Examples Section */
.examples {
    padding: 120px 20px;
    background: var(--surface);
    position: relative;
}

@media (max-width: 768px) {
    .examples {
        padding: 80px 0 80px 0;
    }

    .examples .container {
        padding: 0 !important;
        max-width: 100%;
    }

    .examples .section-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
}

.video-slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.video-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-slide {
    display: none;
}

.video-slide.active {
    display: block;
}

/* Desktop: Show 3 cards in a grid */
@media (min-width: 769px) {
    .video-slideshow {
        display: flex;
        gap: 32px;
        align-items: flex-start;
    }

    .video-slide {
        display: none;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.6s ease-out;
        flex: 0 0 calc(33.333% - 22px);
        max-width: calc(33.333% - 22px);
    }

    .video-slide.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile: Show 1 card */
@media (max-width: 768px) {
    .video-slideshow-container {
        padding: 0;
        max-width: 100%;
        margin: 0;
    }

    .video-slideshow {
        width: 100%;
    }

    .video-slide {
        animation: slideIn 0.5s ease-out;
        width: 100%;
        padding: 0;
    }

    .video-slide .video-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 20px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.9);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slideshow-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px var(--shadow);
}

.slideshow-nav.prev {
    left: 0;
}

.slideshow-nav.next {
    right: 0;
}

.slideshow-dots {
    text-align: center;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.dot:hover {
    background: var(--text-muted);
}

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

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.video-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px var(--shadow);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.video-placeholder {
    aspect-ratio: 9/16;
    background: var(--surface-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    z-index: 1;
}

.play-button:hover {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.video-category {
    padding: 16px 20px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Language Feature Section */
.language-feature {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
    position: relative;
    overflow: hidden;
}

.language-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 150%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.language-feature-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.language-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.language-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.language-description {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.6;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.language-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.language-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.language-flag {
    font-size: 32px;
}

.language-item span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.language-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 32px;
    margin-top: 48px;
}

.language-highlight {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: var(--text);
}

.language-highlight strong {
    color: var(--primary);
    font-size: 1.1em;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 20px;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.author-title {
    font-size: 13px;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    padding: 120px 20px;
    background: var(--surface);
    text-align: center;
}

.cta h2 {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-note {
    margin-top: 16px !important;
    font-size: 14px !important;
}

/* Footer */
footer {
    padding: 48px 20px;
    background: var(--background);
    border-top: 1px solid var(--border);
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text);
    transform: rotate(90deg);
}

.selected-package-info {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 8px;
}

.selected-package-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.selected-package-info .package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.selected-package-info .package-price-large {
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
}

.selected-package-info .package-ads {
    font-size: 14px;
    color: var(--text-muted);
}

.selected-package-info .change-package {
    color: var(--primary);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
}

.selected-package-info .change-package:hover {
    color: var(--primary-dark);
}

.modal-body {
    padding: 32px;
}

.modal-body .form-step {
    display: none;
}

.modal-body .form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.step-indicator {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.modal-body h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.step-description {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        max-width: 95%;
        border-radius: 20px;
    }

    .modal-header,
    .modal-body {
        padding: 24px 20px;
    }

    .modal-body h3 {
        font-size: 22px;
    }

    .selected-package-info .package-price-large {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }

    .modal-container {
        max-height: 95vh;
    }

    .modal-header,
    .modal-body {
        padding: 20px 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 32px 24px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn-secondary {
        width: 100%;
    }

    /* Language Feature - Mobile */
    .language-feature {
        padding: 80px 20px;
    }

    .language-icon {
        font-size: 60px;
    }

    .language-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .language-item {
        padding: 16px 12px;
    }

    .language-flag {
        font-size: 28px;
    }

    .language-item span:last-child {
        font-size: 12px;
    }

    .language-cta {
        padding: 24px 20px;
    }

    .language-badge {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Pricing Section - Mobile */
    .pricing {
        padding: 80px 20px;
    }

    .pricing .container {
        padding: 0 !important;
        max-width: 100%;
    }

    .pricing .section-header {
        padding: 0;
        margin-bottom: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .pricing-card {
        width: 100%;
        margin: 0;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    /* Testimonials Section - Mobile */
    .testimonials {
        padding: 80px 20px;
    }

    .testimonials .container {
        padding: 0 !important;
        max-width: 100%;
    }

    .testimonials .section-header {
        padding: 0;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .testimonial-card {
        width: 100%;
        margin: 0;
    }

    /* CTA Section - Full Width */
    .cta {
        padding: 80px 0;
    }

    .cta .container {
        padding: 0 20px !important;
    }

    /* Video Examples already handled above */
    .video-slideshow-container {
        padding: 0;
        max-width: 100%;
        margin: 0;
    }

    .slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .video-slide {
        padding: 0;
    }

    .video-slide .video-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 20px;
    }

    .trust-badges {
        gap: 16px;
    }

    .trust-item {
        font-size: 12px;
    }

    footer .container {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .form-container {
        padding: 24px 20px;
        border-radius: 16px;
    }

    /* All sections - Mobile */
    .examples {
        padding: 80px 0;
    }

    .pricing,
    .testimonials {
        padding: 80px 20px;
    }

    .cta {
        padding: 80px 20px;
    }

    .examples .container,
    .pricing .container,
    .testimonials .container {
        padding: 0 !important;
        max-width: 100%;
    }

    .examples .section-header {
        padding: 0 20px;
    }

    .pricing .section-header,
    .testimonials .section-header {
        padding: 0;
    }

    .cta .container {
        padding: 0 !important;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Pricing cards - Mobile */
    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        width: 100%;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    /* Testimonial cards - Mobile */
    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        width: 100%;
    }

    /* Video slideshow - Full Width */
    .video-slideshow-container {
        padding: 0;
        max-width: 100%;
        margin: 0;
    }

    .slideshow-nav {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .video-slide {
        padding: 0;
    }

    .video-slide .video-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 20px;
    }
}
