* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #121f33 100%);
    color: #333333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 120px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;    background: linear-gradient(135deg, #1e88e5, #1565c0);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(30, 136, 229, 0.3);
    transition: transform 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-join {
    background: white;
    color: #1e88e5;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;    
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1096e6, #2c50cb);
}

.btn-primary {
    text-decoration: none;
    background: linear-gradient(135deg, #1096e6, #2c50cb);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 350px;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 150, 230, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1096e6;
    padding: 1rem 2rem;
    border: 1px solid #1096e6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 350px;
    text-align: center;
}

.btn-secondary:hover {
    background: #1096e6;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.main-content {
    margin-top: 120px;
}

.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.text-blue {
    background: #1096e6;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left p {
    font-size: 1.4rem;
    color: #ebebeb;
    width: 105%;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-features {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.client-stats-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-stats-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.client-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.client-stat-card {
    position: relative;
    background: rgba(16, 150, 230, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 150, 230, 0.5);
    box-shadow: 0px 0px 10px rgba(16, 150, 230, 0.5);
    text-align: center;
    height: 160px;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1096e6;
    text-align: center;
}

.client-stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 400;
    text-align: center;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
}

.client-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(16, 150, 230, 0.1);
    box-shadow: 0px 10px 30px rgba(16, 150, 230, 0.2);
    border-color: #1096e6;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 100%;
    justify-content: space-between;
}

.stats-container .stat-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 160px;
}

.stat-card {
    background: rgba(16, 150, 230, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 150, 230, 0.5);
    text-align: center;
    box-shadow: 0px 0px 10px rgba(16, 150, 230, 0.5);
    min-height: 200px;
    min-width: 200px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.stat-card:hover {
    background: rgba(16, 150, 230, 0.1);
    box-shadow: 0px 10px 30px rgba(16, 150, 230, 0.2);
    border-color: #1096e6;
}

.stat-icon {
    color: #1096e6;
    font-size: 2.3rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: absolute;
    bottom: 2rem;
    left: 1rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    text-overflow: ellipsis;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
}

.features {
    padding: 4rem 2rem;
    background: rgba(10, 10, 10, 0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(20, 20, 20, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #1096e6;
    box-shadow: 0 10px 30px rgba(16, 150, 230, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1096e6, #2c50cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.page-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: #1096e6;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    padding: 4rem 2rem;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1096e6;
    text-align: center;
}

.service-category h2 i {
    margin-right: 1rem;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    border-radius: 12px;
    padding: 2rem;
    background: rgba(16, 150, 230, 0.05);
    border: 1px solid rgba(16, 150, 230, 0.5);
    box-shadow: 0px 0px 10px rgba(16, 150, 230, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #1096e6;
    box-shadow: 0 15px 40px rgba(16, 150, 230, 0.2);
    background: rgba(16, 150, 230, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1096e6, #2c50cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #b0b0b0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1096e6;
    font-weight: bold;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1096e6;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.cta-section {
    padding: 4rem 2rem;
    background: rgba(15, 15, 15, 0.9);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.stats-section {
    padding: 4rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #1096e6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.clients-showcase {
    padding: 4rem 2rem;
}

.clients-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.client-card {
    background: rgba(16, 150, 230, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(16, 150, 230, 0.5);
    box-shadow: 0px 0px 10px rgba(16, 150, 230, 0.5);
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    background: rgba(16, 150, 230, 0.1);
    box-shadow: 0px 10px 30px rgba(16, 150, 230, 0.2);
    border-color: #1096e6;
}

.client-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    overflow: hidden;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.client-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.client-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.client-stats span {
    background: rgba(16, 150, 230, 0.2);
    color: #1096e6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.client-stats i {
    margin-right: 0.5rem;
}

.client-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.client-services {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-tag {
    background: rgba(44, 80, 203, 0.2);
    color: #2c50cb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.testimonials {
    padding: 4rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

.testimonials {
    overflow: hidden;
    position: relative;
}

@keyframes scroll {
    0% {
        transform: translateX(-4%);
    }
    100% {
        transform: translateX(-75%);
    }
}

.testimonial-card {
    background: rgba(16, 150, 230, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(16, 150, 230, 0.5);
    box-shadow: 0px 0px 10px rgba(16, 150, 230, 0.5);
    width: 500px;
    flex-shrink: 0;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content i {
    color: #1096e6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.team-section {
    padding: 4rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(16, 150, 230, 0.05);
    border: 1px solid rgba(16, 150, 230, 0.5);
    box-shadow: 0px 0px 10px rgba(16, 150, 230, 0.5);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #1096e6;
    background: rgba(16, 150, 230, 0.1);
    box-shadow: 0px 10px 30px rgba(16, 150, 230, 0.2);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-role {
    color: #1096e6;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.member-info p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-values {
    padding: 4rem 2rem;
}

.team-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(16, 150, 230, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(16, 150, 230, 0.5);
    box-shadow: 0px 0px 10px rgba(16, 150, 230, 0.5);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1096e6, #2c50cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #ffffff ;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu.active::after {
    opacity: 1;
    animation: swipeHint 2s ease-in-out infinite;
}

@keyframes swipeHint {
    0%, 100% { transform: translateX(0); opacity: 0.3; }
    50% { transform: translateX(-10px); opacity: 0.7; }
}

.about-wip {
    padding: 25rem 2rem;
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
}

.disclaimer-card {
    background: rgba(221, 45, 45, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(221, 45, 45, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-card h3 {
    font-size: 1.5rem;
    color: #dd2d2d;
    margin-bottom: 1rem;
}

.disclaimer-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disclaimer-card i {
    color: #dd2d2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline;
    margin-bottom: 1rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .navbar {
        top: 15px;
        width: calc(100% - 20px);
        padding: 0.75rem 1.5rem;
    }
    
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-logo {
        position: static;
        transform: none;
    }
    
    .main-content {
        margin-top: 100px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        width: 90%;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
      .phone-mockup img {
        max-height: 400px;
    }

    .hero-right {
        display: none;
    }    
    
    .nav-menu {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 999;
        overflow-y: auto;
        list-style: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.4s ease;
        width: 90%;
        max-width: 300px;
    }
    
    .nav-menu.active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 12px;
        margin: 0;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        border: 1px solid transparent;
    }
    
    .nav-link:hover {
        background: rgba(16, 150, 230, 0.15);
        transform: translateY(-2px);
        color: #1096e6;
        border-color: rgba(16, 150, 230, 0.3);
        box-shadow: 0 5px 20px rgba(16, 150, 230, 0.2);
    }
    
    .nav-link.active {
        background: rgba(16, 150, 230, 0.2);
        color: #1096e6;
        border-color: rgba(16, 150, 230, 0.4);
    }
    
    .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 60%;
        background: linear-gradient(180deg, #1096e6, #2c50cb);
        border-radius: 0 4px 4px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .services-row,
    .clients-grid,
    .team-grid,
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-content,
    .internship-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .culture-highlights,
    .internship-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .position-card {
        min-width: unset;
    }
    
    .position-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .position-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-link.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(16, 150, 230, 0.1), rgba(44, 80, 203, 0.1));
        border-radius: 12px;
        z-index: -1;
        animation: activeGlow 2s ease-in-out infinite alternate;
    }
    
    @keyframes activeGlow {
        0% { opacity: 0.5; }
        100% { opacity: 1; }
    }
    
    .nav-menu.active li {
        animation: slideInFromLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    
    @keyframes slideInFromLeft {
        0% {
            transform: translateX(-30px) translateY(20px);
            opacity: 0;
        }
        100% {
            transform: translateX(0) translateY(0);
            opacity: 1;
        }
    }
}

@media (max-width: 768px) {
    .client-stats-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .client-stat-card {
        width: 150%;
        height: 100%;
        min-height: 120px;
    }

    .client-stat-number {
        font-size: 5rem;
    }

    .client-stat-label {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .client-stats-grid {
        gap: 1.5rem;
        justify-items: center;
        padding: 0 1rem;
    }
    
    .client-stats {
        gap: 2rem;
    }
    
    .client-stat-card {
        margin: 0;
        width: 150%;
        padding: 1.25rem;
        min-height: 100px;
    }
    
    .stats-container {
        gap: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.5rem;
    }
    
    .client-stats-section {
        padding: 3rem 1rem;
    }
    
    .client-stats-section .container {
        padding: 0;
    }
}

.footer {
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-slogan {
    color: #b0b0b0;
    font-size: 1rem;
    margin: 0.5rem 0 2rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #1096e6;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1096e6, #2c50cb);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-brand-text h3 {
        font-size: 1.3rem;
    }
    
    .footer-slogan {
        font-size: 0.9rem;
        margin: 0.5rem 0 1.5rem;
    }
}

.privacy-content {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.privacy-section:hover {
    transform: translateY(-5px);
    border-color: #1096e6;
    box-shadow: 0 15px 40px rgba(16, 150, 230, 0.2);
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1096e6, #2c50cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.privacy-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.privacy-section p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.privacy-list {
    list-style: none;
    margin-bottom: 2rem;
}

.privacy-list li {
    color: #b0b0b0;
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1096e6;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-list li strong {
    color: #ffffff;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(16, 150, 230, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #1096e6;
}

.contact-item i {
    color: #1096e6;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-item span {
    color: #ffffff;
    font-weight: 500;
}

.privacy-footer {
    background: rgba(15, 15, 15, 0.9);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.policy-meta {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-meta p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-summary h3 {
    color: #1096e6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-summary p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1rem;
    }
    
    .privacy-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .privacy-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section p {
        font-size: 1rem;
    }
    
    .privacy-list li {
        font-size: 0.95rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .privacy-footer {
        padding: 2rem;
    }
}