/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B7280;
    --primary-dark: #4B5563;
    --secondary-color: #D1D5DB;
    --accent-color: #FDA4AF;
    --green: #10B981;
    --green-dark: #059669;
    --pink: #FDA4AF;
    --pink-dark: #FB7185;
    --text-dark: #1F2937;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --dark-gray: #374151;
    --gradient-1: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    --gradient-2: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-pink: linear-gradient(135deg, #FDA4AF 0%, #FB7185 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 56px rgba(0,0,0,0.12);
    --blur-sm: blur(10px);
    --blur-md: blur(20px);
    --blur-lg: blur(40px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 50%, #E8E8E8 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(209, 213, 219, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(243, 244, 246, 0.3) 0%, transparent 50%);
    animation: floatBlur 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatBlur {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header - Glass Style */
.header {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: headerFloat 8s ease-in-out infinite;
}

@keyframes headerFloat {
    0%, 100% { backdrop-filter: saturate(180%) blur(30px); }
    50% { backdrop-filter: saturate(180%) blur(40px); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.logo-image {
    display: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    animation: logoFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
    letter-spacing: 0.5px;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0);
        opacity: 1;
    }
    50% { 
        transform: translateY(-3px);
        opacity: 0.9;
    }
}

.logo-accent {
    color: #FFB6C1;
    animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link-cta:hover {
    background: var(--primary-dark);
    color: white;
}

.nav-link-cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Switcher */
.language-switcher {
    background: var(--bg-light);
    border-radius: 50px;
    padding: 4px;
    display: flex;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.lang-btn.active {
    background: var(--gradient-1);
    color: white;
}

.lang-btn:hover:not(.active) {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, #E8EAF6 0%, #F3E5F5 100%);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    /* Улучшение качества изображения */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: blur(0.5px) brightness(1.05);
    transform: scale(1.02);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* CTA Button - Glass Style */
.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: rgba(107, 114, 128, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(107, 114, 128, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 60px rgba(107, 114, 128, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255,255,255,0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255,255,255,0.6);
    }
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-gray {
    background: var(--bg-light);
}

.section-accent {
    background: linear-gradient(135deg, #667EEA15 0%, #764BA215 100%);
}

.section-highlight {
    background: linear-gradient(135deg, #F8F9FA 0%, #E8EAF6 100%);
}

.section-about {
    background: linear-gradient(135deg, #E8EAF6 0%, #F3E5F5 100%);
}

/* Company Section */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.company-card {
    background: var(--gradient-glass);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.company-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(229, 213, 193, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.company-card:hover::after {
    opacity: 1;
}

.company-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
}

.company-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.company-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1F2937;
    font-weight: 700;
}

.company-card p {
    color: #374151;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(35px);
    -webkit-backdrop-filter: saturate(180%) blur(35px);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-icon {
    font-size: 3rem;
    margin: 20px 0;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1F2937;
    padding: 0 30px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.card p {
    color: #374151;
    line-height: 1.8;
    padding: 0 30px 30px;
    font-size: 1.05rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

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

/* Safety Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.safety-item {
    text-align: center;
}

.safety-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.safety-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.safety-item p {
    color: var(--text-light);
}

/* Format Section */
.format-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.format-item {
    margin-bottom: 30px;
}

.format-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.format-item p {
    color: var(--text-light);
}

.highlight-box {
    background: var(--gradient-1);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.highlight-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Income Section */
.income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.income-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.income-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.income-card-featured {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.05);
}

.income-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.8;
}

.income-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.income-card p {
    opacity: 0.85;
}

.income-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Advertise Section */
.advertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advertise-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.advertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.advertise-allowed::before {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.advertise-prohibited::before {
    background: linear-gradient(135deg, #FDA4AF 0%, #FB7185 100%);
}

.advertise-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.advertise-badge.prohibited {
    background: linear-gradient(135deg, #FDA4AF 0%, #FB7185 100%);
    box-shadow: 0 4px 16px rgba(251, 113, 133, 0.3);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.advertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.advertise-card ul {
    list-style: none;
    padding: 0;
}

.advertise-card li {
    padding: 12px 0;
    color: #374151;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid #F0F0F0;
    animation: fadeInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.advertise-card li:nth-child(1) { animation-delay: 0.1s; }
.advertise-card li:nth-child(2) { animation-delay: 0.2s; }
.advertise-card li:nth-child(3) { animation-delay: 0.3s; }
.advertise-card li:nth-child(4) { animation-delay: 0.4s; }
.advertise-card li:nth-child(5) { animation-delay: 0.5s; }
.advertise-card li:nth-child(6) { animation-delay: 0.6s; }

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

.advertise-card li:last-child {
    border-bottom: none;
}

.advertise-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Who Fits Grid */
.who-fits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.who-fits-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.who-fits-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.who-fits-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* Form Section */
.section-form {
    background: var(--gradient-1);
    color: white;
}

.section-form .section-title {
    color: white;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.application-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(107, 114, 128, 0.3);
    box-shadow: 0 8px 32px rgba(107, 114, 128, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px) scale(1.01);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 130px;
    cursor: pointer;
    font-size: 0.95rem;
}

.phone-number-input {
    flex: 1;
}

.application-form .cta-button {
    width: 100%;
    margin-top: 10px;
    background: var(--gradient-1);
    color: white;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 20px;
}

.success-message {
    display: none;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.success-message.show {
    display: block;
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.success-message p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    color: white;
}

.footer-logo .logo-accent {
    color: var(--primary-color);
}

.footer p {
    margin: 5px 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .language-switcher {
        order: 3;
    }
}

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

    .logo-text {
        font-size: 1.4rem;
    }

    .hero {
        padding: 80px 20px 60px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .format-content {
        grid-template-columns: 1fr;
    }

    .cards,
    .safety-grid,
    .income-grid,
    .who-fits-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 30px 20px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
