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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1F2937;
    background-color: #FFFFFF;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.bg-decoration-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-radius: 50%;
    filter: blur(80px);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.bg-decoration-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
    filter: blur(70px);
    bottom: -150px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.bg-decoration-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-radius: 50%;
    filter: blur(60px);
    top: 50%;
    left: 50%;
    animation: float-center 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes float-center {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    33% {
        transform: translate(calc(-50% + 30px), calc(-50% - 30px)) scale(1.1);
    }
    66% {
        transform: translate(calc(-50% - 20px), calc(-50% + 20px)) scale(0.9);
    }
}

@media (max-width: 768px) {
    .bg-decoration {
        opacity: 0.3;
    }
    
    .bg-decoration-1,
    .bg-decoration-2,
    .bg-decoration-3 {
        width: 300px;
        height: 300px;
    }
}

/* Ensure content is above decorations */
.header,
.hero-section,
.clients-section,
.services-section,
.iso-section,
.pricing-section,
.why-section,
.team-section,
.faq-section,
.footer,
.stats-section-blue,
.services-section-new,
.why-section-new {
    position: relative;
    z-index: 1;
}

/* ============================================
   NEW SECTIONS STYLES
   ============================================ */

/* Trusted Members Section (Uz3_Ic) */
.Uz3_Ic {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    padding: 2rem 2.4rem;
    border-radius: 24px;
    background: #F8F8F8;
    margin: 2rem 0 0;
    max-width: 100%;
    position: relative;
    overflow: visible;
    align-items: center;
    justify-items: flex-start;
}

.Uz3_Ic-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    width: 100%;
}

.HtuBmR {
    margin: 0;
    padding: 0;
    padding-left: 2.4rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z" fill="%2310B981"/><path d="M9 12l2 2 4-4" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') 0 center no-repeat;
    background-size: 20px 20px;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #111827;
    display: flex;
    align-items: center;
    align-self: flex-start;
}

.qQncdT {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
    align-self: flex-start;
    width: 100%;
}

.qQncdT li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.qQncdT li:hover {
    transform: scale(1.05);
}

.qQncdT li img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.qQncdT li:hover img {
    transform: scale(1.1);
}

.qQncdT li span {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
    color: #111827;
    text-align: center;
}

.Uz3_Ic-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: none;
}

.Uz3_Ic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .Uz3_Ic {
        padding: 1.8rem 2rem;
        gap: 1.5rem;
        justify-items: flex-start;
    }
    
    .Uz3_Ic-content {
        gap: 1rem;
        align-items: flex-start;
    }
    
    .HtuBmR {
        font-size: 1.1rem;
        padding-left: 2rem;
        background-size: 18px 18px;
        align-self: flex-start;
    }
    
    .qQncdT {
        gap: 1rem;
        justify-content: flex-start;
        align-self: flex-start;
    }
    
    .qQncdT li img {
        width: 44px;
        height: 44px;
    }
    
    .qQncdT li span {
        font-size: 0.95rem;
    }
    
    .Uz3_Ic-image {
        display: block;
        width: 100px;
        height: 100px;
    }
}

/* Stats Section Blue */
.stats-section-blue {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.stats-section-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid-blue {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card-blue {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    padding: 1.8rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
}

.stat-card-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card-blue:hover::before {
    left: 100%;
}

.stat-card-blue:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.stat-value-blue {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #fff;
}

.stat-label-blue {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.6rem;
}

.stat-logos-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
    min-height: 4rem;
}

.stat-logos-blue img {
    height: 2.4rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stat-card-blue:hover .stat-logos-blue img {
    opacity: 1;
    transform: scale(1.1);
}

/* Services Section New */
.services-section-new {
    background: #F9FAFB;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.services-section-new .section-title {
    text-align: center;
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: #111827;
}

.services-section-new .section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: #6B7280;
    font-weight: 400;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.service-card-new {
    display: flex;
    flex-direction: column;
    padding: 1.6rem;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: 100%;
}

.service-card-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-card-new.service-card-dark {
    background: #1F2937;
    color: #fff;
}

.service-icon-new {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    margin-left: -0.6rem;
    margin-top: -0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DBEAFE;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.service-card-new.service-card-dark .service-icon-new {
    background: rgba(255, 255, 255, 0.15);
}

.service-icon-new img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-icon-new img {
    transform: scale(1.1);
}

.service-title-new {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-card-new.service-card-dark .service-title-new {
    color: #FFFFFF;
}

.service-description-new {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-card-new.service-card-dark .service-description-new {
    color: rgba(255, 255, 255, 0.85);
}

.service-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #2563EB;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 0.8rem;
}

.service-card-new.service-card-dark .service-link-new {
    color: #FFFFFF;
}

.service-link-new:hover {
    color: #1D4ED8;
    gap: 0.6rem;
}

.service-card-new.service-card-dark .service-link-new:hover {
    color: #E5E7EB;
}

.service-link-new .icon-arrow-right {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-link-new:hover .icon-arrow-right {
    transform: translateX(4px);
}

/* Why Section New */
.why-section-new {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.why-grid-new {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.why-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.why-card-new.why-card-image {
    width: 100%;
}

.why-card-new {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 1.6rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.why-card-new:hover::before {
    opacity: 1;
}

.why-card-new::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.why-card-new:hover::after {
    opacity: 1;
}

.why-card-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #DBEAFE;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
}

.why-card-new.why-card-dark {
    background: linear-gradient(135deg, #323d46 0%, #1F2937 100%);
    color: #fff;
    border-color: #4B5563;
}

.why-card-new.why-card-dark::before {
    opacity: 1;
}

.why-card-new.why-card-dark:hover {
    background: linear-gradient(135deg, #374151 0%, #111827 100%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 6px 12px rgba(0, 0, 0, 0.2);
}

.why-card-new.why-card-large {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-card-new.why-card-large .why-image-wrapper-small {
    align-self: flex-start;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.why-card-new.why-card-large .why-title-new {
    margin-bottom: 0.8rem;
}

.why-card-new.why-card-large .why-list-new {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    flex: 1;
}

.why-card-new.why-card-large .why-list-new li {
    display: flex;
    align-items: center;
    min-height: 1.5rem;
    width: 100%;
    padding-left: 2rem;
}

.why-card-new.why-card-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1.6rem;
}

.why-card-new.why-card-image .why-image-wrapper {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    min-width: 180px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.why-image-wrapper {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    min-width: 180px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.why-card-new:hover .why-image-wrapper,
.why-card-new.why-card-image:hover .why-image-wrapper {
    transform: scale(1.05);
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-image-wrapper-small {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.why-card-new:hover .why-image-wrapper-small {
    transform: scale(1.05);
}

.why-image-wrapper-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-title-new {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.why-card-new.why-card-dark .why-title-new {
    color: #fff;
}

.why-list-new {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.why-list-new li {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #374151;
    padding-left: 2rem;
    position: relative;
    display: flex;
    align-items: center;
}

.why-list-new li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.2rem;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.why-card-new.why-card-dark .why-list-new li {
    color: rgba(255, 255, 255, 0.9);
}

.why-card-new.why-card-dark .why-list-new li::before {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.why-description-new {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.why-card-new.why-card-dark .why-description-new {
    color: rgba(255, 255, 255, 0.9);
}

.why-note-new {
    font-size: 1rem;
    line-height: 1.4;
    color: #6B7280;
    margin-bottom: 1rem;
}

.why-card-new.why-card-dark .why-note-new {
    color: rgba(255, 255, 255, 0.7);
}

.btn-discuss-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.btn-discuss-new:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    gap: 0.8rem;
}

.btn-discuss-new .icon-arrow-right {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-discuss-new:hover .icon-arrow-right {
    transform: translateX(4px);
}

.btn-contact-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    background: transparent;
    color: #2563EB;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #2563EB;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    cursor: pointer;
}

.btn-contact-new:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: #fff;
    border-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    gap: 0.8rem;
}

.btn-contact-new .icon-arrow-right {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-contact-new:hover .icon-arrow-right {
    transform: translateX(4px);
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .stats-section-blue {
        padding: 3rem 0;
        margin-bottom: 5rem;
    }

    .stats-grid-blue {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .services-section-new {
        padding: 3rem 0;
        margin-bottom: 5rem;
    }

    .services-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .Uz3_Ic {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .Uz3_Ic-image {
        display: none;
    }

    .why-section-new {
        padding: 3rem 0;
        margin-bottom: 5rem;
    }

    .why-grid-new {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .why-bottom-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-card-new.why-card-image {
        flex-direction: column;
        padding: 1.6rem;
        gap: 1.5rem;
    }

    .why-image-wrapper {
        width: 100%;
        max-width: 250px;
        height: auto;
        min-width: auto;
        margin: 0 auto;
    }
    
    .why-image-wrapper-small {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }
    
    .why-title-new {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .why-list-new {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .why-list-new li {
        font-size: 1rem;
        padding-left: 1.8rem;
    }
    
    .why-description-new {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .why-note-new {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .btn-discuss-new,
    .btn-contact-new {
        font-size: 1rem;
        padding: 0.8rem 1.6rem;
    }
}

@media (max-width: 768px) {
    .Uz3_Ic {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
        border-radius: 12px;
        margin: 1.5rem 0 0;
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    
    .Uz3_Ic-content {
        gap: 0.6rem;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .HtuBmR {
        font-size: 0.95rem;
        padding-left: 1.8rem;
        background-size: 16px 16px;
        align-self: center;
        width: 100%;
        text-align: center !important;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .qQncdT {
        gap: 0.6rem;
        width: 100%;
        justify-content: center;
        align-self: center;
    }

    .qQncdT li {
        min-width: auto;
        padding: 0;
        flex: 0 0 auto;
    }

    .qQncdT li img {
        width: 32px;
        height: 32px;
    }

    .qQncdT li span {
        font-size: 0.8rem;
    }

    .stats-section-blue {
        padding: 2rem 0;
        margin-bottom: 2.5rem;
    }

    .stats-grid-blue {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card-blue {
        padding: 1.5rem;
        min-height: 120px;
    }

    .stat-value-blue {
        font-size: 2.4rem;
    }

    .stat-label-blue {
        font-size: 1.2rem;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        justify-items: center;
    }

    .team-member:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 280px;
        justify-self: center;
    }

    .stat-logos-blue {
        gap: 1.2rem;
    }

    .stat-logos-blue img {
        height: 2rem;
    }

    .services-section-new {
        padding: 2.4rem 0;
        margin-bottom: 4rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .why-bottom-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-card-new {
        padding: 1.4rem;
        flex-direction: column !important;
    }
    
    .why-card-new.why-card-image {
        flex-direction: column !important;
        padding: 1.4rem;
        gap: 1.2rem;
        align-items: stretch;
    }
    
    .why-card-new.why-card-image .why-image-wrapper {
        order: 1;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-width: auto;
        min-height: auto;
        align-self: stretch;
        margin: 0 0 1rem 0;
    }
    
    .why-card-new.why-card-image .why-content {
        order: 2;
        width: 100%;
        align-items: stretch;
    }
    
    .why-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-width: auto;
        align-self: stretch;
        margin: 0 0 1rem 0;
    }
    
    .why-content {
        width: 100%;
        align-items: stretch;
    }
    
    .why-image-wrapper-small {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
        align-self: flex-start;
    }
    
    .why-card-new.why-card-large,
    .why-card-new.why-card-small {
        align-items: flex-start;
    }
    
    .why-title-new {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .why-list-new {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .why-list-new li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
    }
    
    .why-description-new {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .why-note-new {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .btn-discuss-new,
    .btn-contact-new {
        font-size: 0.95rem;
        padding: 0.7rem 1.4rem;
    }
    
    .Uz3_Ic {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
        border-radius: 16px;
    }
    
    .Uz3_Ic-content {
        gap: 0.8rem;
    }
    
    .HtuBmR {
        font-size: 1rem;
        padding-left: 2rem;
        background-size: 18px 18px;
    }
    
    .qQncdT {
        gap: 0.8rem;
    }
    
    .qQncdT li img {
        width: 36px;
        height: 36px;
    }
    
    .qQncdT li span {
        font-size: 0.85rem;
    }

    .service-card-new {
        padding: 2rem;
    }

    .service-icon-new {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.2rem;
    }

    .service-title-new {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .service-description-new {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .service-link-new {
        font-size: 1.3rem;
    }

    .why-section-new {
        padding: 2.4rem 0;
        margin-bottom: 4rem;
    }

    .why-grid-new {
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .why-bottom-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .why-card-new {
        padding: 2rem;
    }

    .why-card-new.why-card-image {
        flex-direction: column;
    }

    .why-image-wrapper {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 0 auto;
    }

    .why-image-wrapper-small {
        width: 100px;
        height: 100px;
        margin: 0 auto 1.2rem;
    }

    .why-title-new {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .why-list-new {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .why-list-new li {
        font-size: 1.3rem;
    }

    .why-description-new {
        font-size: 1.3rem;
        text-align: center;
    }

    .why-note-new {
        font-size: 1.1rem;
        text-align: center;
    }

    .btn-discuss-new,
    .btn-contact-new {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .Uz3_Ic {
        padding: 1.2rem;
        gap: 1.2rem;
    }

    .HtuBmR {
        font-size: 1.2rem;
        padding-left: 2.5rem;
        background-size: auto 1.8rem;
    }

    .qQncdT li {
        min-width: 100%;
        padding: 6px 8px;
    }

    .qQncdT li img {
        max-width: 2rem;
    }

    .qQncdT li span {
        font-size: 1.1rem;
    }

    .stat-card-blue {
        padding: 1.6rem;
    }

    .stat-value-blue {
        font-size: 2rem;
    }

    .stat-label-blue {
        font-size: 1.1rem;
    }

    .service-card-new {
        padding: 1.6rem;
    }

    .service-icon-new {
        width: 3.5rem;
        height: 3.5rem;
    }

    .service-title-new {
        font-size: 1.3rem;
    }

    .service-description-new {
        font-size: 1.2rem;
    }

    .why-card-new {
        padding: 1.6rem;
    }

    .why-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .why-image-wrapper-small {
        width: 80px;
        height: 80px;
    }

    .why-title-new {
        font-size: 1.4rem;
    }

    .why-list-new li {
        font-size: 1.2rem;
    }

    .why-description-new {
        font-size: 1.2rem;
    }
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid #E5E7EB;
    z-index: 1000;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1E40AF;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.nav-item:hover {
    color: #1F2937;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: #374151;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.mobile-menu-actions {
    display: none;
}

.btn-start-check {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-start-check::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-start-check:hover::before {
    left: 100%;
}

.btn-start-check:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.language-selector-wrapper {
    position: relative;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.language-selector:hover {
    background: #F9FAFB;
}

.language-flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-option:hover {
    background: #F9FAFB;
}

.language-option .flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Main Content */
.main {
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 30%, #BFDBFE 70%, #E0E7FF 100%);
    padding: 120px 40px 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: center;
    min-height: auto;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 32px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Hero Left Side */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
    letter-spacing: -0.02em;
    text-align: left;
    width: 100%;
    margin: 0;
}

.hero-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.5;
    max-width: 500px;
    text-align: left;
    margin: 0;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 4px;
}

.btn-talk {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-talk::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-talk:hover::before {
    left: 100%;
}

.btn-talk:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Trusted Members Section */
.trusted-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.trusted-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
}

.check-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.trusted-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.trusted-logo {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    min-width: 100px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.trusted-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.trusted-logo:nth-child(1) {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.trusted-logo:nth-child(2) {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.trusted-logo:nth-child(3) {
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
}

.trusted-logo:nth-child(4) {
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
}

.trusted-logo:nth-child(5) {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
}

.trusted-logo:nth-child(6) {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
}

/* Hero Right Side - Laptop */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.laptop-container {
    perspective: 1000px;
    transform-style: preserve-3d;
    width: 100%;
    max-width: 800px;
}

.laptop-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
    display: block;
}

.laptop-image:hover {
    transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
}

@media (max-width: 968px) {
    .laptop-image {
        transform: rotateY(0deg) rotateX(0deg);
        max-width: 100%;
    }

    .laptop-image:hover {
        transform: scale(1.01);
    }
}

.laptop {
    position: relative;
    transform: rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
}

.laptop-screen {
    width: 750px;
    height: 480px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border-radius: 16px 16px 6px 6px;
    padding: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #9CA3AF;
    border-radius: 2px;
    z-index: 10;
}

.laptop-ui {
    width: 100%;
    height: 100%;
    background: #0F172A;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

/* Laptop Header */
.laptop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 16px;
    flex-wrap: nowrap;
}

.laptop-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.pro-badge {
    background: #A855F7;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    letter-spacing: 0.5px;
}

.laptop-search-top {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 8px 12px;
    flex: 1;
    max-width: 400px;
}

.laptop-search-top .search-icon {
    color: #64748B;
    flex-shrink: 0;
}

.laptop-search-top input {
    background: transparent;
    border: none;
    color: #E2E8F0;
    font-size: 13px;
    width: 100%;
    outline: none;
}

.laptop-search-top input::placeholder {
    color: #64748B;
}

.open-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #D1D5DB;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.open-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.user-email {
    color: #D1D5DB;
    font-size: 12px;
}

.logo-icon-small {
    display: flex;
    align-items: center;
}

.laptop-nav {
    display: flex;
    gap: 24px;
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 500;
}

.laptop-nav span {
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px 0;
}

.laptop-nav span:hover {
    color: #D1D5DB;
}

.laptop-nav .active {
    color: #60A5FA;
    font-weight: 600;
    position: relative;
}

.laptop-nav .active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #60A5FA;
    border-radius: 1px;
}

.laptop-header-right {
    display: flex;
    gap: 16px;
    color: #D1D5DB;
    font-size: 12px;
    align-items: center;
}

.laptop-header-right span:last-child {
    position: relative;
    padding-right: 12px;
}

.laptop-header-right span:last-child::after {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 8px;
    color: #9CA3AF;
}

/* Laptop Search */
.laptop-search {
    margin-bottom: 8px;
}

.laptop-search input {
    width: 100%;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 10px 16px;
    color: #E2E8F0;
    font-size: 13px;
    font-weight: 400;
}

.laptop-search input::placeholder {
    color: #64748B;
}

.laptop-search input:focus {
    outline: none;
    border-color: #3B82F6;
}

/* Visualization Header */
.laptop-viz-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.viz-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F1F5F9;
    font-size: 15px;
    font-weight: 600;
}

.network-icon {
    color: #F1F5F9;
    flex-shrink: 0;
}

.viz-search-middle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 8px 12px;
    justify-self: center;
    max-width: 350px;
    width: 100%;
}

.viz-search-middle .search-icon {
    color: #64748B;
    flex-shrink: 0;
}

.viz-search-middle input {
    background: transparent;
    border: none;
    color: #E2E8F0;
    font-size: 13px;
    width: 100%;
    outline: none;
}

.viz-search-middle input::placeholder {
    color: #64748B;
}

.viz-icons {
    display: flex;
    gap: 8px;
    color: #94A3B8;
    cursor: pointer;
}

.viz-icons svg {
    transition: color 0.2s;
}

.viz-icons svg:hover {
    color: #CBD5E1;
}

.viz-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-self: end;
}

.tokens-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1E293B;
    border: 1px solid #334155;
    color: #CBD5E1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tokens-dropdown .dropdown-text {
    color: #94A3B8;
    margin-left: 4px;
}

.tokens-dropdown:hover {
    background: #334155;
    border-color: #475569;
}

.ai-summary-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #DC2626;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.ai-summary-btn:hover {
    background: #B91C1C;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #2563EB;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    background: #1D4ED8;
}

/* Network Graph */
.network-graph {
    flex: 1;
    background: #0F172A;
    border-radius: 8px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 250px;
}

.graph-svg {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

/* Timeline */
.laptop-timeline {
    padding: 12px 0;
}

.timeline-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.timeline-label-start,
.timeline-label-end {
    color: #9CA3AF;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.timeline-bar {
    flex: 1;
    height: 32px;
    background: #1E293B;
    border-radius: 6px;
    position: relative;
    padding: 4px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-marks {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #64748B;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}

.timeline-marks span {
    flex: 1;
    text-align: center;
}

.timeline-selected-range {
    position: absolute;
    left: 30%;
    right: 10%;
    height: 6px;
    background: #3B82F6;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-handle {
    width: 12px;
    height: 12px;
    background: #60A5FA;
    border: 2px solid white;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timeline-handle:active {
    cursor: grabbing;
}

.timeline-handle-left {
    margin-left: -6px;
}

.timeline-handle-right {
    margin-right: -6px;
}

/* Sidebar */
.laptop-sidebar {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(15, 23, 42, 0.8);
    padding: 12px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
}

.sidebar-icon:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-icon.active {
    color: #60A5FA;
    background: rgba(96, 165, 250, 0.2);
}

/* Zoom Control */
.laptop-zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9CA3AF;
    font-size: 11px;
    background: rgba(55, 65, 81, 0.8);
    padding: 6px 10px;
    border-radius: 4px;
}

/* Laptop Base */
.laptop-base {
    width: 800px;
    height: 24px;
    background: linear-gradient(to bottom, #E5E7EB 0%, #D1D5DB 50%, #9CA3AF 100%);
    border-radius: 0 0 12px 12px;
    margin: -4px auto 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 5px;
    background: #6B7280;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Floating Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #2563EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 1000;
}

.chat-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.chat-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        padding: 50px 40px 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        order: -1;
    }

    .laptop-screen {
        width: 650px;
        height: 420px;
    }

    .laptop-base {
        width: 700px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 32px 20px 24px;
    }
    
    .hero-container {
        gap: 24px;
        min-height: auto;
    }
    
    .hero-left {
        gap: 16px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .hero-cta {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 0;
    }
    
    .btn-start-check {
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }
    
    .btn-talk {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .laptop-screen {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .laptop-base {
        width: 100%;
        max-width: 550px;
    }
    
    .Uz3_Ic {
        margin: 1.2rem 0 0;
        justify-items: center;
        text-align: center;
    }
    
    .Uz3_Ic-content {
        align-items: center;
        text-align: center;
    }
    
    .HtuBmR {
        text-align: center !important;
        margin: 0 auto;
        align-self: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .qQncdT {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 16px 24px;
    }
    
    .hero-container {
        gap: 24px;
    }
    
    .hero-left {
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
        justify-content: center;
    }
    
    .btn-start-check {
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        margin: 0 auto;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn-talk {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Clients Section */
.clients-section {
    background: #F9FAFB;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 2px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563EB, #8B5CF6);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #DBEAFE;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    color: #6B7280;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 90px;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s;
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #DBEAFE;
}

.client-logo svg {
    max-width: 100%;
    height: auto;
    transition: opacity 0.2s;
}

.client-logo:hover svg {
    opacity: 0.8;
}

.binance-logo svg {
    width: 160px;
    height: auto;
}

.okx-logo svg {
    width: 110px;
    height: auto;
}

.huobi-logo svg {
    width: 130px;
    height: auto;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border-radius: 20px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563EB, #8B5CF6);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #DBEAFE;
}

.stat-value-large {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.stat-item-label {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
    align-items: stretch;
}

.service-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 40px 32px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6, #EC4899, #F59E0B);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #DBEAFE;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
}

.service-icon {
    margin-bottom: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}

.service-card:hover .service-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: left;
}

.service-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: left;
}

.service-link {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    width: fit-content;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #1D4ED8;
    gap: 12px;
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* ISO Section */
.iso-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    text-align: center;
    border-top: 2px solid #E5E7EB;
    border-bottom: 2px solid #E5E7EB;
}

.iso-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 18px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border-radius: 14px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.iso-description {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing-section {
    background: white;
    text-align: center;
}

.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2563EB, #8B5CF6, #EC4899);
    border-radius: 24px 24px 0 0;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-from {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.pricing-unit {
    font-size: 18px;
    color: #6B7280;
    font-weight: 400;
}

.btn-contact {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.pricing-note {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    background: #F9FAFB;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
    align-items: stretch;
}

.why-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 2px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10B981, #3B82F6, #8B5CF6);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #DBEAFE;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
}

.why-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: left;
}

.why-list {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.why-list li {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 50%;
    font-size: 12px;
}

.why-description {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
}

.why-note {
    font-size: 14px;
    color: #9CA3AF;
    font-style: italic;
    margin-bottom: 24px;
    text-align: left;
}

.btn-discuss {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin-top: auto;
    align-self: flex-start;
}

.btn-discuss::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-discuss:hover::before {
    left: 100%;
}

.btn-discuss:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Team Section */
.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.team-member {
    text-align: center;
    padding: 24px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border-radius: 20px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #DBEAFE;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.team-member:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.team-member:hover .team-avatar::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-role {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    background: #F9FAFB;
}

.faq-subtitle {
    font-size: 18px;
    color: #374151;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-contact {
    font-size: 15px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 6px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-messenger {
    font-size: 18px;
    color: #2563EB;
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-response {
    font-size: 16px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 4px;
}

.faq-note {
    font-size: 13px;
    color: #9CA3AF;
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 2px solid #E5E7EB;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #DBEAFE;
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.faq-question:hover {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    color: #2563EB;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    color: #2563EB;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 50%;
    font-size: 20px;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111827 0%, #0F172A 100%);
    color: white;
    padding: 40px 40px 24px;
    border-top: 2px solid #1F2937;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    padding-top: 0;
    margin-bottom: 40px;
    align-items: start;
}

.footer-address {
    font-size: 15px;
    color: #D1D5DB;
    line-height: 1.9;
    max-width: 600px;
}

.footer-address strong {
    color: white;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}

.footer-address strong:first-child {
    margin-top: 0;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-certifications span {
    font-size: 13px;
    color: #E5E7EB;
    padding: 10px 18px;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 8px;
    border: 1px solid #374151;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-certifications span:hover {
    background: linear-gradient(135deg, #374151 0%, #4B5563 100%);
    border-color: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 2px solid #374151;
    font-size: 14px;
    color: #9CA3AF;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #E5E7EB;
        font-size: 16px;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 2px solid #E5E7EB;
    }

    .mobile-menu-actions .mobile-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* On mobile: btn-start-check should appear first, btn-talk second */
    .mobile-menu-actions .btn-start-check {
        order: 1;
    }
    
    .mobile-menu-actions .btn-talk {
        order: 2;
    }

    .mobile-language-selector {
        width: 100%;
    }

    .mobile-language-selector .language-selector {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 16px;
    }

    .mobile-language-dropdown {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 8px;
        max-height: 300px;
        overflow-y: auto;
    }

    .header-actions {
        display: none !important;
    }
    
    .mobile-menu-actions {
        display: flex;
    }

    .laptop-viz-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .viz-search-middle {
        max-width: 100%;
        justify-self: stretch;
    }

    .viz-actions {
        justify-self: stretch;
        flex-wrap: wrap;
    }
}

@media (max-width: 968px) {
    .clients-logos {
        gap: 32px;
    }

    .client-logo {
        height: 70px;
        padding: 16px 24px;
    }

    .binance-logo svg,
    .okx-logo svg,
    .huobi-logo svg {
        width: auto;
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .section-container {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .laptop-screen {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }

    .laptop-base {
        width: 100%;
        max-width: 540px;
    }

    .laptop-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .laptop-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .laptop-search-top {
        order: 2;
        max-width: 100%;
    }

    .laptop-header-right {
        order: 4;
        width: 100%;
        justify-content: space-between;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-certifications {
        align-items: center;
        margin-top: 16px;
    }

    .network-graph {
        min-height: 200px;
    }

    .graph-svg {
        min-height: 200px;
    }

    .laptop-sidebar {
        display: none;
    }

    .laptop-zoom {
        bottom: 8px;
        right: 8px;
        font-size: 10px;
        padding: 4px 8px;
    }

    .clients-logos {
        gap: 24px;
        margin-bottom: 32px;
    }

    .client-logo {
        height: 60px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-right {
        order: -1;
    }

    .laptop-screen {
        height: 300px;
    }

    .laptop-ui {
        padding: 12px;
    }

    .laptop-header {
        padding: 8px 12px;
    }

    .laptop-logo {
        font-size: 12px;
    }

    .pro-badge {
        font-size: 8px;
        padding: 1px 4px;
    }

    .laptop-nav {
        font-size: 11px;
        gap: 12px;
    }

    .viz-title {
        font-size: 13px;
    }

    .viz-actions button {
        padding: 6px 10px;
        font-size: 11px;
    }

    .timeline-marks {
        font-size: 7px;
    }

    .timeline-label-start,
    .timeline-label-end {
        font-size: 9px;
    }

    .clients-logos {
        gap: 24px;
    }

    .client-logo {
        padding: 16px 24px;
        height: 60px;
    }

    .service-card {
        padding: 24px;
    }

    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-certifications {
        align-items: center;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .client-logo {
        padding: 12px 16px;
        height: 50px;
    }

    .service-card {
        padding: 20px;
    }

    .service-title {
        font-size: 20px;
    }
}

