@-webkit-keyframes sideupscroll {
    0% {
        -webkit-transform: translate3D(0, 0, 0);
        transform: translate3D(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3D(-50%, 0, 0);
        transform: translate3D(-50%, 0, 0);
    }
    100% {
        -webkit-transform: translate3D(-100%, 0, 0);
        transform: translate3D(-100%, 0, 0);
    }
}
@keyframes sideupscroll {
    0% {
        -webkit-transform: translate3D(0, 0, 0);
        transform: translate3D(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3D(-50%, 0, 0);
        transform: translate3D(-50%, 0, 0);
    }
    100% {
        -webkit-transform: translate3D(-100%, 0, 0);
        transform: translate3D(-100%, 0, 0);
    }
}
.button {
    display: inline-block;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}
.button:hover {
    text-decoration: none;
}
.button--primary {
    background-color: #2e59c1;
    color: white;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
.button--primary:hover {
    background-color: white;
    color: #2e59c1;
}
.button--text {
    color: white;
}

h1,
.h1 {
    font-weight: 700;
}

@font-face {
    font-family: "Avenir LT Std";
    src: url("../fonts/AvenirLTStd-Book.eot");
    src: url("../fonts/AvenirLTStd-Book.eot?#iefix") format("embedded-opentype"),
        url("../fonts/AvenirLTStd-Book.woff2") format("woff2"),
        url("../fonts/AvenirLTStd-Book.woff") format("woff"),
        url("../fonts/AvenirLTStd-Book.ttf") format("truetype"),
        url("../fonts/AvenirLTStd-Book.svg#AvenirLTStd-Book") format("svg");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Avenir LT Std";
    src: url("../fonts/AvenirLTStd-Roman.eot");
    src: url("../fonts/AvenirLTStd-Roman.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/AvenirLTStd-Roman.woff2") format("woff2"),
        url("../fonts/AvenirLTStd-Roman.woff") format("woff"),
        url("../fonts/AvenirLTStd-Roman.ttf") format("truetype"),
        url("../fonts/AvenirLTStd-Roman.svg#AvenirLTStd-Roman") format("svg");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Avenir LT Std";
    src: url("../fonts/AvenirLTStd-Medium.eot");
    src: url("../fonts/AvenirLTStd-Medium.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/AvenirLTStd-Medium.woff2") format("woff2"),
        url("../fonts/AvenirLTStd-Medium.woff") format("woff"),
        url("../fonts/AvenirLTStd-Medium.ttf") format("truetype"),
        url("../fonts/AvenirLTStd-Medium.svg#AvenirLTStd-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
}
.header {
    width: 100%;
    min-height: 100vh;
    position: relative;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #0f1946 0%, #1a2a6c 50%, #0f1946 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 80% 50%,
        rgba(46, 89, 193, 0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* Navigation */
.header-nav {
    padding: 25px 0;
    position: relative;
    z-index: 10;
}
.header-nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-cta {
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
}

/* Header Content */
.header-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0 80px;
    position: relative;
    z-index: 5;
}
.header-text {
    max-width: 540px;
}
.header-badge {
    display: inline-block;
    background: rgba(46, 89, 193, 0.3);
    color: #7eb3ff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.header-title {
    color: white;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.text-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.header-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}
.header-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    margin-bottom: 40px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #4facfe;
    border-radius: 0 8px 8px 0;
}
.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    color: #0f1946;
    font-size: 14px;
    font-weight: 700;
}
.header-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.header-buttons .button {
    width: auto;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
}
.button--primary {
    background: linear-gradient(135deg, #2e59c1 0%, #4facfe 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(46, 89, 193, 0.4);
    transition: all 0.3s ease;
    border: none;
}
.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 89, 193, 0.5);
    background: linear-gradient(135deg, #3a65cd 0%, #5fb8ff 100%);
    color: white;
}
.button--outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
}

/* Phone Mockups */
.header-phones {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}
.phone-mockup img {
    display: block;
    width: 100%;
    height: auto;
}
.phone-mockup--back {
    width: 220px;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    z-index: 1;
    opacity: 0.85;
}
.phone-mockup--front {
    width: 260px;
    left: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    z-index: 2;
}
.phone-mockup:hover {
    transform: translateY(-50%) rotate(0deg) scale(1.02);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.header .baro-logo {
    height: 50px;
}
.header img {
    max-width: 100%;
}

.align-self-mid {
    align-self: center;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}
.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-badge {
    display: inline-block;
    background: rgba(46, 89, 193, 0.1);
    color: #2e59c1;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}
.section-title .text-primary {
    color: #2e59c1;
}
.section-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px 20px;
    width: calc((100% - 120px) / 6);
    min-width: 140px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.feature-icon i {
    font-size: 32px;
    color: #2e59c1;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 2;
}
.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.feature-icon::before {
    width: 12px;
    height: 12px;
    top: 5px;
    right: 5px;
    opacity: 0.6;
}
.feature-icon::after {
    width: 8px;
    height: 8px;
    bottom: 8px;
    left: 3px;
    opacity: 0.4;
}
.feature-icon .bubble {
    position: absolute;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    top: 50%;
    right: 0;
    opacity: 0.3;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.feature-card:hover .feature-icon i {
    transform: scale(1.15);
}
.feature-card:hover .feature-icon::before {
    transform: scale(1.3) translate(3px, -3px);
    opacity: 0.8;
}
.feature-card:hover .feature-icon::after {
    transform: scale(1.4) translate(-3px, 3px);
    opacity: 0.6;
}
.feature-card:hover .feature-icon .bubble {
    transform: scale(1.5);
    opacity: 0.5;
}

/* Feature Icon Colors with Bubbles */
.feature-card--mev .feature-icon i {
    color: #6366f1;
}
.feature-card--mev .feature-icon::before {
    background: #6366f1;
}
.feature-card--mev .feature-icon::after {
    background: #a5b4fc;
}
.feature-card--mev .feature-icon .bubble {
    background: #818cf8;
}

.feature-card--bar .feature-icon i {
    color: #8b5cf6;
}
.feature-card--bar .feature-icon::before {
    background: #8b5cf6;
}
.feature-card--bar .feature-icon::after {
    background: #c4b5fd;
}
.feature-card--bar .feature-icon .bubble {
    background: #a78bfa;
}

.feature-card--hab .feature-icon i {
    color: #ec4899;
}
.feature-card--hab .feature-icon::before {
    background: #ec4899;
}
.feature-card--hab .feature-icon::after {
    background: #f9a8d4;
}
.feature-card--hab .feature-icon .bubble {
    background: #f472b6;
}

.feature-card--ara .feature-icon i {
    color: #f59e0b;
}
.feature-card--ara .feature-icon::before {
    background: #f59e0b;
}
.feature-card--ara .feature-icon::after {
    background: #fcd34d;
}
.feature-card--ara .feature-icon .bubble {
    background: #fbbf24;
}

.feature-card--barl .feature-icon i {
    color: #10b981;
}
.feature-card--barl .feature-icon::before {
    background: #10b981;
}
.feature-card--barl .feature-icon::after {
    background: #6ee7b7;
}
.feature-card--barl .feature-icon .bubble {
    background: #34d399;
}

.feature-card--aja .feature-icon i {
    color: #3b82f6;
}
.feature-card--aja .feature-icon::before {
    background: #3b82f6;
}
.feature-card--aja .feature-icon::after {
    background: #93c5fd;
}
.feature-card--aja .feature-icon .bubble {
    background: #60a5fa;
}

.feature-card--can .feature-icon i {
    color: #ef4444;
}
.feature-card--can .feature-icon::before {
    background: #ef4444;
}
.feature-card--can .feature-icon::after {
    background: #fca5a5;
}
.feature-card--can .feature-icon .bubble {
    background: #f87171;
}

.feature-card--yay .feature-icon i {
    color: #8b5cf6;
}
.feature-card--yay .feature-icon::before {
    background: #8b5cf6;
}
.feature-card--yay .feature-icon::after {
    background: #c4b5fd;
}
.feature-card--yay .feature-icon .bubble {
    background: #a78bfa;
}

.feature-card--tel .feature-icon i {
    color: #06b6d4;
}
.feature-card--tel .feature-icon::before {
    background: #06b6d4;
}
.feature-card--tel .feature-icon::after {
    background: #67e8f9;
}
.feature-card--tel .feature-icon .bubble {
    background: #22d3ee;
}

.feature-card--ses .feature-icon i {
    color: #f97316;
}
.feature-card--ses .feature-icon::before {
    background: #f97316;
}
.feature-card--ses .feature-icon::after {
    background: #fdba74;
}
.feature-card--ses .feature-icon .bubble {
    background: #fb923c;
}

.feature-card--duy .feature-icon i {
    color: #eab308;
}
.feature-card--duy .feature-icon::before {
    background: #eab308;
}
.feature-card--duy .feature-icon::after {
    background: #fde047;
}
.feature-card--duy .feature-icon .bubble {
    background: #facc15;
}

.feature-card--ila .feature-icon i {
    color: #14b8a6;
}
.feature-card--ila .feature-icon::before {
    background: #14b8a6;
}
.feature-card--ila .feature-icon::after {
    background: #5eead4;
}
.feature-card--ila .feature-icon .bubble {
    background: #2dd4bf;
}

.feature-card--reh .feature-icon i {
    color: #059669;
}
.feature-card--reh .feature-icon::before {
    background: #059669;
}
.feature-card--reh .feature-icon::after {
    background: #6ee7b7;
}
.feature-card--reh .feature-icon .bubble {
    background: #34d399;
}

.feature-card--bil .feature-icon i {
    color: #d946ef;
}
.feature-card--bil .feature-icon::before {
    background: #d946ef;
}
.feature-card--bil .feature-icon::after {
    background: #f0abfc;
}
.feature-card--bil .feature-icon .bubble {
    background: #e879f9;
}

.feature-card--dij .feature-icon i {
    color: #0891b2;
}
.feature-card--dij .feature-icon::before {
    background: #0891b2;
}
.feature-card--dij .feature-icon::after {
    background: #67e8f9;
}
.feature-card--dij .feature-icon .bubble {
    background: #22d3ee;
}

.feature-card--bek .feature-icon i {
    color: #7c3aed;
}
.feature-card--bek .feature-icon::before {
    background: #7c3aed;
}
.feature-card--bek .feature-icon::after {
    background: #c4b5fd;
}
.feature-card--bek .feature-icon .bubble {
    background: #a78bfa;
}

/* Coming Soon Feature Cards */
.feature-card--coming {
    position: relative;
}
.feature-coming-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

/* Feature Card Colors */
.feature-card--mev {
    color: #6366f1;
}
.feature-card--bar {
    color: #8b5cf6;
}
.feature-card--hab {
    color: #ec4899;
}
.feature-card--ara {
    color: #f59e0b;
}
.feature-card--barl {
    color: #10b981;
}
.feature-card--aja {
    color: #3b82f6;
}
.feature-card--can {
    color: #ef4444;
}
.feature-card--yay {
    color: #8b5cf6;
}
.feature-card--tel {
    color: #06b6d4;
}
.feature-card--ses {
    color: #f97316;
}
.feature-card--duy {
    color: #eab308;
}
.feature-card--ila {
    color: #14b8a6;
}
.feature-card--reh {
    color: #059669;
}
.feature-card--bil {
    color: #d946ef;
}
.feature-card--dij {
    color: #0891b2;
}
.feature-card--bek {
    color: #7c3aed;
}

@media (max-width: 1200px) {
    .feature-card {
        width: calc((100% - 72px) / 4);
    }
}
@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }
    .features-grid {
        gap: 16px;
    }
    .feature-card {
        width: calc((100% - 32px) / 3);
        padding: 24px 16px;
    }
    .section-title {
        font-size: 32px;
    }
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    .feature-icon i {
        font-size: 28px;
    }
    .feature-title {
        font-size: 12px;
    }
    .feature-coming-badge {
        font-size: 8px;
        padding: 3px 6px;
        top: 8px;
        right: 8px;
    }
}
@media (max-width: 480px) {
    .features-grid {
        gap: 12px;
    }
    .feature-card {
        width: calc((100% - 12px) / 2);
    }
    .section-title {
        font-size: 26px;
    }
    .section-description {
        font-size: 15px;
    }
    .feature-card {
        padding: 20px 12px;
        border-radius: 12px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    .feature-icon i {
        font-size: 24px;
    }
    .feature-title {
        font-size: 11px;
    }
    .feature-coming-badge {
        font-size: 7px;
        padding: 2px 5px;
        top: 6px;
        right: 6px;
    }
}

/* References Section */
.references {
    padding: 100px 0;
    background: #ffffff;
}
.references-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}
.references-header .section-title {
    color: #1a1a2e;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}
.stat-card {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #2e59c1;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

/* Clients Grid */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px 60px;
    max-width: 1000px;
    margin: 0 auto;
}
.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}
.client-card:hover {
    transform: scale(1.05);
}
.client-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.client-card span {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.3s ease;
}
.client-card:hover span {
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .references {
        padding: 60px 0;
    }
    .stats-grid {
        gap: 40px;
    }
    .stat-number {
        font-size: 42px;
    }
    .stat-label {
        font-size: 13px;
    }
    .clients-grid {
        gap: 30px 40px;
    }
    .client-card img {
        width: 80px;
        height: 80px;
    }
    .client-card span {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .stats-grid {
        gap: 24px;
    }
    .stat-number {
        font-size: 32px;
    }
    .stat-label {
        font-size: 11px;
    }
    .clients-grid {
        gap: 24px 30px;
    }
    .client-card img {
        width: 65px;
        height: 65px;
        margin-bottom: 8px;
    }
    .client-card span {
        font-size: 11px;
    }
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f1946 0%, #1a2a6c 100%);
    overflow: hidden;
}
.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-badge--light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}
.showcase-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.showcase-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Showcase Item */
.showcase-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}
.showcase-item:last-child {
    margin-bottom: 0;
}
.showcase-item--reverse {
    flex-direction: row-reverse;
}
.showcase-content {
    flex: 1;
    max-width: 480px;
}
/* Showcase Number */
.showcase-number {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.showcase-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.showcase-badge--purple {
    background: rgba(100, 79, 223, 0.2);
    color: #a89eff;
}
.showcase-badge--pink {
    background: rgba(234, 63, 194, 0.2);
    color: #ff8de3;
}
.showcase-badge--green {
    background: rgba(16, 157, 38, 0.2);
    color: #5cdb6e;
}
.showcase-badge--red {
    background: rgba(240, 63, 29, 0.2);
    color: #ff7a5c;
}
.showcase-badge--blue {
    background: rgba(46, 89, 193, 0.2);
    color: #7eb3ff;
}
.showcase-badge--orange {
    background: rgba(237, 155, 56, 0.2);
    color: #ffbe5c;
}
.showcase-badge--cyan {
    background: rgba(28, 153, 255, 0.2);
    color: #5cc8ff;
}
.showcase-badge--coming {
    background: linear-gradient(
        135deg,
        rgba(255, 170, 0, 0.3),
        rgba(255, 85, 0, 0.3)
    );
    color: #ffcc00;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 170, 0, 0.5);
    }
}

/* Coming Soon Placeholder */
.showcase-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 400px;
    background: linear-gradient(
        135deg,
        rgba(255, 170, 0, 0.1) 0%,
        rgba(255, 85, 0, 0.1) 100%
    );
    border: 2px dashed rgba(255, 170, 0, 0.4);
    border-radius: 24px;
    position: relative;
}
.showcase-coming-soon.ml-160 {
    margin-left: 160px;
}
.showcase-coming-soon.mr-160 {
    margin-right: 160px;
}

.coming-soon-icon {
    color: rgba(255, 170, 0, 0.6);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.coming-soon-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.showcase-item-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.25;
}
.showcase-item-title em {
    font-style: normal;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.showcase-item-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}
.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 12px;
}
.showcase-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #0a0a0a;
}

/* Showcase Phones */
.showcase-phones {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.showcase-phone {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}
.showcase-phone img {
    display: block;
    width: 100%;
    height: auto;
}
.showcase-phone--front {
    width: 220px;
    z-index: 3;
    transform: translateX(0);
}
.showcase-phone--mid {
    width: 200px;
    z-index: 2;
    transform: translateX(120px) scale(0.9);
    opacity: 0.85;
}
.showcase-phone--back {
    width: 180px;
    z-index: 1;
    transform: translateX(-120px) scale(0.8);
    opacity: 0.7;
}
.showcase-item--reverse .showcase-phone--mid {
    transform: translateX(-120px) scale(0.9);
}
.showcase-item--reverse .showcase-phone--back {
    transform: translateX(120px) scale(0.8);
}

/* Hover effects */
.showcase-item:hover .showcase-phone--front {
    transform: translateX(0) scale(1.08);
}
.showcase-item:hover .showcase-phone--mid {
    transform: translateX(160px) scale(0.95);
    opacity: 0.95;
}
.showcase-item:hover .showcase-phone--back {
    transform: translateX(-160px) scale(0.88);
    opacity: 0.85;
}
.showcase-item--reverse:hover .showcase-phone--mid {
    transform: translateX(-160px) scale(0.95);
}
.showcase-item--reverse:hover .showcase-phone--back {
    transform: translateX(160px) scale(0.88);
}

/* Responsive */
@media (max-width: 991px) {
    .showcase-item {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    .showcase-item--reverse {
        flex-direction: column;
    }
    .showcase-content {
        max-width: 100%;
        text-align: center;
    }
    .showcase-features {
        display: inline-block;
        text-align: left;
    }
    .showcase-phones {
        height: 400px;
    }
    .showcase-phone--front {
        width: 200px;
    }
    .showcase-phone--mid {
        width: 180px;
        transform: translateX(100px) scale(0.9);
    }
    .showcase-phone--back {
        width: 160px;
        transform: translateX(-100px) scale(0.8);
    }
    .showcase-item--reverse .showcase-phone--mid {
        transform: translateX(100px) scale(0.9);
    }
    .showcase-item--reverse .showcase-phone--back {
        transform: translateX(-100px) scale(0.8);
    }
}
@media (max-width: 768px) {
    .showcase {
        padding: 60px 0;
    }
    .showcase-header {
        margin-bottom: 50px;
    }
    .showcase-title {
        font-size: 32px;
    }
    .showcase-item {
        margin-bottom: 60px;
    }
    .showcase-number {
        font-size: 50px;
        margin-bottom: 10px;
    }
    .showcase-item-title {
        font-size: 24px;
    }
    .showcase-item-desc {
        font-size: 15px;
    }
    .showcase-phones {
        position: static;
        height: auto;
        width: 100%;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 10px;
    }
    .showcase-phone {
        position: static;
        transform: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    .showcase-phone--front {
        width: 140px;
        order: 2;
    }
    .showcase-phone--mid {
        width: 120px;
        order: 3;
        opacity: 0.9;
    }
    .showcase-phone--back {
        width: 120px;
        order: 1;
        opacity: 0.9;
    }
    .showcase-item--reverse .showcase-phone--mid,
    .showcase-item--reverse .showcase-phone--back {
        transform: none;
    }
    .showcase-item:hover .showcase-phone {
        transform: none;
    }
    .showcase-coming-soon {
        width: 200px;
        height: 300px;
        margin-top: 30px;
    }
    .showcase-coming-soon.ml-160,
    .showcase-coming-soon.mr-160 {
        margin-left: 0;
        margin-right: 0;
    }
    .coming-soon-icon svg {
        width: 60px;
        height: 60px;
    }
    .coming-soon-text {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .showcase {
        padding: 50px 0;
    }
    .showcase-title {
        font-size: 26px;
    }
    .showcase-subtitle {
        font-size: 14px;
    }
    .showcase-item {
        margin-bottom: 50px;
    }
    .showcase-number {
        font-size: 40px;
        margin-bottom: 8px;
    }
    .showcase-item-title {
        font-size: 20px;
    }
    .showcase-item-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    .showcase-features li {
        font-size: 13px;
    }
    .showcase-phones {
        gap: 8px;
    }
    .showcase-phone {
        border-radius: 16px;
    }
    .showcase-phone--front {
        width: 115px;
    }
    .showcase-phone--mid {
        width: 100px;
    }
    .showcase-phone--back {
        width: 100px;
    }
    .showcase-coming-soon {
        width: 160px;
        height: 240px;
    }
    .coming-soon-icon svg {
        width: 50px;
        height: 50px;
    }
    .coming-soon-text {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

.app-screen {
    max-width: 100%;
}

@media (max-width: 480px) {
    .slider img {
        max-width: 100%;
    }
    .slider p {
        padding: 10px;
    }

    .header {
        min-height: auto;
    }
    .header-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .header-description {
        font-size: 15px;
    }
    .header-phones {
        height: 300px;
        margin-top: 40px;
    }
    .phone-mockup--front {
        width: 180px;
    }
    .phone-mockup--back {
        width: 150px;
    }
    .header-buttons {
        flex-direction: column;
    }
    .header-buttons .button {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .header {
        min-height: auto;
    }
    .header-content {
        padding: 20px 0 40px;
    }
    .header-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    .header-description {
        font-size: 16px;
        line-height: 1.6;
    }
    .header-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    .header-highlight {
        padding: 12px 16px;
        font-size: 14px;
    }
    .header-phones {
        height: 350px;
        margin-top: 50px;
    }
    .phone-mockup--front {
        width: 200px;
        left: 5%;
    }
    .phone-mockup--back {
        width: 170px;
        right: 5%;
    }
}
@media (max-width: 991px) {
    .header-phones {
        height: 400px;
        margin-top: 60px;
    }
    .phone-mockup--front {
        left: 15%;
    }
    .phone-mockup--back {
        right: 15%;
    }
}
.box {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-box-shadow: 0px 3px 18px 0px rgba(174, 174, 174, 0.5);
    -moz-box-shadow: 0px 3px 18px 0px rgba(174, 174, 174, 0.5);
    box-shadow: 0px 3px 18px 0px rgba(174, 174, 174, 0.5);
    width: 100%;
    padding: 30px;
    text-align: center;
    height: 150px;
    margin-bottom: 50px;
}
.box img {
    margin-bottom: 15px;
}

.fi {
    font-size: 14px;
    font-weight: 500;
}
.fi--aja {
    color: #ed9b38;
}
.fi--mev {
    color: #644fdf;
}
.fi--bar {
    color: #444b53;
}
.fi--barl {
    color: #ea3fc2;
}
.fi--ila {
    color: #b72ba8;
}
.fi--can {
    color: #2e59c1;
}
.fi--yay {
    color: #53c12e;
}
.fi--ara {
    color: #f03f1d;
}
.fi--tel {
    color: #1c99ff;
}
.fi--ses {
    color: #1cbb97;
}
.fi--hab {
    color: #109d26;
}
.fi--duy {
    color: #0088ff;
}

body {
    font-family: "Roboto", sans-serif;
}

p {
    font-size: 18px;
    color: #828697;
    line-height: 24px;
    font-weight: 200;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.count {
    color: #2e59c1;
}
.count--title {
    font-weight: 500;
    font-size: 24px;
    position: relative;
    display: inline-block;
}
.count--title:before {
    position: absolute;
    content: "";
    height: 3px;
    width: 10px;
    background-color: #2e59c1;
    left: 0;
    top: -5px;
}

.references-list {
    margin-top: 50px;
    padding: 0;
    margin-right: -15px;
    margin-left: -15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.references-list li {
    list-style-type: none;
    width: 33%;
    float: left;
    padding: 15px;
    text-align: center;
    height: 200px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #cfdaf5;
    border-right: 1px solid #cfdaf5;
}
.references-list li:nth-child(3n) {
    border-right: none;
}
.references-list li:nth-last-child(-n + 3) {
    border-bottom: none;
}
.references-list li figure {
    display: inline-block;
    margin-top: 15px;
}
.references-list li figure img {
    max-width: 100%;
    width: 100px;
    height: 100px;
}
.references-list li figure figcaption {
    color: #2e59c1;
    padding: 10px;
    display: block;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0f1946 0%, #0a1035 100%);
    padding-top: 100px;
    padding-bottom: 0;
    position: relative;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 30% 0%,
        rgba(46, 89, 193, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.footer-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.footer-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.footer-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Form Styles */
.footer-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.footer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9fafb;
    margin-bottom: 0;
}
.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: #2e59c1;
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 89, 193, 0.1);
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #9ca3af;
}
.footer-form textarea {
    resize: none;
    min-height: 120px;
}
.form-error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
}
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2e59c1 0%, #4facfe 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(46, 89, 193, 0.3);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 89, 193, 0.4);
}
.footer-form .form-success {
    margin-top: 20px;
    padding: 16px;
    background: #ecfdf5;
    border-radius: 10px;
    color: #059669;
    text-align: center;
    font-weight: 500;
}

/* Info Cards */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}
.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2e59c1 0%, #4facfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon svg {
    color: white;
}
.info-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.info-content p,
.info-content a {
    font-size: 15px;
    color: white;
    line-height: 1.6;
    margin: 0;
}
.info-content a:hover {
    color: #4facfe;
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-info {
        order: -1;
    }
}
@media (max-width: 768px) {
    footer {
        padding-top: 60px;
    }
    .footer-title {
        font-size: 32px;
    }
    .footer-form-wrapper {
        padding: 30px 24px;
    }
    .footer-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-bottom {
        margin-top: 50px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-title {
        font-size: 26px;
    }
    .footer-subtitle {
        font-size: 15px;
    }
    .info-card {
        padding: 20px;
    }
    .info-icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .f-line p {
        text-align: center;
    }
    .f-line .col-md-6:last-child {
        text-align: center;
    }

    .references-list li {
        width: 50%;
    }
    .references-list li:nth-child(3n) {
        border-right: 1px solid #cfdaf5;
    }
    .references-list li:nth-child(2n) {
        border-right: none;
    }
    .references-list li:last-child {
        border-right: none;
    }

    .slick-prev:before,
    .slick-next:before {
        display: none;
    }
}

/* ===========================================
   ANIMATIONS
   =========================================== */

/* Hero Animations - Page Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-40px) rotate(-3deg);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0) rotate(-3deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(40px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0) rotate(5deg);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Element Animations */
.header-badge {
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
    animation-delay: 0.2s;
}

.header-title {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
    animation-delay: 0.4s;
}

.header-description {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
    animation-delay: 0.6s;
}

.header-highlight {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.8s;
}

.header-buttons {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1s;
}

.phone-mockup--front {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.6s;
}

.phone-mockup--back {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Slide from Left */
.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.animate-left.animated {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
}

/* Slide from Right */
.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0);
    will-change: auto;
}

/* Scale In */
.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Fade In */
.animate-fade {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.animate-fade.animated {
    opacity: 1;
}

/* Staggered Children Animation */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.25s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.35s; }
.stagger-children .animate-on-scroll:nth-child(7) { transition-delay: 0.4s; }
.stagger-children .animate-on-scroll:nth-child(8) { transition-delay: 0.45s; }
.stagger-children .animate-on-scroll:nth-child(9) { transition-delay: 0.5s; }
.stagger-children .animate-on-scroll:nth-child(10) { transition-delay: 0.55s; }
.stagger-children .animate-on-scroll:nth-child(11) { transition-delay: 0.6s; }
.stagger-children .animate-on-scroll:nth-child(12) { transition-delay: 0.65s; }
.stagger-children .animate-on-scroll:nth-child(13) { transition-delay: 0.7s; }
.stagger-children .animate-on-scroll:nth-child(14) { transition-delay: 0.75s; }
.stagger-children .animate-on-scroll:nth-child(15) { transition-delay: 0.8s; }
.stagger-children .animate-on-scroll:nth-child(16) { transition-delay: 0.85s; }

/* Stats Counter Animation */
.stat-number {
    display: inline-block;
}

.stat-suffix {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .stat-suffix {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .stat-suffix {
        font-size: 32px;
    }
}

/* Mobile animation adjustments */
@media (max-width: 768px) {
    .animate-left {
        transform: translateX(-30px);
    }

    .animate-right {
        transform: translateX(30px);
    }

    .animate-on-scroll {
        transform: translateY(25px);
    }

    .animate-left,
    .animate-right,
    .animate-on-scroll {
        transition-duration: 0.5s;
    }
}

/* Prevent horizontal overflow from animations */
.showcase,
.features,
.references,
#footer {
    overflow-x: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .header-badge,
    .header-title,
    .header-description,
    .header-highlight,
    .header-buttons,
    .phone-mockup--front,
    .phone-mockup--back {
        animation: none;
        opacity: 1;
    }

    .animate-on-scroll,
    .animate-left,
    .animate-right,
    .animate-scale,
    .animate-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/*# sourceMappingURL=main.css.map */
