*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    
    --bg-dark: #030508;          
    --bg-card: rgba(255, 255, 255, 0.03); 
    --text-main: #ffffff;        
    --text-dim: #94a3b8;         
    
    
    --accent-blue: #3b82f6;      
    --accent-cyan: #30d5c2;      
    
    
    --glass-border: rgba(255, 255, 255, 0.08); 
    --glass-blur: blur(12px);                 
    
    
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.4);
    --glow-cyan: 0 0 20px rgba(48, 213, 194, 0.4);
    
    
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace; 
    
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

a, button {
    transition: var(--transition);
}

html {
    
    -webkit-font-smoothing: antialiased;
    
    -moz-osx-font-smoothing: grayscale;
    
    text-rendering: optimizeLegibility;
    
    -webkit-text-size-adjust: 100%;
}


body {
    line-height: 1.5;
    min-height: 100vh;
    
    -webkit-tap-highlight-color: transparent;
}


input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}


img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}


a {
    text-decoration: none;
    color: inherit;
}


ul, ol {
    list-style: none;
}


table {
    border-collapse: collapse;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 5, 8, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

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


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

.nav-list a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-list a:hover {
    color: var(--accent-cyan);
}


.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: 0.3s;
}

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


.header-request-consultation {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.header-request-consultation:hover {
    background: var(--accent-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}


.burger {
    display: none; 
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 5px var(--accent-cyan);
    transition: 0.3s;
}


@media (max-width: 1024px) {
    .nav, .header-request-consultation {
        display: none; 
    }

    .burger {
        display: flex; 
    }

    
    .nav.active {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(3, 5, 8, 0.98);
        padding: 80px 40px;
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        animation: slideIn 0.4s ease forwards;
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav.active .nav-list a {
        font-size: 18px;
    }
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.hero {
    padding: 160px 5% 100px;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}


.hero-left h4 {
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-left h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}


.hero-btn {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-consultation-btn {
    background: var(--accent-blue);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--glow-blue);
    transition: 0.3s;
}

.hero-btn a:last-child {
    border: 1px solid var(--glass-border);
    padding: 16px 32px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.hero-btn a:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
}


.hero-advantages-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.hero-advantages-list li p {
    font-size: 13px;
    color: var(--text-main);
    margin: 0;
    padding-left: 20px;
    position: relative;
}

.hero-advantages-list li p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}


.hero-right {
    position: relative;
}

.hero-right img {
    width: 100%;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.hero-right-list {
    position: absolute;
    bottom: -30px;
    left: -30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
}

.hero-right-list li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-right-list h3 {
    color: var(--accent-cyan);
    font-size: 24px;
    margin-bottom: 5px;
}

.hero-right-list p {
    color: var(--text-dim);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-btn, .hero-advantages-list {
        justify-content: center;
    }
    
    .hero-right {
        margin-top: 40px;
    }
    
    .hero-right-list {
        position: static;
        margin-top: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-btn {
        flex-direction: column;
    }
    
    .hero-advantages-list {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

.advantages {
    padding: 100px 5%;
    background: #030508;
}

.advantages-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}

.advantages-list li {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.advantages-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


.advantages-list li span {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    user-select: none;
    transition: color 0.3s ease;
}

.advantages-list li:hover span {
    color: rgba(59, 130, 246, 0.1);
}

.advantages-list h3 {
    color: var(--text-main);
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}


.advantages-list h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-cyan);
    margin-top: 15px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.advantages-list p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}


@media (max-width: 1024px) {
    .advantages-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-list {
        grid-template-columns: 1fr;
    }
    
    .advantages {
        padding: 60px 20px;
    }
    
    .advantages-list li {
        padding: 40px 30px;
    }
}

.how-we-work-coomercial-fit {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(3, 5, 8, 0.9) 100%);
}

.how-we-work-coomercial-fit-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}


.how-we-work h3, .commercial-fit h3 {
    color: var(--accent-cyan);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.how-we-work h2, .commercial-fit h2 {
    font-size: 36px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.how-we-work p, .commercial-fit p {
    color: var(--text-dim);
    margin-bottom: 40px;
}


.how-we-work-list {
    list-style: none;
    padding: 0;
    position: relative;
}


.how-we-work-list::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: var(--glass-border);
}

.how-we-work-list li {
    padding-left: 35px;
    margin-bottom: 30px;
    position: relative;
}


.how-we-work-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
    z-index: 1;
}

.how-we-work-list li p {
    color: var(--text-main);
    font-weight: 600;
    margin: 0;
}


.commercial-fit {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.commercial-fit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    list-style: none;
    padding: 0;
}

.commercial-fit-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 15px;
    transition: 0.3s;
}

.commercial-fit-list li:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}


.commercial-fit-list a {
    grid-column: span 2;
    margin-top: 30px;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.commercial-fit-list a::after {
    content: '→';
    transition: transform 0.3s;
}

.commercial-fit-list a:hover::after {
    transform: translateX(5px);
}


@media (max-width: 1024px) {
    .how-we-work-coomercial-fit-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .commercial-fit-list {
        grid-template-columns: 1fr;
    }
    
    .commercial-fit {
        padding: 30px 20px;
    }
    
    .commercial-fit-list a {
        grid-column: span 1;
    }
}

.cta {
    padding: 100px 5%;
    position: relative;
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(48, 213, 194, 0.1) 100%);
    border: 1px solid var(--glass-border);
    padding: 80px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}


.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    color: var(--accent-cyan);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    color: var(--text-dim);
    font-size: 18px;
    max-width: 500px;
}


.cta-btn {
    background: #fff;
    color: var(--bg-dark);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    transform: scale(1.05);
    background: var(--accent-cyan);
    color: #fff;
    box-shadow: var(--glow-cyan);
}


@media (max-width: 1024px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .cta-text p {
        margin: 0 auto 30px;
    }
}

@media (max-width: 480px) {
    .cta-wrapper {
        padding: 40px 20px;
        border-radius: 32px;
    }
    
    .cta-text h2 {
        font-size: 26px;
    }
    
    .cta-btn {
        width: 100%;
        padding: 18px 20px;
    }
}

footer {
    background: #020305;
    border-top: 1px solid var(--glass-border);
    padding: 80px 5% 40px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}


.footer-first .footer-logo img {
    height: 40px;
    margin-bottom: 25px;
}

.footer-first p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 15px;
    max-width: 320px;
}


footer h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.footer-second-list, 
.footer-third-list, 
.footer-fourth-list {
    list-style: none;
    padding: 0;
}

.footer-second-list li, 
.footer-third-list li, 
.footer-fourth-list li {
    margin-bottom: 15px;
}

footer a {
    color: var(--text-dim);
    font-size: 14px;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}


.footer-third-list a {
    display: block;
    word-break: break-all;
}

.footer-down {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright, 
.footer-category-business {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}


@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-first p {
        margin: 0 auto;
    }

    footer a:hover {
        padding-left: 0;
    }

    .footer-down {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, var(--bg-dark) 75%);
    position: relative;
    overflow: hidden;
}


.container-404 {
    max-width: 650px;
    width: 100%;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 10;
}


.error-404 h1 {
    font-size: clamp(100px, 18vw, 160px);
    font-weight: 900;
    margin: 0;
    line-height: 0.9;
    background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(48, 213, 194, 0.4));
    letter-spacing: -5px;
}


.error-404 h2 {
    font-size: 32px;
    color: #fff;
    margin: 20px 0;
    font-weight: 700;
    letter-spacing: 1px;
}


.error-404 p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}


.hero-btn-404 {
    display: flex;
    gap: 20px;
    justify-content: center;
}


.hero-consultation-btn-404 {
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}


.hero-btn-404 a:first-child {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: var(--glow-blue);
}


.hero-btn-404 a:last-child {
    border: 1px solid var(--glass-border);
    color: #fff;
    backdrop-filter: blur(5px);
}


.hero-consultation-btn-404:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    color: #fff;
}


.error-404::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    filter: blur(150px);
    opacity: 0.1;
    top: 10%;
    left: 5%;
}


@media (max-width: 768px) {
    .container-404 {
        padding: 40px 25px;
        border-radius: 30px;
    }

    .error-404 h2 {
        font-size: 24px;
    }

    .hero-btn-404 {
        flex-direction: column;
        gap: 15px;
    }

    .hero-consultation-btn-404 {
        width: 100%;
    }
}

.our-mission-and-trust {
    padding: 120px 5%;
    background: var(--bg-dark);
}

.our-mission-and-trust-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
}

.our-mission-and-trust-list li {
    padding: 40px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


.our-mission-and-trust-list li:hover {
    background: rgba(48, 213, 194, 0.03);
    border-color: var(--accent-cyan);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(48, 213, 194, 0.1);
}


.our-mission-and-trust-list span {
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.our-mission-and-trust-list h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.our-mission-and-trust-list p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    margin-top: auto; 
}


.our-mission-and-trust-list li::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    opacity: 0.5;
}


@media (max-width: 1024px) {
    .our-mission-and-trust-list {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    
    .our-mission-and-trust {
        padding: 80px 20px;
    }

    .our-mission-and-trust-list li {
        padding: 35px;
        border-radius: 30px;
    }
}

.our-leadership-profile {
    padding: 100px 5%;
    background: var(--bg-dark);
    text-align: center;
}

.our-leadership-profile h2 {
    font-size: clamp(32px, 5vw, 42px);
    color: #fff;
    margin-bottom: 60px;
    background: linear-gradient(to right, #fff, var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our-leadership-profile-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}

.our-leadership-profile-list li {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 32px;
    transition: all 0.4s ease;
    text-align: left;
}

.our-leadership-profile-list li:hover {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-10px);
}


.leadership-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: 0.4s;
    border: 1px solid var(--glass-border);
}

.our-leadership-profile-list li:hover .leadership-img {
    filter: grayscale(0%) contrast(1);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(48, 213, 194, 0.2);
}


.leadership-name {
    color: var(--accent-cyan);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.leadership-description {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 1100px) {
    .our-leadership-profile-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .our-leadership-profile-list {
        grid-template-columns: 1fr;
    }
    
    .our-leadership-profile {
        padding: 60px 20px;
    }

    .our-leadership-profile-list li {
        padding: 20px;
    }
}


.privacy-policy {
    max-width: 900px;
    margin: 120px auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    backdrop-filter: blur(15px);
    position: relative;
}


.privacy-policy h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 30px;
    text-align: left;
    background: linear-gradient(90deg, var(--accent-cyan), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.privacy-policy ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.privacy-policy li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    color: var(--text-dim);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.privacy-policy li:hover {
    background: rgba(48, 213, 194, 0.03);
    border-color: rgba(48, 213, 194, 0.3);
}

.privacy-policy li strong {
    color: var(--accent-cyan);
    margin-bottom: 5px;
    font-size: 15px;
}


.privacy-policy p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.privacy-policy h3 {
    color: #fff;
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-blue);
    padding-left: 15px;
}


.privacy-policy a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.privacy-policy a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan);
}


@media (max-width: 768px) {
    .privacy-policy {
        margin: 100px 15px;
        padding: 30px 20px;
    }
    
    .privacy-policy h1 {
        font-size: 32px;
    }
}

.services {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.services-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.services-item:hover {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.services-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
}


.services-item:nth-child(even) .services-list-wrapper {
    direction: rtl;
}
.services-item:nth-child(even) .services-list-right {
    direction: ltr; 
}

.services-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    filter: brightness(0.8);
    transition: 0.5s;
}

.services-item:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

.services-list-right {
    padding: 60px;
}


.services-up {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.services-up h4 {
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.services-up h5 {
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 14px;
}

.services-list-right h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.services-list-right p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}


.services-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.services-advantages p {
    background: rgba(48, 213, 194, 0.1);
    border: 1px solid rgba(48, 213, 194, 0.2);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}


.services-list-right a {
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.services-list-right a:hover {
    color: #fff;
    border-bottom: 1px solid var(--accent-blue);
    text-shadow: var(--glow-blue);
}


@media (max-width: 1024px) {
    .services-list-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-item:nth-child(even) .services-list-wrapper {
        direction: ltr;
    }

    .services-item img {
        height: 250px;
    }

    .services-list-right {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .services-list-right h3 {
        font-size: 24px;
    }
    
    .services-advantages {
        gap: 8px;
    }
}

.why-us-services {
    padding: 80px 2%;
    background: var(--bg-dark);
}

.why-us-services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    list-style: none;
    padding: 0;
}

.why-us-services-list li {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
}


.why-us-services-list li:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}


.why-us-services-list span {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.why-us-services-list span::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.why-us-services-list li:hover span::before {
    width: 40px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.why-us-services-list li:hover span {
    color: var(--accent-cyan);
}


.why-us-services-list h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-us-services-list p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 1100px) {
    .why-us-services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .why-us-services-list {
        grid-template-columns: 1fr;
    }
    
    .why-us-services {
        padding: 40px 20px;
    }

    .why-us-services-list li {
        padding: 30px;
    }
}

.contact { padding: 100px 5%; background: var(--bg-dark); }
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}


.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-cyan);
    background: rgba(48, 213, 194, 0.05);
}


.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--accent-blue);
    padding: 40px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--glow-blue);
}
.modal-options {
    display: grid;
    gap: 10px;
    margin: 25px 0;
}
.option-card {
    cursor: pointer;
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
}
.option-card:has(input:checked) {
    border-color: var(--accent-cyan);
    background: rgba(48, 213, 194, 0.1);
}
.option-card input { display: none; }


.success-message {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.5s ease;
}
.success-icon {
    font-size: 60px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.cookie-popup {
    position: fixed;
    bottom: -100%; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(3, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 25px 40px;
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
}


.cookie-popup.active {
    bottom: 30px;
}

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

.cookie-text p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-text strong {
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-text a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}


.cookie-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: var(--glow-blue);
}

.cookie-decline {
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
}


.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-blue);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}


@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup {
        padding: 30px 20px;
        bottom: -150%;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 4% 20px 4%;
    }

    .services {
        padding: 50px 4%;
    }
}

@media (max-width: 600px) {
    .footer-first .footer-logo img {
        margin: 0 auto;
        margin-bottom: 20px;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info span, .contact-form span {
    color: var(--accent-cyan);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.contact-info h2, .contact-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p, .contact-form p {
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 30px;
}

.contact-info-list li h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.6;
}

.contact-info-list li p {
    color: var(--text-main);
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: var(--glass-blur);
    position: relative;
}

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

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px 25px;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
    outline: none;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.contact-form .cta-btn {
    width: 100%;
    border: none;
    padding: 20px;
    background: var(--accent-blue);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--glow-blue);
    cursor: pointer;
}

.contact-form .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-info-list li p {
        font-size: 16px;
    }
}