@import url('../css/flag-icons.min.css');

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 99999;
}

@media (max-width: 768px) {
    .scroll-progress {
        display: none;
    }
}

.progress-bar-scroll {
    height: 100%;
    width: 0%;
    background: #5A3BED;
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(90, 59, 237, 0.5);
}

.home-header {
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    padding: 0;
    overflow: visible;
}

.home-navbar {
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 99998;
    overflow: visible;
    transform: translate(0, 0, 0);
}

.home-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(90, 59, 237, 0.1);
    transform: translateY(-1px);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 2vw;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
    min-height: 60px;
    position: relative;
    z-index: 1;
}

.navbar-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-right: 60px;
}

.navbar-center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
}

.navbar-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    overflow: visible;
    position: relative;
    min-height: 44px;
    z-index: 1;
}

.mobile-lang-demo {
    display: none;
}


.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-logo {
    height: 44px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0.95;
}

.home-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-menu li {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    border-radius: 10px;
    position: relative;
    letter-spacing: 0.02em;
    text-align: center;
    display: flex;
    align-items: center;
    height: 44px;
}

.home-menu li.active {
    color: var(--primary-color);
    font-weight: 600;
    transform: translateY(-1px);
}

.home-menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 1px;
    z-index: 3;
    pointer-events: none;
}

.home-menu li:hover::after,
.home-menu li.active::after {
    width: 70%;
}

.home-menu li.active::after {
    background: linear-gradient(90deg, #5A3BED 0%, #667EEA 100%);
    height: 3px;
    box-shadow: 0 1px 3px rgba(90, 59, 237, 0.3);
}

.home-menu li a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 12px 16px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.home-menu li a[href*="contact-request"] {
    text-decoration: none !important;
    color: inherit !important;
}

.demo-btn {
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 50%, #764ba2 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 10px 24px;
    font-weight: 600;
    box-shadow:
        0 3px 12px rgba(90, 59, 237, 0.25),
        0 1px 6px rgba(90, 59, 237, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.demo-btn i {
    font-size: 1rem;
}

.demo-btn span {
    position: relative;
    z-index: 2;
}

.demo-btn:active {
    border-color: #4A2BC8;
    box-shadow:
        0 2px 8px rgba(74, 43, 200, 0.4),
        0 1px 4px rgba(74, 43, 200, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.home-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('/assets/images/bg.png');
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.08;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(90, 59, 237, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.04) 0%, transparent 50%);
    background-size: 800px 800px;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(90, 59, 237, 0.02) 0%,
            rgba(102, 126, 234, 0.03) 50%,
            rgba(90, 59, 237, 0.02) 100%);
    z-index: 2;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5vw 60px 5vw;
    gap: 60px;
    width: 100%;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12), rgba(25, 135, 84, 0.15));
    border: 1.5px solid rgba(40, 167, 69, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #198754;
    margin: 0 0 24px 0;

    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out 0.4s both;
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out 0.6s both;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-word {
    position: relative;
    color: #5A3BED;
    font-weight: 600;
}

.hero-badge i {
    font-size: 1rem;
    color: #198754;
    filter: drop-shadow(0 1px 2px rgba(40, 167, 69, 0.3));
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    opacity: 1;
    transform: translateY(0);
}

.hero-title-main {
    display: block;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    contain: layout style;
    transform: translateZ(0);
}

.hero-title-accent {
    display: block;
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 8px;
    color: #5A3BED;
    contain: layout style;
    transform: translateZ(0);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 32px 0;
    opacity: 1;
    transform: translateY(0);
}

.hero-description strong {
    color: #5A3BED;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 40px 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(90, 59, 237, 0.3);
}

.hero-btn.primary .btn-content,
.hero-btn.primary .btn-content span,
.hero-btn.primary .btn-content i {
    color: #ffffff;
}

.enhanced-cta {
    position: relative;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.enhanced-cta:active .btn-ripple {
    width: 300px;
    height: 300px;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.glass-shine {
    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.6s ease;
}

.hero-btn.primary::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;
}

.hero-btn.secondary {
    background: rgba(90, 59, 237, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(90, 59, 237, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 0 40px 0;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 16px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 0 0 4px 0;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(90, 59, 237, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: -1;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.certificates-title {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 12px 0;
    font-weight: 500;
    text-align: center;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(90, 59, 237, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5A3BED;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.trust-badge i {
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.trust-badge span {
    position: relative;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-mockup {
    position: relative;
    z-index: 2;
}

.mockup-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(90, 59, 237, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
    transform: scale(1) translate3d(0, 0, 0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    perspective: 1000px;
}

body[data-animation-level="minimal"] .mockup-container,
body[data-animation-level="minimal"] .mockup-screen,
body.low-battery .mockup-container,
body.low-battery .mockup-screen {
    transform: scale(1) translate3d(0, 0, 0) !important;
    opacity: 1 !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {

    .verification-step,
    .progress-fill,
    .hero-btn,
    .stat-item {
        animation: none !important;
        transition: none !important;
    }

    .mockup-container {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }

    .mockup-screen {
        opacity: 1;
        transform: translateY(0);
    }
}

.mockup-screen {
    padding: 20px;
    min-height: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    opacity: 1;
    overflow: visible;
    transform-origin: center center;
    border-radius: 24px;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px 0;
    padding: 0 0 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #28ca42;
}

.mockup-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
}

.verification-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-origin: center center;
    transform: translate(0, 0, 0);
}

@media (max-width: 768px) {
    .verification-step {
        transition-duration: 0.2s;
        padding: 14px 16px;
        gap: 14px;
    }
}

.verification-step.active {
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.08) 0%, rgba(59, 130, 246, 0.12) 100%);
    border: 1px solid rgba(90, 59, 237, 0.25);
    box-shadow: 0 4px 20px rgba(90, 59, 237, 0.15);
    transform: translateX(5px);
}

.verification-step.processing {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, rgba(255, 152, 0, 0.15) 100%);
    border: 1px solid rgba(255, 193, 7, 0.35);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.15);
    animation: processingPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {

    .verification-step.active,
    .verification-step.processing {
        transform: translate(0, -1px, 0);
        box-shadow: 0 2px 12px rgba(40, 202, 66, 0.1);
    }

    .verification-step.processing {
        box-shadow: 0 2px 12px rgba(90, 59, 237, 0.1);
    }
}

.verification-step.pending {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.06) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.step-icon i {
    font-size: 1rem;
    color: #5A3BED;
}

.step-text {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.step-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-status.success {
    background: #28ca42;
    color: #fff;
    border-top: 2px solid #28ca42;
}

.step-status.loading {
    background: transparent;
}

.step-status.waiting {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #5A3BED;
    border-right: 2px solid #5A3BED;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 4px rgba(90, 59, 237, 0.3);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes processingPulse {
    0% {
        box-shadow: 0 4px 16px rgba(255, 193, 7, 0.15);
        transform: translateX(4px);
    }

    50% {
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.25);
        transform: translateX(6px);
    }

    100% {
        box-shadow: 0 4px 16px rgba(255, 193, 7, 0.15);
        transform: translateX(4px);
    }
}

.mockup-progress {
    margin: auto 0 0 0;
    padding: 16px 0 0 0;
    border-top: 1px solid #f0f0f0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #f1f3f4 0%, #e8eaed 100%);
    border-radius: 6px;
    overflow: hidden;
    margin: 0 0 10px 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #5A3BED 0%, #667eea 50%, #28ca42 100%);
    border-radius: inherit;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(90, 59, 237, 0.3);
    position: absolute;
    top: 0;
    left: 0;
}

.progress-fill[style*="width: 100%"] {
    width: 100% !important;
}

@media (max-width: 768px) {
    .progress-fill {
        transition-duration: 1.5s;
    }
}

body.low-battery .progress-fill {
    transition: width 1.5s ease !important;
}

.verification-step {
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease !important;
}

body[data-animation-level="minimal"] .verification-step {
    transition: background-color 0.2s ease, border-color 0.2s ease !important;
}

.progress-text {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(232, 245, 232, 0.9) 0%, rgba(240, 248, 240, 0.95) 100%);
    border: 1px solid rgba(40, 202, 66, 0.3);
    border-radius: 16px;
    margin-top: 16px;
    animation: successSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(40, 202, 66, 0.15);
}

.success-icon {
    width: 36px;
    height: 36px;
    background: #28ca42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.success-text h4 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a5f1a;
}

.success-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #2d7a2d;
}

.mockup-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(90, 59, 237, 0.08) 0%, rgba(102, 126, 234, 0.06) 40%, transparent 70%);
    border-radius: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.sectors-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
}

.sectors-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.sectors-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(90, 59, 237, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    background-size: 600px 600px;
}

.sectors-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(248, 250, 252, 0.9) 0%,
            rgba(226, 232, 240, 0.7) 50%,
            rgba(255, 255, 255, 0.95) 100%);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.1) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
}

.sectors-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
    z-index: 1;
}

.sectors-header {
    text-align: center;
    margin-bottom: 80px;
}

.sectors-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.15) 0%, rgba(102, 126, 234, 0.1) 100%);
    color: #5A3BED;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(90, 59, 237, 0.2);
    box-shadow: 0 4px 20px rgba(90, 59, 237, 0.1);
}

.sectors-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a202c 0%, #5A3BED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sectors-desc {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.sector-card {
    position: relative;
    height: 100%;
}

.sector-card-inner {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(90, 59, 237, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
}

.sector-card-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5A3BED 0%, #667eea 50%, #22c55e 100%);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sector-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
}

.sector-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.1) 0%, rgba(102, 126, 234, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(90, 59, 237, 0.15);
    transition: all 0.4s ease;
}

.sector-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sector-icon i {
    font-size: 2.2rem;
    color: #5A3BED;
    transition: all 0.4s ease;
}

.sector-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(90, 59, 237, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.sector-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sector-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.sector-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sector-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.feature-tag {
    background: rgba(90, 59, 237, 0.1);
    color: #5A3BED;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(90, 59, 237, 0.2);
    transition: all 0.3s ease;
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(90, 59, 237, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sectors-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(90, 59, 237, 0.05);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5A3BED 0%, #667eea 50%, #22c55e 100%);
    transform: scaleX(1);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5A3BED;
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sector-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
}

.sector-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.1) 0%, rgba(102, 126, 234, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(90, 59, 237, 0.15);
    transition: all 0.4s ease;
}

.sector-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sector-icon i {
    font-size: 2.2rem;
    color: #5A3BED;
    transition: all 0.4s ease;
}

.sector-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(90, 59, 237, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.sector-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sector-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.sector-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sector-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.feature-tag {
    background: rgba(90, 59, 237, 0.1);
    color: #5A3BED;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(90, 59, 237, 0.2);
    transition: all 0.3s ease;
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(90, 59, 237, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sectors-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(90, 59, 237, 0.05);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5A3BED 0%, #667eea 50%, #22c55e 100%);
    transform: scaleX(1);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5A3BED;
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .sectors-container h2 {
        font-size: 2rem;
    }

    .sectors-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sector-item {
        padding: 25px 15px;
    }

    .sector-item i {
        font-size: 2rem;
    }
}

.features-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.features-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(90, 59, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    background-size: 400px 400px;
}

.features-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(245, 247, 250, 0.8) 0%,
            rgba(195, 207, 226, 0.6) 50%,
            rgba(255, 255, 255, 0.9) 100%);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.15) 0%, rgba(102, 126, 234, 0.1) 100%);
    color: #5A3BED;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(90, 59, 237, 0.2);
    box-shadow: 0 4px 20px rgba(90, 59, 237, 0.1);
}

.features-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a202c 0%, #5A3BED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-desc {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    height: 100%;
}

.feature-card-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 8px 30px rgba(90, 59, 237, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5A3BED 0%, #667eea 50%, #22c55e 100%);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.feature-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.02) 0%, rgba(102, 126, 234, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    pointer-events: none;
}

.feature-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feature-icon-container {
    position: relative;
    width: 76px;
    height: 76px;
    flex-shrink: 0;
}

.feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.12) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(90, 59, 237, 0.2);
    transition: all 0.4s ease;
    box-shadow:
        0 4px 20px rgba(90, 59, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.feature-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 6px 24px rgba(90, 59, 237, 0.25));
}

.feature-icon i {
    font-size: 2rem;
    color: #5A3BED;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(90, 59, 237, 0.3));
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(90, 59, 237, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ai-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-color: rgba(245, 158, 11, 0.3);
}

.secure-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: rgba(16, 185, 129, 0.3);
}

.api-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a202c 0%, #5A3BED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 18px;
    font-weight: 400;
}

.feature-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.06) 0%, rgba(102, 126, 234, 0.04) 100%);
    border-radius: 14px;
    border: 1px solid rgba(90, 59, 237, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.metric-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 4px 12px rgba(90, 59, 237, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.metric-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 10px;
}

.metric-icon i {
    color: white;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #5A3BED;
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 2px;
}

.feature-technologies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin-bottom: 18px;
    align-items: center;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.1) 0%, rgba(102, 126, 234, 0.08) 100%);
    color: #5A3BED;
    padding: 8px 14px;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(90, 59, 237, 0.18);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(90, 59, 237, 0.08);
}

@media (max-width: 900px) {
    .home-navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 2vw;
    }

    .home-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        padding-left: 0;
    }

    .home-menu li {
        width: 100%;
        padding: 8px 0;
        font-size: 1rem;
    }

    .home-menu .demo-btn {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .hero-container {
        padding: 40px 2vw 30px 2vw;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .certificates-list {
        gap: 12px;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .home-hero {
        min-height: 100vh;
        padding-top: 80px;
        display: flex;
        align-items: center;
    }

    .hero-container {
        padding: 20px 1.5vw 15px 1.5vw;
        gap: 16px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    .hero-title-main {
        margin-bottom: 3px;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        max-width: 320px;
    }

    .hero-actions {
        gap: 8px;
        margin-bottom: 24px;
    }

    .hero-btn {
        max-width: 260px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 6px;
        margin-bottom: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: stretch;
    }

    .stat-item {
        min-width: auto;
        width: 100%;
        padding: 10px 6px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.85);

        border: 1px solid rgba(90, 59, 237, 0.15);
        box-shadow: 0 2px 10px rgba(90, 59, 237, 0.08);
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.65rem;
        font-weight: 600;
    }

    .certificates-title {
        font-size: 0.75rem;
        margin-bottom: 8px;
        text-align: center;
    }

    .certificates-list {
        gap: 4px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .trust-badge {
        font-size: 0.65rem;
        padding: 5px 8px;
        border-radius: 10px;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

        border: 1px solid rgba(90, 59, 237, 0.2);
        box-shadow: 0 2px 8px rgba(90, 59, 237, 0.1);
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .certificates-list img {
        height: 24px;
    }

    .mockup-container {
        width: 90%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 9/16;
        margin: 0 auto;
        transform: scale(0.9);
    }

    .mockup-screen {
        padding: 12px;
        min-height: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        overflow: visible;
        border-radius: 20px;
    }

    .mockup-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .mockup-title {
        font-size: 0.8rem;
    }

    .mockup-dots span {
        width: 6px;
        height: 6px;
    }

    .verification-step {
        padding: 10px 12px;
        gap: 10px;
        margin-bottom: 8px;
        border-radius: 8px;
        background: rgba(248, 249, 250, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.06);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .step-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.7rem;
    }

    .step-status {
        width: 18px;
        height: 18px;
    }

    .spinner {
        width: 18px;
        height: 18px;
        border-width: 3px;
        animation: spin 0.8s linear infinite !important;
    }

    .mockup-progress {
        padding-top: 10px;
    }

    .progress-bar {
        height: 4px;
    }

    .progress-text {
        font-size: 0.7rem;
    }

    .home-navbar {
        padding: 6px 1.5vw;
    }

    .home-logo {
        height: 32px;
    }

    .sectors-section,
    .features-section {
        padding: 0 1.5vw;
    }

    .sectors-section {
        margin-top: 60px;
        padding: 0 2vw;
    }

    .features-section {
        padding: 0 2vw 18px 2vw;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        gap: 12px;
        margin-top: 32px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .feature-content h3 {
        font-size: 0.9rem;
    }

    .feature-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .success-message {
        padding: 16px 18px;
        gap: 12px;
        margin-top: 16px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        min-height: 90px;
    }

    .success-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-bottom: 4px;
        flex-shrink: 0;
    }

    .success-text h4 {
        font-size: 0.9rem;
        margin: 4px 0 !important;
        line-height: 1.3;
    }

    .success-text p {
        font-size: 0.8rem;
        margin: 0 !important;
        line-height: 1.4;
    }
}

:root {
    --primary-color: #5A3BED;
    --primary-gradient: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    --secondary-color: #667eea;
    --success-color: #28ca42;
    --text-color: #333;
    --text-light: #666;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto;
    }

    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto;
    }

    .home-navbar {
        backdrop-filter: blur(10px) !important;
    }

    .hero-pattern {
        display: none;
    }

    .mockup-glow {
        display: none;
    }

    .stat-glow {
        display: none;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 0;
    padding: 0;
    padding-top: 80px;
    color: #23272f;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(90, 59, 237, 0.15) 100%);
    z-index: 999;
    animation: fadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lang-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.lang-selector-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e3e6ea;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08),
                0 1px 3px rgba(0, 0, 0, 0.05);
    min-width: auto;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.lang-selector-btn:hover {
    border-color: #5A3BED;
    box-shadow: 0 4px 16px rgba(90, 59, 237, 0.2),
                0 2px 8px rgba(90, 59, 237, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.lang-selector-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(90, 59, 237, 0.25);
}

.lang-dropdown.active .lang-selector-btn {
    border-color: #5A3BED;
    box-shadow: 0 4px 16px rgba(90, 59, 237, 0.2),
                0 2px 8px rgba(90, 59, 237, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.selected-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: #2d3748;
}

.flag-icon {
    width: 26px;
    height: 20px;
    border-radius: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.lang-selector-btn:hover .flag-icon {
    transform: scale(1.05);
}

.selected-lang .fa-chevron-down {
    font-size: 11px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    margin-left: 2px;
}

.lang-dropdown.active .selected-lang .fa-chevron-down {
    transform: rotate(180deg);
    color: #5A3BED;
}

.lang-options-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e3e6ea;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 8px 16px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(90, 59, 237, 0.05),
                0 0 30px rgba(90, 59, 237, 0.1);
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    padding: 0;
}

.lang-options-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(90, 59, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.lang-dropdown.active .lang-options-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    border-color: rgba(90, 59, 237, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 8px 16px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(90, 59, 237, 0.05),
                0 0 40px rgba(90, 59, 237, 0.15);
}

.lang-dropdown-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.05) 0%, rgba(102, 126, 234, 0.03) 100%);
    border-bottom: 1px solid rgba(90, 59, 237, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: #5A3BED;
    position: relative;
    z-index: 1;
}

.lang-dropdown-header i {
    font-size: 14px;
    opacity: 0.8;
}

.lang-option-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 59, 237, 0.1), transparent);
    margin: 4px 12px;
    position: relative;
    z-index: 1;
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    margin: 4px 8px;
    gap: 12px;
    z-index: 1;
}

.lang-option:last-child {
    margin-bottom: 0;
}

.lang-option:hover {
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.08) 0%, rgba(102, 126, 234, 0.05) 100%);
    box-shadow: 0 2px 8px rgba(90, 59, 237, 0.1);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.18) 0%, rgba(102, 126, 234, 0.12) 100%);
    box-shadow:
        0 3px 14px rgba(90, 59, 237, 0.25),
        0 1px 6px rgba(90, 59, 237, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border: 1.5px solid rgba(90, 59, 237, 0.35);
}

.lang-option .flag-icon {
    width: 28px;
    height: 21px;
    border-radius: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.lang-option:hover .flag-icon {
    transform: scale(1.1);
}

.lang-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.lang-code-small {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.check-icon {
    color: #5A3BED;
    font-size: 16px;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(90, 59, 237, 0.1);
    border-radius: 50%;
}

.lang-option.active .check-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    background: rgba(90, 59, 237, 0.15);
}

/* Mobile Styles */
.mobile-version .lang-selector-btn {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.mobile-version .selected-lang {
    justify-content: space-between;
}

.mobile-version .lang-text {
    font-size: 15px;
    font-weight: 600;
}

.mobile-version .lang-options-menu {
    left: 0;
    right: 0;
    min-width: auto;
    width: 100%;
}

.mobile-version .lang-option {
    padding: 16px;
}

.mobile-version .lang-option .flag-icon {
    font-size: 22px;
}

.mobile-version .lang-name {
    font-size: 16px;
}

.mobile-version .lang-code-small {
    font-size: 13px;
}

@keyframes langFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lang-dropdown.active .lang-options-menu {
    animation: langFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .lang-dropdown:not(.mobile-version) {
        display: none;
    }
}

.lang-option:hover .lang-native {
    color: #555;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 1002;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(90, 59, 237, 0.1);
}

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

.hamburger-menu span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #5A3BED, #667eea);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(90, 59, 237, 0.25);
    position: relative;
}

.hamburger-menu span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
}

.hamburger-menu:hover span::before {
    opacity: 1;
}

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

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

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

@media (max-width: 900px) {
    .home-hero {
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        padding-top: 50px;
    }

    .hero-container {
        padding: 10px 3vw 30px 3vw;
        gap: 40px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
        justify-content: center;
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .hero-badge {
        margin-bottom: 20px;
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-title-main {
        margin-bottom: 6px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 28px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-stats {
        gap: 24px;
        justify-content: center;
        margin-bottom: 32px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .certificates {
        text-align: center;
    }

    .certificates-list {
        gap: 12px;
        justify-content: center;
    }

    .certificates-list img {
        height: 36px;
    }

    .mockup-container {
        width: 85%;
        max-width: 380px;
        min-height: 600px;
        height: auto;
        margin: 0 auto;
        transform: scale(0.95);
        overflow: visible;
        border-radius: 28px;
    }

    .mockup-screen {
        padding: 18px;
    }

    .verification-step {
        padding: 12px;
        gap: 12px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.9rem;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1002;
    }

    .navbar-container {
        position: relative;
        padding: 16px 1.5vw;
    }

    .navbar-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 340px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 251, 0.96) 100%);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1001;
        padding-top: 0;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex !important;
        flex-direction: column;
        border-left: 1px solid rgba(90, 59, 237, 0.12);
    }

    .navbar-center.active {
        right: 0;
    }

    .navbar-right {
        display: none;
    }

    .home-menu {
        width: 100%;
        height: auto;
        position: static;
        background: transparent;
        box-shadow: none;
        padding-top: 0;
        overflow-y: visible;
    }

    .home-menu.active {
        right: auto;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 28px;
        border-bottom: 1px solid rgba(90, 59, 237, 0.12);
        background: linear-gradient(135deg, rgba(90, 59, 237, 0.04) 0%, rgba(102, 126, 234, 0.03) 100%);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-menu-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #5A3BED;
        margin: 0;
        letter-spacing: 0.02em;
        text-shadow: 0 1px 2px rgba(90, 59, 237, 0.1);
    }

    .home-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 32px 28px 16px 28px;
        height: auto;
        margin: 0;
        list-style: none;
    }

    .home-menu li.active {
        background: linear-gradient(135deg, rgba(90, 59, 237, 0.1) 0%, rgba(102, 126, 234, 0.08) 100%);
        border-left: 4px solid var(--primary-color);
        margin-left: -4px;
        border-radius: 0 12px 12px 0;
    }

    .home-menu li {
        width: 100%;
        padding: 18px 24px;
        margin-bottom: 12px;
        border-radius: 14px;
        font-size: 1.06rem;
        position: relative;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        font-weight: 600;
        color: #333;
        cursor: pointer;
        opacity: 0;
        animation: slideInLeft 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
        letter-spacing: 0.5px;
    }

    .home-menu li:nth-child(1) {
        animation-delay: 0.08s;
    }

    .home-menu li:nth-child(2) {
        animation-delay: 0.16s;
    }

    .home-menu li:nth-child(3) {
        animation-delay: 0.24s;
    }

    .home-menu li:nth-child(4) {
        animation-delay: 0.32s;
    }

    .home-menu li:nth-child(5) {
        animation-delay: 0.40s;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-40px) scale(0.95);
        }

        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .home-menu li::after {
        display: none;
    }

    .home-menu li:hover {
        color: #5A3BED;
        transform: translateX(12px) scale(1.02);
    }

    .home-menu li:active {
        transform: translateX(8px) scale(0.98);
    }

    .home-menu li::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(90, 59, 237, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
        z-index: -1;
    }

    .home-menu li:active::before {
        width: 300px;
        height: 300px;
    }

    .mobile-lang-demo {
        display: flex !important;
        flex-direction: column;
        gap: 80px;
        margin-top: auto;
        padding: 44px 28px;
        background: linear-gradient(135deg, rgba(90, 59, 237, 0.04) 0%, rgba(102, 126, 234, 0.03) 100%);
        border-radius: 20px 20px 0 0;
        position: sticky;
        bottom: 0;
    }

    .mobile-lang-demo {
        display: block !important;
    }

    .demo-btn {
        width: 80%;
        max-width: 240px;
        margin: 16px auto 0 auto;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.8rem;
        border-radius: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;
        box-shadow:
            0 2px 10px rgba(90, 59, 237, 0.2),
            0 1px 4px rgba(90, 59, 237, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #5A3BED 0%, #667eea 50%, #764ba2 100%);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        white-space: nowrap;
        text-transform: uppercase;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-decoration: none;
    }

    .demo-btn:active {
        border-color: #4A2BC8;
        box-shadow:
            0 2px 8px rgba(74, 43, 200, 0.4),
            0 1px 4px rgba(74, 43, 200, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .lang-option {
        margin: 4px 0;
        padding: 12px 16px;
        border-radius: 8px;
        border: none;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .lang-option:hover {
        background: rgba(90, 59, 237, 0.06);
        transform: translateX(4px);
    }

    .lang-option:last-child {
        margin-bottom: 0;
    }

    .demo-btn {
        background: linear-gradient(135deg, #5A3BED 0%, #667eea 50%, #764ba2 100%);
        color: #ffffff;
        border-radius: 20px;
        padding: 12px 28px;
        font-weight: 600;
        box-shadow:
            0 3px 12px rgba(90, 59, 237, 0.25),
            0 1px 6px rgba(90, 59, 237, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
        white-space: nowrap;
        text-align: center;
        margin-top: 14px;
        text-transform: uppercase;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-decoration: none;
    }

    .demo-btn:active {
        border-color: #4A2BC8;
        box-shadow:
            0 2px 8px rgba(74, 43, 200, 0.4),
            0 1px 4px rgba(74, 43, 200, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

}

.home-footer {
    background: #fff;
    color: #333;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.04);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5vw 40px 5vw;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #23272f;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.footer-section ul li a:hover {
    color: #5A3BED;
    padding-left: 5px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 16px;
}

.footer-logo p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info {
    margin-bottom: 24px;
}

.contact-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #5A3BED;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.social-links a.linkedin {
    background: rgba(0, 119, 181, 0.08);
    color: #0077B5;
    border-color: rgba(0, 119, 181, 0.15);
}

.social-links a.linkedin:hover {
    background: #0077B5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-links a.instagram {
    background: linear-gradient(45deg, rgba(253, 218, 117, 0.1), rgba(250, 126, 30, 0.1), rgba(214, 41, 118, 0.1));
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.15);
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 41, 118, 0.4);
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
    position: relative;
}

.social-links a.instagram:hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    border-radius: 50%;
    z-index: -1;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    background: #f8f9fa;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 40px 3vw 30px 3vw;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 4vw 24px 4vw;
    }

    .footer-section:first-child {
        grid-column: unset;
        margin-bottom: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    * {
        will-change: auto !important;
    }

    .hero-background {
        background-size: contain;
        opacity: 0.05;
        background-position: center top;
    }

    .hero-background::before,
    .hero-gradient::before {
        display: none;
    }

    .home-navbar,
    .demo-btn,
    .hero-btn {
        box-shadow: none !important;
    }

    * {
        transition-duration: 0.2s !important;
    }

    .verification-step,
    .stat-item,
    .trust-badge {
        transform: translate(0, 0, 0);
        backface-visibility: hidden;
    }

    .home-hero,
    .sectors-section,
    .features-section {
        scroll-snap-align: start;
    }

    body {
        scroll-snap-type: y proximity;
    }
}

@media (max-width: 480px) {
    .success-message {
        padding: 8px 10px;
        gap: 6px;
        margin-top: 6px;
        min-height: 60px;
        flex-direction: row;
        text-align: left;
    }

    .success-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .success-text h4 {
        font-size: 0.8rem;
        margin: 2px 0 !important;
        line-height: 1.2;
    }

    .success-text p {
        font-size: 0.7rem;
        margin: 0 !important;
        line-height: 1.3;
    }
}

@media (max-width: 480px) and (max-height: 800px) {

    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
    }

    .spinner {
        animation: spin 0.8s linear infinite !important;
        animation-duration: 0.8s !important;
    }

    .mockup-container {
        animation: none;
        transform: scale(0.9);
        width: 90%;
        max-width: 280px;
        min-height: 480px;
        height: auto;
        margin: 0 auto;
        overflow: visible;
        border-radius: 28px;
    }

    .home-navbar,
    .navbar-center {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }

    .navbar-center {
        width: 100vw !important;
    }

    .home-menu li {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUpFade 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card:last-child {
        grid-column: unset;
        max-width: unset;
        margin: 0;
    }

    .feature-card-inner {
        padding: 24px 20px;
    }

    .feature-icon-container {
        width: 68px;
        height: 68px;
    }

    .feature-icon img {
        width: 32px;
        height: 32px;
    }

    .feature-icon i {
        font-size: 1.7rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .feature-content p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .feature-metrics {
        gap: 10px;
        margin-bottom: 14px;
    }

    .metric-item {
        padding: 12px 10px;
    }

    .metric-icon {
        width: 32px;
        height: 32px;
    }

    .metric-icon i {
        font-size: 0.9rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .feature-technologies {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .tech-tag {
        font-size: 0.7rem;
        padding: 6px 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 16px;
    }

    .feature-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .feature-technologies {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .tech-tag {
        font-size: 0.65rem;
        padding: 4px 8px;
        text-align: center;
    }
}


@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter');
}

.hero-content h1,
.hero-description,
.hero-title-main,
.hero-title-accent {
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}


@supports not (backdrop-filter: blur(10px)) {

    .home-navbar,
    .feature-card-inner,
    .sector-card-inner,
    .stat-card,
    .trust-badge,
    .mockup-container {
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        backdrop-filter: none !important;
        filter: none !important;
        will-change: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .spinner {
        animation: spin 0.8s linear infinite !important;
    }
}

.sectors-stats-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
}

.stat-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 24px 20px;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.stat-cta-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.stat-cta-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-cta-trend {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.stat-cta-label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
}

.stat-cta-desc {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.stat-cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    z-index: 2;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-cta-icon i {
    font-size: 28px;
    color: #475569;
}

@media (max-width: 768px) {
    .sectors-stats-cta {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .stat-cta {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .stat-cta-content {
        order: 2;
    }

    .stat-cta-icon {
        order: 1;
        margin: 0;
        width: 70px;
        height: 70px;
    }

    .stat-cta-icon i {
        font-size: 28px;
    }

    .stat-cta-number {
        font-size: 2.5rem;
    }

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

    .stat-cta-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stat-cta {
        padding: 20px 16px;
    }

    .stat-cta-number {
        font-size: 2.2rem;
    }

    .stat-cta-icon {
        width: 60px;
        height: 60px;
    }

    .stat-cta-icon i {
        font-size: 24px;
    }
}

.lang-option:hover .lang-native {
    color: #555;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(90, 59, 237, 0.2);
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.05) 0%, rgba(102, 126, 234, 0.03) 100%);
    color: #5A3BED;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.auth-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(90, 59, 237, 0.15);
}

.auth-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.auth-btn span {
    font-weight: 600;
    transition: all 0.2s ease;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 1002;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(90, 59, 237, 0.1);
}

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

.hamburger-menu span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, #5A3BED, #667eea);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(90, 59, 237, 0.25);
    position: relative;
}

.hamburger-menu span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
}

.hamburger-menu:hover span::before {
    opacity: 1;
}

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

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

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

@media (max-width: 900px) {
    .home-hero {
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        padding-top: 50px;
    }

    .hero-container {
        padding: 10px 3vw 30px 3vw;
        gap: 40px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
        justify-content: center;
        width: 100%;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .hero-badge {
        margin-bottom: 20px;
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-title-main {
        margin-bottom: 6px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 28px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-stats {
        gap: 24px;
        justify-content: center;
        margin-bottom: 32px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .certificates {
        text-align: center;
    }

    .certificates-list {
        gap: 12px;
        justify-content: center;
    }

    .certificates-list img {
        height: 36px;
    }

    .mockup-container {
        width: 85%;
        max-width: 380px;
        min-height: 600px;
        height: auto;
        margin: 0 auto;
        transform: scale(0.95);
        overflow: visible;
        border-radius: 28px;
    }

    .mockup-screen {
        padding: 18px;
    }

    .verification-step {
        padding: 12px;
        gap: 12px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.9rem;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1002;
    }

    .navbar-container {
        position: relative;
        padding: 16px 1.5vw;
    }

    .navbar-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 340px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 251, 0.96) 100%);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1001;
        padding-top: 0;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex !important;
        flex-direction: column;
        border-left: 1px solid rgba(90, 59, 237, 0.12);
    }

    .navbar-center.active {
        right: 0;
    }

    .navbar-right {
        display: none;
    }

    .home-menu {
        width: 100%;
        height: auto;
        position: static;
        background: transparent;
        box-shadow: none;
        padding-top: 0;
        overflow-y: visible;
    }

    .home-menu.active {
        right: auto;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 28px;
        border-bottom: 1px solid rgba(90, 59, 237, 0.12);
        background: linear-gradient(135deg, rgba(90, 59, 237, 0.04) 0%, rgba(102, 126, 234, 0.03) 100%);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-menu-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #5A3BED;
        margin: 0;
        letter-spacing: 0.02em;
        text-shadow: 0 1px 2px rgba(90, 59, 237, 0.1);
    }

    .home-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 32px 28px 16px 28px;
        height: auto;
        margin: 0;
        list-style: none;
    }

    .home-menu li.active {
        background: linear-gradient(135deg, rgba(90, 59, 237, 0.1) 0%, rgba(102, 126, 234, 0.08) 100%);
        border-left: 4px solid var(--primary-color);
        margin-left: -4px;
        border-radius: 0 12px 12px 0;
    }

    .home-menu li {
        width: 100%;
        padding: 18px 24px;
        margin-bottom: 12px;
        border-radius: 14px;
        font-size: 1.06rem;
        position: relative;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        font-weight: 600;
        color: #333;
        cursor: pointer;
        opacity: 0;
        animation: slideInLeft 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
        letter-spacing: 0.5px;
    }

    .home-menu li:nth-child(1) {
        animation-delay: 0.08s;
    }

    .home-menu li:nth-child(2) {
        animation-delay: 0.16s;
    }

    .home-menu li:nth-child(3) {
        animation-delay: 0.24s;
    }

    .home-menu li:nth-child(4) {
        animation-delay: 0.32s;
    }

    .home-menu li:nth-child(5) {
        animation-delay: 0.40s;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-40px) scale(0.95);
        }

        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .home-menu li::after {
        display: none;
    }

    .home-menu li:hover {
        color: #5A3BED;
        transform: translateX(12px) scale(1.02);
    }

    .home-menu li:active {
        transform: translateX(8px) scale(0.98);
    }

    .home-menu li::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(90, 59, 237, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
        z-index: -1;
    }

    .home-menu li:active::before {
        width: 300px;
        height: 300px;
    }

    .mobile-lang-demo {
        display: flex !important;
        flex-direction: column;
        gap: 80px;
        margin-top: auto;
        padding: 44px 28px;
        background: linear-gradient(135deg, rgba(90, 59, 237, 0.04) 0%, rgba(102, 126, 234, 0.03) 100%);
        border-radius: 20px 20px 0 0;
        position: sticky;
        bottom: 0;
    }


    .mobile-lang-demo {
        display: block !important;
    }

    .demo-btn {
        width: 80%;
        max-width: 240px;
        margin: 16px auto 0 auto;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.8rem;
        border-radius: 18px;
        font-weight: 600;
        letter-spacing: 0.2px;
        box-shadow:
            0 2px 10px rgba(90, 59, 237, 0.2),
            0 1px 4px rgba(90, 59, 237, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #5A3BED 0%, #667eea 50%, #764ba2 100%);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        white-space: nowrap;
        text-transform: uppercase;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-decoration: none;
    }

    .demo-btn:active {
        border-color: #4A2BC8;
        box-shadow:
            0 2px 8px rgba(74, 43, 200, 0.4),
            0 1px 4px rgba(74, 43, 200, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .lang-option {
        margin: 4px 0;
        padding: 12px 16px;
        border-radius: 8px;
        border: none;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .lang-option:hover {
        background: rgba(90, 59, 237, 0.06);
        transform: translateX(4px);
    }

    .lang-option:last-child {
        margin-bottom: 0;
    }

    .demo-btn {
        background: linear-gradient(135deg, #5A3BED 0%, #667eea 50%, #764ba2 100%);
        color: #ffffff;
        border-radius: 20px;
        padding: 12px 28px;
        font-weight: 600;
        box-shadow:
            0 3px 12px rgba(90, 59, 237, 0.25),
            0 1px 6px rgba(90, 59, 237, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
        white-space: nowrap;
        text-align: center;
        margin-top: 14px;
        text-transform: uppercase;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-decoration: none;
    }

    .demo-btn:active {
        border-color: #4A2BC8;
        box-shadow:
            0 2px 8px rgba(74, 43, 200, 0.4),
            0 1px 4px rgba(74, 43, 200, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

}

.home-footer {
    background: #fff;
    color: #333;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.04);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5vw 40px 5vw;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #23272f;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.footer-section ul li a:hover {
    color: #5A3BED;
    padding-left: 5px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 16px;
}

.footer-logo p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info {
    margin-bottom: 24px;
}

.contact-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #5A3BED;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.social-links a.linkedin {
    background: rgba(0, 119, 181, 0.08);
    color: #0077B5;
    border-color: rgba(0, 119, 181, 0.15);
}

.social-links a.linkedin:hover {
    background: #0077B5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-links a.instagram {
    background: linear-gradient(45deg, rgba(253, 218, 117, 0.1), rgba(250, 126, 30, 0.1), rgba(214, 41, 118, 0.1));
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.15);
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 41, 118, 0.4);
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
    position: relative;
}

.social-links a.instagram:hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    border-radius: 50%;
    z-index: -1;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    background: #f8f9fa;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 40px 3vw 30px 3vw;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 4vw 24px 4vw;
    }

    .footer-section:first-child {
        grid-column: unset;
        margin-bottom: 0;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        margin-bottom: 16px;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo p {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .footer-stats {
        gap: 16px;
        justify-content: center;
        margin-top: 16px;
        padding-top: 16px;
    }

    .footer-stats .stat-number {
        font-size: 1.3rem;
    }

    .footer-stats .stat-label {
        font-size: 0.75rem;
    }

    .newsletter-section {
        margin: 20px 0;
        padding: 16px;
        text-align: center;
    }

    .newsletter-input {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    * {
        will-change: auto !important;
    }

    .hero-background {
        background-size: contain;
        opacity: 0.05;
        background-position: center top;
    }

    .hero-background::before,
    .hero-gradient::before {
        display: none;
    }

    .home-navbar,
    .demo-btn,
    .hero-btn {
        box-shadow: none !important;
    }

    * {
        transition-duration: 0.2s !important;
    }

    .verification-step,
    .stat-item,
    .trust-badge {
        transform: translate(0, 0, 0);
        backface-visibility: hidden;
    }

    .home-hero,
    .sectors-section,
    .features-section {
        scroll-snap-align: start;
    }

    body {
        scroll-snap-type: y proximity;
    }

    .home-footer {
        margin-top: 40px;
    }

    .footer-content {
        padding: 40px 4vw 30px 4vw;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-logo p {
        font-size: 0.9rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .footer-bottom-content {
        padding: 0 4vw;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-stats {
        gap: 16px;
        justify-content: center;
    }

    .newsletter-section {
        margin: 20px 0;
        padding: 18px;
    }

    .newsletter-input {
        gap: 8px;
    }

    .footer-badges {
        justify-content: center;
        gap: 12px;
    }

    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .success-message {
        padding: 8px 10px;
        gap: 6px;
        margin-top: 6px;
        min-height: 60px;
        flex-direction: row;
        text-align: left;
    }

    .success-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .success-text h4 {
        font-size: 0.8rem;
        margin: 2px 0 !important;
        line-height: 1.2;
    }

    .success-text p {
        font-size: 0.7rem;
        margin: 0 !important;
        line-height: 1.3;
    }

    .home-footer {
        margin-top: 30px;
    }

    .footer-content {
        padding: 30px 3vw 20px 3vw;
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-logo img {
        height: 36px;
    }

    .footer-logo p {
        font-size: 0.85rem;
        max-width: 250px;
    }

    .contact-info p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        padding: 0 3vw;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-stats {
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
    }

    .footer-stats .stat-number {
        font-size: 1.2rem;
    }

    .footer-stats .stat-label {
        font-size: 0.7rem;
    }

    .newsletter-section {
        margin: 20px 0;
        padding: 16px;
    }

    .newsletter-section h4 {
        font-size: 0.9rem;
    }

    .newsletter-input {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-input input,
    .newsletter-input button {
        width: 100%;
    }

    .footer-badges {
        gap: 8px;
        flex-wrap: wrap;
    }

    .footer-badges span {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) and (max-height: 800px) {

    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
    }

    .spinner {
        animation: spin 0.8s linear infinite !important;
        animation-duration: 0.8s !important;
    }

    .mockup-container {
        animation: none;
        transform: scale(0.9);
        width: 90%;
        max-width: 280px;
        min-height: 480px;
        height: auto;
        margin: 0 auto;
        overflow: visible;
        border-radius: 28px;
    }

    .home-navbar,
    .navbar-center {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }

    .navbar-center {
        width: 100vw !important;
    }

    .home-menu li {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUpFade 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card:last-child {
        grid-column: unset;
        max-width: unset;
        margin: 0;
    }

    .feature-card-inner {
        padding: 24px 20px;
    }

    .feature-icon-container {
        width: 68px;
        height: 68px;
    }

    .feature-icon img {
        width: 32px;
        height: 32px;
    }

    .feature-icon i {
        font-size: 1.7rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .feature-content p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .feature-metrics {
        gap: 10px;
        margin-bottom: 14px;
    }

    .metric-item {
        padding: 12px 10px;
    }

    .metric-icon {
        width: 32px;
        height: 32px;
    }

    .metric-icon i {
        font-size: 0.9rem;
    }

    .metric-value {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .feature-technologies {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .tech-tag {
        font-size: 0.7rem;
        padding: 6px 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 16px;
    }

    .feature-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .feature-technologies {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .tech-tag {
        font-size: 0.65rem;
        padding: 4px 8px;
        text-align: center;
    }
}


@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: local('Inter');
}

.hero-content h1,
.hero-description,
.hero-title-main,
.hero-title-accent {
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}


@supports not (backdrop-filter: blur(10px)) {

    .home-navbar,
    .feature-card-inner,
    .sector-card-inner,
    .stat-card,
    .trust-badge,
    .mockup-container {
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        backdrop-filter: none !important;
        filter: none !important;
        will-change: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .spinner {
        animation: spin 0.8s linear infinite !important;
    }
}

.sectors-stats-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
}

.stat-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 24px 20px;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.stat-cta-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.stat-cta-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-cta-trend {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.stat-cta-label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
}

.stat-cta-desc {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.stat-cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    z-index: 2;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-cta-icon i {
    font-size: 28px;
    color: #475569;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sectors-stats-cta {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .stat-cta {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .stat-cta-content {
        order: 2;
    }

    .stat-cta-icon {
        order: 1;
        margin: 0;
        width: 70px;
        height: 70px;
    }

    .stat-cta-icon i {
        font-size: 28px;
    }

    .stat-cta-number {
        font-size: 2.5rem;
    }

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

    .stat-cta-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stat-cta {
        padding: 20px 16px;
    }

    .stat-cta-number {
        font-size: 2.2rem;
    }

    .stat-cta-icon {
        width: 60px;
        height: 60px;
    }

    .stat-cta-icon i {
        font-size: 24px;
    }
}

@media (max-width: 900px) {
    .mobile-lang-demo {
        gap: 28px !important;
    }


    .mobile-lang-demo .auth-btn {
        width: 100%;
        padding: 16px 20px;
        margin: 8px 0;
        font-size: 1rem;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(90, 59, 237, 0.08) 0%, rgba(102, 126, 234, 0.05) 100%);
        border: 1px solid rgba(90, 59, 237, 0.25);
        color: #5A3BED;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-lang-demo .auth-btn:hover {
        background: linear-gradient(135deg, rgba(90, 59, 237, 0.12) 0%, rgba(102, 126, 234, 0.08) 100%);
        border-color: rgba(90, 59, 237, 0.35);
        transform: translateY(-1px);
        box-shadow: 0 4px 20px rgba(90, 59, 237, 0.2);
    }

    .mobile-lang-demo .demo-btn {
        margin-top: 4px !important;
    }
}

@media (max-width: 900px) {
    .home-menu .mobile-lang-demo {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px !important;
    }

    .home-menu .mobile-lang-demo .lang-dropdown.mobile-version {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .home-menu .mobile-lang-demo .lang-selector-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .home-menu .mobile-lang-demo .auth-btn,
    .home-menu .mobile-lang-demo .demo-btn {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

.corporate-dropdown .corporate-user-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2d3748;
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    position: relative;
}

.corporate-dropdown .corporate-user-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e0;
}

.corporate-dropdown .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(90, 59, 237, 0.3);
    flex-shrink: 0;
}

.corporate-dropdown .avatar-initials {
    color: white;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.corporate-dropdown .user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.corporate-dropdown .user-name {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.4;
    margin: 0;
}

.corporate-dropdown .user-role {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
    margin: 0;
}

.corporate-dropdown .dropdown-arrow {
    font-size: 12px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

.corporate-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.corporate-dropdown .corporate-dropdown-menu {
    min-width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    padding: 0;
    overflow: hidden;
}

.corporate-dropdown .dropdown-header {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.corporate-dropdown .user-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5A3BED 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(90, 59, 237, 0.3);
    flex-shrink: 0;
}

.corporate-dropdown .user-avatar-large .avatar-initials {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.corporate-dropdown .user-details {
    flex-grow: 1;
}

.corporate-dropdown .user-details h6 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.corporate-dropdown .user-details p {
    font-size: 13px;
    color: #718096;
    margin: 0;
    font-weight: 500;
}

.corporate-dropdown .dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 20%, #e2e8f0 80%, transparent 100%);
    margin: 8px 0;
}

.corporate-dropdown .auth-option {
    padding: 0;
    border-radius: 0;
    margin: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.corporate-dropdown .auth-option:hover {
    background: linear-gradient(135deg, rgba(90, 59, 237, 0.05) 0%, rgba(102, 126, 234, 0.03) 100%);
    transform: none;
}

.corporate-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
}

.corporate-dropdown .dropdown-item:hover {
    color: #5A3BED;
    background: transparent;
}

.corporate-dropdown .dropdown-item i {
    font-size: 16px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: color 0.3s ease;
}

.corporate-dropdown .dropdown-item:hover i {
    color: #5A3BED;
}

.corporate-dropdown .dropdown-item span {
    font-size: 14px;
    font-weight: 500;
}

.corporate-dropdown .logout-item {
    color: #e53e3e;
    border-top: 1px solid #e2e8f0;
    margin-top: 4px;
}

.corporate-dropdown .logout-item:hover {
    color: #c53030;
    background: rgba(229, 62, 62, 0.05);
}

.corporate-dropdown .logout-item i {
    color: #e53e3e;
}

.corporate-dropdown .logout-item:hover i {
    color: #c53030;
}

@media (max-width: 900px) {
    .corporate-dropdown .corporate-user-btn {
        min-width: 160px;
        padding: 10px 16px;
        gap: 10px;
    }

    .corporate-dropdown .user-avatar {
        width: 36px;
        height: 36px;
    }

    .corporate-dropdown .avatar-initials {
        font-size: 14px;
    }

    .corporate-dropdown .user-name {
        font-size: 13px;
    }

    .corporate-dropdown .user-role {
        font-size: 11px;
    }

    .corporate-dropdown .corporate-dropdown-menu {
        min-width: 240px;
    }

    .corporate-dropdown .dropdown-header {
        padding: 16px;
        gap: 12px;
    }

    .corporate-dropdown .user-avatar-large {
        width: 50px;
        height: 50px;
    }

    .corporate-dropdown .user-avatar-large .avatar-initials {
        font-size: 20px;
    }

    .corporate-dropdown .user-details h6 {
        font-size: 14px;
    }

    .corporate-dropdown .user-details p {
        font-size: 12px;
    }

    .corporate-dropdown .dropdown-item {
        padding: 14px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .corporate-dropdown .corporate-user-btn {
        min-width: 140px;
        padding: 8px 12px;
        gap: 8px;
    }

    .corporate-dropdown .user-avatar {
        width: 32px;
        height: 32px;
    }

    .corporate-dropdown .avatar-initials {
        font-size: 12px;
    }

    .corporate-dropdown .user-name {
        font-size: 12px;
    }

    .corporate-dropdown .user-role {
        font-size: 10px;
    }

    .corporate-dropdown .corporate-dropdown-menu {
        min-width: 220px;
    }

    .corporate-dropdown .dropdown-header {
        padding: 14px;
        gap: 10px;
    }

    .corporate-dropdown .user-avatar-large {
        width: 45px;
        height: 45px;
    }

    .corporate-dropdown .user-avatar-large .avatar-initials {
        font-size: 18px;
    }

    .corporate-dropdown .user-details h6 {
        font-size: 13px;
    }

    .corporate-dropdown .user-details p {
        font-size: 11px;
    }

    .corporate-dropdown .dropdown-item {
        padding: 12px 14px;
        font-size: 12px;
    }
}

.footer-brand {
    max-width: 400px;
}

.footer-contact .contact-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .contact-info p i {
    color: #5A3BED;
    width: 16px;
    font-size: 0.9rem;
}

.footer-contact .social-links {
    margin-top: 16px;
}

.footer-copyright {
    display: flex;
    align-items: center;
}

.back-to-top-link {
    color: #5A3BED !important;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 8px;
}

.back-to-top-link:hover {
    color: #4A2BC8 !important;
    border-left-color: #5A3BED;
    transform: translateX(4px);
}

.back-to-top-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-to-top-link:hover i {
    transform: translateY(-2px);
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #5A3BED;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(90, 59, 237, 0.3);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: #4A2BC8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(90, 59, 237, 0.4);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .back-to-top-link {
        padding-left: 4px;
        font-size: 13px;
    }
}