/* ---------- RESET & БАЗА ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Inter', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

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

/* ---------- ШАПКА (современная, с прозрачностью) ---------- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 24px;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.logo span {
    font-weight: 600;
    background: linear-gradient(135deg, #f97316, #ea580c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.4px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    transition: 0.2s;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #f97316;
    transition: 0.2s;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: #f97316;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0f172a;
}

/* ---------- HERO (с градиентом и узором) ---------- */
.hero {
    background: linear-gradient(125deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    color: white;
    padding: 5rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(249, 115, 22, 0.1) 2%, transparent 2.5%);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    background: linear-gradient(to right, #ffffff, #fed7aa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 720px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #f97316;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* ---------- СТАТИСТИКА (стеклянные карточки) ---------- */
.stats-section {
    background: #f8fafc;
    padding: 3rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    border-radius: 40px;
    min-width: 150px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255,255,255,0.6);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
}

.stat-label {
    font-weight: 500;
    color: #334155;
    font-size: 0.9rem;
}

/* ---------- ОСНОВНЫЕ СЕКЦИИ ---------- */
.content-section {
    padding: 4rem 0;
}

.long-text p, .long-text h3 {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.long-text h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    color: #0f172a;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 32px;
    transition: all 0.25s;
    border: 1px solid #f1f5f9;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #fed7aa;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-block {
    background: linear-gradient(145deg, #fef9f5, #ffffff);
    text-align: center;
    padding: 3rem;
    border-radius: 48px;
    margin-top: 2rem;
    border: 1px solid #ffeee5;
}

.rounded-img {
    border-radius: 32px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ---------- СТРАНИЦА "О КОМПАНИИ" ---------- */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mission-box {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 32px;
    margin: 2rem 0;
    border-left: 6px solid #f97316;
}

.certs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.cert {
    background: #eef2ff;
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #1e3a8a;
}

/* ---------- СТРАНИЦЫ ТЕХНОЛОГИЙ, ПРОДУКТОВ, ПРИМЕНЕНИЙ ---------- */
.page-hero {
    background: #f1f5f9;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a, #334155);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.tech-grid, .apps-grid, .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-card, .app-item, .product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.25s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
}

.tech-card:hover, .app-item:hover, .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}

.tech-card img, .app-item img, .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tech-card h3, .app-item h3, .product-card h3 {
    padding: 1rem 1.2rem 0;
    font-size: 1.3rem;
}

.tech-card p, .app-item p, .product-card p {
    padding: 0.5rem 1.2rem 1.5rem;
    color: #475569;
}

.product-tag {
    display: inline-block;
    margin: 0 1.2rem 1.2rem;
    background: #fff1e6;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f97316;
}

/* ---------- НОВОСТИ ---------- */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 28px;
    border: 1px solid #edf2f7;
    transition: 0.2s;
}

.news-item:hover {
    border-color: #fed7aa;
    transform: translateX(4px);
}

.news-date {
    font-size: 0.8rem;
    color: #f97316;
    font-weight: 600;
    text-transform: uppercase;
}

.news-item h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

/* ---------- КАРЬЕРА ---------- */
.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
}

.job-openings {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 28px;
    margin-top: 2rem;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-item a {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
}

/* ---------- КОНТАКТЫ ---------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 32px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-family: inherit;
    transition: 0.2s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* ---------- ФУТЕР ---------- */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #f97316;
}

/* ---------- АДАПТИВ ---------- */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100% - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: 0.3s;
        padding: 2rem;
    }
    .nav.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .two-columns, .contact-wrapper, .footer-container, .careers-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        justify-content: center;
    }
    .stat-item {
        width: 160px;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1e2a3e;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eef2f6;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #0a2540;
    letter-spacing: -0.02em;
}
.logo span {
    font-weight: 600;
    color: #0066cc;
}
.logo-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: #5c6f87;
    letter-spacing: 0.3px;
}
.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-list a {
    text-decoration: none;
    font-weight: 500;
    color: #2c3e50;
    transition: 0.2s;
}
.nav-list a:hover, .nav-list a.active {
    color: #0066cc;
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a4b7a 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.btn-primary {
    background: #ff7f2a;
    color: white;
}
.btn-primary:hover {
    background: #e66a1a;
    transform: translateY(-2px);
}
.btn-secondary {
    background: white;
    color: #0a2540;
    border: 1px solid #ddd;
}
.btn-secondary:hover {
    background: #f0f4f9;
}

/* Stats */
.stats-section {
    background: #f8fafc;
    padding: 3rem 0;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
}
.stat-label {
    font-weight: 500;
    color: #2c3e50;
}

/* Content sections */
.content-section {
    padding: 4rem 0;
}
.long-text p, .long-text h3 {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}
.long-text h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    color: #0a2540;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}
.feature-card {
    background: #f9fbfd;
    padding: 1.8rem;
    border-radius: 24px;
    transition: 0.2s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.05);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-block {
    background: #eef2fa;
    text-align: center;
    padding: 3rem;
    border-radius: 40px;
    margin-top: 2rem;
}
.rounded-img {
    border-radius: 24px;
    width: 100%;
    height: auto;
}

/* Two columns */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.mission-box {
    background: #eef2fa;
    padding: 2rem;
    border-radius: 32px;
    margin: 2rem 0;
}
.certs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
.cert {
    background: #e9ecef;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 500;
}

/* Tech grid */
.tech-grid, .apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.tech-card, .app-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: 0.2s;
}
.tech-card img, .app-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.tech-card h3, .app-item h3 {
    padding: 1rem 1.2rem 0;
}
.tech-card p, .app-item p {
    padding: 0 1.2rem 1.5rem;
    color: #4a5b6e;
}
.page-hero {
    background: #f1f5f9;
    padding: 3rem 0;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.5rem;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 28px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    font-family: inherit;
}

/* Footer */
.footer {
    background: #0a2540;
    color: #cbd5e1;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2rem;
}
.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}
.footer-links ul {
    list-style: none;
}
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}
.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100% - 70px);
        background: white;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: 0.3s;
        padding: 2rem;
    }
    .nav.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .two-columns, .contact-wrapper, .footer-container {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        justify-content: center;
    }
}
/* Products page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.25s;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card h3 {
    padding: 1rem 1.2rem 0;
    font-size: 1.3rem;
}
.product-card p {
    padding: 0.5rem 1.2rem;
    color: #3a4c62;
}
.product-tag {
    display: inline-block;
    margin: 0 1.2rem 1.2rem;
    background: #eef2ff;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0066cc;
}

/* Careers page */
.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}
.benefits-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}
.job-openings {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 28px;
    margin-top: 2rem;
}
.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}
.job-item a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}
/* News page */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.news-item {
    background: #fefefe;
    padding: 1.8rem;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 4px solid #ff7f2a;
}
.news-date {
    font-size: 0.85rem;
    color: #ff7f2a;
    font-weight: 600;
    text-transform: uppercase;
}
.news-item h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
}
.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}
@media (max-width: 768px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}