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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Colors */
:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --dark: #0a0a0a;
    --dark-light: #141414;
    --dark-lighter: #1a1a1a;
    --gray: #525252;
    --gray-light: #a3a3a3;
}

.text-orange {
    color: var(--orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #404040;
}

.btn-outline:hover {
    background: #262626;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #262626;
}

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

.logo img {
    height: 44px;
}

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

.nav-link {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid #262626;
}

.nav-mobile.active {
    display: flex;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.flags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.flag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(38, 38, 38, 0.8);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: #a3a3a3;
    border: 1px solid #404040;
}

.flag-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: #a3a3a3;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-benefits {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(38, 38, 38, 0.8);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #a3a3a3;
}

.benefit-item svg {
    color: var(--orange);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--orange);
}

.stat-card:nth-child(2),
.stat-card:nth-child(4) {
    transform: translateY(24px);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 4px;
}

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

.badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: var(--orange);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.3);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #737373;
    max-width: 600px;
    margin: 0 auto;
}

/* Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.client-card {
    background: var(--dark-light);
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
    position: relative;
}

.client-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-4px);
}

.client-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 20px;
}

.client-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.client-desc {
    font-size: 14px;
    color: #737373;
    margin-bottom: 16px;
    line-height: 1.6;
}

.client-features {
    list-style: none;
}

.client-features li {
    font-size: 13px;
    color: #a3a3a3;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.client-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

/* Delivery */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.delivery-card {
    background: var(--dark);
    border: 1px solid #262626;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.delivery-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.delivery-header {
    padding: 24px;
    color: #fff;
}

.delivery-auto {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.delivery-air {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.delivery-rail {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.delivery-sea {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.delivery-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.delivery-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.9;
}

.delivery-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.delivery-price {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.delivery-body {
    padding: 24px;
}

.delivery-desc {
    font-size: 14px;
    color: #737373;
    margin-bottom: 16px;
}

.delivery-features {
    list-style: none;
    margin-bottom: 20px;
}

.delivery-features li {
    font-size: 13px;
    color: #a3a3a3;
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.delivery-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: var(--dark-light);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: all 0.3s;
}

.advantage-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 16px;
}

.advantage-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.advantage-desc {
    font-size: 13px;
    color: #737373;
    line-height: 1.5;
}

.advantage-num {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #525252;
    font-weight: 600;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--dark);
    border: 1px solid #262626;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.service-image {
    height: 140px;
    background: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #525252;
    transition: all 0.3s;
}

.service-card:hover .service-image {
    color: rgba(249, 115, 22, 0.5);
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--orange);
}

.service-desc {
    font-size: 13px;
    color: #737373;
    margin-bottom: 14px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    margin-bottom: 14px;
}

.service-features li {
    font-size: 12px;
    color: #525252;
    padding: 2px 0;
    padding-left: 12px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
}

.service-link {
    color: var(--orange);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.service-link:hover {
    text-decoration: underline;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: #262626;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--dark-light);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin: 0 auto 16px;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: #737373;
}

/* Geography */
.geography-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-block {
    background: var(--dark);
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 32px;
}

.map-visual {
    position: relative;
    height: 320px;
    margin-bottom: 24px;
}

.map-china {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 16px;
}

.map-flag {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.map-cities {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.map-city {
    font-size: 13px;
    color: #a3a3a3;
}

.map-destinations {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-dest {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.dest-ru {
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid #3b82f6;
}

.dest-kz {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid #22c55e;
}

.dest-kg {
    background: rgba(234, 179, 8, 0.15);
    border: 2px solid #eab308;
}

.map-hub {
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.map-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 13px;
    color: #737373;
}

.map-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.dot-red {
    background: #ef4444;
}

.dot-orange {
    background: var(--orange);
}

.cities-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.country-card {
    background: var(--dark);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 20px;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    margin-bottom: 12px;
    font-weight: 600;
}

.country-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.city-tag {
    background: #262626;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    color: #a3a3a3;
}

.tracking-card {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.tracking-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.tracking-card p {
    font-size: 13px;
    color: #737373;
    margin-bottom: 12px;
}

.tracking-link {
    color: var(--orange);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.tracking-link:hover {
    text-decoration: underline;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.img-col-offset {
    padding-top: 48px;
}

.about-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.about-brand {
    background: var(--dark-light);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.brand-name {
    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 4px;
}

.brand-slogan {
    font-size: 13px;
    color: #737373;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-size: 16px;
    color: #a3a3a3;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #d4d4d4;
}

.about-feature svg {
    color: var(--orange);
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.about-stat {
    background: var(--dark-light);
    border: 1px solid #262626;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.about-stat svg {
    color: var(--orange);
    margin-bottom: 8px;
}

.about-stat .stat-value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.about-stat .stat-label {
    font-size: 11px;
    color: #737373;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid #262626;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 44px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #262626;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--orange);
    color: #fff;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-contacts {
    list-style: none;
}

.footer-contacts li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contacts svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contacts .contact-label {
    display: block;
    font-size: 12px;
    color: #525252;
    margin-bottom: 2px;
}

.footer-contacts a,
.footer-contacts span {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 14px;
}

.footer-contacts a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid #262626;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: #525252;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #525252;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #a3a3a3;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 44px;
    }
    
    .clients-grid,
    .delivery-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        display: none;
    }
    
    .about-grid,
    .geography-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header .btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .clients-grid,
    .delivery-grid,
    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-line {
        display: none;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .img-col-offset {
        padding-top: 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
