/* =========================================
   NEXA360TI
   STYLE.CSS
========================================= */

:root {

    --primary: #1677ff;
    --primary-dark: #0d5ed7;
    --primary-light: #3f91ff;

    --dark: #071426;
    --dark-2: #0a1b31;
    --dark-3: #102641;

    --text: #172033;
    --text-light: #667085;

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;

    --border: rgba(15, 23, 42, 0.09);

    --shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);

    --shadow-hover:
        0 25px 70px rgba(15, 23, 42, 0.14);

    --radius: 20px;

    --transition: 0.3s ease;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(7, 20, 38, 0.82);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.06);

    transition: var(--transition);
}

.header.scrolled {
    background: rgba(7, 20, 38, 0.96);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.18);
}

.nav-container {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    font-size: 1.55rem;

    font-weight: 800;

    letter-spacing: -0.8px;

    color: white;
}

.logo span {
    color: var(--primary-light);
}


/* NAV */

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav > a:not(.nav-cta) {
    color: #dbe7f5;

    font-size: 0.9rem;

    font-weight: 500;

    position: relative;

    transition: var(--transition);
}

.nav > a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--primary-light);

    transition: var(--transition);
}

.nav > a:not(.nav-cta):hover {
    color: white;
}

.nav > a:not(.nav-cta):hover::after {
    width: 100%;
}


/* NAV CTA */

.nav-cta {
    display: flex;
    align-items: center;
    gap: 9px;

    background: var(--primary);

    color: white;

    padding: 11px 18px;

    border-radius: 10px;

    font-size: 0.85rem;
    font-weight: 600;

    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-light);

    transform: translateY(-2px);
}


/* MOBILE BUTTON */

.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    color: white;

    font-size: 1.4rem;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 780px;

    padding-top: 78px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(22,119,255,0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #061323 0%,
            #0a1a30 55%,
            #071426 100%
        );
}


/* GRID */

.hero-grid,
.cta-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}


/* GLOWS */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: 0.35;

    pointer-events: none;
}

.glow-one {
    width: 300px;
    height: 300px;

    background: #1677ff;

    top: 20%;
    right: 10%;
}

.glow-two {
    width: 200px;
    height: 200px;

    background: #3b82f6;

    bottom: 5%;
    left: 5%;

    opacity: 0.12;
}


/* HERO CONTAINER */

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.95fr;

    gap: 70px;

    align-items: center;

    padding: 80px 0;
}


/* EYEBROW */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: #8ebcff;

    font-size: 0.78rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.eyebrow span {
    width: 28px;
    height: 2px;

    background: var(--primary-light);
}


/* HERO TITLE */

.hero h1 {
    max-width: 720px;

    font-size: clamp(
        3rem,
        5.3vw,
        5rem
    );

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 26px;
}

.hero h1 strong {
    display: block;

    color: #6ba9ff;

    font-weight: 800;
}


/* HERO TEXT */

.hero-content > p {
    max-width: 590px;

    color: #b4c2d5;

    font-size: 1.08rem;

    line-height: 1.8;

    margin-bottom: 34px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 10px;

    font-size: 0.9rem;

    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);

    color: white;

    box-shadow:
        0 12px 30px rgba(22,119,255,0.25);
}

.btn-primary:hover {
    background: var(--primary-light);

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(22,119,255,0.32);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.16);

    color: white;

    background: rgba(255,255,255,0.03);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);

    border-color: rgba(255,255,255,0.28);

    transform: translateY(-3px);
}


/* TRUST */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 42px;
}

.hero-trust div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #91a2b9;

    font-size: 0.78rem;
}

.hero-trust i {
    color: #5c9fff;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;

    height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* ORBITS */

.tech-orbit {
    position: absolute;

    border: 1px solid rgba(79,147,255,0.12);

    border-radius: 50%;

    animation: orbitPulse 5s ease-in-out infinite;
}

.orbit-one {
    width: 500px;
    height: 500px;
}

.orbit-two {
    width: 390px;
    height: 390px;

    animation-delay: 1s;
}

.orbit-three {
    width: 280px;
    height: 280px;

    animation-delay: 2s;
}

@keyframes orbitPulse {

    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }

}


/* SERVER CARD */

.server-card {
    position: relative;
    z-index: 3;

    width: 370px;

    padding: 26px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(24,52,83,0.95),
            rgba(8,23,42,0.95)
        );

    border: 1px solid rgba(255,255,255,0.09);

    box-shadow:
        0 35px 80px rgba(0,0,0,0.4);

    backdrop-filter: blur(20px);

    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* SERVER TOP */

.server-top {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.server-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(22,119,255,0.14);

    color: #65a5ff;

    font-size: 1.15rem;
}

.server-top strong {
    display: block;

    color: white;

    font-size: 0.85rem;
}

.server-top span {
    display: block;

    color: #8194ad;

    font-size: 0.68rem;

    margin-top: 3px;
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #42e8a5;

    box-shadow:
        0 0 12px rgba(66,232,165,0.8);

    margin-left: auto;
}


/* SERVER LINES */

.server-lines {
    padding: 24px 0;

    display: flex;

    flex-direction: column;

    gap: 11px;
}

.server-line {
    display: grid;

    grid-template-columns:
        1fr 1.8fr 0.7fr;

    gap: 8px;
}

.server-line span {
    height: 6px;

    border-radius: 10px;

    background: rgba(115,159,209,0.13);
}


/* NETWORK MAP */

.network-map {
    height: 170px;

    position: relative;

    margin-top: 5px;

    border-radius: 14px;

    background:
        radial-gradient(
            circle at center,
            rgba(22,119,255,0.12),
            transparent 65%
        );
}

.node {
    position: absolute;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #73adff;

    background: #0b203a;

    border: 1px solid rgba(87,151,234,0.25);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.25);
}

.node-a {
    top: 10px;
    left: 30px;
}

.node-b {
    top: 60px;
    left: 50%;

    transform: translateX(-50%);
}

.node-c {
    bottom: 10px;
    left: 35px;
}

.node-d {
    bottom: 10px;
    right: 35px;
}

.connection {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(70,143,255,0.55),
            transparent
        );

    transform-origin: left center;
}

.connection-a {
    width: 130px;

    top: 65px;
    left: 65px;

    transform: rotate(20deg);
}

.connection-b {
    width: 110px;

    top: 95px;
    left: 47%;

    transform: rotate(140deg);
}

.connection-c {
    width: 140px;

    bottom: 35px;
    left: 67px;

    transform: rotate(-2deg);
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 16px;

    border-radius: 13px;

    background:
        rgba(12,32,55,0.9);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.28);

    backdrop-filter: blur(14px);

    animation: floating 5s ease-in-out infinite;
}

.floating-security {
    top: 90px;
    right: 20px;
}

.floating-cloud {
    bottom: 80px;
    left: 20px;

    animation-delay: 1.3s;
}

.floating-icon {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(22,119,255,0.14);

    color: #65a5ff;
}

.floating-card strong {
    display: block;

    color: white;

    font-size: 0.75rem;
}

.floating-card span {
    display: block;

    color: #8194ad;

    font-size: 0.62rem;
}


/* SCROLL */

.scroll-indicator {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    color: #71849b;

    font-size: 0.68rem;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.scroll-indicator i {
    color: #5e9fff;

    animation: bounce 1.8s infinite;
}

@keyframes bounce {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    padding: 120px 0;
}


/* SECTION HEADING */

.section-heading {
    max-width: 760px;

    margin-bottom: 55px;
}

.section-heading.centered {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color: var(--primary);

    font-size: 0.73rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.section-tag span {
    width: 24px;
    height: 2px;

    background: var(--primary);
}

.section-heading h2,
.about-content h2,
.contact-content h2 {
    font-size: clamp(
        2.2rem,
        4vw,
        3.3rem
    );

    line-height: 1.12;

    letter-spacing: -1.8px;

    margin-bottom: 20px;
}

.section-heading h2 strong,
.about-content h2 strong,
.contact-content h2 strong {
    color: var(--primary);
}

.section-heading p {
    color: var(--text-light);

    max-width: 650px;

    font-size: 1rem;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    background: var(--gray-50);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    position: relative;

    padding: 30px;

    min-height: 390px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 10px 30px rgba(15,23,42,0.03);

    overflow: hidden;

    transition: var(--transition);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            transparent
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);

    border-color:
        rgba(22,119,255,0.16);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;

    top: 23px;
    right: 25px;

    color: #dfe7f1;

    font-size: 0.72rem;

    font-weight: 800;
}

.service-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    border-radius: 13px;

    background: #edf5ff;

    color: var(--primary);

    font-size: 1.2rem;

    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);

    color: white;

    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.15rem;

    margin-bottom: 10px;
}

.service-card > p {
    color: var(--text-light);

    font-size: 0.83rem;

    line-height: 1.7;

    margin-bottom: 20px;
}

.service-card ul {
    display: flex;

    flex-direction: column;

    gap: 7px;

    list-style: none;
}

.service-card li {
    color: #4e5d71;

    font-size: 0.75rem;

    display: flex;

    align-items: center;

    gap: 8px;
}

.service-card li::before {
    content: "";

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--primary);
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}


/* ABOUT VISUAL */

.about-visual {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.about-panel {
    width: 430px;

    padding: 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #0d223c,
            #071527
        );

    box-shadow:
        0 35px 80px rgba(7,20,38,0.22);

    transform: perspective(1000px)
        rotateY(5deg)
        rotateX(2deg);

    transition: var(--transition);
}

.about-panel:hover {
    transform:
        perspective(1000px)
        rotateY(0)
        rotateX(0)
        translateY(-5px);
}

.panel-header {
    display: flex;

    align-items: center;

    gap: 9px;

    padding-bottom: 18px;

    color: #a9bad0;

    font-size: 0.72rem;

    font-weight: 600;

    border-bottom:
        1px solid rgba(255,255,255,0.07);
}

.panel-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #4ee6a2;
}

.panel-status {
    margin-left: auto;

    color: #4ee6a2;

    font-size: 0.55rem;

    letter-spacing: 1px;
}

.panel-content {
    padding: 25px 0;
}

.code-line {
    display: grid;

    grid-template-columns: 25px 1fr auto;

    align-items: center;

    gap: 8px;

    padding: 9px 0;

    font-family: monospace;

    font-size: 0.7rem;
}

.code-line span {
    color: #50647d;
}

.code-line code {
    color: #79a9e8;
}

.code-line b {
    color: #4ee6a2;

    font-size: 0.62rem;

    font-weight: 500;
}

.panel-chart {
    height: 120px;

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 10px;

    padding: 20px;

    border-radius: 12px;

    background: rgba(255,255,255,0.025);
}

.chart-bar {
    width: 100%;

    border-radius: 4px 4px 0 0;

    background:
        linear-gradient(
            to top,
            #146fe9,
            #67a9ff
        );

    opacity: 0.75;
}

.bar-1 { height: 35%; }
.bar-2 { height: 55%; }
.bar-3 { height: 45%; }
.bar-4 { height: 70%; }
.bar-5 { height: 62%; }
.bar-6 { height: 83%; }
.bar-7 { height: 95%; }


/* BADGE */

.about-badge {
    position: absolute;

    bottom: 30px;
    right: 0;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 17px;

    border-radius: 12px;

    background: white;

    box-shadow:
        0 20px 50px rgba(15,23,42,0.12);

    font-size: 0.75rem;

    font-weight: 700;
}

.about-badge i {
    color: #12b76a;
}


/* ABOUT CONTENT */

.about-content > p {
    color: var(--text-light);

    font-size: 0.95rem;

    margin-bottom: 17px;

    max-width: 620px;
}

.about-highlight {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    padding: 18px;

    border-radius: 14px;

    background: #f6f9fd;

    border: 1px solid #e7eef7;

    max-width: 500px;
}

.highlight-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #e8f2ff;

    color: var(--primary);
}

.about-highlight strong {
    display: block;

    font-size: 0.82rem;

    margin-bottom: 3px;
}

.about-highlight span {
    display: block;

    color: var(--text-light);

    font-size: 0.72rem;
}


/* =========================================
   DIFFERENCES
========================================= */

.differences-section {
    background: var(--gray-50);
}

.differences-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.difference-card {
    padding: 30px 25px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    transition: var(--transition);
}

.difference-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.difference-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background: #edf5ff;

    color: var(--primary);
}

.difference-card h3 {
    font-size: 0.98rem;

    margin-bottom: 9px;
}

.difference-card p {
    color: var(--text-light);

    font-size: 0.76rem;

    line-height: 1.7;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    position: relative;

    padding: 80px 0;

    background:
        linear-gradient(
            130deg,
            #071426,
            #0c2440
        );

    color: white;

    overflow: hidden;
}

.cta-box {
    position: relative;

    z-index: 2;

    min-height: 350px;

    display: grid;

    grid-template-columns: 1fr 0.6fr;

    align-items: center;

    padding: 55px 65px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(20,59,101,0.65),
            rgba(9,29,51,0.7)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    overflow: hidden;
}

.section-tag.light {
    color: #77b1ff;
}

.section-tag.light span {
    background: #5fa3ff;
}

.cta-content h2 {
    max-width: 650px;

    font-size: clamp(
        2rem,
        4vw,
        3.1rem
    );

    line-height: 1.12;

    letter-spacing: -1.5px;

    margin-bottom: 17px;
}

.cta-content h2 strong {
    color: #6ca9ff;
}

.cta-content p {
    color: #aebfd3;

    max-width: 530px;

    font-size: 0.9rem;

    margin-bottom: 28px;
}


/* CTA VISUAL */

.cta-visual {
    position: relative;

    height: 270px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.cta-circle {
    position: absolute;

    border: 1px solid rgba(92,157,255,0.16);

    border-radius: 50%;
}

.circle-1 {
    width: 270px;
    height: 270px;
}

.circle-2 {
    width: 190px;
    height: 190px;
}

.circle-3 {
    width: 110px;
    height: 110px;
}

.cta-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #75afff;

    background: rgba(22,119,255,0.12);

    border:
        1px solid rgba(86,154,255,0.25);

    font-size: 1.5rem;

    box-shadow:
        0 0 50px rgba(22,119,255,0.12);
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.contact-content p {
    max-width: 560px;

    color: var(--text-light);

    font-size: 0.95rem;

    margin-bottom: 12px;
}

.contact-cards {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.contact-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 22px;

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(6px);

    border-color:
        rgba(22,119,255,0.18);

    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 1.2rem;
}

.contact-card-icon.whatsapp {
    background: #eafbf3;

    color: #16a366;
}

.contact-card-icon.email {
    background: #edf5ff;

    color: var(--primary);
}

.contact-card > div:nth-child(2) {
    flex: 1;
}

.contact-card span {
    display: block;

    color: var(--text-light);

    font-size: 0.68rem;

    margin-bottom: 2px;
}

.contact-card strong {
    display: block;

    font-size: 0.9rem;
}

.contact-card > i {
    color: #98a4b4;

    font-size: 0.7rem;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 70px 0 25px;

    color: #a6b6ca;

    background: #06111f;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 0.7fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 55px;
}

.footer-brand .logo {
    display: inline-block;

    margin-bottom: 17px;
}

.footer-brand p {
    max-width: 310px;

    color: #72859d;

    font-size: 0.78rem;

    line-height: 1.7;

    margin-bottom: 20px;
}

.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #71b0ff;

    font-size: 0.78rem;

    font-weight: 600;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    color: white;

    font-size: 0.8rem;

    margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
    color: #74879e;

    font-size: 0.73rem;

    transition: var(--transition);
}

.footer-column a:hover {
    color: #6faeff;

    transform: translateX(3px);
}

.footer-column i {
    width: 18px;
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 23px;

    border-top:
        1px solid rgba(255,255,255,0.06);

    color: #52657c;

    font-size: 0.65rem;
}


/* =========================================
   WHATSAPP FLOAT
========================================= */

.whatsapp-float {
    position: fixed;

    z-index: 999;

    right: 24px;
    bottom: 24px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 17px;

    color: white;

    background: #18b967;

    border-radius: 50px;

    box-shadow:
        0 12px 35px rgba(24,185,103,0.3);

    font-size: 0.75rem;

    font-weight: 700;

    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 1.25rem;
}

.whatsapp-float:hover {
    transform: translateY(-4px);

    background: #15a95d;

    box-shadow:
        0 18px 45px rgba(24,185,103,0.4);
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .nav {
        gap: 20px;
    }

    .hero-container {
        gap: 35px;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-visual {
        transform: scale(0.9);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .differences-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 780px) {

    .container {
        width: min(
            100% - 30px,
            600px
        );
    }


    /* MOBILE NAV */

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;

        top: 78px;
        left: 15px;
        right: 15px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px;

        background:
            rgba(7,20,38,0.98);

        border:
            1px solid rgba(255,255,255,0.08);

        border-radius: 14px;

        box-shadow:
            0 20px 50px rgba(0,0,0,0.25);
    }

    .nav.active {
        display: flex;
    }

    .nav > a:not(.nav-cta) {
        padding: 13px 10px;

        border-bottom:
            1px solid rgba(255,255,255,0.05);
    }

    .nav > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        justify-content: center;

        margin-top: 10px;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding:
            90px 0 100px;
    }

    .hero-content {
        text-align: center;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(
            2.8rem,
            12vw,
            4rem
        );

        letter-spacing: -2px;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;

        flex-wrap: wrap;
    }

    .hero-visual {
        height: 430px;

        transform: scale(0.82);

        margin-top: -30px;

        margin-bottom: -50px;
    }

    .scroll-indicator {
        display: none;
    }


    /* SECTIONS */

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 400px;

        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-panel {
        width: min(
            430px,
            100%
        );
    }

    .about-badge {
        right: 0;
        bottom: 10px;
    }


    /* DIFFERENCES */

    .differences-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta-box {
        grid-template-columns: 1fr;

        padding: 40px 30px;
    }

    .cta-visual {
        display: none;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

}


@media (max-width: 500px) {

    .container {
        width: min(
            100% - 24px,
            600px
        );
    }

    .nav-container {
        height: 70px;
    }

    .nav {
        top: 70px;
    }

    .logo {
        font-size: 1.35rem;
    }

    .hero-container {
        padding-top: 75px;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .hero-content > p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 15px;
    }

    .hero-trust div {
        font-size: 0.68rem;
    }

    .hero-visual {
        height: 360px;

        transform: scale(0.67);

        margin-top: -50px;
        margin-bottom: -80px;
    }

    .section-heading h2,
    .about-content h2,
    .contact-content h2 {
        font-size: 2.15rem;
    }

    .about-panel {
        width: 100%;
    }

    .about-badge {
        right: -5px;

        font-size: 0.65rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;

        padding: 0;

        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

}