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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    text-shadow: 
        0 0 10px rgba(0, 102, 255, 0.5),
        0 0 20px rgba(0, 102, 255, 0.3),
        0 0 30px rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    line-height: 1;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #888888;
    margin-top: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 102, 255, 0.1) 50%, transparent 70%);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::before {
    opacity: 1;
    animation: logoGlow 1.5s ease-in-out;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 15px rgba(0, 102, 255, 0.8),
        0 0 25px rgba(0, 102, 255, 0.5),
        0 0 35px rgba(0, 102, 255, 0.2);
}

@keyframes logoGlow {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    color: #0066ff;
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-select {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-select:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
        url('images/backgrounds/hero-bg-new.jpg');
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
    animation: metalShine 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes metalShine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}


.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-amount {
    background: linear-gradient(135deg, #0066ff 0%, #00aaff 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    position: relative;
    display: inline-block;
}

/* .highlight-amount::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -4px;
    right: -4px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 170, 255, 0.2));
    border-radius: 8px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
} */

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.6), 0 0 30px rgba(0, 170, 255, 0.3);
    }
}

.hero-earnings {
    font-size: 64px;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 15px;
    color: #cccccc;
}

.hero-task {
    font-size: 16px;
    margin-bottom: 40px;
    color: #999999;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff 0%, #0080ff 50%, #0066ff 100%);
    background-size: 200% 200%;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    animation: metalShimmer 0.6s ease-in-out;
}

@keyframes metalShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.stat-label {
    font-size: 14px;
    color: #cccccc;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%),
        radial-gradient(circle at 30% 30%, rgba(100, 100, 100, 0.1) 0%, transparent 50%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: 
        linear-gradient(135deg, #0066ff 0%, #0080ff 50%, #0066ff 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-color: #0066ff;
    box-shadow: 
        0 8px 25px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.feature-card-highlighted {
    background: #1a1a1a;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ffffff;
}

.feature-card-highlighted .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

/* Work Process Section */
.work-process {
    padding: 100px 0;
    background: #111111;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.process-steps-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.process-step {
    text-align: center;
}

.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: 
        linear-gradient(135deg, #0066ff 0%, #0080ff 50%, #0066ff 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 102, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.step-icon:hover {
    animation: metalShimmer 0.6s ease-in-out;
    box-shadow: 
        0 6px 20px rgba(0, 102, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.4);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #0066ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

.support-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.support-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0066ff;
}

.support-description {
    font-size: 16px;
    color: #cccccc;
}

/* Cases Section */
.cases {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-subtitle {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.case-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    margin: 20px;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.case-card:hover::before {
    left: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: #0066ff;
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.3);
}

.case-image {
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 10;
    border-radius: 16px 16px 0 0;
}

.case-card:hover .case-image img {
    transform: scale(1.15);
}

.case-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066ff, #0080ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 48px;
}

.case-content {
    padding: 25px;
}

.case-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.case-country {
    font-size: 16px;
    color: #0066ff;
    margin-bottom: 20px;
    font-weight: 500;
}

.case-earnings {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.earnings-amount {
    font-size: 32px;
    font-weight: 800;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.earnings-period {
    font-size: 16px;
    color: #cccccc;
    font-weight: 500;
}

.case-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.5;
}

/* Chart Section */
.chart-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.chart-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
}

.chart-container {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 170, 255, 0.05) 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#resultsChart {
    max-width: 100%;
    height: 300px;
}

.chart-description {
    font-size: 18px;
    color: #0066ff;
    font-weight: 600;
}

/* Application Form Section */
.application-form {
    padding: 100px 0;
    background: #111111;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%),
        radial-gradient(circle at 20% 20%, rgba(100, 100, 100, 0.1) 0%, transparent 50%);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 1s;
}

.form-container:hover::before {
    left: 100%;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}


.form-subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 16px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%),
        radial-gradient(circle at 10% 10%, rgba(100, 100, 100, 0.05) 0%, transparent 50%);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 
        0 0 0 2px rgba(0, 102, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%),
        radial-gradient(circle at 10% 10%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox {
    margin-top: 5px;
}

.checkbox-label {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.4;
}

.btn-submit {
    background: linear-gradient(135deg, #0066ff, #0080ff);
    color: #ffffff;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    background: linear-gradient(135deg, #0066ff, #0080ff);
    transform: none;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid #333333;
}

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

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    text-shadow: 
        0 0 8px rgba(0, 102, 255, 0.4),
        0 0 16px rgba(0, 102, 255, 0.2),
        0 0 24px rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 102, 255, 0.08) 50%, transparent 70%);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-logo:hover::before {
    opacity: 1;
    animation: logoGlow 1.5s ease-in-out;
}

.footer-logo:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 12px rgba(0, 102, 255, 0.6),
        0 0 20px rgba(0, 102, 255, 0.3),
        0 0 28px rgba(0, 102, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0066ff;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.why-us-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-us-item:hover::before {
    left: 100%;
}

.why-us-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #0066ff;
    box-shadow: 
        0 20px 40px rgba(0, 102, 255, 0.3),
        0 0 60px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0066ff, #0044cc, #0022aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(0, 102, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.why-us-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0066ff, #00aaff, #0066ff);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us-item:hover .why-us-icon::before {
    opacity: 1;
}

.why-us-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.why-us-item:hover .why-us-title {
    color: #0066ff;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.why-us-description {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.why-us-item:hover .why-us-description {
    color: #e0e0e0;
}

/* Cooperation Conditions Section */
.cooperation-conditions {
    padding: 80px 0;
    background: #0a0a0a;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.condition-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.condition-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 102, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.condition-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0066ff, #0044cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.condition-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.faq-item {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #0066ff;
    box-shadow: 
        0 20px 40px rgba(0, 102, 255, 0.3),
        0 0 60px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0066ff, #0044cc, #0022aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(0, 102, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0066ff, #00aaff, #0066ff);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-icon::before {
    opacity: 1;
}

.faq-question {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.faq-item:hover .faq-question {
    color: #0066ff;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.faq-answer {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-answer {
    color: #e0e0e0;
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.about-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #0066ff;
    box-shadow: 
        0 20px 40px rgba(0, 102, 255, 0.3),
        0 0 60px rgba(0, 102, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.main-card {
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.15), rgba(0, 102, 255, 0.05));
    border-color: rgba(0, 102, 255, 0.5);
}

.principle-card {
    background: linear-gradient(145deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    border-color: rgba(255, 193, 7, 0.5);
}

.mission-card {
    background: linear-gradient(145deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.05));
    border-color: rgba(40, 167, 69, 0.5);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0066ff, #0044cc, #0022aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.principle-card .card-icon {
    background: linear-gradient(135deg, #ffc107, #ff8f00, #ff6f00);
    box-shadow: 
        0 10px 30px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mission-card .card-icon {
    background: linear-gradient(135deg, #28a745, #20c997, #17a2b8);
    box-shadow: 
        0 10px 30px rgba(40, 167, 69, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(0, 102, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.principle-card:hover .card-icon {
    box-shadow: 
        0 15px 40px rgba(255, 193, 7, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mission-card:hover .card-icon {
    box-shadow: 
        0 15px 40px rgba(40, 167, 69, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0066ff, #00aaff, #0066ff);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.principle-card .card-icon::before {
    background: linear-gradient(45deg, #ffc107, #ffeb3b, #ffc107);
}

.mission-card .card-icon::before {
    background: linear-gradient(45deg, #28a745, #20c997, #28a745);
}

.about-card:hover .card-icon::before {
    opacity: 1;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-card:hover .card-title {
    color: #0066ff;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.principle-card:hover .card-title {
    color: #ffc107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.mission-card:hover .card-title {
    color: #28a745;
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

.card-description {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.about-card:hover .card-description {
    color: #e0e0e0;
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 40px;
}

.support-section {
    text-align: center;
    margin-top: 60px;
}

.support-section .btn {
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

/* Footer Contacts */
.footer-contacts {
    margin-top: 30px;
}

.footer-contacts-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

.contact-item i {
    color: #0066ff;
    width: 20px;
}

.contact-item span:first-of-type {
    color: #cccccc;
    font-weight: 500;
}

.contact-item span:last-of-type {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .why-us {
        padding: 60px 0;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .why-us-item {
        padding: 25px 15px;
    }
    
    .why-us-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .why-us-title {
        font-size: 16px;
    }
    
    .why-us-description {
        font-size: 12px;
    }
    
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .condition-item {
        padding: 20px 15px;
    }
    
    .condition-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .condition-title {
        font-size: 14px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .faq-question {
        font-size: 19px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-card {
        padding: 35px 25px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-description {
        font-size: 15px;
    }
    
    .why-us-item {
        padding: 30px 20px;
    }
    
    .why-us-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .why-us-title {
        font-size: 20px;
    }
    
    .why-us-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-us-item {
        padding: 20px 15px;
    }
    
    .why-us-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .why-us-title {
        font-size: 14px;
    }
    
    .why-us-description {
        font-size: 11px;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .condition-item {
        padding: 15px 10px;
    }
    
    .condition-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .condition-title {
        font-size: 12px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .highlight-amount {
        font-size: 40px;
    }
    
    .hero-earnings {
        font-size: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps,
    .process-steps-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-card {
        margin-bottom: 20px;
    }
    
    .case-image {
        /* Убираем фиксированную высоту для мобильных */
    }
    
    .chart-section {
        padding: 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


@media (max-width: 480px) {
    .process-steps,
    .process-steps-row-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .highlight-amount {
        font-size: 32px;
    }
    
    .hero-earnings {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
}
