/* =========================================================
   ROOT
========================================================= */

:root {

    --orange: #ff7417;
    --orange-dark: #e85d00;
    --orange-soft: #fff0e5;

    --ink: #151515;
    --ink-2: #242424;

    --muted: #737373;

    --cream: #faf8f4;
    --white: #ffffff;

    --line: rgba(20,20,20,.09);

    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;

    --shadow-soft:
        0 20px 60px rgba(20,20,20,.08);

    --shadow-card:
        0 10px 35px rgba(20,20,20,.07);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);

    font-family:
        "DM Sans",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.035em;
}

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

.container {
    max-width: 1180px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    font-family: "Manrope", sans-serif;

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -0.055em;

    color: #151515;

    white-space: nowrap;
}

.brand-text {
    display: inline-flex;
    align-items: center;
}

.brand-pro {
    color: #151515;
}
.brand-pro-footer {
    color: white;
}

.brand-bahok {
    color: var(--orange);
}


/* Logo image */

.brand-logo {
    width: 38px;
    height: 38px;

    object-fit: contain;

    border-radius: 12px;

    background: white;

    padding: 3px;

    box-shadow:
        0 8px 22px rgba(255,116,23,.12);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    padding: 22px 0;

    position: relative;

    z-index: 100;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;

    color: #555 !important;

    margin: 0 8px;

    transition: .2s ease;
}

.nav-link:hover {
    color: var(--orange) !important;
}

.nav-action {
    border: 1px solid var(--line);

    background: white;

    padding: 11px 18px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 700;

    transition: .25s ease;
}

.nav-action:hover {
    border-color: var(--orange);

    color: var(--orange);
}


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

.btn-main {
    display: inline-flex;

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

    background: var(--orange);

    color: white;

    border: 0;

    padding: 15px 23px;

    border-radius: 14px;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(255,116,23,.23);

    transition: .25s ease;
}

.btn-main:hover {
    background: var(--orange-dark);

    color: white;

    transform: translateY(-2px);
}

.btn-light-custom {
    display: inline-flex;

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

    background: white;

    border: 1px solid var(--line);

    padding: 15px 22px;

    border-radius: 14px;

    font-size: 14px;

    font-weight: 700;

    transition: .25s ease;
}

.btn-light-custom:hover {
    border-color: var(--orange);

    color: var(--orange);
}


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

.hero {
    position: relative;

    padding: 80px 0 110px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(255,116,23,.08);

    filter: blur(10px);

    top: -300px;
    right: -200px;
}

.hero-kicker {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    background: var(--orange-soft);

    color: var(--orange-dark);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 25px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #24b46b;

    box-shadow:
        0 0 0 5px rgba(36,180,107,.12);
}

.hero h1 {
    font-size: clamp(48px, 7vw, 86px);

    line-height: .94;

    max-width: 720px;

    font-weight: 700;

    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--orange);
}

.hero-description {
    color: var(--muted);

    max-width: 580px;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


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

.network-wrapper {
    position: relative;

    min-height: 520px;

    margin-top: 10px;
}

.network-card {
    position: absolute;

    inset: 20px 0 0 30px;

    border-radius: 35px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,116,23,.12),
            transparent 38%
        ),
        #202020;

    overflow: hidden;

    box-shadow:
        0 35px 80px rgba(0,0,0,.16);

    transition: transform .2s ease;
}

.network-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}

.network-lines {
    position: absolute;

    inset: 0;

    opacity: .55;
}

.network-lines svg {
    width: 100%;
    height: 100%;
}

.network-line {
    stroke: #ff7417;

    stroke-width: 1.5;

    stroke-dasharray: 5 8;

    fill: none;

    opacity: .7;
}

.node {
    position: absolute;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 7px rgba(255,116,23,.13),
        0 0 25px rgba(255,116,23,.7);
}

.node-1 {
    top: 22%;
    left: 19%;
}

.node-2 {
    top: 68%;
    left: 24%;
}

.node-3 {
    top: 34%;
    right: 20%;
}

.node-4 {
    top: 76%;
    right: 25%;
}

.node-main {
    width: 18px;
    height: 18px;

    top: 49%;
    left: 50%;

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

    z-index: 4;
}

.node-main::before {
    content: "";

    position: absolute;

    inset: -15px;

    border:
        1px solid rgba(255,116,23,.5);

    border-radius: 50%;

    animation: pulse 2.5s infinite;
}

@keyframes pulse {

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

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

}


/* =========================================================
   ID CARD
========================================================= */

.id-card {
    position: absolute;

    width: 290px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-3deg);

    background: rgba(255,255,255,.97);

    border-radius: 23px;

    padding: 23px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.28);

    z-index: 5;
}

.id-card-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 23px;
}

.id-label {
    font-size: 10px;

    color: #999;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.verified {
    color: #27a965;

    font-size: 12px;

    font-weight: 700;
}

.id-avatar {
    width: 58px;
    height: 58px;

    border-radius: 17px;

    background: var(--orange-soft);

    color: var(--orange);

    display: flex;

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

    font-size: 24px;

    margin-bottom: 17px;

    overflow: hidden;
}

.id-avatar img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 5px;
}

.id-name {
    font-size: 22px;

    font-weight: 700;

    margin-bottom: 3px;
}

.id-role {
    font-size: 12px;

    color: #888;

    margin-bottom: 22px;
}

.id-number {
    padding: 13px 14px;

    border-radius: 12px;

    background: #f5f4f1;

    font-family: monospace;

    letter-spacing: .13em;

    font-size: 15px;

    font-weight: 700;
}

.id-footer {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 16px;
}

.location {
    font-size: 11px;

    color: #777;
}

.signal {
    display: flex;

    gap: 3px;

    align-items: end;
}

.signal span {
    width: 4px;

    background: var(--orange);

    border-radius: 3px;
}

.signal span:nth-child(1) {
    height: 5px;
}

.signal span:nth-child(2) {
    height: 9px;
}

.signal span:nth-child(3) {
    height: 13px;
}

.signal span:nth-child(4) {
    height: 17px;
}


/* =========================================================
   FLOATING LABELS
========================================================= */

.floating-label {
    position: absolute;

    z-index: 8;

    background: rgba(255,255,255,.96);

    padding: 11px 14px;

    border-radius: 13px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.12);

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 11px;

    font-weight: 700;
}

.floating-label i {
    color: var(--orange);

    font-size: 15px;
}

.float-one {
    left: -5px;
    top: 105px;
}

.float-two {
    right: -5px;
    top: 180px;
}

.float-three {
    right: 30px;
    bottom: 65px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    padding: 0 0 80px;
}

.trust-inner {
    background: var(--ink);

    color: white;

    border-radius: 24px;

    padding: 28px 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.trust-text {
    font-size: 13px;

    color: #aaa;
}

.trust-items {
    display: flex;

    gap: 35px;

    flex-wrap: wrap;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 13px;

    font-weight: 600;
}

.trust-item i {
    color: var(--orange);

    font-size: 17px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 110px 0;
}

.section-label {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;

    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(36px, 5vw, 58px);

    line-height: 1;

    max-width: 700px;

    margin-bottom: 20px;
}

.section-description {
    color: var(--muted);

    max-width: 600px;

    line-height: 1.7;
}


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

.services-section {
    background: white;

    position: relative;

    overflow: hidden;
}

.services-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: rgba(255,116,23,.045);

    top: -260px;
    right: -180px;

    pointer-events: none;
}

.services-section::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    border:
        1px solid rgba(255,116,23,.08);

    bottom: -220px;
    left: -170px;

    pointer-events: none;
}

.services-header {
    position: relative;

    z-index: 2;
}

.services-brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.services-brand-logo {
    width: 46px;
    height: 46px;

    object-fit: contain;

    border-radius: 13px;

    background: #fff;

    padding: 5px;

    box-shadow:
        0 8px 25px rgba(20,20,20,.09),
        0 0 0 1px rgba(20,20,20,.06);
}

.services-brand-text {
    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: var(--ink);
}

.services-brand-text span {
    color: var(--orange);
}

.service-grid {
    position: relative;

    z-index: 2;

    margin-top: 50px;
}

.service-card {
    height: 100%;

    min-height: 250px;

    border:
        1px solid var(--line);

    border-radius: var(--radius-lg);

    padding: 27px;

    background: white;

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

    position: relative;

    overflow: hidden;
}

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

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: var(--orange-soft);

    right: -90px;
    bottom: -90px;

    transition: .4s ease;
}

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

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,116,23,.04),
            transparent 42%
        );

    opacity: 0;

    transition: .3s ease;
}

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

    box-shadow: var(--shadow-card);

    border-color:
        rgba(255,116,23,.28);
}

.service-card:hover::before {
    transform: scale(1.45);
}

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


/* Featured */

.service-card.featured {
    background: var(--ink);

    color: white;

    border-color: var(--ink);

    min-height: 280px;
}

.service-card.featured::before {
    background:
        rgba(255,116,23,.13);
}

.service-card.featured::after {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,116,23,.18),
            transparent 40%
        );
}

.service-card.featured:hover {
    border-color:
        rgba(255,116,23,.45);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}

.service-number {
    position: absolute;

    top: 22px;
    right: 25px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;

    color: #b5b5b5;

    z-index: 3;
}

.featured .service-number {
    color: rgba(255,255,255,.4);
}

.service-icon {
    width: 50px;
    height: 50px;

    border-radius: 15px;

    background: var(--orange-soft);

    color: var(--orange);

    display: flex;

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

    font-size: 22px;

    margin-bottom: 23px;

    position: relative;

    z-index: 3;
}

.featured .service-icon {
    background: var(--orange);

    color: white;
}

.service-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.12;

    margin-bottom: 10px;

    position: relative;

    z-index: 3;

    max-width: 300px;
}

.service-description {
    color: #858585;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;

    position: relative;

    z-index: 3;

    max-width: 320px;
}

.featured .service-description {
    color: #aaa;
}

.service-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 24px;

    position: relative;

    z-index: 3;
}

.service-tag {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 50px;

    background: #f7f5f1;

    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}

.featured .service-tag {
    background:
        rgba(255,255,255,.08);

    color: #bbb;
}

.service-arrow {
    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: #f7f5f1;

    color: var(--orange);

    display: flex;

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

    font-size: 15px;

    transition: .25s ease;
}

.featured .service-arrow {
    background:
        rgba(255,255,255,.1);
}

.service-card:hover .service-arrow {
    background: var(--orange);

    color: white;

    transform:
        translate(2px,-2px);
}


/* B2B */

.service-card.b2b {
    background: #f7f5f1;

    border-color: transparent;
}

.service-card.b2b .service-icon {
    background: var(--ink);

    color: white;
}

.service-card.b2b .service-tag {
    background: white;
}


/* Grid */

.service-health {
    grid-column: span 2;
}

.service-standard {
    grid-column: span 1;
}

.service-bottom {
    grid-column: span 1;
}


/* Network badge */

.service-network-badge {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 55px;

    padding: 16px 18px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background: #faf9f6;

    width: fit-content;

    position: relative;

    z-index: 3;
}

.service-network-logo {
    width: 40px;
    height: 40px;

    object-fit: contain;

    border-radius: 11px;

    background: white;

    padding: 4px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.07);
}

.service-network-title {
    font-size: 12px;

    font-weight: 800;
}

.service-network-subtitle {
    color: #888;

    font-size: 11px;

    margin-top: 2px;
}


/* =========================================================
   ID SYSTEM
========================================================= */

.id-section {
    background: #f3f0ea;
}

.id-system {
    background: var(--ink);

    color: white;

    border-radius: 32px;

    padding: 55px;

    position: relative;

    overflow: hidden;
}

.id-system::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border:
        1px solid rgba(255,116,23,.15);

    top: -250px;
    right: -150px;
}

.id-system::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    border:
        1px solid rgba(255,116,23,.12);

    bottom: -220px;
    left: -120px;
}

.id-system-content {
    position: relative;

    z-index: 3;
}

.id-system h2 {
    font-size: clamp(38px, 5vw, 60px);

    max-width: 620px;

    line-height: 1;
}

.id-system h2 span {
    color: var(--orange);
}

.id-system p {
    color: #aaa;

    max-width: 580px;

    line-height: 1.7;
}

.id-code-large {
    font-family: monospace;

    font-size: clamp(27px, 4vw, 45px);

    letter-spacing: .14em;

    color: white;

    margin: 35px 0;
}

.id-code-large span {
    color: var(--orange);
}

.id-feature {
    display: flex;

    gap: 13px;

    align-items: flex-start;

    margin-bottom: 17px;
}

.id-feature i {
    color: var(--orange);

    font-size: 18px;
}

.id-feature strong {
    display: block;

    font-size: 13px;
}

.id-feature small {
    display: block;

    color: #888;

    margin-top: 3px;
}


/* =========================================================
   NETWORK FLOW
========================================================= */

.network-section {
    background: white;
}

.flow {
    margin-top: 55px;

    display: grid;

    grid-template-columns:
        1fr 100px 1fr 100px 1fr;

    align-items: center;
}

.flow-card {
    border:
        1px solid var(--line);

    border-radius: 22px;

    padding: 27px;

    background: #fff;

    min-height: 190px;
}

.flow-number {
    font-size: 11px;

    font-weight: 800;

    color: var(--orange);

    letter-spacing: .12em;

    margin-bottom: 17px;
}

.flow-card h4 {
    font-size: 22px;

    margin-bottom: 9px;
}

.flow-card p {
    color: #858585;

    font-size: 13px;

    line-height: 1.6;
}

.flow-icon {
    color: var(--orange);

    font-size: 25px;
}

.flow-arrow {
    text-align: center;

    color: #bbb;

    font-size: 25px;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    background: var(--cream);
}

.location-panel {
    background: white;

    border:
        1px solid var(--line);

    border-radius: 30px;

    padding: 12px;

    box-shadow: var(--shadow-soft);
}

.fake-map {
    height: 420px;

    border-radius: 23px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            transparent 0 25%,
            rgba(255,255,255,.7) 25.2% 25.8%,
            transparent 26%
        ),
        linear-gradient(
            30deg,
            transparent 0 35%,
            rgba(255,255,255,.65) 35.2% 35.8%,
            transparent 36%
        ),
        #e9e5dd;
}

.fake-map::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .55;

    background-image:
        linear-gradient(
            90deg,
            rgba(90,90,90,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(90,90,90,.08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.map-road {
    position: absolute;

    height: 3px;

    background: white;

    transform-origin: left center;

    box-shadow:
        0 1px 4px rgba(0,0,0,.08);
}

.road-one {
    width: 500px;

    left: -20px;
    top: 150px;

    transform: rotate(20deg);
}

.road-two {
    width: 450px;

    left: 100px;
    top: 320px;

    transform: rotate(-17deg);
}

.road-three {
    width: 370px;

    left: 210px;
    top: 70px;

    transform: rotate(75deg);
}

.map-pin {
    position: absolute;

    left: 54%;
    top: 48%;

    width: 58px;
    height: 58px;

    border-radius:
        50% 50% 50% 0;

    background: var(--orange);

    transform: rotate(-45deg);

    box-shadow:
        0 12px 30px rgba(255,116,23,.35);
}

.map-pin::after {
    content: "";

    position: absolute;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: white;

    top: 20px;
    left: 20px;
}

.map-status {
    position: absolute;

    left: 25px;
    bottom: 25px;

    background:
        rgba(255,255,255,.95);

    border-radius: 16px;

    padding: 16px 18px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.09);
}

.map-status-title {
    display: flex;

    gap: 8px;

    align-items: center;

    font-size: 12px;

    font-weight: 800;
}

.online {
    width: 7px;
    height: 7px;

    background: #2db86c;

    border-radius: 50%;
}

.map-status small {
    display: block;

    color: #888;

    margin-top: 5px;
}


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

.cta-section {
    padding: 100px 0;

    background: var(--ink);

    color: white;
}

.cta-box {
    text-align: center;

    max-width: 800px;

    margin: auto;
}

.cta-box h2 {
    font-size: clamp(42px, 6vw, 70px);

    line-height: .98;

    margin-bottom: 25px;
}

.cta-box h2 span {
    color: var(--orange);
}

.cta-box p {
    color: #999;

    line-height: 1.7;

    max-width: 600px;

    margin:
        0 auto 32px;
}


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

footer {
    background: #111;

    color: white;

    padding: 55px 0 25px;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-description {
    color: #777;

    max-width: 320px;

    font-size: 13px;

    line-height: 1.7;
}

.footer-title {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .12em;

    color: #aaa;

    margin-bottom: 17px;

    font-weight: 700;
}

.footer-link {
    display: block;

    color: #777;

    font-size: 13px;

    margin-bottom: 10px;

    transition: .2s;
}

.footer-link:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top:
        1px solid rgba(255,255,255,.07);

    margin-top: 45px;

    padding-top: 20px;

    color: #666;

    font-size: 12px;

    display: flex;

    justify-content: space-between;

    gap: 15px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .hero {
        padding-top: 50px;
    }

    .network-wrapper {
        margin-top: 50px;

        min-height: 500px;
    }

    .network-card {
        left: 0;
    }

    .flow {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .trust-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .service-health {
        grid-column: span 2;
    }

    .service-standard,
    .service-bottom {
        grid-column: span 1;
    }
}


@media (max-width: 767px) {

    .navbar {
        padding: 15px 0;
    }

    .brand {
        font-size: 22px;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero h1 {
        font-size: 52px;
    }

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

    .network-wrapper {
        min-height: 420px;
    }

    .network-card {
        inset: 10px 0 0;

        border-radius: 25px;
    }

    .id-card {
        width: 250px;
    }

    .floating-label {
        display: none;
    }

    .section {
        padding: 75px 0;
    }

    .id-system {
        padding: 35px 25px;

        border-radius: 25px;
    }

    .id-code-large {
        font-size: 22px;

        letter-spacing: .09em;
    }

    .fake-map {
        height: 330px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .service-grid {
        margin-top: 35px;
    }

    .service-health,
    .service-standard,
    .service-bottom {
        grid-column: span 1;
    }

    .service-card,
    .service-card.featured {
        min-height: 235px;
    }

    .services-brand-logo {
        width: 42px;
        height: 42px;
    }
}
/*Request Page CSS WORKS*/

/* =========================================================
   SERVICE REQUEST INFORMATION PAGE
========================================================= */


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

.request-info-hero {
    padding: 90px 0 110px;
    background: var(--cream);
    overflow: hidden;
}

.request-info-title {
    font-size: clamp(48px, 6vw, 78px);
    line-height: .96;
    max-width: 680px;
    margin-bottom: 28px;
}

.request-info-title span {
    color: var(--orange);
}

.request-info-description {
    color: var(--muted);
    max-width: 590px;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.request-info-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


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

.request-network-visual {
    position: relative;
    min-height: 500px;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at center,
            rgba(255,116,23,.13),
            transparent 38%
        ),
        #202020;
    overflow: hidden;
    box-shadow: 0 30px 75px rgba(0,0,0,.15);
}

.request-visual-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}

.request-glow {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255,116,23,.08);
    filter: blur(20px);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.request-visual-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    box-shadow:
        0 0 0 15px rgba(255,116,23,.10),
        0 20px 50px rgba(0,0,0,.25);
    z-index: 5;
}

.request-visual-core i {
    font-size: 27px;
}

.request-visual-core span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.request-visual-node {
    position: absolute;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.request-node-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.10);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.request-user {
    left: 13%;
    top: 22%;
}

.request-network {
    right: 12%;
    top: 20%;
}

.request-contributor {
    left: 13%;
    bottom: 20%;
}

.request-service {
    right: 11%;
    bottom: 20%;
}

.request-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--orange),
        transparent
    );
    opacity: .65;
    z-index: 2;
    transform-origin: center;
}

.connection-one {
    width: 180px;
    left: 23%;
    top: 34%;
    transform: rotate(24deg);
}

.connection-two {
    width: 180px;
    right: 22%;
    top: 34%;
    transform: rotate(-24deg);
}

.connection-three {
    width: 180px;
    left: 23%;
    bottom: 34%;
    transform: rotate(-24deg);
}

.connection-four {
    width: 180px;
    right: 22%;
    bottom: 34%;
    transform: rotate(24deg);
}


/* =========================================================
   WHY REQUEST
========================================================= */

.request-why-section {
    background: white;
}

.request-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.request-benefit-card {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    transition: .3s ease;
}

.request-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,116,23,.25);
    box-shadow: var(--shadow-card);
}

.request-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 20px;
}

.request-benefit-card h4 {
    font-size: 19px;
    margin-bottom: 8px;
}

.request-benefit-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}


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

.request-dashboard-section {
    background: #f3f0ea;
}

.request-dark-panel {
    background: var(--ink);
    color: white;
    border-radius: 32px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.request-dark-panel::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255,116,23,.13);
    border-radius: 50%;
    right: -180px;
    top: -220px;
}

.request-dark-panel h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    max-width: 560px;
}

.request-dark-panel h2 span {
    color: var(--orange);
}

.request-dark-panel p {
    color: #aaa;
    max-width: 560px;
    line-height: 1.75;
}

.request-feature-list {
    margin-top: 30px;
}

.request-feature-item {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
}

.request-feature-item i {
    color: var(--orange);
}

.dashboard-flow-card {
    background: white;
    color: var(--ink);
    border-radius: 23px;
    padding: 23px;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.dashboard-flow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    color: #888;
    margin-bottom: 20px;
}

.dashboard-online {
    color: #27a965;
    letter-spacing: 0;
}

.dashboard-online i {
    font-size: 6px;
    margin-right: 4px;
}

.dashboard-id {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border-radius: 15px;
    background: #f7f5f1;
}

.dashboard-id-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.dashboard-id small {
    display: block;
    color: #888;
    font-size: 10px;
}

.dashboard-id strong {
    display: block;
    margin-top: 3px;
    font-family: monospace;
    font-size: 13px;
    letter-spacing: .08em;
}

.dashboard-service-title {
    margin: 23px 0 12px;
    font-size: 12px;
    font-weight: 800;
}

.dashboard-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
}

.dashboard-service i {
    color: var(--orange);
    font-size: 17px;
}

.dashboard-service small {
    margin-left: auto;
    color: #27a965;
    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   PROCESS
========================================================= */

.request-process-section {
    background: white;
}

.request-process {
    margin-top: 55px;
    display: grid;
    grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;
    align-items: center;
}

.request-process-card {
    min-height: 280px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    position: relative;
    transition: .3s ease;
}

.request-process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255,116,23,.25);
}

.request-process-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #aaa;
    letter-spacing: .12em;
}

.request-process-icon {
    width: 50px;
    height: 50px;
    margin: 28px 0 20px;
    border-radius: 15px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.request-process-label {
    font-size: 9px;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 7px;
}

.request-process-card h4 {
    font-size: 19px;
    margin-bottom: 9px;
}

.request-process-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}

.request-process-arrow {
    text-align: center;
    color: #bbb;
    font-size: 20px;
}


/* =========================================================
   MATCHING
========================================================= */

.request-matching-section {
    background: var(--cream);
}

.matching-visual {
    position: relative;
    min-height: 440px;
    border-radius: 30px;
    background: var(--ink);
    overflow: hidden;
}

.matching-visual::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255,116,23,.18);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.matching-visual::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px dashed rgba(255,116,23,.25);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.matching-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 4;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 7px;
    box-shadow: 0 20px 45px rgba(0,0,0,.3);
}

.matching-center i {
    font-size: 25px;
}

.matching-center span {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.matching-node {
    position: absolute;
    z-index: 5;
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
}

.matching-node i {
    color: var(--orange);
    font-size: 18px;
}

.matching-node-one {
    left: 12%;
    top: 16%;
}

.matching-node-two {
    right: 12%;
    top: 16%;
}

.matching-node-three {
    left: 12%;
    bottom: 16%;
}

.matching-node-four {
    right: 12%;
    bottom: 16%;
}

.matching-list {
    margin-top: 30px;
}

.matching-list-item {
    display: flex;
    gap: 13px;
    margin-bottom: 20px;
}

.matching-list-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.matching-list-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.matching-list-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   SAFETY
========================================================= */

.request-safety-section {
    background: white;
}

.request-safety-header {
    max-width: 720px;
}

.safety-card {
    height: 100%;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: white;
    transition: .3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255,116,23,.22);
}

.safety-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 20px;
}

.safety-card h4 {
    font-size: 18px;
    margin-bottom: 9px;
}

.safety-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}


/* =========================================================
   CUSTOMER BENEFITS
========================================================= */

.request-benefits-section {
    background: var(--cream);
}

.customer-benefits {
    border-top: 1px solid var(--line);
}

.customer-benefit {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.customer-benefit-number {
    flex-shrink: 0;
    font-family: monospace;
    font-size: 12px;
    font-weight: 800;
    color: var(--orange);
}

.customer-benefit h4 {
    font-size: 19px;
    margin-bottom: 5px;
}

.customer-benefit p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   LIFECYCLE
========================================================= */

.request-lifecycle-section {
    background: white;
}

.lifecycle {
    margin-top: 55px;
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;
    align-items: center;
}

.lifecycle-step {
    text-align: center;
}

.lifecycle-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    border-radius: 19px;
    background: #f5f4f1;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.lifecycle-step.active .lifecycle-icon {
    background: var(--orange-soft);
    color: var(--orange);
}

.lifecycle-step strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.lifecycle-step small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.lifecycle-line {
    height: 1px;
    background: var(--line);
}


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

.request-info-cta {
    padding: 100px 0;
    background: var(--ink);
    color: white;
}

.request-info-cta-box {
    text-align: center;
    max-width: 750px;
    margin: auto;
}

.request-info-cta-box h2 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: .98;
    margin-bottom: 22px;
}

.request-info-cta-box h2 span {
    color: var(--orange);
}

.request-info-cta-box p {
    max-width: 570px;
    margin: 0 auto 30px;
    color: #999;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .request-process {
        grid-template-columns:
            1fr 35px
            1fr 35px
            1fr 35px
            1fr 35px
            1fr;
    }

    .request-process-card {
        padding: 20px;
    }

}


@media (max-width: 991px) {

    .request-info-hero {
        padding: 60px 0 80px;
    }

    .request-network-visual {
        min-height: 450px;
    }

    .request-dark-panel {
        padding: 40px 30px;
    }

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

    .request-process-arrow {
        transform: rotate(90deg);
    }

    .request-process-card {
        min-height: auto;
    }

    .lifecycle {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lifecycle-line {
        width: 1px;
        height: 35px;
        margin: auto;
    }

}


@media (max-width: 767px) {

    .request-info-hero {
        padding: 45px 0 65px;
    }

    .request-info-title {
        font-size: 48px;
    }

    .request-info-description {
        font-size: 15px;
    }

    .request-network-visual {
        min-height: 390px;
        border-radius: 24px;
    }

    .request-visual-core {
        width: 100px;
        height: 100px;
    }

    .request-visual-node {
        font-size: 8px;
    }

    .request-node-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .request-user {
        left: 7%;
    }

    .request-network {
        right: 7%;
    }

    .request-contributor {
        left: 7%;
    }

    .request-service {
        right: 7%;
    }

    .request-benefit-grid {
        grid-template-columns: 1fr;
    }

    .request-dark-panel {
        padding: 32px 22px;
        border-radius: 25px;
    }

    .request-dark-panel h2 {
        font-size: 40px;
    }

    .matching-visual {
        min-height: 370px;
        border-radius: 24px;
    }

    .matching-center {
        width: 95px;
        height: 95px;
    }

    .matching-node {
        width: 65px;
        height: 65px;
        border-radius: 16px;
    }

    .request-info-cta {
        padding: 75px 0;
    }

}



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


/* =========================================================
   SERVICES PAGE HERO
========================================================= */

.services-page-hero {
    padding: 85px 0 105px;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.services-page-hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(255,116,23,.055);

    top: -300px;
    right: -250px;

    pointer-events: none;
}

.services-page-title {
    font-size: clamp(50px, 6.5vw, 82px);
    line-height: .95;
    max-width: 760px;
    margin-bottom: 28px;
}

.services-page-title span {
    color: var(--orange);
}

.services-page-description {
    max-width: 610px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;

    margin-bottom: 16px;
}

.services-page-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}


/* =========================================================
   SERVICES OVERVIEW CARD
========================================================= */

.services-overview-card {
    min-height: 450px;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,116,23,.15),
            transparent 38%
        ),
        var(--ink);

    color: white;

    position: relative;

    overflow: hidden;

    padding: 25px;

    box-shadow:
        0 30px 75px rgba(0,0,0,.16);
}

.services-overview-card::before {
    content: "";

    position: absolute;

    inset: 10px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 25px;
}

.services-overview-top {
    position: relative;

    z-index: 3;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .1em;
}

.services-overview-top i {
    color: var(--orange);

    margin-right: 5px;
}

.services-live {
    color: #aaa;

    letter-spacing: 0;
}

.services-live i {
    color: #27a965;

    font-size: 6px;
}

.services-overview-center {
    position: absolute;

    left: 50%;
    top: 48%;

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

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    z-index: 4;
}

.services-overview-logo {
    width: 85px;
    height: 85px;

    padding: 9px;

    border-radius: 25px;

    background: white;

    box-shadow:
        0 20px 50px rgba(0,0,0,.3);

    margin-bottom: 17px;
}

.services-overview-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.services-overview-center strong {
    font-family: "Manrope", sans-serif;

    font-size: 25px;

    letter-spacing: -.05em;
}

.services-overview-center small {
    color: #888;

    font-size: 10px;

    margin-top: 5px;
}

.services-overview-grid {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 4;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 7px;
}

.services-overview-grid div {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    padding: 12px 5px;

    border-radius: 13px;

    background: rgba(255,255,255,.055);

    border:
        1px solid rgba(255,255,255,.05);

    font-size: 9px;

    color: #aaa;

    text-align: center;
}

.services-overview-grid i {
    color: var(--orange);

    font-size: 17px;
}


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

.services-intro-section {
    padding: 105px 0;

    background: white;
}

.services-orange-text {
    color: var(--orange);
}


/* =========================================================
   SERVICE LIST
========================================================= */

.services-list-section {
    padding: 110px 0;

    background: #f3f0ea;
}

.services-list-heading {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 55px;
}


/* =========================================================
   SERVICE DETAIL CARD
========================================================= */

.service-detail-card {
    display: grid;

    grid-template-columns: 60px 70px 1fr;

    gap: 28px;

    padding: 38px;

    margin-bottom: 18px;

    background: white;

    border:
        1px solid var(--line);

    border-radius: 27px;

    position: relative;

    overflow: hidden;

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

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

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: var(--orange-soft);

    right: -180px;
    bottom: -180px;

    transition: .4s ease;
}

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

    box-shadow: var(--shadow-card);

    border-color:
        rgba(255,116,23,.25);
}

.service-detail-card:hover::after {
    transform: scale(1.35);
}

.service-detail-featured {
    background: var(--ink);

    color: white;

    border-color: var(--ink);

    padding: 45px 38px;
}

.service-detail-featured:hover {
    border-color:
        rgba(255,116,23,.4);
}

.service-detail-number {
    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .1em;

    color: #aaa;

    padding-top: 7px;

    position: relative;

    z-index: 3;
}

.service-detail-featured .service-detail-number {
    color: rgba(255,255,255,.4);
}

.service-detail-icon {
    width: 62px;
    height: 62px;

    border-radius: 18px;

    background: var(--orange-soft);

    color: var(--orange);

    display: flex;

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

    font-size: 25px;

    position: relative;

    z-index: 3;
}

.service-detail-featured .service-detail-icon {
    background: var(--orange);

    color: white;
}

.service-detail-content {
    position: relative;

    z-index: 3;
}

.service-detail-label {
    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .13em;

    margin-bottom: 9px;
}

.service-detail-content h3 {
    font-size: 29px;

    margin-bottom: 12px;
}

.service-detail-content p {
    max-width: 730px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 20px;
}

.service-detail-featured .service-detail-content p {
    color: #aaa;
}

.service-detail-items {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.service-detail-items span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    background: #f7f5f1;

    color: #777;

    border-radius: 50px;

    font-size: 10px;

    font-weight: 700;
}

.service-detail-featured .service-detail-items span {
    background: rgba(255,255,255,.07);

    color: #aaa;
}

.service-detail-items i {
    color: var(--orange);
}


/* =========================================================
   B2B
========================================================= */

.service-detail-b2b {
    background: #faf8f4;
}


/* =========================================================
   NETWORK SECTION
========================================================= */

.services-network-section {
    padding: 110px 0;

    background: white;
}

.services-network-points {
    margin-top: 35px;
}

.services-network-point {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 18px 0;

    border-top:
        1px solid var(--line);
}

.services-network-point:last-child {
    border-bottom:
        1px solid var(--line);
}

.services-network-point-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    border-radius: 13px;

    background: var(--orange-soft);

    color: var(--orange);

    display: flex;

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

.services-network-point strong {
    display: block;

    font-size: 14px;

    margin-bottom: 4px;
}

.services-network-point span {
    display: block;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   NETWORK VISUAL
========================================================= */

.services-network-visual {
    min-height: 470px;

    border-radius: 30px;

    background: var(--ink);

    position: relative;

    overflow: hidden;
}

.services-network-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}

.services-network-visual::before,
.services-network-visual::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid rgba(255,116,23,.18);

    border-radius: 50%;

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

.services-network-visual::before {
    width: 300px;
    height: 300px;
}

.services-network-visual::after {
    width: 190px;
    height: 190px;

    border-style: dashed;

    border-color:
        rgba(255,116,23,.22);
}

.services-network-center {
    position: absolute;

    left: 50%;
    top: 50%;

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

    width: 105px;
    height: 105px;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    display: flex;

    flex-direction: column;

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

    text-align: center;

    z-index: 5;

    box-shadow:
        0 20px 50px rgba(0,0,0,.3);
}

.services-network-center i {
    font-size: 23px;
}

.services-network-center span {
    font-size: 13px;

    font-weight: 800;

    margin-top: 5px;
}

.services-network-center small {
    font-size: 7px;

    letter-spacing: .08em;

    margin-top: 3px;

    opacity: .8;
}

.services-network-node {
    position: absolute;

    width: 82px;
    height: 82px;

    border-radius: 21px;

    background: rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.1);

    color: white;

    display: flex;

    flex-direction: column;

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

    gap: 7px;

    font-size: 9px;

    font-weight: 700;

    z-index: 6;
}

.services-network-node i {
    color: var(--orange);

    font-size: 19px;
}

.services-network-node-1 {
    left: 9%;
    top: 13%;
}

.services-network-node-2 {
    right: 9%;
    top: 13%;
}

.services-network-node-3 {
    left: 9%;
    bottom: 13%;
}

.services-network-node-4 {
    right: 9%;
    bottom: 13%;
}


/* =========================================================
   IMPACT
========================================================= */

.services-impact-section {
    padding: 110px 0;

    background: var(--cream);
}

.services-impact-list {
    border-top:
        1px solid var(--line);
}

.services-impact-item {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 15px;

    padding: 24px 0;

    border-bottom:
        1px solid var(--line);
}

.services-impact-number {
    font-family: monospace;

    font-size: 12px;

    font-weight: 800;

    color: var(--orange);

    padding-top: 4px;
}

.services-impact-item h4 {
    font-size: 18px;

    margin-bottom: 5px;
}

.services-impact-item p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;

    margin: 0;

    max-width: 570px;
}


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

.services-page-cta {
    padding: 105px 0;

    background: var(--ink);

    color: white;
}

.services-page-cta-box {
    max-width: 800px;

    margin: auto;

    text-align: center;
}

.services-page-cta-box h2 {
    font-size: clamp(42px, 6vw, 70px);

    line-height: .98;

    margin-bottom: 22px;
}

.services-page-cta-box h2 span {
    color: var(--orange);
}

.services-page-cta-box p {
    max-width: 580px;

    margin:
        0 auto;

    color: #999;

    line-height: 1.7;
}


/* =========================================================
   SERVICES PAGE RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .services-page-hero {
        padding: 65px 0 80px;
    }

    .services-list-heading {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .service-detail-card {
        grid-template-columns: 50px 62px 1fr;

        gap: 20px;

        padding: 30px;
    }

    .services-network-visual {
        min-height: 430px;
    }

}


@media (max-width: 767px) {

    .services-page-hero {
        padding: 50px 0 70px;
    }

    .services-page-title {
        font-size: 50px;
    }

    .services-page-description {
        font-size: 15px;
    }

    .services-overview-card {
        min-height: 390px;

        border-radius: 25px;
    }

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

    .services-intro-section,
    .services-list-section,
    .services-network-section,
    .services-impact-section {
        padding: 75px 0;
    }

    .service-detail-card,
    .service-detail-featured {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 27px;

        border-radius: 23px;
    }

    .service-detail-number {
        position: absolute;

        right: 25px;
        top: 25px;
    }

    .service-detail-icon {
        width: 55px;
        height: 55px;
    }

    .service-detail-content h3 {
        font-size: 24px;
    }

    .services-network-visual {
        min-height: 370px;

        border-radius: 24px;
    }

    .services-network-visual::before {
        width: 245px;
        height: 245px;
    }

    .services-network-visual::after {
        width: 155px;
        height: 155px;
    }

    .services-network-node {
        width: 65px;
        height: 65px;

        border-radius: 16px;

        font-size: 8px;
    }

    .services-network-node i {
        font-size: 16px;
    }

    .services-network-center {
        width: 90px;
        height: 90px;
    }

    .services-page-cta {
        padding: 75px 0;
    }

}


/* =========================================================
   PROBAHOK ID CONSOLE PAGE
========================================================= */


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

.id-console-hero {
    padding: 75px 0 105px;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.id-console-hero::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background: rgba(255,116,23,.055);

    top: -350px;
    right: -220px;

    pointer-events: none;
}


.id-console-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border-radius: 50px;

    background: var(--orange-soft);

    color: var(--orange-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .1em;

    margin-bottom: 24px;
}


.id-console-status {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #2db86c;

    box-shadow:
        0 0 0 5px rgba(45,184,108,.10);
}


.id-console-title {
    font-size: clamp(50px, 6.5vw, 82px);

    line-height: .94;

    max-width: 700px;

    margin-bottom: 27px;
}

.id-console-title span {
    color: var(--orange);
}


.id-console-description {
    max-width: 590px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;

    margin-bottom: 32px;
}


/* =========================================================
   ACCESS CARD
========================================================= */

.id-console-card {
    max-width: 600px;

    background: white;

    border:
        1px solid var(--line);

    border-radius: 25px;

    padding: 27px;

    box-shadow:
        0 25px 65px rgba(20,20,20,.08);
}


.id-console-card-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}


.id-console-card-label {
    font-size: 10px;

    color: var(--orange);

    font-weight: 800;

    letter-spacing: .13em;

    margin-bottom: 5px;
}


.id-console-card-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;

    font-weight: 700;
}


.id-console-lock {
    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: var(--orange-soft);

    color: var(--orange);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;
}


.id-console-input-label {
    display: block;

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 9px;

    color: #555;
}


/* =========================================================
   ID INPUT
========================================================= */

.probahok-id-input {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1.6fr;

    align-items: center;

    gap: 9px;

    padding: 8px;

    background: #f7f5f1;

    border:
        1px solid var(--line);

    border-radius: 15px;
}


.probahok-id-input input {
    width: 100%;

    border: 0;

    outline: 0;

    background: white;

    border-radius: 10px;

    padding: 14px 10px;

    text-align: center;

    font-family: monospace;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: .08em;

    color: var(--ink);

    transition: .2s ease;
}


.probahok-id-input input:focus {
    box-shadow:
        0 0 0 2px var(--orange);

}


.id-input-divider {
    color: #aaa;

    font-weight: 800;
}


.id-console-format {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 9px;

    color: #999;

    font-family: monospace;

    font-size: 11px;
}


.id-console-format span:first-child {
    color: var(--orange);

    font-weight: 800;
}


.id-console-format small {
    font-family: "DM Sans", sans-serif;

    margin-left: 4px;

    color: #999;

    font-size: 10px;
}


/* =========================================================
   OTP
========================================================= */

.id-console-otp {
    margin-top: 22px;

    padding: 20px;

    border-radius: 17px;

    background: #faf8f4;

    border:
        1px solid rgba(255,116,23,.12);

    animation: idOtpReveal .35s ease;
}


@keyframes idOtpReveal {

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

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

}


.otp-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.otp-label {
    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .13em;

    margin-bottom: 4px;
}


.otp-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: 19px;

    font-weight: 700;
}


.otp-header > i {
    color: var(--orange);

    font-size: 22px;
}


.otp-description {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;

    margin: 12px 0 16px;
}


.otp-inputs {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 8px;
}


.otp-inputs input {
    width: 100%;

    height: 53px;

    border: 1px solid var(--line);

    border-radius: 11px;

    background: white;

    outline: none;

    text-align: center;

    font-size: 20px;

    font-family: monospace;

    font-weight: 800;

    transition: .2s ease;
}


.otp-inputs input:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(255,116,23,.09);
}


.otp-meta {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    font-size: 10px;

    color: #888;
}


.otp-meta i {
    color: #27a965;
}


.otp-resend {
    border: 0;

    background: transparent;

    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    padding: 0;
}


/* =========================================================
   ACCESS BUTTON
========================================================= */

.id-console-button {
    width: 100%;

    margin-top: 20px;

    border: 0;

    border-radius: 13px;

    background: var(--orange);

    color: white;

    padding: 15px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(255,116,23,.22);

    transition: .25s ease;
}


.id-console-button:hover {
    background: var(--orange-dark);

    transform: translateY(-2px);
}


.id-console-button i {
    transition: .2s ease;
}


.id-console-button:hover i {
    transform: translateX(3px);
}


.id-console-message {
    min-height: 18px;

    margin-top: 10px;

    text-align: center;

    font-size: 11px;

    color: #888;
}


.id-console-security {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    padding-top: 17px;

    border-top:
        1px solid var(--line);

    color: #999;

    font-size: 10px;
}


.id-console-security i {
    color: #27a965;

    font-size: 14px;
}


/* =========================================================
   TRUST
========================================================= */

.id-console-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 20px;
}


.id-trust-item {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #888;

    font-size: 10px;

    font-weight: 700;
}


.id-trust-item i {
    color: var(--orange);

    font-size: 14px;
}


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

.id-console-visual {
    position: relative;

    min-height: 575px;

    border-radius: 34px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,116,23,.13),
            transparent 35%
        ),
        #1b1b1b;

    overflow: hidden;

    box-shadow:
        0 35px 80px rgba(0,0,0,.16);
}


.id-console-visual-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    opacity: .65;
}


.id-console-visual-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        rgba(255,116,23,.10);

    filter: blur(35px);

    left: 50%;
    top: 50%;

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


.id-console-visual-top {
    position: absolute;

    top: 25px;
    left: 27px;
    right: 27px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #aaa;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .08em;

    z-index: 8;
}


.id-console-visual-top i {
    color: var(--orange);

    margin-right: 5px;
}


.visual-connected {
    color: #999;

    letter-spacing: 0;
}


.visual-connected i {
    color: #2db86c;

    font-size: 6px;
}


/* =========================================================
   VISUAL CORE
========================================================= */

.id-console-core {
    position: absolute;

    left: 50%;
    top: 50%;

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

    width: 260px;

    text-align: center;

    z-index: 7;
}


.id-core-icon {
    width: 88px;
    height: 88px;

    margin: auto;

    border-radius: 24px;

    background: white;

    padding: 8px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);
}


.id-core-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.id-core-brand {
    color: white;

    font-family: "Manrope", sans-serif;

    font-size: 27px;

    font-weight: 800;

    letter-spacing: -.05em;

    margin-top: 18px;
}


.id-core-label {
    color: #888;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .13em;

    margin-top: 5px;
}


.id-core-number {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 22px;

    font-family: monospace;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: .08em;
}


.id-core-number span {
    color: var(--orange);
}


.id-core-number b,
.id-core-number strong {
    color: white;

    font-weight: 800;
}


.id-core-status {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: 15px;

    padding: 6px 10px;

    border-radius: 50px;

    background: rgba(255,255,255,.07);

    color: #aaa;

    font-size: 9px;

    font-weight: 700;
}


.id-core-status i {
    color: #2db86c;
}


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

.id-network-line {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,116,23,.65),
            transparent
        );

    z-index: 2;

    transform-origin: center;
}


.id-line-a {
    width: 230px;

    left: 17%;

    top: 34%;

    transform: rotate(20deg);
}


.id-line-b {
    width: 230px;

    right: 17%;

    top: 34%;

    transform: rotate(-20deg);
}


.id-line-c {
    width: 230px;

    left: 17%;

    bottom: 34%;

    transform: rotate(-20deg);
}


.id-line-d {
    width: 230px;

    right: 17%;

    bottom: 34%;

    transform: rotate(20deg);
}


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

.id-network-node {
    position: absolute;

    z-index: 8;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color: #aaa;

    font-size: 9px;

    font-weight: 700;
}


.id-node-icon {
    width: 48px;
    height: 48px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.08);

    color: var(--orange);

    font-size: 18px;
}


.node-consumer {
    left: 10%;

    top: 24%;
}


.node-contributor {
    right: 10%;

    top: 23%;
}


.node-supplier {
    left: 10%;

    bottom: 23%;
}


.node-service {
    right: 10%;

    bottom: 23%;
}


.id-visual-footer {
    position: absolute;

    left: 27px;
    right: 27px;
    bottom: 22px;

    display: flex;

    justify-content: space-between;

    gap: 15px;

    color: #666;

    font-size: 9px;

    z-index: 8;
}


.id-visual-footer i {
    color: var(--orange);

    margin-right: 4px;
}


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

.id-about-section {
    background: white;
}


.id-orange-text {
    color: var(--orange);
}


.id-structure-panel {
    margin-top: 55px;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        300px;

    background: var(--ink);

    color: white;

    border-radius: 30px;

    overflow: hidden;
}


.id-structure-content {
    padding: 55px;
}


.id-structure-label {
    color: #888;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .14em;

    margin-bottom: 20px;
}


.id-structure-number {
    display: flex;

    align-items: center;

    gap: 15px;

    font-family: monospace;

    font-size: clamp(32px,5vw,58px);

    font-weight: 800;

    letter-spacing: .08em;
}


.id-structure-number span {
    color: var(--orange);
}


.id-structure-number i {
    color: #555;

    font-style: normal;
}


.id-structure-number b,
.id-structure-number strong {
    font-weight: 800;
}


.id-structure-description {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

    margin-top: 38px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.08);
}


.id-structure-description small {
    display: block;

    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;

    margin-bottom: 6px;
}


.id-structure-description span {
    display: block;

    color: #888;

    font-size: 11px;

    line-height: 1.5;
}


.id-structure-side {
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(255,116,23,.16),
            transparent 50%
        ),
        #181818;

    padding: 45px 35px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.id-structure-side > i {
    color: var(--orange);

    font-size: 38px;

    margin-bottom: 20px;
}


.id-structure-side strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;

    margin-bottom: 8px;
}


.id-structure-side span {
    color: #888;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.id-benefit-section {
    background: var(--cream);
}


.id-benefit-grid {
    position: relative;
}


.id-benefit-card {
    height: 100%;

    min-height: 245px;

    padding: 27px;

    background: white;

    border:
        1px solid var(--line);

    border-radius: 21px;

    transition: .3s ease;

    position: relative;
}


.id-benefit-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(255,116,23,.25);

    box-shadow:
        var(--shadow-card);
}


.id-benefit-icon {
    width: 48px;
    height: 48px;

    border-radius: 14px;

    background: var(--orange-soft);

    color: var(--orange);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    margin-bottom: 20px;
}


.id-benefit-number {
    position: absolute;

    top: 26px;
    right: 26px;

    color: #ccc;

    font-family: monospace;

    font-size: 10px;

    font-weight: 800;
}


.id-benefit-card h3 {
    font-size: 19px;

    margin-bottom: 8px;
}


.id-benefit-card p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   ID TYPES
========================================================= */

.id-types-section {
    background: white;
}


.id-types-heading {
    max-width: 750px;
}


.id-role-card {
    height: 100%;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 25px;

    background: white;

    transition: .3s ease;

    position: relative;

    overflow: hidden;
}


.id-role-card::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: var(--orange-soft);

    right: -110px;
    bottom: -110px;

    transition: .4s ease;
}


.id-role-card:hover {
    transform: translateY(-7px);

    box-shadow:
        var(--shadow-card);

    border-color:
        rgba(255,116,23,.25);
}


.id-role-card:hover::before {
    transform: scale(1.4);
}


.id-role-featured {
    background: var(--ink);

    color: white;

    border-color: var(--ink);

    box-shadow:
        0 25px 65px rgba(0,0,0,.13);
}


.id-role-featured::before {
    background:
        rgba(255,116,23,.12);
}


.id-role-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 2;
}


.id-role-top > span {
    color: #bbb;

    font-family: monospace;

    font-size: 10px;

    font-weight: 800;
}


.id-role-featured .id-role-top > span {
    color: #666;
}


.id-role-icon {
    width: 53px;
    height: 53px;

    border-radius: 16px;

    background: var(--orange-soft);

    color: var(--orange);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;
}


.id-role-featured .id-role-icon {
    background: var(--orange);

    color: white;
}


.id-role-label {
    margin-top: 28px;

    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .14em;

    position: relative;

    z-index: 2;
}


.id-role-card h3 {
    font-size: 28px;

    line-height: 1.05;

    margin:
        8px 0 14px;

    max-width: 260px;

    position: relative;

    z-index: 2;
}


.id-role-card > p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    min-height: 82px;

    position: relative;

    z-index: 2;
}


.id-role-featured > p {
    color: #999;
}


.id-role-list {
    margin-top: 22px;

    position: relative;

    z-index: 2;
}


.id-role-list div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #666;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 11px;
}


.id-role-featured .id-role-list div {
    color: #aaa;
}


.id-role-list i {
    color: var(--orange);

    font-size: 14px;
}


.id-role-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

    padding-top: 18px;

    border-top:
        1px solid var(--line);

    color: #888;

    font-size: 10px;

    font-weight: 800;

    position: relative;

    z-index: 2;
}


.id-role-featured .id-role-footer {
    border-color:
        rgba(255,255,255,.08);

    color: #777;
}


.id-role-footer i {
    color: var(--orange);

    font-size: 16px;
}


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

.id-network-section {
    background: var(--cream);
}


.id-network-points {
    margin-top: 32px;
}


.id-network-point {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}


.id-network-point-icon {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--orange-soft);

    color: var(--orange);

    display: flex;

    align-items: center;

    justify-content: center;
}


.id-network-point strong {
    display: block;

    font-size: 13px;

    margin-bottom: 3px;
}


.id-network-point span {
    display: block;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   NETWORK VISUAL
========================================================= */

.id-network-map {
    position: relative;

    min-height: 500px;

    border-radius: 30px;

    background: var(--ink);

    overflow: hidden;
}


.id-map-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}


.id-map-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid rgba(255,116,23,.18);

    border-radius: 50%;

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


.ring-one {
    width: 330px;
    height: 330px;
}


.ring-two {
    width: 220px;
    height: 220px;

    border-style: dashed;
}


.id-map-center {
    position: absolute;

    left: 50%;
    top: 50%;

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

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

    z-index: 5;

    box-shadow:
        0 20px 50px rgba(0,0,0,.28);
}


.id-map-center i {
    font-size: 28px;
}


.id-map-center span {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: .1em;
}


.id-map-node {
    position: absolute;

    width: 75px;
    height: 75px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.08);

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    font-size: 9px;

    font-weight: 700;

    z-index: 6;
}


.id-map-node i {
    color: var(--orange);

    font-size: 18px;
}


.map-consumer {
    left: 12%;
    top: 17%;
}


.map-contributor {
    right: 12%;
    top: 17%;
}


.map-supplier {
    left: 12%;
    bottom: 17%;
}


.map-service {
    right: 12%;
    bottom: 17%;
}


.id-map-line {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--orange),
            transparent
        );

    opacity: .55;

    transform-origin: center;

    z-index: 2;
}


.map-line-one {
    width: 190px;

    left: 22%;

    top: 35%;

    transform: rotate(23deg);
}


.map-line-two {
    width: 190px;

    right: 22%;

    top: 35%;

    transform: rotate(-23deg);
}


.map-line-three {
    width: 190px;

    left: 22%;

    bottom: 35%;

    transform: rotate(-23deg);
}


.map-line-four {
    width: 190px;

    right: 22%;

    bottom: 35%;

    transform: rotate(23deg);
}


/* =========================================================
   SECURITY
========================================================= */

.id-security-section {
    background: white;
}


.id-security-panel {
    background: var(--ink);

    color: white;

    border-radius: 32px;

    padding: 60px;

    overflow: hidden;

    position: relative;
}


.id-security-panel::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border:
        1px solid rgba(255,116,23,.13);

    right: -220px;
    top: -250px;
}


.id-security-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

    margin-bottom: 20px;
}


.id-security-panel h2 {
    font-size: clamp(38px,5vw,60px);

    line-height: .98;

    max-width: 600px;
}


.id-security-panel h2 span {
    color: var(--orange);
}


.id-security-panel p {
    max-width: 570px;

    color: #999;

    font-size: 13px;

    line-height: 1.75;
}


.id-security-status {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 25px;

    padding: 16px;

    border-radius: 15px;

    background:
        rgba(255,255,255,.05);

    max-width: 500px;
}


.id-security-status > i {
    color: #2db86c;

    font-size: 18px;
}


.id-security-status strong {
    display: block;

    font-size: 12px;

    margin-bottom: 3px;
}


.id-security-status span {
    display: block;

    color: #777;

    font-size: 10px;

    line-height: 1.5;
}


.security-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;

    position: relative;

    z-index: 2;
}


.security-feature {
    padding: 22px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid rgba(255,255,255,.06);
}


.security-feature-icon {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background:
        rgba(255,116,23,.11);

    color: var(--orange);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 17px;
}


.security-feature strong {
    display: block;

    font-size: 13px;

    margin-bottom: 6px;
}


.security-feature span {
    display: block;

    color: #777;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   FACILITIES
========================================================= */

.id-facilities-section {
    background: var(--cream);
}


.id-facility-card {
    height: 100%;

    min-height: 175px;

    padding: 24px;

    border:
        1px solid var(--line);

    border-radius: 20px;

    background: white;

    transition: .3s ease;
}


.id-facility-card:hover {
    transform: translateY(-5px);

    box-shadow:
        var(--shadow-card);

    border-color:
        rgba(255,116,23,.22);
}


.id-facility-card > i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: var(--orange-soft);

    color: var(--orange);

    font-size: 19px;

    margin-bottom: 18px;
}


.id-facility-card strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 17px;

    margin-bottom: 5px;
}


.id-facility-card span {
    display: block;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}


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

.id-premium-section {
    padding: 100px 0;

    background: white;
}


.id-premium-panel {
    position: relative;

    min-height: 400px;

    padding: 65px;

    border-radius: 32px;

    background: var(--ink);

    color: white;

    overflow: hidden;

    display: flex;

    align-items: center;
}


.id-premium-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(255,116,23,.10);

    filter: blur(20px);

    right: -120px;

    top: 50%;

    transform:
        translateY(-50%);
}


.id-premium-content {
    position: relative;

    z-index: 3;

    max-width: 670px;
}


.id-premium-label {
    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .12em;

    margin-bottom: 18px;
}


.id-premium-content h2 {
    font-size: clamp(42px,6vw,70px);

    line-height: .96;

    margin-bottom: 22px;
}


.id-premium-content h2 span {
    color: var(--orange);
}


.id-premium-content p {
    max-width: 570px;

    color: #999;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 28px;
}


.id-premium-button {
    width: auto;
}


.id-premium-number {
    position: absolute;

    right: 45px;

    bottom: 35px;

    font-family: monospace;

    font-size: 35px;

    font-weight: 800;

    letter-spacing: .08em;

    opacity: .12;

    z-index: 2;
}


.id-premium-number span {
    color: var(--orange);
}


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

.id-final-cta {
    padding: 105px 0;

    background: var(--cream);
}


.id-final-cta-box {
    max-width: 760px;

    margin: auto;

    text-align: center;
}


.id-final-cta-box h2 {
    font-size: clamp(42px,6vw,70px);

    line-height: .97;

    margin-bottom: 23px;
}


.id-final-cta-box h2 span {
    color: var(--orange);
}


.id-final-cta-box p {
    max-width: 580px;

    margin:
        0 auto 30px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .id-console-hero {
        padding: 60px 0 80px;
    }


    .id-console-visual {
        min-height: 500px;
    }


    .id-structure-panel {
        grid-template-columns: 1fr;
    }


    .id-structure-side {
        padding: 35px 55px;
    }


    .id-security-panel {
        padding: 45px 35px;
    }


    .id-premium-panel {
        padding: 50px 35px;
    }


    .id-premium-number {
        display: none;
    }

}


@media (max-width: 767px) {

    .id-console-hero {
        padding: 45px 0 65px;
    }


    .id-console-title {
        font-size: 50px;
    }


    .id-console-description {
        font-size: 15px;
    }


    .id-console-card {
        padding: 21px;

        border-radius: 21px;
    }


    .probahok-id-input {
        gap: 5px;

        padding: 6px;
    }


    .probahok-id-input input {
        font-size: 16px;

        padding: 13px 5px;
    }


    .id-input-divider {
        font-size: 12px;
    }


    .id-console-format {
        font-size: 9px;
    }


    .id-console-visual {
        min-height: 420px;

        border-radius: 25px;
    }


    .id-console-core {
        width: 210px;
    }


    .id-core-icon {
        width: 70px;
        height: 70px;

        border-radius: 20px;
    }


    .id-core-brand {
        font-size: 23px;
    }


    .id-core-number {
        font-size: 14px;

        gap: 5px;
    }


    .id-network-node {
        font-size: 7px;
    }


    .id-node-icon {
        width: 40px;
        height: 40px;

        border-radius: 12px;

        font-size: 15px;
    }


    .node-consumer {
        left: 6%;
    }


    .node-contributor {
        right: 6%;
    }


    .node-supplier {
        left: 6%;
    }


    .node-service {
        right: 6%;
    }


    .id-console-visual-top {
        left: 18px;
        right: 18px;

        font-size: 8px;
    }


    .id-visual-footer {
        left: 18px;
        right: 18px;

        font-size: 7px;
    }


    .id-visual-footer span:last-child {
        display: none;
    }


    .id-structure-content {
        padding: 35px 25px;
    }


    .id-structure-number {
        font-size: 25px;

        gap: 7px;

        letter-spacing: .04em;
    }


    .id-structure-description {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .id-structure-side {
        padding: 35px 25px;
    }


    .id-benefit-card {
        min-height: 220px;
    }


    .id-role-card {
        padding: 25px;
    }


    .id-role-card > p {
        min-height: auto;
    }


    .id-network-map {
        min-height: 390px;

        border-radius: 24px;
    }


    .id-map-ring.ring-one {
        width: 270px;
        height: 270px;
    }


    .id-map-ring.ring-two {
        width: 180px;
        height: 180px;
    }


    .id-map-center {
        width: 90px;
        height: 90px;
    }


    .id-map-center i {
        font-size: 23px;
    }


    .id-map-node {
        width: 62px;
        height: 62px;

        border-radius: 16px;

        font-size: 7px;
    }


    .id-map-node i {
        font-size: 15px;
    }


    .security-feature-grid {
        grid-template-columns: 1fr;
    }


    .id-security-panel {
        padding: 35px 24px;

        border-radius: 25px;
    }


    .id-premium-section {
        padding: 75px 0;
    }


    .id-premium-panel {
        padding: 40px 25px;

        border-radius: 25px;
    }


    .id-premium-content h2 {
        font-size: 45px;
    }


    .id-final-cta {
        padding: 75px 0;
    }


    .id-final-cta-box h2 {
        font-size: 46px;
    }

}


/* =========================================================
   LIVE PROBAHOK NETWORK PAGE
========================================================= */


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

.live-network-page {
    overflow: hidden;
}

.live-network-hero {
    padding: 75px 0 90px;
    background: var(--cream);
}

.live-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
}

.live-status-dot,
.live-mini-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #27b56d;
    box-shadow: 0 0 0 5px rgba(39,181,109,.11);
}

.live-network-title {
    font-size: clamp(50px, 6.5vw, 82px);
    line-height: .94;
    max-width: 650px;
    margin: 25px 0;
}

.live-network-title span {
    color: var(--orange);
}

.live-network-description {
    max-width: 570px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.live-network-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.network-last-updated {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: #777;
    font-size: 12px;
}

.network-last-updated strong {
    color: #27a965;
}

.network-update-time {
    margin-left: 5px;
    color: #aaa;
}


/* =========================================================
   NETWORK VISUAL
========================================================= */

.live-network-visual {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,116,23,.15),
            transparent 35%
        ),
        #1b1b1b;
    box-shadow: 0 35px 85px rgba(0,0,0,.17);
}

.live-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}

.live-network-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.live-network-lines line {
    stroke: var(--orange);
    stroke-width: 1.2;
    stroke-dasharray: 5 8;
    opacity: .55;
    animation: networkFlow 3s linear infinite;
}

@keyframes networkFlow {

    to {
        stroke-dashoffset: -30;
    }

}


.live-network-center {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 125px;
    height: 125px;

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

    border-radius: 50%;

    background: var(--orange);
    color: white;

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

    z-index: 5;

    box-shadow:
        0 0 0 14px rgba(255,116,23,.10),
        0 20px 55px rgba(0,0,0,.3);
}

.live-network-center i {
    font-size: 28px;
    margin-bottom: 7px;
}

.live-network-center strong {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
}

.live-network-center small {
    font-size: 8px;
    letter-spacing: .16em;
    opacity: .75;
    margin-top: 2px;
}

.live-center-pulse {
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(255,116,23,.55);
    border-radius: 50%;
    animation: livePulse 2.5s infinite;
}

@keyframes livePulse {

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

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

}


.live-network-node {
    position: absolute;
    z-index: 6;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 7px;

    color: white;
    text-align: center;

    font-size: 10px;
}

.live-network-node strong {
    font-size: 10px;
}

.live-network-node small {
    color: #777;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
}

.live-node-icon {
    width: 50px;
    height: 50px;

    border-radius: 16px;

    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.09);

    color: var(--orange);

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

    font-size: 20px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    transition: .3s ease;
}

.live-network-node:hover .live-node-icon {
    background: var(--orange);
    color: white;
    transform: translateY(-4px);
}

.node-a {
    left: 10%;
    top: 16%;
}

.node-b {
    right: 10%;
    top: 15%;
}

.node-c {
    left: 9%;
    bottom: 15%;
}

.node-d {
    right: 10%;
    bottom: 15%;
}

.node-e {
    left: 46%;
    top: 7%;
}

.node-f {
    left: 45%;
    bottom: 7%;
}


/* Floating cards */

.live-floating-card {
    position: absolute;
    z-index: 8;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 14px;

    background: rgba(255,255,255,.96);

    border-radius: 14px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);
}

.live-floating-card strong {
    display: block;
    color: var(--ink);
    font-size: 10px;
}

.live-floating-card small {
    display: block;
    color: #999;
    font-size: 8px;
    margin-top: 2px;
}

.live-floating-top {
    top: 25px;
    left: 25px;
}

.live-floating-bottom {
    right: 25px;
    bottom: 25px;
}

.live-floating-bottom i {
    color: var(--orange);
    font-size: 17px;
}


/* =========================================================
   LIVE STATS
========================================================= */

.live-stats-section {
    padding: 0 0 90px;
    background: var(--cream);
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.live-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px;

    background: white;

    border: 1px solid var(--line);
    border-radius: 20px;

    transition: .3s ease;
}

.live-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.live-stat-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 14px;

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

    background: var(--orange-soft);
    color: var(--orange);

    font-size: 19px;
}

.live-stat-label {
    display: block;

    color: #999;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;

    margin-bottom: 3px;
}

.live-stat-card strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 24px;
    line-height: 1;
}

.live-stat-card small {
    display: block;

    color: #999;

    font-size: 9px;

    margin-top: 5px;
}


/* =========================================================
   LIVE MAP
========================================================= */

.live-map-section {
    padding: 110px 0;
    background: white;
}

.live-orange-text {
    color: var(--orange);
}

.live-map-panel {
    margin-top: 50px;

    display: grid;
    grid-template-columns: 1fr 320px;

    overflow: hidden;

    background: white;

    border: 1px solid var(--line);
    border-radius: 30px;

    box-shadow: var(--shadow-soft);
}

.live-map-canvas {
    min-height: 560px;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,116,23,.09),
            transparent 30%
        ),
        #e7e3db;
}

.map-grid {
    position: absolute;
    inset: 0;

    opacity: .55;

    background-image:
        linear-gradient(
            90deg,
            rgba(80,80,80,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(80,80,80,.08) 1px,
            transparent 1px
        );

    background-size: 65px 65px;
}

.live-road {
    position: absolute;
    height: 4px;

    background: rgba(255,255,255,.85);

    border-radius: 20px;

    box-shadow:
        0 1px 4px rgba(0,0,0,.08);
}

.road-1 {
    width: 620px;
    left: -80px;
    top: 160px;
    transform: rotate(20deg);
}

.road-2 {
    width: 550px;
    right: -100px;
    top: 300px;
    transform: rotate(-25deg);
}

.road-3 {
    width: 480px;
    left: 120px;
    top: 430px;
    transform: rotate(-8deg);
}

.road-4 {
    width: 400px;
    left: 350px;
    top: -30px;
    transform: rotate(78deg);
}

.road-5 {
    width: 300px;
    left: 180px;
    top: 260px;
    transform: rotate(65deg);
}


/* Network coverage zones */

.network-zone {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,116,23,.16);

    background: rgba(255,116,23,.035);

    animation: zonePulse 4s infinite;
}

.zone-1 {
    width: 220px;
    height: 220px;
    left: 13%;
    top: 20%;
}

.zone-2 {
    width: 280px;
    height: 280px;
    left: 38%;
    top: 33%;
    animation-delay: .8s;
}

.zone-3 {
    width: 190px;
    height: 190px;
    right: 10%;
    bottom: 12%;
    animation-delay: 1.5s;
}

@keyframes zonePulse {

    50% {
        transform: scale(1.04);
        opacity: .7;
    }

}


/* Map nodes */

.map-network-node {
    position: absolute;

    width: 17px;
    height: 17px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    z-index: 4;

    background: var(--orange);

    box-shadow:
        0 0 0 7px rgba(255,116,23,.13),
        0 0 25px rgba(255,116,23,.45);

    transition: .25s ease;
}

.map-network-node:hover {
    transform: scale(1.4);
}

.map-network-node.busy {
    background: #f0a400;

    box-shadow:
        0 0 0 7px rgba(240,164,0,.12);
}

.map-network-node.available {
    background: #27a965;

    box-shadow:
        0 0 0 7px rgba(39,169,101,.12);
}

.map-network-node span {
    position: absolute;
    inset: -9px;

    border: 1px solid currentColor;
    border-radius: 50%;

    opacity: .35;

    animation: mapNodePulse 2.5s infinite;
}

@keyframes mapNodePulse {

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

}


/* User location */

.map-user-location {
    position: absolute;

    width: 22px;
    height: 22px;

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

    border-radius: 50%;

    background: white;

    border: 5px solid var(--orange);

    z-index: 7;

    box-shadow:
        0 5px 20px rgba(0,0,0,.15);
}

.map-user-location span {
    position: absolute;
    inset: -9px;

    border: 1px solid var(--orange);
    border-radius: 50%;

    opacity: .4;
}


/* Map controls */

.map-live-control {
    position: absolute;

    top: 20px;
    left: 20px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 13px;

    background: rgba(255,255,255,.95);

    border-radius: 12px;

    font-size: 10px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);

    z-index: 8;
}

.map-legend {
    position: absolute;

    right: 20px;
    top: 20px;

    display: flex;
    gap: 13px;

    padding: 11px 14px;

    background: rgba(255,255,255,.95);

    border-radius: 12px;

    font-size: 9px;
    font-weight: 700;

    z-index: 8;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}

.map-legend div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.legend-active {
    background: var(--orange);
}

.legend-busy {
    background: #f0a400;
}

.legend-available {
    background: #27a965;
}

.map-location-card {
    position: absolute;

    left: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 15px;

    background: rgba(255,255,255,.96);

    border-radius: 14px;

    z-index: 8;

    box-shadow:
        0 12px 30px rgba(0,0,0,.1);
}

.map-location-card i {
    color: var(--orange);
}

.map-location-card strong {
    display: block;
    font-size: 10px;
}

.map-location-card small {
    display: block;
    color: #999;
    font-size: 8px;
    margin-top: 2px;
}


/* =========================================================
   MAP SIDEBAR
========================================================= */

.live-map-sidebar {
    padding: 28px;

    display: flex;
    flex-direction: column;

    background: #fff;
}

.map-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--line);
}

.map-sidebar-header span:first-child {
    display: block;

    color: #999;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}

.map-sidebar-header strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;

    margin-top: 3px;
}

.network-activity-list {
    margin-top: 10px;
}

.network-activity-item {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 17px 0;

    border-bottom: 1px solid var(--line);
}

.activity-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--orange-soft);
    color: var(--orange);

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

.network-activity-item strong {
    display: block;

    font-size: 11px;
}

.network-activity-item small {
    display: block;

    color: #999;

    font-size: 8px;

    margin-top: 3px;
}

.activity-status {
    margin-left: auto;

    color: #27a965;

    font-size: 7px;
    font-weight: 800;
}

.map-sidebar-button {
    margin-top: auto;

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

    padding: 14px 15px;

    border-radius: 13px;

    background: var(--ink);

    color: white;

    font-size: 10px;
    font-weight: 700;

    transition: .25s ease;
}

.map-sidebar-button:hover {
    background: var(--orange);
    color: white;
}


/* =========================================================
   NETWORK ACTIVITY
========================================================= */

.network-activity-section {
    padding: 110px 0;
    background: var(--cream);
}

.network-live-summary {
    margin-top: 30px;

    max-width: 440px;

    padding: 18px;

    border-radius: 17px;

    background: white;

    border: 1px solid var(--line);
}

.summary-line {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 12px;
}

.summary-pulse {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #27a965;

    box-shadow:
        0 0 0 5px rgba(39,169,101,.1);
}

.network-live-summary small {
    display: block;

    color: #999;

    line-height: 1.5;

    margin-top: 7px;
    padding-left: 17px;
}


.activity-feed {
    background: white;

    border: 1px solid var(--line);

    border-radius: 25px;

    overflow: hidden;

    box-shadow: var(--shadow-soft);
}

.activity-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 25px;

    border-bottom: 1px solid var(--line);
}

.activity-feed-header strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
}

.activity-feed-header span {
    display: flex;
    align-items: center;
    gap: 5px;

    color: #27a965;

    font-size: 8px;
    font-weight: 800;
}

.activity-feed-header i {
    font-size: 5px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 20px 25px;

    border-bottom: 1px solid var(--line);
}

.feed-item:last-child {
    border-bottom: 0;
}

.feed-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 13px;

    background: var(--orange-soft);
    color: var(--orange);

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

.feed-content {
    flex: 1;
}

.feed-content strong {
    display: block;
    font-size: 11px;
}

.feed-content small {
    display: block;

    color: #999;

    font-size: 9px;

    line-height: 1.5;

    margin-top: 3px;
}

.feed-item time {
    color: #aaa;
    font-size: 9px;
}


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

.network-services-section {
    padding: 110px 0;

    background: white;
}

.network-services-heading {
    max-width: 650px;
}

.network-service-grid {
    margin-top: 50px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.network-service-item {
    padding: 23px;

    min-height: 190px;

    border: 1px solid var(--line);

    border-radius: 20px;

    background: white;

    transition: .3s ease;
}

.network-service-item:hover {
    transform: translateY(-6px);

    border-color:
        rgba(255,116,23,.25);

    box-shadow: var(--shadow-card);
}

.network-service-item-icon {
    width: 46px;
    height: 46px;

    border-radius: 14px;

    background: var(--orange-soft);
    color: var(--orange);

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

    font-size: 20px;

    margin-bottom: 20px;
}

.network-service-item strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 16px;
}

.network-service-item > span {
    display: block;

    color: #999;

    font-size: 9px;

    line-height: 1.5;

    margin-top: 5px;
}

.service-live-state {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-top: 17px;

    color: #27a965;

    font-size: 8px;
    font-weight: 800;
}

.service-live-state span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #27a965;

    box-shadow:
        0 0 0 4px rgba(39,169,101,.09);
}


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

.live-network-cta {
    padding: 110px 0;

    background: var(--ink);

    color: white;
}

.live-network-cta-box {
    max-width: 800px;

    margin: auto;

    text-align: center;
}

.live-network-cta-box h2 {
    margin: 22px auto;

    max-width: 750px;

    font-size: clamp(45px, 6vw, 70px);

    line-height: .97;
}

.live-network-cta-box h2 span {
    color: var(--orange);
}

.live-network-cta-box p {
    max-width: 560px;

    margin: 0 auto 30px;

    color: #999;

    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .live-network-hero {
        padding: 55px 0 75px;
    }

    .live-network-visual {
        min-height: 500px;
    }

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

    .live-map-panel {
        grid-template-columns: 1fr;
    }

    .live-map-sidebar {
        min-height: auto;
    }

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

}


@media (max-width: 767px) {

    .live-network-title {
        font-size: 50px;
    }

    .live-network-description {
        font-size: 15px;
    }

    .live-network-visual {
        min-height: 430px;
        border-radius: 25px;
    }

    .live-network-center {
        width: 100px;
        height: 100px;
    }

    .live-network-center i {
        font-size: 22px;
    }

    .live-network-node {
        transform: scale(.82);
    }

    .live-floating-card {
        transform: scale(.85);
        transform-origin: left top;
    }

    .live-floating-bottom {
        transform-origin: right bottom;
    }

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

    .live-map-section,
    .network-activity-section,
    .network-services-section,
    .live-network-cta {
        padding: 75px 0;
    }

    .live-map-canvas {
        min-height: 390px;
    }

    .map-legend {
        display: none;
    }

    .map-location-card {
        left: 12px;
        bottom: 12px;
    }

    .network-service-grid {
        grid-template-columns: 1fr;
    }

    .feed-item {
        padding: 17px;
    }

    .activity-feed-header {
        padding: 18px;
    }

}


/* =========================================================
   PROBAHOK COVERAGE — NETWORK FOOTPRINT PAGE
========================================================= */

.coverage-page {
    background: var(--cream);
    overflow: hidden;
}


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

.coverage-hero-new {
    position: relative;
    padding: 90px 0 105px;
    overflow: hidden;
}

.coverage-hero-new::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background: rgba(255,116,23,.055);

    right: -250px;
    top: -300px;

    pointer-events: none;
}

.coverage-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border-radius: 50px;

    background: var(--orange-soft);
    color: var(--orange-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .11em;

    margin-bottom: 23px;
}

.coverage-live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #27a965;

    box-shadow:
        0 0 0 5px rgba(39,169,101,.11);
}

.coverage-hero-title {
    max-width: 800px;

    font-size: clamp(52px, 7vw, 88px);

    line-height: .94;

    letter-spacing: -.055em;

    margin-bottom: 27px;
}

.coverage-hero-title span {
    color: var(--orange);
}

.coverage-hero-description {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.75;

    margin-bottom: 32px;
}

.coverage-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}


/* =========================================================
   HERO NETWORK PANEL
========================================================= */

.coverage-footprint {
    position: relative;

    min-height: 470px;

    border-radius: 34px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,116,23,.16),
            transparent 38%
        ),
        var(--ink);

    overflow: hidden;

    box-shadow:
        0 35px 80px rgba(0,0,0,.15);
}

.coverage-footprint-grid {
    position: absolute;
    inset: 0;

    opacity: .7;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}

.coverage-orbit {
    position: absolute;

    border: 1px solid rgba(255,116,23,.18);

    border-radius: 50%;

    left: 50%;
    top: 50%;

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

.coverage-orbit.one {
    width: 180px;
    height: 180px;
}

.coverage-orbit.two {
    width: 300px;
    height: 300px;
}

.coverage-orbit.three {
    width: 420px;
    height: 420px;

    opacity: .55;
}

.coverage-center {
    position: absolute;

    left: 50%;
    top: 50%;

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

    width: 108px;
    height: 108px;

    border-radius: 28px;

    background: white;

    padding: 11px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.3);

    z-index: 5;
}

.coverage-center img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 19px;
}

.coverage-node {
    position: absolute;

    width: 58px;
    height: 58px;

    border-radius: 17px;

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

    background: rgba(255,255,255,.09);

    border:
        1px solid rgba(255,255,255,.12);

    color: white;

    backdrop-filter: blur(10px);

    z-index: 5;

    animation: coverageNodeFloat 4s ease-in-out infinite;
}

.coverage-node i {
    color: var(--orange);
    font-size: 20px;
}

.coverage-node.n1 {
    left: 17%;
    top: 25%;
}

.coverage-node.n2 {
    right: 18%;
    top: 19%;

    animation-delay: .7s;
}

.coverage-node.n3 {
    right: 13%;
    bottom: 23%;

    animation-delay: 1.3s;
}

.coverage-node.n4 {
    left: 18%;
    bottom: 18%;

    animation-delay: 1.9s;
}

@keyframes coverageNodeFloat {

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

}

.coverage-live-label {
    position: absolute;

    left: 25px;
    top: 24px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #aaa;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .1em;

    z-index: 6;
}

.coverage-footprint-bottom {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 23px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    z-index: 6;
}

.coverage-footprint-stat strong {
    display: block;

    color: white;

    font-family: "Space Grotesk", sans-serif;

    font-size: 27px;
}

.coverage-footprint-stat span {
    color: #858585;

    font-size: 10px;
}


/* =========================================================
   REGION EXPLORER
========================================================= */

.coverage-regions {
    padding: 110px 0;

    background: white;
}

.coverage-section-kicker {
    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .13em;

    text-transform: uppercase;

    margin-bottom: 11px;
}

.coverage-section-title {
    max-width: 650px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: .98;

    margin-bottom: 14px;
}

.coverage-section-description {
    max-width: 650px;

    color: var(--muted);

    line-height: 1.7;

    font-size: 15px;
}

.coverage-region-layout {
    display: grid;

    grid-template-columns: 310px 1fr;

    gap: 18px;

    margin-top: 45px;
}


/* =========================================================
   REGION LIST
========================================================= */

.coverage-region-list {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.coverage-region-button {
    width: 100%;

    border: 1px solid var(--line);

    background: var(--cream);

    border-radius: 15px;

    padding: 15px 17px;

    display: flex;
    align-items: center;

    gap: 12px;

    text-align: left;

    cursor: pointer;

    transition: .2s ease;
}

.coverage-region-button:hover {
    border-color:
        rgba(255,116,23,.3);

    transform: translateX(3px);
}

.coverage-region-button.active {
    background: var(--ink);

    color: white;

    border-color: var(--ink);

    box-shadow:
        0 12px 30px rgba(0,0,0,.12);
}

.coverage-region-flag {
    width: 39px;
    height: 39px;

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

    background: white;

    border-radius: 11px;

    font-size: 20px;

    flex-shrink: 0;
}

.coverage-region-button strong {
    display: block;

    font-size: 13px;

    margin-bottom: 2px;
}

.coverage-region-button small {
    display: block;

    color: #888;

    font-size: 9px;
}

.coverage-region-button.active small {
    color: #aaa;
}

.coverage-region-arrow {
    margin-left: auto;

    color: #aaa;
}

.coverage-region-button.active
.coverage-region-arrow {
    color: var(--orange);
}


/* =========================================================
   REGION DETAIL
========================================================= */

.coverage-region-detail {
    min-height: 450px;

    border-radius: 27px;

    padding: 35px;

    background: var(--cream);

    border:
        1px solid var(--line);

    position: relative;

    overflow: hidden;
}

.coverage-region-detail::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        rgba(255,116,23,.06);

    right: -160px;
    top: -170px;

    pointer-events: none;
}

.coverage-detail-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    align-items: flex-start;
}

.coverage-country-name {
    font-size: 38px;

    line-height: 1;

    margin-bottom: 9px;
}

.coverage-country-description {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;

    max-width: 500px;

    margin: 0;
}

.coverage-country-status {
    padding: 8px 11px;

    border-radius: 50px;

    background: #e9f8ef;

    color: #23824e;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    white-space: nowrap;
}

.coverage-country-status.waiting {
    background: #fff5d9;

    color: #a77b13;
}

.coverage-detail-stats {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 9px;

    margin-top: 35px;
}

.coverage-detail-stat {
    padding: 18px;

    background: white;

    border-radius: 15px;

    border:
        1px solid var(--line);
}

.coverage-detail-stat strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 24px;

    margin-bottom: 3px;
}

.coverage-detail-stat span {
    color: var(--muted);

    font-size: 9px;
}

.coverage-detail-services {
    position: relative;
    z-index: 2;

    margin-top: 25px;
}

.coverage-detail-services-label {
    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;

    color: #888;

    margin-bottom: 12px;
}

.coverage-service-pills {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.coverage-service-pill {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 10px;

    border-radius: 9px;

    background: white;

    border:
        1px solid var(--line);

    color: #666;

    font-size: 9px;

    font-weight: 700;
}

.coverage-service-pill i {
    color: var(--orange);
}


/* =========================================================
   COVERAGE DEPTH
========================================================= */

.coverage-depth {
    padding: 110px 0;

    background: var(--ink);

    color: white;
}

.coverage-depth-heading {
    max-width: 720px;

    margin-bottom: 45px;
}

.coverage-depth-heading .coverage-section-kicker {
    color: #ff9b5b;
}

.coverage-depth-heading h2 {
    font-size: clamp(40px, 5vw, 64px);

    line-height: .98;

    margin-bottom: 15px;
}

.coverage-depth-heading p {
    color: #999;

    line-height: 1.7;

    max-width: 620px;
}


/* =========================================================
   COVERAGE LEVELS
========================================================= */

.coverage-level-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;
}

.coverage-level {
    padding: 27px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 21px;

    background:
        rgba(255,255,255,.035);

    transition: .25s ease;
}

.coverage-level:hover {
    transform: translateY(-5px);

    background:
        rgba(255,255,255,.055);

    border-color:
        rgba(255,116,23,.3);
}

.coverage-level-number {
    color: #666;

    font-family: "Space Grotesk", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .1em;

    margin-bottom: 35px;
}

.coverage-level-icon {
    width: 48px;
    height: 48px;

    border-radius: 14px;

    background:
        rgba(255,116,23,.12);

    color: #ff8a43;

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

    font-size: 19px;

    margin-bottom: 20px;
}

.coverage-level h3 {
    font-size: 21px;

    margin-bottom: 9px;
}

.coverage-level p {
    color: #999;

    font-size: 12px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   SERVICE FOOTPRINT
========================================================= */

.coverage-services {
    padding: 110px 0;
}

.coverage-service-layout {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 60px;

    align-items: center;
}

.coverage-service-copy h2 {
    font-size: clamp(38px, 5vw, 60px);

    line-height: .98;

    margin-bottom: 17px;
}

.coverage-service-copy p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;

    max-width: 500px;
}

.coverage-service-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px;
}

.coverage-service-item {
    padding: 17px;

    border:
        1px solid var(--line);

    border-radius: 15px;

    background: white;

    display: flex;

    align-items: center;

    gap: 12px;

    transition: .2s ease;
}

.coverage-service-item:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow-card);

    border-color:
        rgba(255,116,23,.25);
}

.coverage-service-item-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--orange-soft);

    color: var(--orange);

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

.coverage-service-item strong {
    display: block;

    font-size: 12px;

    line-height: 1.25;
}

.coverage-service-item small {
    display: block;

    color: #999;

    font-size: 9px;

    margin-top: 3px;
}


/* =========================================================
   EXPANSION TIMELINE
========================================================= */

.coverage-expansion {
    padding: 110px 0;

    background: white;
}

.coverage-expansion-layout {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 65px;
}

.coverage-expansion-copy h2 {
    font-size: clamp(38px, 5vw, 60px);

    line-height: .98;

    margin-bottom: 17px;
}

.coverage-expansion-copy p {
    color: var(--muted);

    line-height: 1.7;

    max-width: 480px;
}

.coverage-roadmap {
    position: relative;

    padding-left: 30px;
}

.coverage-roadmap::before {
    content: "";

    position: absolute;

    left: 5px;
    top: 8px;
    bottom: 8px;

    width: 1px;

    background: var(--line);
}

.coverage-roadmap-item {
    position: relative;

    padding: 0 0 30px 25px;
}

.coverage-roadmap-item:last-child {
    padding-bottom: 0;
}

.coverage-roadmap-dot {
    position: absolute;

    left: -30px;
    top: 3px;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #ddd;

    border: 3px solid white;

    box-shadow:
        0 0 0 1px #ddd;
}

.coverage-roadmap-item.active
.coverage-roadmap-dot {
    background: #27a965;

    box-shadow:
        0 0 0 5px rgba(39,169,101,.1);
}

.coverage-roadmap-item.planned
.coverage-roadmap-dot {
    background: var(--orange);

    box-shadow:
        0 0 0 5px rgba(255,116,23,.1);
}

.coverage-roadmap-meta {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 6px;
}

.coverage-roadmap-country {
    font-size: 15px;

    font-weight: 800;
}

.coverage-roadmap-status {
    padding: 5px 8px;

    border-radius: 50px;

    background: #edf8f1;

    color: #25804d;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;
}

.coverage-roadmap-item.planned
.coverage-roadmap-status {
    background: var(--orange-soft);

    color: var(--orange-dark);
}

.coverage-roadmap-description {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

    max-width: 500px;
}


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

.coverage-final {
    padding: 105px 0;
}

.coverage-final-box {
    position: relative;

    overflow: hidden;

    padding: 65px;

    border-radius: 31px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255,255,255,.16),
            transparent 30%
        ),
        var(--orange);

    color: white;
}

.coverage-final-box h2 {
    max-width: 680px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: .98;

    margin-bottom: 17px;
}

.coverage-final-box p {
    max-width: 570px;

    color: rgba(255,255,255,.8);

    line-height: 1.7;

    margin-bottom: 26px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .coverage-region-layout,
    .coverage-service-layout,
    .coverage-expansion-layout {
        grid-template-columns: 1fr;
    }

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

    .coverage-snapshot-item:nth-child(2) {
        border-right: 0;
    }

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

    .coverage-footprint {
        margin-top: 45px;
    }

}


@media (max-width: 767px) {

    .coverage-hero-new {
        padding: 55px 0 75px;
    }

    .coverage-hero-title {
        font-size: 50px;
    }

    .coverage-hero-description {
        font-size: 15px;
    }

    .coverage-footprint {
        min-height: 390px;
        border-radius: 25px;
    }

    .coverage-orbit.one {
        width: 145px;
        height: 145px;
    }

    .coverage-orbit.two {
        width: 245px;
        height: 245px;
    }

    .coverage-orbit.three {
        width: 340px;
        height: 340px;
    }

    .coverage-center {
        width: 85px;
        height: 85px;
        border-radius: 22px;
    }

    .coverage-node {
        width: 47px;
        height: 47px;
        border-radius: 14px;
    }

    .coverage-node.n1 {
        left: 12%;
    }

    .coverage-node.n2 {
        right: 10%;
    }

    .coverage-node.n3 {
        right: 9%;
    }

    .coverage-node.n4 {
        left: 10%;
    }

    .coverage-snapshot-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .coverage-snapshot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .coverage-snapshot-item {
        border-bottom:
            1px solid var(--line);
    }

    .coverage-snapshot-item:nth-child(2) {
        border-right: 0;
    }

    .coverage-snapshot-item:nth-child(3) {
        border-bottom: 0;
    }

    .coverage-snapshot-item:nth-child(4) {
        border-right: 0;
        border-bottom: 0;
    }

    .coverage-region-detail {
        padding: 25px;
    }

    .coverage-detail-top {
        flex-direction: column;
    }

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

    .coverage-level-grid {
        grid-template-columns: 1fr;
    }

    .coverage-service-list {
        grid-template-columns: 1fr;
    }

    .coverage-final-box {
        padding: 40px 27px;
        border-radius: 24px;
    }

}


@media (max-width: 480px) {

    .coverage-snapshot-grid {
        grid-template-columns: 1fr;
    }

    .coverage-snapshot-item,
    .coverage-snapshot-item:nth-child(2),
    .coverage-snapshot-item:nth-child(3) {
        border-right: 0;
        border-bottom:
            1px solid var(--line);
    }

    .coverage-snapshot-item:last-child {
        border-bottom: 0;
    }

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

}


/* ================================================================
   PROBAHOK GET STARTED
   PREMIUM CONSOLE ACCESS PAGE
================================================================ */


/* ================================================================
   PAGE
================================================================ */

.gs-page {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 107, 25, 0.055),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(255, 107, 25, 0.045),
            transparent 30%
        ),
        #faf9f7;

    color: #191919;

    overflow: hidden;
}


/* ================================================================
   MAIN SECTION
================================================================ */

.gs-console-section {

    position: relative;

    min-height: calc(100vh - 80px);

    padding: 70px 0 90px;

    display: flex;

    align-items: center;
}


/* ================================================================
   BACKGROUND GLOWS
================================================================ */

.gs-background-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(80px);

    opacity: 0.35;
}


.gs-glow-one {

    top: -180px;

    left: -160px;

    background: rgba(255, 107, 25, 0.12);

}


.gs-glow-two {

    right: -180px;

    bottom: -180px;

    background: rgba(255, 107, 25, 0.08);

}


/* ================================================================
   WRAPPER
================================================================ */

.gs-console-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(480px, 0.8fr);

    gap: 90px;

    align-items: center;

    max-width: 1180px;

    margin: 0 auto;
}


/* ================================================================
   INTRO
================================================================ */

.gs-intro {

    padding: 20px 0;

}


.gs-intro-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 14px;

    border-radius: 999px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.08);

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.035);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    color: #555;
}


.gs-status-dot {

    width: 8px;

    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: #ff6b19;

    box-shadow:
        0 0 0 4px rgba(255, 107, 25, 0.10);

}


.gs-intro-title {

    margin: 30px 0 22px;

    max-width: 620px;

    font-size: clamp(
        48px,
        5vw,
        72px
    );

    line-height: 0.98;

    letter-spacing: -3.5px;

    font-weight: 600;

    color: #171717;
}


.gs-intro-title span {

    color: #ff6b19;

}


.gs-intro-description {

    max-width: 540px;

    margin: 0;

    font-size: 17px;

    line-height: 1.75;

    color: #696969;
}


/* ================================================================
   INTRO POINTS
================================================================ */

.gs-intro-points {

    margin-top: 42px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}


.gs-intro-point {

    display: flex;

    align-items: center;

    gap: 15px;
}


.gs-point-icon {

    width: 43px;

    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.07);

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.04);

    color: #ff6b19;

    font-size: 18px;
}


.gs-intro-point strong {

    display: block;

    margin-bottom: 3px;

    font-size: 14px;

    font-weight: 700;

    color: #222;
}


.gs-intro-point span {

    display: block;

    font-size: 13px;

    color: #858585;
}


/* ================================================================
   ACCESS AREA
================================================================ */

.gs-access-area {

    width: 100%;

}


/* ================================================================
   ACCESS CARD
================================================================ */

.gs-access-card {

    position: relative;

    width: 100%;

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

    border: 1px solid rgba(0, 0, 0, 0.075);

    border-radius: 28px;

    padding: 30px;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.09),
        0 8px 30px rgba(0, 0, 0, 0.035);

    overflow: hidden;
}


.gs-access-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #ff6b19,
            #ff8a42
        );

}


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

.gs-card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-bottom: 25px;

    border-bottom: 1px solid #eeeeee;
}


.gs-card-brand {

    display: flex;

    align-items: center;

    gap: 11px;
}


.gs-mini-logo {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #fff;

    border: 1px solid #eeeeee;

    overflow: hidden;
}


.gs-mini-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;
}


.gs-card-brand-name {

    display: block;

    font-size: 16px;

    font-weight: 800;

    color: #202020;
}


.gs-card-brand-label {

    display: block;

    margin-top: 2px;

    font-size: 11px;

    color: #999;
}


.gs-secure-badge {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border-radius: 999px;

    background: #f7f7f7;

    border: 1px solid #eeeeee;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.8px;

    color: #777;
}


/* ================================================================
   STEPS
================================================================ */

.gs-step-indicator {

    display: flex;

    align-items: center;

    width: 100%;

    padding: 25px 4px 27px;
}


.gs-step {

    display: flex;

    align-items: center;

    gap: 8px;

    white-space: nowrap;

    color: #aaa;

}


.gs-step span {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border: 1px solid #dedede;

    background: #fff;

    font-size: 11px;

    font-weight: 700;
}


.gs-step label {

    margin: 0;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.2px;
}


.gs-step.active {

    color: #ff6b19;
}


.gs-step.active span {

    border-color: #ff6b19;

    background: #ff6b19;

    color: #fff;

    box-shadow:
        0 4px 12px rgba(255, 107, 25, 0.2);
}


.gs-step.completed {

    color: #ff6b19;
}


.gs-step.completed span {

    background: #fff4ed;

    border-color: #ff6b19;

    color: #ff6b19;
}


.gs-step-line {

    height: 1px;

    flex: 1;

    margin: 0 13px;

    background: #e8e8e8;
}


/* ================================================================
   PANEL
================================================================ */

.gs-panel {

    position: relative;

    animation:
        gsPanelIn 0.35s ease both;
}


@keyframes gsPanelIn {

    from {

        opacity: 0;

        transform: translateY(8px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* ================================================================
   PANEL HEADING
================================================================ */

.gs-panel-heading {

    margin-bottom: 28px;
}


.gs-panel-kicker {

    display: block;

    margin-bottom: 8px;

    color: #ff6b19;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.gs-panel-heading h2 {

    margin: 0 0 9px;

    color: #171717;

    font-size: 29px;

    line-height: 1.15;

    font-weight: 650;

    letter-spacing: -1px;
}


.gs-panel-heading p {

    margin: 0;

    max-width: 440px;

    color: #888;

    font-size: 13px;

    line-height: 1.65;
}


/* ================================================================
   LABEL
================================================================ */

.gs-input-label {

    display: block;

    margin-bottom: 9px;

    color: #353535;

    font-size: 12px;

    font-weight: 750;
}


/* ================================================================
   ID INPUT
================================================================ */

.gs-id-input-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    width: 100%;

    height: 65px;

    border: 1.5px solid #dddddd;

    border-radius: 15px;

    background: #fff;

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


.gs-id-input-wrapper:focus-within {

    border-color: #ff6b19;

    box-shadow:
        0 0 0 4px rgba(255, 107, 25, 0.09);
}


.gs-id-input-wrapper.complete {

    border-color: #ff6b19;

}


.gs-id-input-wrapper.error {

    animation: gsInputShake 0.45s ease;

    border-color: #e14d4d;

}


@keyframes gsInputShake {

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

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }

}


.gs-id-input-icon {

    width: 52px;

    display: flex;

    justify-content: center;

    color: #ff6b19;

    font-size: 19px;
}


.gs-id-input {

    width: 100%;

    height: 100%;

    padding: 0 46px 0 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: #202020;

    font-size: 21px;

    font-weight: 650;

    letter-spacing: 1.5px;

    font-variant-numeric: tabular-nums;
}


.gs-id-input::placeholder {

    color: #c4c4c4;

    font-weight: 500;

    letter-spacing: 1px;
}


.gs-input-valid {

    position: absolute;

    right: 17px;

    opacity: 0;

    transform: scale(0.7);

    color: #ff6b19;

    font-size: 18px;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.gs-input-valid.visible {

    opacity: 1;

    transform: scale(1);
}


/* ================================================================
   INPUT HINT
================================================================ */

.gs-input-hint {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 9px;

    color: #999;

    font-size: 10px;
}


.gs-input-hint span {

    display: inline-flex;

    align-items: center;

    gap: 5px;
}


.gs-input-hint i {

    color: #aaa;
}


.gs-input-hint strong {

    color: #777;

    font-size: 10px;

    font-weight: 700;
}


/* ================================================================
   RESPONSE
================================================================ */

.gs-response {

    display: none;

    align-items: flex-start;

    gap: 10px;

    margin-top: 15px;

    padding: 13px;

    border-radius: 12px;

    border: 1px solid transparent;

}


.gs-response-error,
.gs-response-success,
.gs-response-info {

    display: flex;

}


.gs-response-error {

    background: #fff6f5;

    border-color: #f4d3d0;

    color: #9c3932;
}


.gs-response-success {

    background: #f3fbf6;

    border-color: #cdebd8;

    color: #267544;
}


.gs-response-info {

    background: #f6f8fb;

    border-color: #e0e5ed;

    color: #536171;
}


.gs-response-icon {

    width: 25px;

    height: 25px;

    flex: 0 0 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;
}


.gs-response-content {

    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;
}


.gs-response-content strong {

    font-size: 11px;

    font-weight: 800;
}


.gs-response-content span {

    font-size: 11px;

    line-height: 1.5;
}


/* ================================================================
   PRIMARY BUTTON
================================================================ */

.gs-primary-button {

    position: relative;

    width: 100%;

    min-height: 57px;

    margin-top: 18px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ff6b19,
            #ff761f
        );

    color: #fff !important;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(255, 107, 25, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}


.gs-primary-button:hover {

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow:
        0 16px 34px rgba(255, 107, 25, 0.28);
}


.gs-primary-button:active {

    transform: translateY(0);

}


.gs-primary-button:disabled {

    cursor: wait;

    opacity: 0.75;

    transform: none;

}


.gs-button-content {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

}


.gs-button-loading {

    display: none;

    align-items: center;

    justify-content: center;

    gap: 9px;
}


.gs-spinner {

    width: 15px;

    height: 15px;

    border: 2px solid rgba(255,255,255,0.35);

    border-top-color: #fff;

    border-radius: 50%;

    animation:
        gsSpin 0.7s linear infinite;
}


@keyframes gsSpin {

    to {
        transform: rotate(360deg);
    }

}


/* ================================================================
   NEW USER
================================================================ */

.gs-new-user {

    margin-top: 29px;
}


.gs-new-user-line {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}


.gs-new-user-line span {

    height: 1px;

    flex: 1;

    background: #ededed;
}


.gs-new-user-line small {

    white-space: nowrap;

    color: #aaa;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.gs-new-user-card {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    border-radius: 15px;

    border: 1px solid #eeeeee;

    background: #fcfcfc;
}


.gs-new-user-icon {

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #fff0e8;

    color: #ff6b19;

    font-size: 16px;
}


.gs-new-user-copy {

    min-width: 0;

    flex: 1;
}


.gs-new-user-copy strong {

    display: block;

    margin-bottom: 3px;

    color: #333;

    font-size: 11px;

    font-weight: 800;
}


.gs-new-user-copy span {

    display: block;

    color: #999;

    font-size: 9px;

    line-height: 1.4;
}


.gs-create-button {

    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 9px 12px;

    border-radius: 9px;

    background: #fff;

    border: 1px solid #e5e5e5;

    color: #444 !important;

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;

    transition:
        all 0.2s ease;
}


.gs-create-button:hover {

    background: #ff6b19;

    border-color: #ff6b19;

    color: #fff !important;

}


/* ================================================================
   OTP PANEL
================================================================ */

.gs-otp-panel {

    text-align: center;
}


.gs-otp-success-icon {

    display: flex;

    justify-content: center;

    margin-bottom: 20px;
}


.gs-otp-success-ring {

    width: 57px;

    height: 57px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff3eb;

    color: #ff6b19;

    font-size: 24px;

    box-shadow:
        0 0 0 8px rgba(255, 107, 25, 0.045);
}


.gs-otp-heading {

    margin-bottom: 20px;
}


.gs-otp-heading p {

    margin-left: auto;

    margin-right: auto;
}


/* ================================================================
   VERIFIED ID
================================================================ */

.gs-verified-id {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-bottom: 25px;

    padding: 11px 15px;

    border-radius: 11px;

    background: #fafafa;

    border: 1px solid #eeeeee;
}


.gs-verified-id span {

    color: #aaa;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.9px;
}


.gs-verified-id strong {

    color: #333;

    font-size: 13px;

    letter-spacing: 1px;
}


.gs-verified-id i {

    color: #ff6b19;

    font-size: 14px;
}


/* ================================================================
   OTP INPUTS
================================================================ */

.gs-otp-inputs {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 3px;
}


.gs-otp-input {

    width: 47px;

    height: 53px;

    border: 1.5px solid #dddddd;

    border-radius: 12px;

    outline: 0;

    background: #fff;

    color: #202020;

    text-align: center;

    font-size: 20px;

    font-weight: 800;

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


.gs-otp-input:focus {

    border-color: #ff6b19;

    box-shadow:
        0 0 0 4px rgba(255, 107, 25, 0.09);
}


.gs-otp-separator {

    color: #bbb;

    font-size: 15px;

    margin: 0 1px;
}


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

.gs-otp-footer {

    margin-top: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 13px;
}


.gs-otp-resend {

    display: flex;

    align-items: center;

    gap: 5px;

    color: #999;

    font-size: 10px;
}


.gs-otp-resend button {

    padding: 0;

    border: 0;

    background: transparent;

    color: #ff6b19;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;
}


.gs-otp-resend button:disabled {

    color: #bbb;

    cursor: not-allowed;
}


.gs-resend-timer {

    min-width: 22px;

    color: #aaa;

    font-variant-numeric: tabular-nums;
}


.gs-change-id {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #777;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition: color 0.2s ease;
}


.gs-change-id:hover {

    color: #ff6b19;

}


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

.gs-card-footer {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 25px;

    padding-top: 17px;

    border-top: 1px solid #eeeeee;

    color: #aaa;

    font-size: 9px;

}


.gs-card-footer i {

    color: #ff6b19;

    font-size: 11px;
}


/* ================================================================
   HIDDEN ATTRIBUTE
================================================================ */

.gs-access-card [hidden] {

    display: none !important;

}


/* ================================================================
   RESPONSIVE — TABLET
================================================================ */

@media (max-width: 991.98px) {

    .gs-console-section {

        padding: 55px 0 70px;

    }


    .gs-console-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 680px;

    }


    .gs-intro {

        text-align: center;

    }


    .gs-intro-badge {

        margin-left: auto;

        margin-right: auto;

    }


    .gs-intro-title {

        margin-left: auto;

        margin-right: auto;

        font-size: clamp(
            45px,
            8vw,
            64px
        );

    }


    .gs-intro-description {

        margin-left: auto;

        margin-right: auto;

    }


    .gs-intro-points {

        align-items: flex-start;

        max-width: 430px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;

    }

}


/* ================================================================
   RESPONSIVE — MOBILE
================================================================ */

@media (max-width: 575.98px) {

    .gs-console-section {

        min-height: auto;

        padding:
            35px 0
            55px;

    }


    .gs-console-wrapper {

        gap: 30px;

    }


    .gs-intro-title {

        margin-top: 22px;

        font-size: 42px;

        line-height: 1;

        letter-spacing: -2px;

    }


    .gs-intro-description {

        font-size: 14px;

        line-height: 1.65;

    }


    .gs-intro-points {

        margin-top: 28px;

        gap: 16px;

    }


    .gs-intro-point {

        gap: 11px;

    }


    .gs-point-icon {

        width: 37px;

        height: 37px;

        flex-basis: 37px;

        border-radius: 10px;

        font-size: 15px;

    }


    .gs-intro-point strong {

        font-size: 12px;

    }


    .gs-intro-point span {

        font-size: 11px;

    }


    .gs-access-card {

        padding: 21px;

        border-radius: 21px;

    }


    .gs-card-header {

        padding-bottom: 20px;

    }


    .gs-card-brand-name {

        font-size: 14px;

    }


    .gs-secure-badge {

        padding: 6px 8px;

        font-size: 8px;

    }


    .gs-step-indicator {

        padding:
            21px
            0
            23px;

    }


    .gs-step label {

        display: none;

    }


    .gs-step-line {

        margin:
            0 10px;

    }


    .gs-panel-heading h2 {

        font-size: 25px;

    }


    .gs-panel-heading p {

        font-size: 12px;

    }


    .gs-id-input-wrapper {

        height: 60px;

    }


    .gs-id-input {

        font-size: 17px;

        letter-spacing: 1px;

    }


    .gs-id-input-icon {

        width: 45px;

    }


    .gs-input-hint {

        align-items: flex-start;

        font-size: 9px;

    }


    .gs-input-hint span {

        max-width: 220px;

    }


    .gs-new-user-card {

        align-items: flex-start;

    }


    .gs-new-user-copy span {

        font-size: 8px;

    }


    .gs-create-button {

        padding:
            8px
            9px;

    }


    .gs-otp-inputs {

        gap: 5px;

    }


    .gs-otp-input {

        width: 39px;

        height: 48px;

        border-radius: 10px;

        font-size: 18px;

    }


    .gs-otp-separator {

        margin:
            0 -1px;

    }


    .gs-verified-id {

        flex-wrap: wrap;

    }

}


/* ================================================================
   VERY SMALL MOBILE
================================================================ */

@media (max-width: 380px) {

    .gs-access-card {

        padding: 17px;

    }


    .gs-otp-inputs {

        gap: 3px;

    }


    .gs-otp-input {

        width: 35px;

        height: 44px;

    }


    .gs-otp-separator {

        font-size: 11px;

    }


    .gs-new-user-card {

        flex-wrap: wrap;

    }


    .gs-create-button {

        width: 100%;

        justify-content: center;

    }

}


/* ================================================================
   REDUCED MOTION
================================================================ */

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

    .gs-panel,
    .gs-spinner,
    .gs-primary-button,
    .gs-create-button {

        animation: none !important;

        transition: none !important;

    }

}