/* Proxima Nova Font */
@font-face {
    font-family: "proxima-nova";
    src: url("https://use.typekit.net/af/e3ed45/00000000000000007735e609/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff2"),
         url("https://use.typekit.net/af/e3ed45/00000000000000007735e609/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff"),
         url("https://use.typekit.net/af/e3ed45/00000000000000007735e609/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 900;
    font-stretch: normal;
}

@font-face {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 400;
    src: url("https://use.typekit.net/af/705e94/00000000000000003b9b3062/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),
         url("https://use.typekit.net/af/705e94/00000000000000003b9b3062/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),
         url("https://use.typekit.net/af/705e94/00000000000000003b9b3062/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
    font-display: auto;
}

@font-face {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 600;
    src: url("https://use.typekit.net/af/576d53/00000000000000003b9b3066/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff2"),
         url("https://use.typekit.net/af/576d53/00000000000000003b9b3066/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff"),
         url("https://use.typekit.net/af/576d53/00000000000000003b9b3066/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("opentype");
    font-display: auto;
}

@font-face {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 700;
    src: url("https://use.typekit.net/af/949f99/00000000000000003b9b3068/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),
         url("https://use.typekit.net/af/949f99/00000000000000003b9b3068/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),
         url("https://use.typekit.net/af/949f99/00000000000000003b9b3068/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
    font-display: auto;
}

:root {
    --primary-blue: #1E56FF;
    --primary-green: #00E5A0;
    --primary-yellow: #FFD600;
    --primary-magenta: #E6007E;
    --dark-bg: #0A0F1E;
    --light-bg: #F5F7FA;
    --text-dark: #0A0F1E;
    --text-light: #6B7280;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'proxima-nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1.5rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.footer .logo-img {
    height: 80px;
}

.footer .logo-text {
    color: var(--white);
}

/* Navigation */
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.cta-btn {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--primary-magenta);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 86, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

/* Video Wrapper */
.bg-video-wrap {
    background: 50% / cover no-repeat;
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100vw;
    transition: .1s;
}

.bg-video-wrap::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.14) 30%, rgba(0, 0, 0, 0));
    content: "";
    height: 100%;
    opacity: 0.4;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.bg-video-wrap .iframe-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.bg-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

@media (min-aspect-ratio: 16/9) {
    .bg-video-wrap iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .bg-video-wrap iframe {
        width: 177.78vh;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .bg-video-wrap {
        max-height: 600px !important;
    }
}

/* Hero Content Section */
.hero-content-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1E56FF 0%, #00E5A0 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    animation: moveShape 20s infinite ease-in-out;
}

.shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--white);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-square {
    width: 200px;
    height: 200px;
    background: var(--white);
    transform: rotate(45deg);
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 250px solid var(--white);
    top: 50%;
    left: -100px;
    animation-delay: 10s;
}

@keyframes moveShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, -50px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.highlight {
    color: var(--primary-yellow);
    display: block;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta .btn {
    margin: 0.5rem;
}

.btn-outline-primary {
    border: 2px solid var(--white);
    color: var(--white) !important;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-blue) !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.stats-graphic {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 400px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-bar {
    flex: 1;
    margin: 0 0.5rem;
    background: linear-gradient(to top, var(--primary-yellow), var(--primary-green));
    border-radius: 10px 10px 0 0;
    height: var(--height);
    animation: growBar 1s ease var(--delay) both;
    position: relative;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary-magenta);
    border-radius: 50%;
}

@keyframes growBar {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-weight: 980;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--light-bg);
}

.about-heading {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.capabilities-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-green);
}

.capabilities-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}

.capabilities-intro {
    font-weight: 600;
    margin-bottom: 1rem;
}

.capabilities-list {
    list-style: none;
    padding: 0;
}

.capabilities-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.capabilities-list li:last-child {
    border-bottom: none;
}

.capabilities-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Services Section */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.icon-network {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.icon-search {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
}

.icon-mobile {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-blue));
}

.service-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Verticals Section */
.verticals-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f5f0 100%);
}

.verticals-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.verticals-intro h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.vertical-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.vertical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vertical-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.vertical-card ul {
    list-style: none;
    padding: 0;
}

.vertical-card ul li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.vertical-card ul li::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Partners Section */
.partners-section {
    background: var(--dark-bg);
    color: var(--white);
}

.partners-section .section-title {
    color: var(--white);
}

.partners-intro, .partners-story {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.partners-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.partners-box h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.partner-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partner-tag:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.lets-chat {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 800;
}

/* Team Section */
.team-section {
    background: var(--light-bg);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e7ff 0%, #cffafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-location {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.team-info h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Compliance Section */
.compliance-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-magenta) 100%);
    color: var(--white);
}

.compliance-section .section-title {
    color: var(--white);
}

.compliance-intro {
    font-size: 1.2rem;
    opacity: 0.95;
}

.compliance-features {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.compliance-item:last-child {
    margin-bottom: 0;
}

.compliance-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-bg);
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.compliance-text h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.compliance-text p {
    margin: 0;
    opacity: 0.9;
}

/* Careers Section */
.careers-section {
    background: var(--light-bg);
    text-align: center;
}

.careers-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 86, 255, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.contact-info {
    padding: 3rem 0;
}

.contact-detail h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-detail a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.footer p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 1;
    color: var(--primary-green);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-magenta);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 86, 255, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-section {
        padding: 80px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stats-graphic {
        height: 300px;
    }

    .bg-video-wrap {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }

    .bg-video-wrap {
        height: 50vh;
    }

    .hero-content-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-graphic {
        height: 250px;
        margin-top: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.bg-video-wrap {
    position: relative;
    width: 100%;
    height: 100vh; /* или конкретная высота, например 600px */
    overflow: hidden;
}

.bg-video-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* это главное - растягивает и сохраняет пропорции */
}