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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #061018;
    color: #eef8ff;
    line-height: 1.7;
}

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

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}


/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(6, 16, 24, 0.94);
    border-bottom: 1px solid #172b38;
    backdrop-filter: blur(15px);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
}

.logo strong {
    color: #27b7f4;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #27b7f4;
    border-radius: 10px;
    color: #27b7f4;
    font-size: 12px;
}

.menu {
    display: flex;
    gap: 32px;
}

.menu a {
    color: #9bb0bd;
    font-size: 14px;
    transition: 0.2s;
}

.menu a:hover {
    color: #ffffff;
}


/* ================= BUTTONS ================= */

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 9px;
    background: #24b4f0;
    color: #041019;
    font-weight: 800;
    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(36, 180, 240, 0.25);
}

.btn-outline {
    background: transparent;
    border: 1px solid #294452;
    color: #eaf7ff;
}

.btn-outline:hover {
    border-color: #24b4f0;
    background: rgba(36, 180, 240, 0.05);
}

.btn-small {
    padding: 9px 16px;
    font-size: 13px;
}


/* ================= HERO ================= */

.hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(18, 100, 140, 0.35),
            transparent 38%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 90px 0;
}

.badge {
    display: inline-block;
    margin-bottom: 18px;
    color: #2dbaf3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    max-width: 800px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #2dbaf3;
}

.hero p {
    max-width: 670px;
    color: #9db0bd;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
    color: #718693;
    font-size: 12px;
}


/* ================= HERO VISUAL ================= */

.hero-visual {
    min-height: 400px;
    display: grid;
    place-items: center;
    position: relative;
}

.glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(28, 181, 241, 0.25),
        transparent 65%
    );
}

.dashboard {
    width: 100%;
    max-width: 440px;
    position: relative;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid #254353;
    background: rgba(8, 23, 34, 0.9);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-top small {
    color: #728996;
    font-size: 9px;
    letter-spacing: 1.5px;
}

.dashboard-top h3 {
    margin-top: 5px;
    font-size: 27px;
}

.online {
    color: #43c9f5;
    font-size: 9px;
    letter-spacing: 1px;
}

.online i {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background: #43c9f5;
    margin-right: 5px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 35px 0;
}

.stat {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #1b3543;
}

.stat strong {
    display: block;
    color: #2dbaf3;
    font-size: 18px;
}

.stat span {
    color: #728995;
    font-size: 9px;
}

.connection {
    display: flex;
    align-items: center;
    border-top: 1px solid #19313e;
    padding-top: 18px;
}

.connection span {
    margin-left: auto;
    color: #617985;
    font-size: 9px;
    letter-spacing: 1px;
}

.bars {
    display: flex;
    gap: 5px;
    align-items: end;
}

.bars i {
    width: 5px;
    height: 15px;
    background: #29b9f2;
    border-radius: 4px;
}

.bars i:nth-child(2) {
    height: 24px;
}

.bars i:nth-child(3) {
    height: 18px;
}

.bars i:nth-child(4) {
    height: 30px;
}

.bars i:nth-child(5) {
    height: 22px;
}


/* ================= SERVICE BAR ================= */

.service-bar {
    border-top: 1px solid #172b38;
    border-bottom: 1px solid #172b38;
    padding: 22px 0;
}

.service-bar-inner {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.service-bar span {
    color: #617783;
    font-size: 10px;
    letter-spacing: 1.6px;
}


/* ================= SECTIONS ================= */

.section {
    padding: 110px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 60px;
    margin-bottom: 55px;
}

.section-heading h2 {
    max-width: 700px;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.section-heading h2 span {
    color: #2dbaf3;
}

.section-heading > p {
    color: #8297a4;
}


/* ================= SERVICES ================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    min-height: 260px;
    padding: 28px;
    background: #091721;
    border: 1px solid #1a303e;
    border-radius: 15px;
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #28718f;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-number {
    color: #2dbaf3;
    font-size: 11px;
    font-weight: 800;
}

.service-card h3 {
    margin: 25px 0 12px;
    font-size: 18px;
    line-height: 1.3;
}

.service-card p {
    color: #8196a3;
    font-size: 13px;
}

.service-card a {
    display: inline-block;
    margin-top: 20px;
    color: #2dbaf3;
    font-size: 12px;
    font-weight: 700;
}


/* ================= ABOUT ================= */

.about {
    padding: 110px 0;
    background: #08141e;
    border-top: 1px solid #142934;
    border-bottom: 1px solid #142934;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about h2 {
    max-width: 600px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-text p {
    color: #8296a3;
    margin-bottom: 18px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}

.features div {
    padding: 15px;
    border: 1px solid #1b3442;
    border-radius: 10px;
}

.features strong {
    display: block;
    color: #2dbaf3;
    font-size: 11px;
}

.features span {
    color: #b2c2cb;
    font-size: 12px;
}


/* ================= CTA ================= */

.cta {
    padding: 100px 0;
}

.cta-box {
    padding: 60px;
    border-radius: 22px;
    border: 1px solid #204354;
    background:
        linear-gradient(
            110deg,
            #091b27,
            #0a202e
        );
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta h2 {
    max-width: 750px;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.cta p {
    color: #8298a6;
    max-width: 650px;
    margin-top: 15px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}


/* ================= FOOTER ================= */

footer {
    border-top: 1px solid #172b38;
    padding: 45px 0 25px;
    color: #718692;
}

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

.footer-brand p {
    margin-top: 10px;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 25px;
    font-size: 13px;
}

.footer-links a:hover {
    color: #2dbaf3;
}

.copyright {
    border-top: 1px solid #132731;
    margin-top: 35px;
    padding-top: 20px;
    font-size: 11px;
    color: #536873;
}


/* ================= MOBILE ================= */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 650px) {

    .container {
        width: 92%;
    }

    .menu {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .service-bar-inner {
        gap: 18px;
    }

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

    .section,
    .about {
        padding: 75px 0;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 70px 0;
    }

    .cta-box {
        padding: 30px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
/* ================= INNER PAGE ================= */

.page-hero {
    padding: 120px 0 100px;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(18, 100, 140, 0.35),
            transparent 40%
        );

    border-bottom: 1px solid #172b38;
}

.page-hero h1 {
    max-width: 850px;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.page-hero h1 span {
    color: #2dbaf3;
}

.page-hero p {
    max-width: 720px;

    color: #9db0bd;

    font-size: 18px;
}
/* ================= CONTACT ================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-grid h2 {
    max-width: 600px;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.contact-grid h2 span {
    color: #2dbaf3;
}

.contact-description {
    max-width: 550px;
    color: #8296a3;
    margin-bottom: 35px;
}

.contact-info {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-item {
    padding: 18px;
    border: 1px solid #1a303e;
    border-radius: 11px;
    background: #091721;
}

.contact-item strong {
    display: block;
    color: #2dbaf3;
    font-size: 11px;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item span {
    color: #a9bbc5;
    font-size: 14px;
}

.contact-item a:hover {
    color: #2dbaf3;
}

.contact-form-box {
    padding: 35px;
    background: #091721;
    border: 1px solid #1a303e;
    border-radius: 18px;
}

.contact-form-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-form-box form {
    display: grid;
    gap: 10px;
}

.contact-form-box label {
    color: #91a6b2;
    font-size: 12px;
    margin-top: 8px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #223c4a;
    border-radius: 9px;
    background: #061018;
    color: #eef8ff;
    font-family: inherit;
    outline: none;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #2dbaf3;
}

.contact-form-box textarea {
    resize: vertical;
}

.contact-form-box button {
    border: 0;
    cursor: pointer;
    margin-top: 15px;
    font-family: inherit;
}

@media (max-width: 850px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 25px;
    }

}
/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;
    color: white;

    font-size: 25px;
    font-weight: bold;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);

    transition: 0.25s;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
}

.whatsapp-float span {
    font-size: 26px;
}
/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;

    border: 1px solid #244352;
    background: #091721;
    color: #ffffff;

    width: 44px;
    height: 44px;

    border-radius: 9px;

    font-size: 22px;
    cursor: pointer;
}


/* MOBILE */

@media (max-width: 850px) {

    .nav {
        position: relative;
    }

    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        margin-left: auto;
        margin-right: 10px;
    }

    .menu {
        display: none;

        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        padding: 15px;

        background: #091721;

        border: 1px solid #1b3442;
        border-radius: 12px;

        flex-direction: column;

        z-index: 999;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        display: block;

        width: 100%;

        padding: 13px 15px;

        border-radius: 8px;
    }

    .menu a:hover {
        background: #102632;
    }

}
/* =========================================================
   TALKTIME BPO - PREMIUM ANIMATIONS
   ========================================================= */

/* Smooth page entrance */
body {
    animation: pageFadeIn 0.7s ease-out;
}

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


/* ================= HERO ANIMATION ================= */

.hero-content .badge {
    animation: fadeUp 0.7s ease-out both;
}

.hero h1 {
    animation: fadeUp 0.8s 0.12s ease-out both;
}

.hero p {
    animation: fadeUp 0.8s 0.22s ease-out both;
}

.hero-buttons {
    animation: fadeUp 0.8s 0.32s ease-out both;
}

.trust {
    animation: fadeUp 0.8s 0.42s ease-out both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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


/* ================= HERO DASHBOARD ================= */

.hero-visual {
    animation: dashboardEnter 1s 0.25s ease-out both;
}

@keyframes dashboardEnter {
    from {
        opacity: 0;
        transform: translateX(35px) scale(0.96);
    }

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


/* Floating dashboard */

.dashboard {
    animation: dashboardFloat 5s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* Glowing background */

.glow {
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}


/* ================= ONLINE STATUS ================= */

.online i {
    animation: onlinePulse 1.6s ease-in-out infinite;
}

@keyframes onlinePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 201, 245, 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(67, 201, 245, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(67, 201, 245, 0);
    }
}


/* ================= NETWORK BARS ================= */

.bars i {
    animation: networkBars 1.2s ease-in-out infinite alternate;
}

.bars i:nth-child(1) {
    animation-delay: 0s;
}

.bars i:nth-child(2) {
    animation-delay: 0.15s;
}

.bars i:nth-child(3) {
    animation-delay: 0.3s;
}

.bars i:nth-child(4) {
    animation-delay: 0.45s;
}

.bars i:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes networkBars {
    from {
        opacity: 0.35;
        transform: scaleY(0.65);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* ================= SERVICE BAR ================= */

.service-bar span {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.service-bar span:hover {
    color: #2dbaf3;
    transform: translateY(-3px);
}


/* ================= SERVICE CARDS ================= */

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #2dbaf3,
        transparent
    );
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 120%;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card .service-number {
    transition:
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}

.service-card:hover .service-number {
    transform: translateX(5px);
    letter-spacing: 2px;
}

.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #2dbaf3;
}

.service-card a {
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.service-card:hover a {
    transform: translateX(5px);
}


/* ================= FEATURES ================= */

.features div {
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.features div:hover {
    transform: translateY(-4px);
    border-color: #28718f;
    background: rgba(45, 186, 243, 0.04);
}


/* ================= BUTTON PREMIUM EFFECT ================= */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.22),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 130%;
}


/* ================= CTA ================= */

.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -120px;
    top: -150px;
    border-radius: 50%;
    background: rgba(45, 186, 243, 0.08);
    animation: ctaGlow 5s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}


/* ================= LOGO ================= */

.logo-icon {
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 0 25px rgba(39, 183, 244, 0.25);
}


/* ================= HEADER BUTTON ================= */

.header .btn-small {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* ================= WHATSAPP ================= */

.whatsapp-float {
    animation: whatsappFloat 3s ease-in-out infinite;
}

@keyframes whatsappFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.whatsapp-float:hover {
    animation: none;
}


/* ================= ACCESSIBILITY ================= */

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}
/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Service cards */

.service-card.reveal {
    transform: translateY(45px) scale(0.97);
}

.service-card.reveal-visible {
    transform: translateY(0) scale(1);
}


/* Section heading */

.section-heading.reveal {
    transform: translateY(30px);
}

.section-heading.reveal-visible {
    transform: translateY(0);
}


/* About */

.about-grid.reveal {
    transform: translateY(35px);
}

.about-grid.reveal-visible {
    transform: translateY(0);
}


/* CTA */

.cta-box.reveal {
    transform: translateY(40px) scale(0.98);
}

.cta-box.reveal-visible {
    transform: translateY(0) scale(1);
}


/* Mobile performance */

@media (max-width: 650px) {

    .reveal {
        transform: translateY(20px);
        transition-duration: 0.6s;
    }

    .service-card.reveal {
        transform: translateY(25px);
    }

}
/* =========================================================
   TALKTIME BPO NETWORK ANIMATION
   ========================================================= */

.hero-visual {
    position: relative;
    isolation: isolate;
}


/* Network container */

.network-animation {
    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: -1;

    pointer-events: none;
}


/* ================= NETWORK CENTER ================= */

.network-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 82px;
    height: 82px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(45, 186, 243, 0.8);

    background:
        radial-gradient(
            circle,
            rgba(45, 186, 243, 0.18),
            rgba(6, 16, 24, 0.95) 70%
        );

    box-shadow:
        0 0 25px rgba(45, 186, 243, 0.25),
        0 0 70px rgba(45, 186, 243, 0.12);

    animation: networkCenterPulse 3s ease-in-out infinite;

    z-index: 5;
}


.network-center span {
    color: #2dbaf3;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 1px;

    text-shadow:
        0 0 15px rgba(45, 186, 243, 0.7);
}


@keyframes networkCenterPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }

}


/* ================= NETWORK NODES ================= */

.network-node {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #2dbaf3;

    box-shadow:
        0 0 8px #2dbaf3,
        0 0 25px rgba(45, 186, 243, 0.65);

    animation: nodePulse 2.5s ease-in-out infinite;

    z-index: 4;
}


.network-node::after {
    content: "";

    position: absolute;

    width: 22px;
    height: 22px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(45, 186, 243, 0.25);

    border-radius: 50%;

    animation: nodeRing 2.5s ease-out infinite;
}


@keyframes nodePulse {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }

}


@keyframes nodeRing {

    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8);
    }

}


/* ================= NODE POSITIONS ================= */

.node-1 {
    left: 9%;
    top: 23%;
    animation-delay: 0s;
}

.node-2 {
    right: 10%;
    top: 18%;
    animation-delay: 0.5s;
}

.node-3 {
    left: 3%;
    bottom: 24%;
    animation-delay: 1s;
}

.node-4 {
    right: 5%;
    bottom: 27%;
    animation-delay: 1.5s;
}

.node-5 {
    left: 30%;
    top: 3%;
    animation-delay: 0.8s;
}

.node-6 {
    right: 28%;
    bottom: 4%;
    animation-delay: 1.8s;
}


/* ================= NETWORK LINES ================= */

.network-lines {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


.line {
    position: absolute;

    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(45, 186, 243, 0.7),
            transparent
        );

    opacity: 0.45;

    overflow: hidden;
}


/* Moving data signal */

.line::after {
    content: "";

    position: absolute;

    left: -30%;

    top: -2px;

    width: 35%;

    height: 5px;

    border-radius: 50%;

    background: #2dbaf3;

    box-shadow:
        0 0 8px #2dbaf3,
        0 0 18px rgba(45, 186, 243, 0.8);

    animation: dataFlow 2.8s linear infinite;
}


@keyframes dataFlow {

    0% {
        left: -35%;
    }

    100% {
        left: 110%;
    }

}


/* Line 1 */

.line-1 {
    width: 225px;
    left: 15%;
    top: 27%;
    transform: rotate(24deg);
}


/* Line 2 */

.line-2 {
    width: 210px;
    left: 50%;
    top: 28%;
    transform: rotate(-30deg);
    animation-delay: 0.4s;
}


/* Line 3 */

.line-3 {
    width: 245px;
    left: 15%;
    top: 68%;
    transform: rotate(-25deg);
    animation-delay: 0.8s;
}


/* Line 4 */

.line-4 {
    width: 220px;
    left: 50%;
    top: 68%;
    transform: rotate(27deg);
    animation-delay: 1.2s;
}


/* Line 5 */

.line-5 {
    width: 185px;
    left: 35%;
    top: 18%;
    transform: rotate(72deg);
    animation-delay: 1.6s;
}


/* Line 6 */

.line-6 {
    width: 190px;
    left: 43%;
    top: 55%;
    transform: rotate(80deg);
    animation-delay: 2s;
}


/* ================= OUTER ORBIT ================= */

.network-animation::before {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(45, 186, 243, 0.08);

    border-radius: 50%;

    animation: networkOrbit 18s linear infinite;
}


.network-animation::after {
    content: "";

    position: absolute;

    width: 470px;
    height: 470px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px dashed rgba(45, 186, 243, 0.05);

    border-radius: 50%;

    animation: networkOrbitReverse 25s linear infinite;
}


@keyframes networkOrbit {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}


@keyframes networkOrbitReverse {

    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1000px) {

    .network-animation {
        width: 420px;
        height: 420px;

        opacity: 0.5;
    }

}


@media (max-width: 650px) {

    .network-animation {
        width: 350px;
        height: 350px;

        opacity: 0.25;

        top: 55%;
    }

    .network-center {
        width: 65px;
        height: 65px;
    }

    .network-center span {
        font-size: 18px;
    }

}
/* ================= TALKTIME BPO NETWORK ANIMATION ================= */

.network-animation {
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.hero-visual {
    position: relative;
}

.dashboard {
    position: relative;
    z-index: 3;
}


/* CENTER TT */

.network-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid #2dbaf3;

    background: #061018;

    box-shadow:
        0 0 20px rgba(45, 186, 243, 0.5),
        0 0 60px rgba(45, 186, 243, 0.2);

    animation: ttPulse 3s ease-in-out infinite;
}

.network-center span {
    color: #2dbaf3;
    font-size: 22px;
    font-weight: 900;
}


/* CENTER PULSE */

@keyframes ttPulse {

    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }

}


/* NETWORK NODES */

.network-node {
    position: absolute;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #2dbaf3;

    box-shadow:
        0 0 10px #2dbaf3,
        0 0 25px rgba(45, 186, 243, 0.7);

    animation: nodePulse 2s ease-in-out infinite;
}


@keyframes nodePulse {

    0%, 100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

}


/* NODE POSITIONS */

.node-1 {
    left: 8%;
    top: 25%;
}

.node-2 {
    right: 8%;
    top: 22%;
    animation-delay: .4s;
}

.node-3 {
    left: 5%;
    bottom: 25%;
    animation-delay: .8s;
}

.node-4 {
    right: 5%;
    bottom: 28%;
    animation-delay: 1.2s;
}

.node-5 {
    left: 30%;
    top: 5%;
    animation-delay: 1.6s;
}

.node-6 {
    right: 28%;
    bottom: 5%;
    animation-delay: 2s;
}


/* NETWORK LINES */

.network-lines {
    position: absolute;
    inset: 0;
}


.line {
    position: absolute;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(45, 186, 243, 0.7),
        transparent
    );

    opacity: .5;
}


.line::after {
    content: "";

    position: absolute;

    left: -30%;

    top: -2px;

    width: 35%;

    height: 5px;

    border-radius: 50%;

    background: #2dbaf3;

    box-shadow:
        0 0 8px #2dbaf3,
        0 0 18px #2dbaf3;

    animation: dataFlow 3s linear infinite;
}


@keyframes dataFlow {

    from {
        left: -35%;
    }

    to {
        left: 110%;
    }

}


/* CONNECTIONS */

.line-1 {
    width: 220px;
    left: 15%;
    top: 28%;
    transform: rotate(25deg);
}

.line-2 {
    width: 210px;
    left: 50%;
    top: 28%;
    transform: rotate(-30deg);
}

.line-3 {
    width: 230px;
    left: 15%;
    top: 68%;
    transform: rotate(-25deg);
}

.line-4 {
    width: 220px;
    left: 50%;
    top: 68%;
    transform: rotate(27deg);
}

.line-5 {
    width: 180px;
    left: 34%;
    top: 18%;
    transform: rotate(70deg);
}

.line-6 {
    width: 180px;
    left: 43%;
    top: 55%;
    transform: rotate(80deg);
}


/* OUTER CIRCLE */

.network-animation::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(45, 186, 243, .08);

    border-radius: 50%;

    animation: orbit 15s linear infinite;
}


@keyframes orbit {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .network-animation {
        width: 350px;
        height: 350px;
        opacity: .25;
    }

    .network-center {
        width: 60px;
        height: 60px;
    }

    .network-center span {
        font-size: 18px;
    }

}

/* ================= LIVE CALL CENTER DASHBOARD ================= */

.live-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 28px 0 18px;
}

.live-stat {
    padding: 14px;
    border: 1px solid #1b3543;
    border-radius: 12px;
    background: rgba(6, 16, 24, 0.55);
}

.live-stat span {
    display: block;
    color: #718996;
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.live-stat strong {
    color: #2dbaf3;
    font-size: 23px;
    line-height: 1;
}

.activity {
    padding: 16px;
    border: 1px solid #1b3543;
    border-radius: 12px;
    background: rgba(6, 16, 24, 0.45);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
}

.activity-header span:first-child {
    color: #718996;
    font-size: 8px;
    letter-spacing: 1px;
}

.activity-header span:last-child {
    color: #43c9f5;
    font-size: 8px;
    letter-spacing: 1px;
    animation: liveBlink 1.5s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

.activity-bars {
    height: 55px;
    display: flex;
    align-items: end;
    gap: 5px;
}

.activity-bars i {
    flex: 1;
    min-width: 4px;
    height: 25%;
    border-radius: 4px 4px 0 0;
    background: #29b9f2;
    opacity: .75;
    animation: activityWave 1.8s ease-in-out infinite;
}

.activity-bars i:nth-child(2) { height: 55%; animation-delay: .1s; }
.activity-bars i:nth-child(3) { height: 35%; animation-delay: .2s; }
.activity-bars i:nth-child(4) { height: 75%; animation-delay: .3s; }
.activity-bars i:nth-child(5) { height: 45%; animation-delay: .4s; }
.activity-bars i:nth-child(6) { height: 90%; animation-delay: .5s; }
.activity-bars i:nth-child(7) { height: 60%; animation-delay: .6s; }
.activity-bars i:nth-child(8) { height: 40%; animation-delay: .7s; }
.activity-bars i:nth-child(9) { height: 80%; animation-delay: .8s; }
.activity-bars i:nth-child(10) { height: 50%; animation-delay: .9s; }
.activity-bars i:nth-child(11) { height: 70%; animation-delay: 1s; }
.activity-bars i:nth-child(12) { height: 45%; animation-delay: 1.1s; }
.activity-bars i:nth-child(13) { height: 85%; animation-delay: 1.2s; }
.activity-bars i:nth-child(14) { height: 65%; animation-delay: 1.3s; }

@keyframes activityWave {
    0%, 100% {
        transform: scaleY(.65);
        opacity: .45;
    }

    50% {
        transform: scaleY(1.15);
        opacity: 1;
    }
}

@media (max-width: 650px) {

    .live-stats {
        gap: 7px;
    }

    .live-stat {
        padding: 11px;
    }

    .live-stat strong {
        font-size: 19px;
    }

    .activity {
        padding: 12px;
    }

}


/* ================= TALKTIME NETWORK ANIMATION ================= */

.network-animation {
    position: absolute;
    inset: -25px;
    pointer-events: none;
    z-index: 0;
}

.hero-visual {
    position: relative;
}

.network-lines {
    position: absolute;
    inset: 0;
}

.network-lines .line {
    position: absolute;
    height: 1px;
    width: 180px;
    background: linear-gradient(
        90deg,
        transparent,
        #2dbaf3,
        transparent
    );
    opacity: .35;
    transform-origin: left center;
    animation: networkLine 3s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    left: 10%;
    transform: rotate(25deg);
}

.line-2 {
    top: 30%;
    right: 5%;
    transform: rotate(145deg);
    animation-delay: .4s;
}

.line-3 {
    top: 65%;
    left: 5%;
    transform: rotate(-25deg);
    animation-delay: .8s;
}

.line-4 {
    top: 70%;
    right: 8%;
    transform: rotate(205deg);
    animation-delay: 1.2s;
}

.line-5 {
    top: 45%;
    left: 20%;
    transform: rotate(-8deg);
    animation-delay: 1.6s;
}

.line-6 {
    top: 52%;
    right: 18%;
    transform: rotate(188deg);
    animation-delay: 2s;
}

@keyframes networkLine {

    0%, 100% {
        opacity: .15;
        filter: drop-shadow(0 0 0 transparent);
    }

    50% {
        opacity: .8;
        filter: drop-shadow(0 0 8px rgba(45,186,243,.8));
    }

}

/* NETWORK NODES */

.network-node {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2dbaf3;
    box-shadow:
        0 0 8px #2dbaf3,
        0 0 20px rgba(45,186,243,.65);
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
    top: 23%;
    left: 9%;
}

.node-2 {
    top: 28%;
    right: 4%;
    animation-delay: .3s;
}

.node-3 {
    top: 64%;
    left: 4%;
    animation-delay: .6s;
}

.node-4 {
    top: 69%;
    right: 7%;
    animation-delay: .9s;
}

.node-5 {
    top: 44%;
    left: 19%;
    animation-delay: 1.2s;
}

.node-6 {
    top: 51%;
    right: 17%;
    animation-delay: 1.5s;
}

@keyframes nodePulse {

    0%, 100% {
        transform: scale(.7);
        opacity: .45;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

}

/* CENTER TT */

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(45,186,243,.7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(6,16,24,.85);
    box-shadow:
        0 0 20px rgba(45,186,243,.3),
        inset 0 0 20px rgba(45,186,243,.08);
    animation: centerPulse 3s ease-in-out infinite;
}

.network-center span {
    color: #2dbaf3;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
}

@keyframes centerPulse {

    0%, 100% {
        box-shadow:
            0 0 15px rgba(45,186,243,.2),
            inset 0 0 15px rgba(45,186,243,.05);
    }

    50% {
        box-shadow:
            0 0 35px rgba(45,186,243,.55),
            inset 0 0 25px rgba(45,186,243,.15);
    }

}

/* Keep dashboard above animation */

.dashboard {
    z-index: 2;
}

/* Hide network decoration on small screens */

@media (max-width: 1000px) {

    .network-animation {
        display: none;
    }

}


/* ================= PREMIUM SERVICE CARD ANIMATION ================= */

.service-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Moving light effect */

.service-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -120px;
    left: -120px;

    background: radial-gradient(
        circle,
        rgba(45, 186, 243, 0.18),
        transparent 65%
    );

    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

/* Bottom glowing line */

.service-card::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 0;

    height: 2px;

    background: #2dbaf3;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.4s ease;
    box-shadow: 0 0 15px rgba(45,186,243,.8);
}

/* Hover */

.service-card:hover {
    transform:
        translateY(-10px)
        perspective(700px)
        rotateX(2deg);

    border-color: rgba(45,186,243,.65);

    box-shadow:
        0 25px 60px rgba(0,0,0,.4),
        0 0 25px rgba(45,186,243,.08);
}

/* Light appears */

.service-card:hover::before {
    opacity: 1;
    transform: translate(180px, 180px);
}

/* Bottom line */

.service-card:hover::after {
    transform: scaleX(1);
}

/* Service number animation */

.service-number {
    transition:
        transform .35s ease,
        text-shadow .35s ease;
}

.service-card:hover .service-number {
    transform: translateX(5px);
    text-shadow:
        0 0 8px rgba(45,186,243,.8),
        0 0 18px rgba(45,186,243,.4);
}

/* Heading */

.service-card h3 {
    transition:
        transform .35s ease,
        color .35s ease;
}

.service-card:hover h3 {
    transform: translateX(3px);
    color: #ffffff;
}

/* Learn More arrow */

.service-card a {
    transition:
        transform .3s ease,
        letter-spacing .3s ease;
}

.service-card:hover a {
    transform: translateX(6px);
    letter-spacing: .3px;
}

/* ================= MOBILE ================= */

@media (max-width: 650px) {

    .service-card:hover {
        transform: translateY(-5px);
    }

}


/* ================= HERO PREMIUM ENTRANCE ================= */

.hero-content .badge {
    animation: heroFadeUp .8s ease both;
}

.hero h1 {
    animation: heroFadeUp 1s ease .15s both;
}

.hero-content > p {
    animation: heroFadeUp 1s ease .3s both;
}

.hero-buttons {
    animation: heroFadeUp 1s ease .45s both;
}

.trust {
    animation: heroFadeUp 1s ease .6s both;
}

.hero h1 span {
    position: relative;
    display: inline-block;
    animation: heroGlow 3s ease-in-out 1.1s infinite;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #2dbaf3;
    transform: scaleX(0);
    transform-origin: left;
    animation: heroLine 1s ease 1.1s forwards;
    box-shadow: 0 0 12px rgba(45,186,243,.8);
}

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

}

@keyframes heroGlow {

    0%, 100% {
        text-shadow: 0 0 0 rgba(45,186,243,0);
    }

    50% {
        text-shadow:
            0 0 12px rgba(45,186,243,.45),
            0 0 25px rgba(45,186,243,.2);
    }

}

@keyframes heroLine {

    to {
        transform: scaleX(1);
    }

}

/* Hero dashboard entrance */

.dashboard {
    animation:
        dashboardEnter 1.1s cubic-bezier(.2,.8,.2,1) .25s both;
}

@keyframes dashboardEnter {

    from {
        opacity: 0;
        transform: translateY(35px) scale(.94);
    }

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

}

/* Respect reduced motion */

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

    .hero-content .badge,
    .hero h1,
    .hero-content > p,
    .hero-buttons,
    .trust,
    .dashboard,
    .hero h1 span {
        animation: none !important;
    }

    .hero h1 span::after {
        animation: none !important;
        transform: scaleX(1);
    }

}


/* ================= SERVICE MARQUEE ================= */

.service-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-marquee::before,
.service-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.service-marquee::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #061018,
        transparent
    );
}

.service-marquee::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #061018,
        transparent
    );
}

.service-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 25px;
    animation: serviceMarquee 25s linear infinite;
    will-change: transform;
}

.service-marquee-track span {
    color: #617783;
    font-size: 10px;
    letter-spacing: 1.6px;
    white-space: nowrap;
    transition: color .3s ease;
}

.service-marquee-track b {
    color: #2dbaf3;
    font-size: 12px;
    opacity: .6;
}

.service-marquee-track span:hover {
    color: #2dbaf3;
}

@keyframes serviceMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* Pause when user hovers */

.service-marquee:hover .service-marquee-track {
    animation-play-state: paused;
}

/* Mobile */

@media (max-width: 650px) {

    .service-marquee-track {
        gap: 18px;
        animation-duration: 20s;
    }

    .service-marquee::before,
    .service-marquee::after {
        width: 50px;
    }

}

/* Reduced motion */

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

    .service-marquee-track {
        animation: none;
        transform: none;
    }

}


/* ================= ABOUT PREMIUM ANIMATION ================= */

.about-grid {
    perspective: 1000px;
}

.about-grid > div:first-child {
    transition:
        transform 0.8s ease,
        opacity 0.8s ease;
}

.about-grid.reveal:not(.reveal-visible) > div:first-child {
    transform: translateX(-45px);
    opacity: 0;
}

.about-grid.reveal-visible > div:first-child {
    transform: translateX(0);
    opacity: 1;
}

/* About text */

.about-text {
    transition:
        transform 0.8s ease .15s,
        opacity 0.8s ease .15s;
}

.about-grid.reveal:not(.reveal-visible) .about-text {
    transform: translateX(45px);
    opacity: 0;
}

.about-grid.reveal-visible .about-text {
    transform: translateX(0);
    opacity: 1;
}

/* Feature cards */

.features div {
    position: relative;
    overflow: hidden;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.features div::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: #2dbaf3;
    box-shadow: 0 0 12px rgba(45,186,243,.8);
    transition: left .5s ease;
}

.features div:hover {
    transform: translateY(-5px);
    border-color: #28718f;
    box-shadow:
        0 15px 35px rgba(0,0,0,.25),
        0 0 18px rgba(45,186,243,.06);
}

.features div:hover::before {
    left: 100%;
}

/* Number */

.features strong {
    transition:
        transform .3s ease,
        text-shadow .3s ease;
}

.features div:hover strong {
    transform: translateX(5px);
    text-shadow:
        0 0 10px rgba(45,186,243,.7);
}

/* Mobile */

@media (max-width: 650px) {

    .about-grid.reveal:not(.reveal-visible) > div:first-child,
    .about-grid.reveal:not(.reveal-visible) .about-text {
        transform: translateY(20px);
    }

}


/* ================= PREMIUM CTA ANIMATION ================= */

.cta-box {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Moving light across CTA */

.cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(45,186,243,.08),
        transparent
    );

    transform: skewX(-20deg);
    animation: ctaLight 5s ease-in-out infinite;

    pointer-events: none;
    z-index: -1;
}

@keyframes ctaLight {

    0% {
        left: -120%;
    }

    55%, 100% {
        left: 140%;
    }

}

/* Animated border glow */

.cta-box {
    animation: ctaBorder 3s ease-in-out infinite;
}

@keyframes ctaBorder {

    0%, 100% {
        box-shadow:
            0 0 0 rgba(45,186,243,0);
    }

    50% {
        box-shadow:
            0 0 30px rgba(45,186,243,.10),
            inset 0 0 25px rgba(45,186,243,.03);
    }

}

/* CTA heading */

.cta h2 {
    transition: transform .4s ease;
}

.cta-box:hover h2 {
    transform: translateX(4px);
}

/* CTA buttons */

.cta-buttons .btn {
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform: skewX(-20deg);
    transition: left .6s ease;
}

.cta-buttons .btn:hover::before {
    left: 140%;
}

/* WhatsApp / primary CTA pulse */

.cta-buttons .btn:first-child {
    animation: ctaButtonPulse 2.5s ease-in-out infinite;
}

@keyframes ctaButtonPulse {

    0%, 100% {
        box-shadow:
            0 0 0 rgba(36,180,240,0);
    }

    50% {
        box-shadow:
            0 0 22px rgba(36,180,240,.25);
    }

}

.cta-buttons .btn:first-child:hover {
    animation: none;
}

/* Reduced motion */

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

    .cta-box,
    .cta-box::before,
    .cta-buttons .btn:first-child {
        animation: none !important;
    }

}


/* ================= PREMIUM WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;
    overflow: visible;
    animation: whatsappFloat 3s ease-in-out infinite;
}

/* Pulsing ring */

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -5px;

    border: 2px solid rgba(37, 211, 102, .45);
    border-radius: 50%;

    animation: whatsappRing 2s ease-out infinite;
    pointer-events: none;
}

/* Second ring */

.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -5px;

    border: 1px solid rgba(37, 211, 102, .25);
    border-radius: 50%;

    animation: whatsappRing 2s ease-out 1s infinite;
    pointer-events: none;
}

@keyframes whatsappRing {

    0% {
        transform: scale(1);
        opacity: .8;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }

}

@keyframes whatsappFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}

/* Icon glow */

.whatsapp-float span {
    position: relative;
    z-index: 2;

    animation: whatsappIcon 2s ease-in-out infinite;
}

@keyframes whatsappIcon {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}

/* Hover */

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow:
        0 12px 35px rgba(37, 211, 102, .35),
        0 0 25px rgba(37, 211, 102, .2);
    animation: none;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    animation-play-state: paused;
}

/* Mobile */

@media (max-width: 650px) {

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

}

/* Reduced motion */

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

    .whatsapp-float,
    .whatsapp-float::before,
    .whatsapp-float::after,
    .whatsapp-float span {
        animation: none !important;
    }

}


/* ================= MOUSE FOLLOW GLOW ================= */

.mouse-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(45, 186, 243, 0.10),
        rgba(45, 186, 243, 0.04) 35%,
        transparent 70%
    );

    pointer-events: none;
    z-index: 0;

    transform: translate(-50%, -50%);
    opacity: 0;

    transition:
        opacity .4s ease,
        transform .12s ease;
}

body.mouse-active .mouse-glow {
    opacity: 1;
}

@media (max-width: 850px) {

    .mouse-glow {
        display: none;
    }

}


/* ================= LIVE DATA PACKETS ================= */

.network-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.network-lines {
    position: absolute;
    inset: 0;
}

.network-lines .line {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(45,186,243,.55),
        transparent
    );
    transform-origin: left center;
    animation: networkLine 3s linear infinite;
}

.network-lines .line-1 {
    width: 180px;
    left: 15%;
    top: 25%;
    transform: rotate(20deg);
}

.network-lines .line-2 {
    width: 170px;
    left: 50%;
    top: 25%;
    transform: rotate(145deg);
    animation-delay: .4s;
}

.network-lines .line-3 {
    width: 180px;
    left: 18%;
    top: 65%;
    transform: rotate(-20deg);
    animation-delay: .8s;
}

.network-lines .line-4 {
    width: 170px;
    left: 55%;
    top: 65%;
    transform: rotate(-145deg);
    animation-delay: 1.2s;
}

.network-lines .line-5 {
    width: 150px;
    left: 30%;
    top: 45%;
    transform: rotate(-8deg);
    animation-delay: 1.6s;
}

.network-lines .line-6 {
    width: 150px;
    left: 48%;
    top: 45%;
    transform: rotate(8deg);
    animation-delay: 2s;
}

/* Network nodes */

.network-node {
    position: absolute;
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #2dbaf3;

    box-shadow:
        0 0 8px rgba(45,186,243,.8),
        0 0 20px rgba(45,186,243,.35);

    animation: networkNodePulse 2s ease-in-out infinite;
}

.node-1 {
    left: 14%;
    top: 24%;
}

.node-2 {
    right: 15%;
    top: 24%;
    animation-delay: .3s;
}

.node-3 {
    left: 14%;
    bottom: 25%;
    animation-delay: .6s;
}

.node-4 {
    right: 15%;
    bottom: 25%;
    animation-delay: .9s;
}

.node-5 {
    left: 30%;
    top: 48%;
    animation-delay: 1.2s;
}

.node-6 {
    right: 30%;
    top: 48%;
    animation-delay: 1.5s;
}

/* Center */

.network-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 72px;
    height: 72px;

    transform: translate(-50%, -50%);

    display: grid;
    place-items: center;

    border-radius: 50%;

    border: 1px solid rgba(45,186,243,.65);

    background: rgba(6,16,24,.9);

    color: #2dbaf3;

    font-weight: 900;
    font-size: 18px;

    box-shadow:
        0 0 25px rgba(45,186,243,.18),
        inset 0 0 20px rgba(45,186,243,.08);

    animation: centerPulse 2.5s ease-in-out infinite;
}

@keyframes networkLine {

    0% {
        opacity: 0;
        transform: scaleX(.2);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scaleX(1);
    }

}

@keyframes networkNodePulse {

    0%, 100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.7);
        opacity: 1;
    }

}

@keyframes centerPulse {

    0%, 100% {
        box-shadow:
            0 0 20px rgba(45,186,243,.15),
            inset 0 0 15px rgba(45,186,243,.05);
    }

    50% {
        box-shadow:
            0 0 40px rgba(45,186,243,.3),
            inset 0 0 25px rgba(45,186,243,.12);
    }

}

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

    .network-animation *,
    .network-center {
        animation: none !important;
    }

}


/* ================= LIVE DATA PACKETS ================= */

.data-packet {
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 8px #2dbaf3,
        0 0 18px rgba(45,186,243,.8);

    opacity: 0;

    animation: dataPacketMove 3s linear infinite;
}

.packet-1 {
    left: 15%;
    top: 25%;
    animation-delay: 0s;
}

.packet-2 {
    left: 85%;
    top: 25%;
    animation-delay: .7s;
}

.packet-3 {
    left: 15%;
    top: 65%;
    animation-delay: 1.4s;
}

.packet-4 {
    left: 85%;
    top: 65%;
    animation-delay: 2.1s;
}

.packet-5 {
    left: 25%;
    top: 48%;
    animation-delay: 2.6s;
}

@keyframes dataPacketMove {

    0% {
        opacity: 0;
        transform: translate(0, 0) scale(.5);
    }

    15% {
        opacity: 1;
        transform: translate(20px, 5px) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(110px, 0) scale(1.15);
    }

    85% {
        opacity: .8;
        transform: translate(190px, -5px) scale(.8);
    }

    100% {
        opacity: 0;
        transform: translate(230px, 0) scale(.3);
    }

}

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

    .data-packet {
        animation: none !important;
        opacity: .7;
    }

}


/* ================= MOBILE HERO DASHBOARD ================= */

@media (max-width: 1000px) {

    .hero-visual {
        display: grid;
        min-height: 350px;
        margin-top: 20px;
    }

    .dashboard {
        width: 92%;
        max-width: 420px;
        padding: 22px;
    }

    .network-animation {
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 650px) {

    .hero-visual {
        min-height: 310px;
        margin-top: 10px;
    }

    .dashboard {
        width: 94%;
        padding: 18px;
        border-radius: 17px;
    }

    .dashboard-top h3 {
        font-size: 21px;
    }

    .dashboard-top small {
        font-size: 8px;
    }

    .online {
        font-size: 8px;
    }

    .live-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 22px 0;
    }

    .live-stat {
        padding: 12px;
    }

    .live-stat span {
        font-size: 8px;
    }

    .live-stat strong {
        font-size: 18px;
    }

    .network-center {
        width: 55px;
        height: 55px;
        font-size: 15px;
    }

    .network-node {
        width: 6px;
        height: 6px;
    }

}


/* ================= LIVE CALL WAVEFORM ================= */

.call-waveform {
    height: 65px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin: 15px 0;

    padding: 10px 5px;

    border-top: 1px solid rgba(45,186,243,.08);
    border-bottom: 1px solid rgba(45,186,243,.08);

    overflow: hidden;
}

.call-waveform i {
    display: block;

    width: 4px;

    height: 15px;

    border-radius: 5px;

    background: #2dbaf3;

    box-shadow:
        0 0 8px rgba(45,186,243,.35);

    animation: callWave 1s ease-in-out infinite;
}

/* Different heights */

.call-waveform i:nth-child(1)  { animation-delay: -.8s; }
.call-waveform i:nth-child(2)  { animation-delay: -.6s; }
.call-waveform i:nth-child(3)  { animation-delay: -.4s; }
.call-waveform i:nth-child(4)  { animation-delay: -.2s; }
.call-waveform i:nth-child(5)  { animation-delay: -.7s; }
.call-waveform i:nth-child(6)  { animation-delay: -.3s; }
.call-waveform i:nth-child(7)  { animation-delay: -.9s; }
.call-waveform i:nth-child(8)  { animation-delay: -.5s; }
.call-waveform i:nth-child(9)  { animation-delay: -.1s; }
.call-waveform i:nth-child(10) { animation-delay: -.6s; }
.call-waveform i:nth-child(11) { animation-delay: -.2s; }
.call-waveform i:nth-child(12) { animation-delay: -.8s; }
.call-waveform i:nth-child(13) { animation-delay: -.4s; }
.call-waveform i:nth-child(14) { animation-delay: -.7s; }
.call-waveform i:nth-child(15) { animation-delay: -.3s; }

@keyframes callWave {

    0%, 100% {
        height: 10px;
        opacity: .45;
    }

    50% {
        height: 48px;
        opacity: 1;
    }

}

@media (max-width: 650px) {

    .call-waveform {
        height: 55px;
        gap: 3px;
    }

    .call-waveform i {
        width: 3px;
    }

}

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

    .call-waveform i {
        animation: none !important;
        height: 25px;
    }

}


/* ================= LIVE STATUS ANIMATION ================= */

.online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.online i {
    position: relative;
    width: 8px;
    height: 8px;
    margin-right: 0;

    background: #43c9f5;
    border-radius: 50%;

    box-shadow:
        0 0 6px rgba(67,201,245,.9),
        0 0 14px rgba(67,201,245,.5);

    animation: onlinePulse 1.6s ease-in-out infinite;
}

.online i::after {
    content: "";
    position: absolute;
    inset: -5px;

    border: 1px solid rgba(67,201,245,.5);
    border-radius: 50%;

    animation: onlineRing 1.6s ease-out infinite;
}

@keyframes onlinePulse {

    0%, 100% {
        transform: scale(1);
        opacity: .75;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }

}

@keyframes onlineRing {

    0% {
        transform: scale(.7);
        opacity: .8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}


/* ================= NETWORK CONNECTED ================= */

.connection span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.connection span::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #43c9f5;

    box-shadow:
        0 0 8px rgba(67,201,245,.8);

    animation: connectionPulse 1.2s ease-in-out infinite;
}

@keyframes connectionPulse {

    0%, 100% {
        opacity: .4;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }

}


/* ================= LIVE BARS ================= */

.bars i {
    transform-origin: bottom;

    animation: liveBar 1s ease-in-out infinite;
}

.bars i:nth-child(1) {
    animation-delay: -.2s;
}

.bars i:nth-child(2) {
    animation-delay: -.5s;
}

.bars i:nth-child(3) {
    animation-delay: -.1s;
}

.bars i:nth-child(4) {
    animation-delay: -.7s;
}

.bars i:nth-child(5) {
    animation-delay: -.35s;
}

@keyframes liveBar {

    0%, 100% {
        transform: scaleY(.65);
        opacity: .6;
    }

    50% {
        transform: scaleY(1.15);
        opacity: 1;
    }

}

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

    .online i,
    .online i::after,
    .connection span::before,
    .bars i {
        animation: none !important;
    }

}


/* ================= 3D SERVICE CARD EFFECT ================= */

.service-card {
    position: relative;
    overflow: hidden;

    transform-style: preserve-3d;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

/* Moving glow inside card */

.service-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(45,186,243,.16),
        transparent 70%
    );

    opacity: 0;

    transition: opacity .35s ease;

    pointer-events: none;
}

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

/* Top shine */

.service-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.035),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .7s ease;

    pointer-events: none;
}

.service-card:hover::after {
    left: 140%;
}

.service-card:hover {
    transform:
        translateY(-9px)
        perspective(700px)
        rotateX(2deg)
        rotateY(-2deg)
        scale(1.015);

    border-color: rgba(45,186,243,.65);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        0 0 25px rgba(45,186,243,.10);
}

/* Keep content above effects */

.service-card > * {
    position: relative;
    z-index: 2;
}

/* Mobile */

@media (max-width: 650px) {

    .service-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

}

/* Reduced motion */

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

    .service-card,
    .service-card::after {
        transition: none !important;
    }

    .service-card:hover {
        transform: none;
    }

}


/* ================= HERO ENTRANCE ANIMATION ================= */

.hero-content {
    animation: heroContentIn 1s cubic-bezier(.22,1,.36,1) both;
}

.hero-visual {
    animation: heroVisualIn 1.1s cubic-bezier(.22,1,.36,1) .15s both;
}

.hero .badge {
    animation: heroFadeUp .7s ease .1s both;
}

.hero h1 {
    animation: heroFadeUp .9s ease .2s both;
}

.hero p {
    animation: heroFadeUp .9s ease .35s both;
}

.hero-buttons {
    animation: heroFadeUp .9s ease .5s both;
}

.trust {
    animation: heroFadeUp .9s ease .65s both;
}


/* Heading blue glow */

.hero h1 span {
    text-shadow:
        0 0 10px rgba(45,186,243,.12),
        0 0 30px rgba(45,186,243,.08);

    animation: headingGlow 3s ease-in-out infinite;
}

@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateX(-35px);
    }

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

}

@keyframes heroVisualIn {

    from {
        opacity: 0;
        transform: translateX(35px) scale(.96);
    }

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

}

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

}

@keyframes headingGlow {

    0%, 100% {
        text-shadow:
            0 0 10px rgba(45,186,243,.08),
            0 0 25px rgba(45,186,243,.04);
    }

    50% {
        text-shadow:
            0 0 15px rgba(45,186,243,.22),
            0 0 35px rgba(45,186,243,.10);
    }

}


/* Reduced motion */

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

    .hero-content,
    .hero-visual,
    .hero .badge,
    .hero h1,
    .hero p,
    .hero-buttons,
    .trust,
    .hero h1 span {
        animation: none !important;
    }

}


/* ================= PREMIUM BUTTON SHINE ================= */

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        100deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .65s ease;

    pointer-events: none;
}

.btn:hover::before {
    left: 140%;
}

.btn > * {
    position: relative;
    z-index: 2;
}

/* Button glow */

.btn:hover {
    box-shadow:
        0 12px 35px rgba(36,180,240,.25),
        0 0 18px rgba(36,180,240,.10);
}

/* Outline button */

.btn-outline::before {
    background: linear-gradient(
        100deg,
        transparent,
        rgba(45,186,243,.20),
        transparent
    );
}

/* Mobile */

@media (max-width: 650px) {

    .btn:hover {
        transform: translateY(-2px);
    }

}

/* Reduced motion */

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

    .btn::before {
        display: none;
    }

}


/* ================= INTERACTIVE NETWORK BACKGROUND ================= */

.hero {
    position: relative;
    overflow: hidden;
}

.interactive-network {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .55;
}

#network-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

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

@media (max-width: 650px) {

    .interactive-network {
        opacity: .28;
    }

}

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

    .interactive-network {
        display: none;
    }

}


/* ================= LIVE CALL FLOW ================= */

.call-flow {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #19313e;
}

.flow-title {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #617985;
    font-size: 8px;
    letter-spacing: 1.4px;
}

.flow-title i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2dbaf3;
    box-shadow: 0 0 10px rgba(45,186,243,.8);
    animation: flowPulse 1.4s ease-in-out infinite;
}

.flow-track {
    display: flex;
    align-items: center;
    margin-top: 15px;
    overflow: hidden;
}

.flow-node {
    flex-shrink: 0;
    min-width: 45px;
    text-align: center;
}

.flow-node strong {
    display: block;
    color: #2dbaf3;
    font-size: 10px;
    line-height: 1;
}

.flow-node span {
    display: block;
    margin-top: 5px;
    color: #718692;
    font-size: 6px;
    letter-spacing: .8px;
}

.flow-line {
    position: relative;
    flex: 1;
    height: 1px;
    min-width: 12px;
    margin: 0 4px;
    background: #23404f;
    overflow: hidden;
}

.flow-line i {
    position: absolute;
    top: -2px;
    left: -20px;
    width: 18px;
    height: 5px;
    border-radius: 50%;
    background: #2dbaf3;
    box-shadow:
        0 0 8px rgba(45,186,243,.9),
        0 0 16px rgba(45,186,243,.4);
    animation: callSignal 1.8s linear infinite;
}

@keyframes callSignal {
    0% {
        left: -20px;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes flowPulse {
    0%, 100% {
        opacity: .35;
        transform: scale(.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@media (max-width: 650px) {

    .flow-node {
        min-width: 40px;
    }

    .flow-node strong {
        font-size: 8px;
    }

    .flow-node span {
        font-size: 5px;
    }

}

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

    .flow-line i,
    .flow-title i {
        animation: none !important;
    }

}


/* ================= LIVE STATUS PANEL ================= */

.live-status-panel {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #193544;
    border-radius: 12px;
    background: rgba(5, 18, 27, .55);
}

.status-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #637b88;
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.status-live {
    color: #2dbaf3;
    animation: statusBlink 1.5s ease-in-out infinite;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.status-item {
    position: relative;
    padding: 10px;
    padding-left: 20px;
    border: 1px solid #142e3b;
    border-radius: 8px;
    background: rgba(9, 23, 33, .7);
}

.status-item i {
    position: absolute;
    left: 9px;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2dbaf3;
    box-shadow: 0 0 9px rgba(45,186,243,.8);
    animation: statusPulse 1.8s ease-in-out infinite;
}

.status-item span {
    display: block;
    color: #6f8794;
    font-size: 7px;
    letter-spacing: 1px;
}

.status-item strong {
    display: block;
    margin-top: 2px;
    color: #b9dce9;
    font-size: 9px;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: .4;
        transform: scale(.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes statusBlink {
    0%, 100% {
        opacity: .45;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 650px) {

    .live-status-panel {
        padding: 12px;
    }

    .status-item {
        padding: 8px;
        padding-left: 18px;
    }

}

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

    .status-item i,
    .status-live {
        animation: none !important;
    }

}


/* ================= NETWORK TRAFFIC GRAPH ================= */

.traffic-panel {
    margin-top: 18px;
    padding: 15px;
    border: 1px solid #193544;
    border-radius: 12px;
    background: rgba(5, 18, 27, .55);
    overflow: hidden;
}

.traffic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #637b88;
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.traffic-live {
    color: #2dbaf3;
    font-size: 7px;
    animation: trafficBlink 1.5s ease-in-out infinite;
}

.traffic-graph {
    position: relative;
    height: 90px;
    overflow: hidden;
    border-radius: 7px;
    background:
        linear-gradient(rgba(45,186,243,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,186,243,.07) 1px, transparent 1px);
    background-size: 25px 22px;
}

.traffic-graph svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.traffic-line {
    fill: none;
    stroke: #2dbaf3;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 12 8;
    animation: trafficMove 2s linear infinite;

    filter:
        drop-shadow(0 0 4px rgba(45,186,243,.8));
}

.traffic-info {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    color: #607985;
    font-size: 7px;
    letter-spacing: 1px;
}

.traffic-info strong {
    color: #2dbaf3;
    font-size: 7px;
}

@keyframes trafficMove {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -40;
    }
}

@keyframes trafficBlink {
    0%, 100% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 650px) {

    .traffic-panel {
        padding: 12px;
    }

    .traffic-graph {
        height: 75px;
    }

}

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

    .traffic-line,
    .traffic-live {
        animation: none !important;
    }

}

/* ================= PREMIUM HERO TRUST CARDS ================= */

.hero-trust-cards {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-trust-card {
    flex: 1;
    min-width: 140px;
    padding: 15px 14px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(0, 191, 255, 0.18);

    border-radius: 12px;

    backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-trust-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #ffffff;
}

.hero-trust-card span {
    display: block;
    font-size: 12px;
    opacity: 0.65;
}

.hero-trust-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 191, 255, 0.65);

    box-shadow:
        0 10px 30px rgba(0, 191, 255, 0.12);
}


/* MOBILE */

@media (max-width: 768px) {

    .hero-trust-cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-trust-card {
        width: 100%;
    }

}

