/* ==============================
   GLOBAL
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #10213b;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ==============================
   BUTTONS
================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 22px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary,
.btn-header {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #078cff,
            #00b9ff
        );

    box-shadow:
        0 10px 25px rgba(0, 145, 255, 0.25);
}

.btn-primary:hover,
.btn-header:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(0, 145, 255, 0.35);
}

.btn-outline {
    color: white;

    border:
        1px solid rgba(255,255,255,.6);
}

.btn-outline:hover {
    background: white;
    color: #06264a;
}


/* ==============================
   HEADER
================================ */

.header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.96);

    backdrop-filter: blur(10px);

    border-bottom:
        1px solid #e5edf5;
}

.nav-container {
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo img {
    width: 50px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.nav a {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    color: #213652;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 0;
    height: 2px;

    background: #078cff;

    transition: .3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: #078cff;
}

.menu-btn {
    display: none;

    border: 0;
    background: transparent;

    color: #06264a;

    font-size: 25px;

    cursor: pointer;
}


/* ==============================
   HERO
================================ */

.hero {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(0, 166, 255, 0.34),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #031c39,
            #07376c 55%,
            #0a5996
        );
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(3, 28, 57, .72), rgba(3, 28, 57, .38));
    pointer-events: none;
}

.hero::before {
    z-index: 1;
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    right: -180px;
    bottom: -350px;

    background:
        rgba(0, 178, 255, .1);
}

.hero-network {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: .58;
    z-index: 1;
}

.network-globe {
    position: absolute;
    width: min(680px, 58vw);
    aspect-ratio: 1.55;
    right: -70px;
    top: 8%;
    border: 1px solid rgba(94, 218, 255, .22);
    border-radius: 50%;
    transform: rotate(-12deg);
    box-shadow: 0 0 80px rgba(23, 186, 255, .12);
}

.network-globe::before,
.network-globe::after,
.network-arc,
.network-line {
    position: absolute;
    display: block;
    content: "";
}

.network-globe::before {
    inset: -1px 25%;
    border-right: 1px solid rgba(94, 218, 255, .2);
    border-left: 1px solid rgba(94, 218, 255, .2);
    border-radius: 50%;
}

.network-globe::after {
    inset: 25% -1px;
    border-top: 1px solid rgba(94, 218, 255, .18);
    border-bottom: 1px solid rgba(94, 218, 255, .18);
    border-radius: 50%;
}

.network-arc {
    left: 5%;
    right: 5%;
    height: 38%;
    border: 1px solid rgba(94, 218, 255, .16);
    border-radius: 50%;
}

.network-arc-one {
    top: 31%;
}

.network-arc-two {
    top: 2%;
    transform: scaleY(.62);
}

.network-line {
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(77, 220, 255, .08), rgba(77, 220, 255, .75), rgba(77, 220, 255, .08));
}

.network-line-one {
    width: 43%;
    left: 16%;
    top: 38%;
    transform: rotate(20deg);
}

.network-line-two {
    width: 36%;
    left: 31%;
    top: 62%;
    transform: rotate(-28deg);
}

.network-line-three {
    width: 31%;
    left: 52%;
    top: 31%;
    transform: rotate(46deg);
}

.network-line-four {
    width: 32%;
    left: 55%;
    top: 69%;
    transform: rotate(-48deg);
}

.network-node,
.network-packet {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.network-node {
    width: 7px;
    height: 7px;
    background: #55e1ff;
    box-shadow: 0 0 0 4px rgba(85, 225, 255, .1), 0 0 18px #55e1ff;
    animation: network-pulse 2.8s ease-in-out infinite;
}

.network-node-one { left: 15%; top: 37%; }
.network-node-two { left: 44%; top: 48%; animation-delay: .45s; }
.network-node-three { left: 66%; top: 30%; animation-delay: .9s; }
.network-node-four { left: 57%; top: 67%; animation-delay: 1.35s; }
.network-node-five { left: 87%; top: 52%; animation-delay: 1.8s; }

.network-packet {
    width: 5px;
    height: 5px;
    background: #ffffff;
    box-shadow: 0 0 12px #ffffff, 0 0 20px #35cfff;
    animation: network-flow 4.8s linear infinite;
}

.network-packet-one { left: 17%; top: 38%; }
.network-packet-two { left: 53%; top: 31%; animation-delay: 1.6s; }
.network-packet-three { left: 56%; top: 68%; animation-delay: 3.2s; }

@keyframes network-pulse {
    0%, 100% { opacity: .45; transform: scale(.8); }
    50% { opacity: 1; transform: scale(1.35); }
}

@keyframes network-flow {
    0% { opacity: 0; transform: translate(0, 0); }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; transform: translate(170px, 38px); }
}

@media (prefers-reduced-motion: reduce) {
    .network-node,
    .network-packet {
        animation: none;
    }
}

.hero-grid {
    min-height: 620px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 60px;

    padding-top: 30px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 20px;

    color: #4ddcff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}

.hero-label b {
    color: #ffffff;
    font-size: 16px;
}

.hero-label-wireguard {
    color: #ffffff;
}

.hero h1 {
    max-width: 600px;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.05;

    margin-bottom: 22px;
}

.hero h1 span {
    color: #39c9ff;
}

.hero-content > p {
    max-width: 610px;

    color: #c8ddf2;

    font-size: 17px;

    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 40px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;

    gap: 30px;
}

.hero-benefits > div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.hero-benefits i {
    color: #37c8ff;
    font-size: 23px;
}

.hero-benefits span {
    font-size: 13px;
    font-weight: 700;
}

.hero-benefits small {
    display: block;

    color: #a9c8e6;

    font-weight: 400;
}


/* ==============================
   FAUX DASHBOARD MIKSH
================================ */

.hero-visual {
    position: relative;
}

.dashboard-wrapper {
    padding: 8px;

    border:
        1px solid rgba(72,204,255,.4);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.03)
        );

    box-shadow:
        0 35px 70px rgba(0,0,0,.35);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 13px;

    color: #85cfff;

    font-size: 12px;
}

.dashboard-header div {
    display: flex;
    gap: 5px;
}

.dashboard-header div span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #39c9ff;
}

.dashboard {
    min-height: 340px;

    display: grid;

    grid-template-columns: 60px 1fr;

    overflow: hidden;

    border-radius: 8px;

    background: #06182e;
}

.dash-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 26px;

    padding-top: 20px;

    background: #081f3c;

    color: #719cc4;
}

.dash-sidebar i {
    cursor: pointer;
}

.dash-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    margin-bottom: 5px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #078cff,
            #3cddff
        );

    color: white;

    font-weight: 900;
}

.dash-main {
    padding: 22px;
}

.dash-top {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-bottom: 20px;
}

.dash-stat {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 15px 12px;

    border-radius: 8px;

    background: #0d294b;
}

.dash-stat i {
    font-size: 23px;
}

.dash-stat span {
    display: flex;
    flex-direction: column;

    color: #8caecb;

    font-size: 10px;
}

.dash-stat strong {
    color: white;

    font-size: 15px;
}

.green i {
    color: #15d891;
}

.blue i {
    color: #34a6ff;
}

.purple i {
    color: #8c63ff;
}

.graph-card {
    padding: 18px;

    border-radius: 10px;

    background: #0b2545;
}

.graph-title {
    color: #aec6dc;

    font-size: 12px;

    margin-bottom: 25px;
}

.graph {
    height: 160px;

    display: flex;
    align-items: flex-end;

    gap: 12px;

    padding: 10px 10px 0;

    border-bottom: 1px solid #244866;
}

.graph span {
    flex: 1;

    min-width: 8px;

    border-radius: 5px 5px 0 0;

    background:
        linear-gradient(
            to top,
            #087df1,
            #26e0ff
        );
}

.hero-services {
    position: absolute;

    right: -20px;
    top: 40px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.hero-services span {
    min-width: 120px;

    padding: 8px 12px;

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 6px;

    background:
        rgba(3,28,57,.78);

    backdrop-filter: blur(10px);

    font-size: 12px;
}

.hero-services i {
    width: 22px;

    color: #43d2ff;
}


/* ==============================
   SECTIONS
================================ */

.section {
    padding: 85px 0;
}

.section-title {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}

.section-title span {
    color: #078cff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 35px;

    color: #092849;
}

.section-title p {
    max-width: 440px;

    color: #73859a;

    text-align: right;
}


/* ==============================
   SERVICES
================================ */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;
}

.service-card {
    min-height: 240px;

    padding: 25px 18px;

    text-align: center;

    border:
        1px solid #e1eaf4;

    border-radius: 10px;

    background: #ffffff;

    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #42baff;

    box-shadow:
        0 20px 45px rgba(4,58,105,.12);
}

.service-card .icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 15px;

    color: #078cff;

    background: #ecf7ff;

    font-size: 28px;
}

.service-card h3 {
    margin-bottom: 12px;

    color: #0c2f55;

    font-size: 16px;
}

.service-card p {
    color: #6f8194;

    font-size: 13px;
}


/* ==============================
   STATS
================================ */

.stats {
    padding: 30px 0;

    background:
        linear-gradient(
            120deg,
            #eaf7ff,
            #f3fbff
        );
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.stat {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 20px 25px;

    border-right:
        1px solid #cfe5f4;
}

.stat:last-child {
    border-right: 0;
}

.stat > i {
    color: #078cff;

    font-size: 36px;
}

.stat strong {
    display: block;

    color: #076ac9;

    font-size: 25px;
}

.stat span {
    color: #668099;

    font-size: 13px;
}


/* ==============================
   SOLUTIONS
================================ */

.solutions {
    background: #f9fcff;
}

.solution-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.solution-card {
    padding: 30px;

    border:
        1px solid #e0eaf5;

    border-radius: 14px;

    background: white;

    transition: .3s;
}

.solution-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(14,61,100,.10);
}

.solution-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: #e8f6ff;

    color: #078cff;

    font-size: 22px;
}

.solution-card h3 {
    margin-bottom: 8px;

    color: #076ac9;

    font-size: 22px;
}

.solution-card p {
    margin-bottom: 22px;

    color: #75889b;

    font-size: 14px;
}

.solution-card ul {
    margin-bottom: 25px;

    list-style: none;
}

.solution-card li {
    margin-bottom: 9px;

    color: #354e68;

    font-size: 14px;
}

.solution-card li i {
    margin-right: 8px;

    color: #008cf3;
}

.solution-card > a {
    color: #078cff;

    font-size: 14px;
    font-weight: 700;
}

.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 28px 22px 24px;
}

.pricing-card-popular {
    border-color: #078cff;
    box-shadow: 0 16px 35px rgba(7, 140, 255, .12);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #078cff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.pricing-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #2473e8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.pricing-card h3 {
    margin-bottom: 4px;
    color: #10213b;
    font-size: 23px;
}

.pricing-starting {
    display: block;
    margin-bottom: 10px;
    color: #078cff;
    font-size: 16px;
}

.pricing-starting small {
    font-size: 12px;
    font-weight: 600;
}

.pricing-card > p {
    min-height: 68px;
    margin-bottom: 17px;
    color: #5f738a;
    font-size: 14px;
}

.pricing-options {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px;
    border: 1px solid #e0eaf5;
    border-radius: 12px;
    background: #fbfdff;
}

.pricing-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 44px;
    padding: 8px 11px;
    border: 1px solid #e0eaf5;
    border-radius: 8px;
    color: #4c647d;
    font-size: 13px;
}

.pricing-option strong {
    color: #10213b;
    font-size: 15px;
}

.pricing-option-active {
    border-color: #078cff;
    background: linear-gradient(100deg, #e9f7ff, #f0edff);
}

.pricing-card ul {
    flex: 1;
    margin-bottom: 18px;
}

.pricing-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 9px;
}

.pricing-card li i {
    flex: 0 0 auto;
    margin: 2px 0 0;
    color: #19bf69;
}

.pricing-payment-label {
    display: block;
    margin-bottom: 6px;
    color: #30455e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
}

.pricing-payment {
    width: 100%;
    min-height: 44px;
    margin-bottom: 18px;
    padding: 0 12px;
    border: 1px solid #d9e5f1;
    border-radius: 8px;
    background: #f8fbff;
    color: #213652;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}

.pricing-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #078cff;
    color: #ffffff !important;
    font-size: 13px !important;
    text-align: center;
}

.pricing-action:hover {
    background: #006fce;
}

.pricing-icon-lan {
    background: #e9fbf4;
    color: #18a968;
}

.pricing-icon-all {
    background: #f0edff;
    color: #6044e8;
}

.payment-countries {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
    gap: 18px;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #dfeaf5;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5fbff, #ffffff 56%, #f8f7ff);
}

.payment-map-panel {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    padding: 18px;
    border-radius: 12px;
    background: #092b4f;
    color: #ffffff;
}

.payment-map-panel::after {
    position: absolute;
    right: -50px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(77, 220, 255, .18);
    border-radius: 50%;
    content: "";
}

.payment-section-label {
    color: #078cff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.payment-map-panel .payment-section-label {
    color: #65ddff;
}

.payment-map-panel h3,
.payment-country-list h3 {
    margin: 8px 0 0;
    color: inherit;
    font-size: 18px;
}

.payment-map-panel p {
    max-width: 360px;
    margin-top: 8px;
    color: #b9d2e8;
    font-size: 13px;
}

.africa-map {
    position: relative;
    width: min(100%, 310px);
    height: 195px;
    margin: 4px auto -2px;
}

.africa-map svg {
    display: block;
    width: 100%;
    height: 100%;
}

.africa-map path:first-child {
    fill: rgba(22, 177, 201, .2);
    stroke: #59d7ee;
    stroke-width: 2;
}

.africa-map-line {
    fill: none;
    stroke: rgba(255, 255, 255, .27);
    stroke-width: 1.2;
}

.africa-map circle {
    fill: #27d77f;
    stroke: #ffffff;
    stroke-width: 2;
}

.map-label {
    position: absolute;
    padding: 4px 8px;
    border: 1px solid rgba(101, 221, 255, .38);
    border-radius: 6px;
    background: rgba(3, 28, 57, .72);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.map-label-togo {
    top: 76px;
    left: 44%;
}

.map-label-west {
    bottom: 14px;
    left: 9%;
    color: #9beeff;
}

.payment-country-list {
    padding: 6px 4px;
}

.payment-country-list-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.payment-country-list h3 {
    color: #10213b;
}

.payment-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e9fbf2;
    color: #138752;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.payment-status i {
    font-size: 9px;
}

.country-payment-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 53px;
    padding: 7px 8px;
    border-bottom: 1px solid #e6eef6;
}

.country-flag {
    display: block;
    width: 27px;
    height: 18px;
    object-fit: cover;
    border: 1px solid #d7e3ee;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(16, 33, 59, .12);
}

.country-payment-row strong {
    display: block;
    color: #10213b;
    font-size: 13px;
}

.country-payment-row small {
    display: block;
    margin-top: 2px;
    color: #75889b;
    font-size: 10px;
}

.gateway-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.gateway-tags span {
    padding: 4px 6px;
    border: 1px solid #b9ddf5;
    border-radius: 5px;
    background: #f1f9ff;
    color: #0875c9;
    font-size: 9px;
    font-weight: 800;
}

.payment-disclaimer {
    margin: 10px 8px 0;
    color: #8092a4;
    font-size: 11px;
    line-height: 1.5;
}


/* ==============================
   CTA
================================ */

.cta {
    padding: 20px 0 70px;
}

.cta-content {
    min-height: 145px;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 30px 35px;

    color: white;

    border-radius: 15px;

    background:
        radial-gradient(
            circle at 80%,
            rgba(0,188,255,.26),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #042449,
            #06518d
        );
}

.cta-icon {
    min-width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #087dea;

    font-size: 27px;
}

.cta-content > div:nth-child(2) {
    flex: 1;
}

.cta-content span {
    color: #56cfff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.cta-content h2 {
    margin: 4px 0;

    font-size: 25px;
}

.cta-content p {
    color: #bed7ee;

    font-size: 14px;
}

.btn-light {
    color: #0b4f89;
    background: white;
}


/* ==============================
   FOOTER
================================ */

.footer {
    color: #c3d3e4;

    background: #041d38;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.2fr 1.2fr;

    gap: 45px;

    padding-top: 60px;
    padding-bottom: 45px;
}

.footer img {
    width: 110px;

    margin-bottom: 20px;
}

.footer h3 {
    margin-bottom: 17px;

    color: white;

    font-size: 16px;
}

.footer p,
.footer a {
    display: block;

    margin-bottom: 8px;

    color: #9fb5ca;

    font-size: 13px;
}

.footer a:hover {
    color: #43cfff;
}

.social {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.social a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0b3359;

    color: white;
}

.newsletter {
    display: flex;

    overflow: hidden;

    margin-top: 15px;

    border-radius: 6px;
}

.newsletter input {
    width: 100%;

    padding: 12px;

    border: 0;

    outline: 0;
}

.newsletter button {
    width: 45px;

    border: 0;

    background: #088ff5;

    color: white;

    cursor: pointer;
}

.footer-bottom {
    border-top:
        1px solid rgba(255,255,255,.08);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom p,
.footer-bottom span {
    margin: 0;

    color: #738da6;

    font-size: 11px;
}


/* ==============================
   TABLET
================================ */

@media (max-width: 1050px) {

    .nav {
        gap: 15px;
    }

    .btn-header {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-benefits {
        justify-content: center;
    }

    .hero-visual {
        max-width: 720px;
        width: 100%;

        margin: auto;
    }

    .service-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .solution-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .payment-countries {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ==============================
   MOBILE
================================ */

@media (max-width: 760px) {

    .nav-container {
        min-height: 58px;
    }

    .logo img {
        width: 45px;
    }

    .menu-btn {
        display: block;
    }

    .nav {
        position: absolute;

        top: 58px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 15px 5% 25px;

        background: white;

        box-shadow:
            0 15px 30px rgba(0,0,0,.08);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        width: 100%;

        padding: 12px 0;

        border-bottom:
            1px solid #edf1f6;
    }

    .nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;

        padding-top: 35px;
        padding-bottom: 75px;

        gap: 45px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-benefits {
        display: grid;

        grid-template-columns: 1fr;

        text-align: left;
    }

    .dashboard {
        min-height: 270px;

        grid-template-columns: 45px 1fr;
    }

    .dash-main {
        padding: 12px;
    }

    .dash-top {
        grid-template-columns: 1fr;

        gap: 7px;
    }

    .dash-stat {
        padding: 8px 10px;
    }

    .graph-card {
        display: none;
    }

    .hero-services {
        display: none;
    }

    .section {
        padding: 65px 0;
    }

    .section-title {
        display: block;

        text-align: center;
    }

    .section-title p {
        margin-top: 12px;

        text-align: center;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;

        border-bottom:
            1px solid #cfe5f4;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .payment-countries {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
        padding: 12px;
    }

    .payment-map-panel {
        min-height: 250px;
        padding: 14px;
    }

    .africa-map {
        height: 150px;
    }

    .payment-country-list-header {
        display: block;
    }

    .payment-status {
        margin-top: 12px;
    }

    .country-payment-row {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .gateway-tags {
        grid-column: 2;
        justify-content: flex-start;
    }

    .cta-content {
        flex-direction: column;

        text-align: center;
    }

    .cta-content .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;

        text-align: center;
    }

}


/* ==============================
   PETITS TÉLÉPHONES
================================ */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 33px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .section-title h2 {
        font-size: 28px;
    }

}
/* ==================================
   MIKSH CLOUD HERO DASHBOARD
================================== */

.dashboard-image {
    position: relative;

    padding: 10px;

    border: 1px solid rgba(72, 204, 255, 0.35);

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.35);
}

.dashboard-image img {
    width: 100%;
    display: block;

    border-radius: 12px;
}

/* cartes flottantes */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 18px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 12px;

    background: rgba(5, 30, 60, 0.9);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.25);
}

.floating-card i {
    color: #3bd1ff;
    font-size: 23px;
}

.mikrotik-brand-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex: 0 0 32px;
    border-radius: 8px;
    background: #ffffff;
    padding: 3px;
}

.floating-card small {
    display: block;

    color: #9cb9d3;

    font-size: 11px;
}

.floating-card strong {
    color: white;

    font-size: 17px;
}


/* Routeurs */

.floating-card-routers {
    left: -30px;
    bottom: 45px;
}


/* Monitoring */

.floating-card-status {
    right: -20px;
    top: 40px;
}

.status-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #20e395;

    box-shadow:
        0 0 15px #20e395;
}


/* mobile */

@media (max-width: 760px) {

    .floating-card-routers {
        left: 10px;
        bottom: 15px;
    }

    .floating-card-status {
        right: 10px;
        top: 15px;
    }

}
