:root {
    --bg: #071011;
    --surface: #101819;
    --surface-soft: rgba(255, 255, 255, 0.07);
    --text: #f7fbf8;
    --muted: #a8b8b4;
    --line: rgba(255, 255, 255, 0.14);
    --brand: #2ed3a6;
    --brand-dark: #0f8c73;
    --gold: #f4bd4f;
    --danger: #eb5e55;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    position: relative;
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(46, 211, 166, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(244, 189, 79, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 18% 20%, rgba(46, 211, 166, 0.12), transparent 28%),
        radial-gradient(circle at 82% 36%, rgba(235, 94, 85, 0.09), transparent 30%),
        var(--bg);
    background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%, 100% 100%;
    animation: backgroundDrift 34s linear infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(46, 211, 166, 0.12) 48%, transparent 54% 100%),
        linear-gradient(65deg, transparent 0 55%, rgba(107, 234, 255, 0.08) 59%, transparent 64% 100%);
    opacity: 0.28;
    transform: translateX(-30%);
    animation: scanLines 18s ease-in-out infinite;
}

body.intro-active {
    overflow: hidden;
}

a {
    color: inherit;
}

#intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(46, 211, 166, 0.08), transparent 34%),
        #000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(46, 211, 166, 0.16), transparent 28%),
        linear-gradient(115deg, transparent 0 44%, rgba(46, 211, 166, 0.1) 50%, transparent 58%);
    opacity: 0.72;
}

#intro.hidden {
    opacity: 0;
    visibility: hidden;
}

#animatedLogo {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10001;
    width: 180px;
    height: 104px;
    object-fit: contain;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.36));
    transition:
        top 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        left 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        width 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        height 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s ease,
        transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        filter 1.2s ease;
}

#animatedLogo.logo-reveal {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.36));
}

#animatedLogo.move-to-header {
    top: 12px;
    left: max(20px, calc((100vw - 1180px) / 2));
    width: 158px;
    height: 78px;
    opacity: 1;
    animation: none;
    transform: translate(0, 0) scale(1);
    filter: drop-shadow(0 10px 18px rgba(7, 16, 17, 0.14));
}

#intro video {
    position: relative;
    z-index: 2;
    width: min(72vw, 640px);
    max-height: 72vh;
    object-fit: contain;
    opacity: 0;
    filter: drop-shadow(0 22px 54px rgba(0, 0, 0, 0.42));
    transition: opacity 0.42s ease;
}

#intro.video-live video {
    opacity: 1;
}

@keyframes backgroundDrift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 72px 72px, -72px 72px, 0 0, 0 0, 0 0;
    }
}

@keyframes scanLines {
    0%,
    100% {
        transform: translateX(-34%);
        opacity: 0.28;
    }

    48% {
        transform: translateX(34%);
        opacity: 0.62;
    }
}

@keyframes heroCircuitFloat {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 260px 130px, -220px 110px, 180px -180px, -240px 240px;
    }
}

#main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 1s ease;
}

#main-content.visible {
    opacity: 1;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 16, 17, 0.78);
    backdrop-filter: blur(18px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 40px));
    min-height: 104px;
    margin: 0 auto;
}

.brand-mark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 360px;
    height: 78px;
    padding-left: 178px;
    text-decoration: none;
}

.brand-mark span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.brand-mark small {
    margin-top: 5px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 6px;
    color: #d9e4e1;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover {
    background: var(--surface-soft);
    color: #ffffff;
}

.nav-cta {
    margin-left: 4px;
    background: var(--brand);
    color: #061110;
}

.nav-cta:hover {
    background: #53e3bd;
    color: #061110;
}

.hero {
    position: relative;
    min-height: 94vh;
    display: grid;
    align-items: end;
    padding: 160px 24px 52px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 22%, rgba(46, 211, 166, 0.14) 23%, transparent 24% 100%),
        linear-gradient(0deg, transparent 0 64%, rgba(244, 189, 79, 0.1) 65%, transparent 66% 100%),
        radial-gradient(circle at 23% 65%, rgba(46, 211, 166, 0.18) 0 2px, transparent 3px),
        radial-gradient(circle at 62% 42%, rgba(107, 234, 255, 0.15) 0 2px, transparent 3px);
    background-size: 260px 260px, 220px 220px, 180px 180px, 240px 240px;
    opacity: 0.55;
    animation: heroCircuitFloat 30s linear infinite;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 16, 17, 0.94), rgba(7, 16, 17, 0.72) 48%, rgba(7, 16, 17, 0.32)),
        linear-gradient(0deg, var(--bg) 0%, rgba(7, 16, 17, 0) 34%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.78fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 880px;
    margin-bottom: 22px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.97;
    font-weight: 820;
}

.hero-text {
    max-width: 670px;
    margin-bottom: 30px;
    color: #d5e1dd;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    background: var(--brand);
    color: #061110;
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.btn-whatsapp {
    background: #25d366;
    color: #061110;
}

.wa-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: currentColor;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.trust-row span {
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #d9e4e1;
    font-size: 13px;
    font-weight: 750;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 14px;
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.055);
    color: #d9e4e1;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.network-panel,
.tech-panel,
.process-panel,
.faq-panel,
.snapshot-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at top left, rgba(46, 211, 166, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.network-panel {
    padding: 22px;
}

.panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.panel-header h2 {
    max-width: 320px;
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(46, 211, 166, 0.48);
    border-radius: 999px;
    background: rgba(46, 211, 166, 0.1);
    color: #b8ffe9;
    font-size: 12px;
    font-weight: 850;
}

.status-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px rgba(46, 211, 166, 0.17);
}

.network-map {
    position: relative;
    height: 284px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(46, 211, 166, 0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(107, 234, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(46, 211, 166, 0.18), transparent 38%),
        rgba(5, 14, 16, 0.92);
    background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(168, 184, 180, 0.34);
    border-radius: 50%;
    animation: spin 40s linear infinite;
}

.orbit-outer {
    inset: 28px;
}

.orbit-inner {
    inset: 64px;
    border-color: rgba(46, 211, 166, 0.38);
    animation-duration: 18s;
    animation-direction: reverse;
}

.core-node {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 96px;
    height: 82px;
    border: 1px solid rgba(46, 211, 166, 0.72);
    border-radius: 8px;
    background: rgba(7, 16, 17, 0.94);
    box-shadow: 0 0 34px rgba(46, 211, 166, 0.26);
    transform: translate(-50%, -50%);
}

.core-node small,
.core-node em {
    color: var(--brand);
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.core-node strong {
    color: #ffffff;
    font-size: 15px;
}

.pulse-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff, var(--brand));
    box-shadow: 0 0 0 0 rgba(46, 211, 166, 0.62);
    animation: pulse 3.2s infinite;
}

.dot-1 {
    top: 38px;
    left: 26%;
}

.dot-2 {
    top: 54px;
    right: 18%;
    animation-delay: 0.4s;
}

.dot-3 {
    bottom: 48px;
    left: 18%;
    animation-delay: 0.9s;
}

.dot-4 {
    right: 27%;
    bottom: 62px;
    animation-delay: 1.2s;
}

.map-label {
    position: absolute;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(7, 16, 17, 0.82);
    color: #d9e4e1;
    font-size: 11px;
    font-weight: 750;
}

.label-1 {
    top: 30px;
    left: 24px;
}

.label-2 {
    top: 44px;
    right: 24px;
}

.label-3 {
    bottom: 34px;
    left: 28px;
}

.label-4 {
    right: 24px;
    bottom: 38px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.stats-row div {
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.055);
}

.stats-row span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
}

.stats-row strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 15px;
}

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

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(46, 211, 166, 0.62);
    }

    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 14px rgba(46, 211, 166, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(46, 211, 166, 0);
    }
}

.intro-section,
.contact-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
}

#services,
#solutions,
#security,
#about,
#contact {
    scroll-margin-top: 126px;
}

.intro-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    border-bottom: 1px solid var(--line);
}

.section-heading h2,
.contact-panel h2 {
    margin-bottom: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.06;
}

.intro-copy p,
.contact-panel p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.services-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
}

.services-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.services-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 292px;
    padding: 26px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 22px auto;
    width: 46px;
    height: 46px;
    border-right: 2px solid rgba(46, 211, 166, 0.52);
    border-bottom: 2px solid rgba(46, 211, 166, 0.52);
    opacity: 0.42;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 211, 166, 0.72);
    background: linear-gradient(180deg, rgba(46, 211, 166, 0.16), rgba(255, 255, 255, 0.04));
}

.service-card:hover::after {
    opacity: 0.8;
    transform: translate(4px, 4px);
}

.service-card.featured {
    background:
        linear-gradient(180deg, rgba(46, 211, 166, 0.16), rgba(255, 255, 255, 0.04)),
        var(--surface);
}

.service-number {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 850;
}

.service-type {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 32px;
    padding: 7px 10px;
    border: 1px solid rgba(46, 211, 166, 0.34);
    border-radius: 999px;
    background: rgba(46, 211, 166, 0.09);
    color: #b8ffe9;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.65;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
}

.service-link::after {
    content: ">";
    transition: transform 0.2s ease;
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

.solutions-section,
.security-section,
.about-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
    border-top: 1px solid var(--line);
}

.solutions-section > .section-heading,
.about-section > .section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.solutions-section > .section-heading p:not(.eyebrow),
.about-section > .section-heading p:not(.eyebrow),
.security-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.solution-grid,
.security-section,
.about-section {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 18px;
    align-items: start;
}

.tech-panel,
.process-panel,
.faq-panel,
.snapshot-panel {
    padding: 24px;
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-grid a,
.chip-grid span {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid rgba(46, 211, 166, 0.34);
    border-radius: 999px;
    background: rgba(7, 16, 17, 0.68);
    color: #d9e4e1;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.chip-grid a:hover {
    border-color: rgba(46, 211, 166, 0.82);
    background: rgba(46, 211, 166, 0.12);
    transform: translateY(-2px);
}

.step-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-list li {
    display: flex;
    gap: 14px;
}

.step-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(46, 211, 166, 0.58);
    border-radius: 6px;
    color: var(--brand);
    font-weight: 900;
}

.step-list strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.step-list p {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.security-copy h2,
.about-section h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.06;
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.security-cards div,
.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.security-cards div {
    padding: 20px;
}

.security-cards strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 18px;
}

.security-cards span {
    color: var(--muted);
    line-height: 1.6;
}

.faq-panel {
    display: grid;
    gap: 12px;
}

.faq-toggle {
    position: relative;
    width: 100%;
    min-height: 54px;
    padding: 0 46px 0 18px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-toggle::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    color: var(--brand);
    font-size: 22px;
    transform: translateY(-50%);
}

.faq-item.open .faq-toggle::after {
    content: "-";
}

.faq-content {
    display: none;
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.faq-item.open .faq-content {
    display: block;
}

.snapshot-panel {
    display: grid;
    gap: 12px;
}

.snapshot-panel div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.055);
}

.snapshot-panel span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.snapshot-panel strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
}

.contact-section {
    padding-bottom: 42px;
}

.contact-panel {
    min-height: 350px;
    padding: clamp(28px, 6vw, 64px);
    border: 1px solid rgba(46, 211, 166, 0.44);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(46, 211, 166, 0.2), rgba(244, 189, 79, 0.1) 46%, rgba(235, 94, 85, 0.11)),
        var(--surface);
    box-shadow: var(--shadow);
}

.contact-panel p {
    max-width: 720px;
}

footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 42px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

footer p {
    margin: 0;
    color: #ffffff;
    font-weight: 850;
}

footer span {
    font-size: 14px;
}

.detail-body #main-content {
    opacity: 1;
}

.detail-body .brand-mark {
    padding-left: 0;
}

.detail-body .site-header {
    position: sticky;
}

.detail-main {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 42px;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    padding: 34px 0 72px;
}

.detail-hero h1 {
    max-width: 780px;
    font-size: clamp(38px, 6vw, 72px);
}

.detail-lead {
    max-width: 760px;
    color: #d5e1dd;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.7;
}

.detail-side,
.detail-card,
.detail-cta {
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at top left, rgba(46, 211, 166, 0.15), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
}

.detail-side {
    padding: 24px;
}

.detail-side h2,
.detail-card h2,
.detail-cta h2 {
    margin-bottom: 16px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
}

.detail-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-list li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.6;
}

.detail-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 42px;
}

.detail-card {
    padding: 26px;
}

.detail-card p {
    color: var(--muted);
    line-height: 1.68;
}

.detail-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: clamp(28px, 5vw, 54px);
    margin-bottom: 42px;
}

.detail-cta p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.detail-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
}

.detail-links a {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #d9e4e1;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition: none;
}

.detail-links a:hover {
    border-color: rgba(46, 211, 166, 0.64);
    background: rgba(46, 211, 166, 0.1);
}

.detail-body .btn:hover {
    transform: none;
}

.whatsapp-float {
    position: fixed;
    right: 90px;
    bottom: 22px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #061110;
    text-decoration: none;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
    transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float .wa-icon {
    width: 31px;
    height: 31px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    background: #42e57d;
}

@media (min-width: 901px) {
    .mobile-nav,
    .mobile-nav.open {
        display: none;
    }
}

@media (max-width: 900px) {
    #services,
    #solutions,
    #security,
    #about,
    #contact {
        scroll-margin-top: 104px;
    }

    .desktop-nav {
        display: none;
    }

    .detail-body .desktop-nav {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 6px;
    }

    .detail-body .desktop-nav a {
        min-height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    #animatedLogo.move-to-header {
        top: 14px;
        left: 20px;
        width: 128px;
        height: 64px;
    }

    .header-container {
        width: calc(100% - 24px);
        min-height: 82px;
    }

    .brand-mark {
        width: 286px;
        height: 64px;
        padding-left: 144px;
    }

    .brand-mark span {
        font-size: 17px;
    }

    .brand-mark small {
        font-size: 10px;
    }

    .hero {
        min-height: 88vh;
        padding: 132px 20px 42px;
    }

    .hero-layout,
    .detail-hero,
    .detail-grid,
    .solution-grid,
    .security-section,
    .about-section {
        grid-template-columns: 1fr;
    }

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

    .network-panel {
        width: min(100%, 560px);
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .service-card.featured {
        grid-row: auto;
        grid-column: auto;
    }

}

@media (max-width: 620px) {
    .site-header {
        position: absolute;
    }

    .detail-body .site-header {
        position: sticky;
    }

    .header-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }

    .detail-body .header-container {
        align-items: flex-start;
    }

    #animatedLogo.move-to-header {
        top: 12px;
        left: 12px;
        width: 112px;
        height: 56px;
    }

    .brand-mark {
        width: 100%;
        height: 56px;
        padding-left: 126px;
    }

    .brand-mark span {
        font-size: 16px;
    }

    .brand-mark small {
        font-size: 9px;
    }

    .hero {
        padding-top: 148px;
    }

    h1 {
        font-size: 42px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(7, 16, 17, 0.94), rgba(7, 16, 17, 0.7)),
            linear-gradient(0deg, var(--bg) 0%, rgba(7, 16, 17, 0) 38%);
    }

    .service-grid,
    .stats-row,
    .security-cards {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: auto;
    }

    .intro-section,
    .contact-section,
    .services-section,
    .solutions-section,
    .security-section,
    .about-section {
        width: calc(100% - 28px);
        padding: 64px 0;
    }

    .network-panel,
    .tech-panel,
    .process-panel,
    .faq-panel,
    .snapshot-panel,
    .detail-side,
    .detail-card {
        padding: 18px;
    }

    .detail-main {
        width: calc(100% - 28px);
        padding-top: 42px;
    }

    .network-map {
        height: 250px;
    }

    .map-label {
        font-size: 10px;
    }

    .label-1,
    .label-3 {
        left: 12px;
    }

    .label-2,
    .label-4 {
        right: 12px;
    }

    .service-card {
        min-height: auto;
    }

    .service-number {
        margin-bottom: 34px;
    }

    .btn {
        width: 100%;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }

    footer {
        width: calc(100% - 28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
