@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #122035 0%, #060a10 45%, #030507 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* BACKGROUND */
.background {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
}

.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: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .35;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: #00d9ff;
    top: -150px;
    right: -100px;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb2 {
    width: 420px;
    height: 420px;
    background: #006eff;
    left: -200px;
    top: 40%;
    animation: floatOrb 13s infinite alternate ease-in-out;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: #00ffbf;
    right: 15%;
    bottom: -150px;
    opacity: .15;
    animation: floatOrb 8s infinite alternate ease-in-out;
}

@keyframes floatOrb {
    from { transform: translate(0, 0); }
    to { transform: translate(80px, 70px); }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1250px, calc(100% - 40px));
    z-index: 100;
    background: rgba(10, 15, 22, .65);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border-radius: 18px;
}

.nav-container {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: white;
}

.brand-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(0, 170, 255, 0.35));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 18px;
    font-weight: 800;
}

.brand-text small {
    color: #9bb3c9;
    font-size: 12px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #b9c2cc;
    text-decoration: none;
    font-size: 14px;
    transition: .25s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-button {
    text-decoration: none;
    color: #071016;
    background: #ffffff;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: .25s;
}

.nav-button:hover {
    transform: translateY(-2px);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    max-width: 1350px;
    margin: auto;
    gap: 70px;
    align-items: center;
    padding: 160px 50px 80px;
}

.badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 100px;
    color: #b7dbe2;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
    margin-bottom: 25px;
    animation: fadeUp .8s ease forwards;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00e5bd;
    box-shadow: 0 0 12px #00e5bd;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    50% { opacity: .3; }
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 6vw, 84px);
    line-height: .98;
    letter-spacing: -4px;
    font-weight: 800;
    animation: fadeUp 1s .1s both;
}

.hero h1 span {
    background: linear-gradient(90deg, #00e1ff, #00ffbf);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    color: #9aa8b8;
    max-width: 610px;
    line-height: 1.8;
    font-size: 17px;
    margin-top: 30px;
    animation: fadeUp 1s .2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    animation: fadeUp 1s .3s both;
}

.primary-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #001014;
    background: linear-gradient(90deg, #00e0ff, #00ffbd);
    box-shadow: 0 10px 40px rgba(0, 220, 255, .15);
    transition: .3s;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 220, 255, .25);
}

.primary-button span {
    font-size: 19px;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    color: #dce4ea;
    text-decoration: none;
    padding: 15px 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    transition: .3s;
}

.secondary-button:hover {
    background: rgba(255,255,255,.06);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 55px;
    animation: fadeUp 1s .4s both;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat strong {
    font-size: 21px;
}

.stat span {
    color: #69798a;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-line {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,.12);
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    perspective: 1200px;
    animation: fadeRight 1.2s .2s both;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: #00b7ff;
    filter: blur(100px);
    opacity: .18;
}

.real-software-window {
    width: 100%;
    max-width: 850px;
}

.software-window {
    position: relative;
    background: rgba(8,13,20,.94);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,.6);
    transform: rotateY(-8deg) rotateX(4deg);
    animation: floatingWindow 5s ease-in-out infinite;
}

@keyframes floatingWindow {
    0%,100% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(0);
    }
    50% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-18px);
    }
}

.window-top {
    height: 50px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
}

.window-controls {
    display: flex;
    gap: 7px;
}

.window-controls span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #28313b;
}

.window-title {
    text-align: center;
    font-size: 10px;
    color: #718090;
    letter-spacing: 2px;
}

.software-image-wrap {
    padding: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.software-image {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
}

.floating-card {
    position: absolute;
    width: 220px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(10, 17, 26, 0.72);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card small {
    display: block;
    color: #00d9ff;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.floating-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.floating-card span {
    color: #99a8b7;
    font-size: 13px;
    line-height: 1.5;
}

.floating-card-1 {
    top: 50px;
    right: -20px;
}

.floating-card-2 {
    bottom: 70px;
    left: -30px;
    animation-delay: .6s;
}

.floating-card-3 {
    bottom: -10px;
    right: 50px;
    animation-delay: 1.1s;
}

@keyframes floatCard {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* GENERAL SECTION */
.section {
    max-width: 1250px;
    margin: auto;
    padding: 120px 50px;
}

.section-label {
    color: #00d4ff;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.section-header {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: end;
}

.section-header h2 {
    font-size: clamp(38px,5vw,65px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.section-header h2 span,
.modules-title span {
    color: #566574;
}

.section-header p {
    color: #8998a8;
    line-height: 1.8;
}

/* FEATURES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    min-height: 340px;
    padding: 28px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    transition: transform .35s, border-color .35s, background .35s;
}

.feature-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: #00d9ff;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    top: -50px;
    right: -50px;
    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,220,255,.35);
    background: rgba(255,255,255,.04);
}

.feature-card:hover::before {
    opacity: .15;
}

.feature-number {
    color: #3c4b59;
    font-size: 10px;
    letter-spacing: 2px;
}

.feature-icon {
    font-size: 32px;
    color: #00d9ff;
    margin-top: 40px;
}

.feature-card h3 {
    font-size: 18px;
    margin: 28px 0 15px;
}

.feature-card p {
    color: #798999;
    line-height: 1.7;
    font-size: 13px;
}

.card-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: #4a5a69;
    transition: .3s;
}

.feature-card:hover .card-arrow {
    color: #00dfff;
    transform: translate(3px,-3px);
}

/* SOFTWARE SECTION */
.software-showcase {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 28px;
    align-items: start;
}

.software-frame {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 25px 80px rgba(0,0,0,.25);
}

.software-frame img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.software-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.software-point {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
}

.software-point h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.software-point p {
    color: #8a98a7;
    line-height: 1.7;
    font-size: 14px;
}

/* MODULES */
.modules-section {
    margin-top: 60px;
    padding: 120px 50px;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.015);
}

.modules-inner {
    max-width: 1200px;
    margin: auto;
}

.modules-title h2 {
    font-size: clamp(42px,5vw,68px);
    letter-spacing: -3px;
    line-height: 1.05;
}

.modules-list {
    margin-top: 70px;
}

.module {
    display: grid;
    grid-template-columns: 70px 1.2fr 1fr 40px;
    align-items: center;
    min-height: 100px;
    border-top: 1px solid rgba(255,255,255,.07);
    transition: .3s;
}

.module:last-child {
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.module:hover {
    padding-left: 15px;
    background: linear-gradient(90deg, rgba(0,220,255,.06), transparent);
}

.module span {
    color: #455563;
    font-size: 10px;
}

.module h3 {
    font-size: 19px;
}

.module p {
    color: #697887;
    font-size: 13px;
}

.module b {
    color: #00d9ff;
    font-size: 20px;
}

/* CTA */
.cta {
    position: relative;
    max-width: 1200px;
    min-height: 480px;
    margin: 130px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.025);
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #00c9ff;
    filter: blur(150px);
    opacity: .16;
}

.cta-content {
    position: relative;
    max-width: 750px;
    padding: 50px;
}

.cta small {
    color: #00d9ff;
    letter-spacing: 5px;
}

.cta h2 {
    font-size: clamp(42px,5vw,65px);
    letter-spacing: -3px;
    line-height: 1.05;
    margin: 25px 0;
}

.cta p {
    color: #81909f;
    margin-bottom: 35px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 60px 20px;
    color: #657483;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-logo {
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-logo span {
    color: #00d8ff;
}

footer p {
    font-size: 12px;
    margin-bottom: 25px;
}

footer small {
    font-size: 10px;
}

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media(max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 160px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        max-width: 800px;
        margin: 30px auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .section-header,
    .software-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .floating-card-1,
    .floating-card-2,
    .floating-card-3 {
        position: static;
        margin-top: 16px;
        width: 100%;
    }
}

@media(max-width: 700px) {
    .nav-links,
    .nav-button {
        display: none;
    }

    .hero {
        padding: 140px 22px 60px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .software-window {
        transform: none;
    }

    .section {
        padding: 90px 22px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .modules-section {
        padding: 90px 22px;
    }

    .module {
        grid-template-columns: 45px 1fr 30px;
    }

    .module p {
        display: none;
    }

    .cta {
        margin: 80px 20px;
        border-radius: 20px;
    }

    .cta-content {
        padding: 30px 20px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 10px;
    }
}
/* ================================= */
/* STEP 6 - MOBILE MENU */
/* ================================= */

.menu-button {
    display: none;

    width: 46px;
    height: 46px;

    border: 1px solid rgba(255,255,255,.1);

    background: rgba(255,255,255,.04);

    border-radius: 12px;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    transition: .3s;
}


.menu-button span {
    width: 21px;
    height: 2px;

    background: white;

    border-radius: 20px;

    transition: .35s;
}


.menu-button:hover {
    background: rgba(255,255,255,.08);
}


.menu-button.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-button.active span:nth-child(2) {
    opacity: 0;
}


.menu-button.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}



.mobile-menu {

    max-height: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition:
        max-height .45s ease,
        padding .45s ease;

    padding:
        0 25px;
}


.mobile-menu.active {

    max-height: 400px;

    padding:
        5px 25px
        25px;
}


.mobile-menu a {

    color: #aebdca;

    text-decoration: none;

    padding:
        15px 4px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

    font-size: 14px;

    transition: .3s;
}


.mobile-menu a:hover {

    color: white;

    padding-left: 8px;
}



/* ================================= */
/* CURSOR GLOW */
/* ================================= */

.cursor-glow {

    position: fixed;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 212, 255, .10),
            transparent 65%
        );

    pointer-events: none;

    transform:
        translate(-50%, -50%);

    z-index: -2;

    opacity: 0;

    transition:
        opacity .3s ease;
}



/* ================================= */
/* CONTACT SECTION */
/* ================================= */

.contact-section {

    position: relative;

    max-width: 1200px;

    margin:
        130px auto;

    padding:
        80px;

    overflow: hidden;

    border-radius: 28px;

    border:
        1px solid
        rgba(255,255,255,.08);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );
}


.contact-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        #008cff;

    filter:
        blur(180px);

    opacity: .13;

    right: -250px;
    top: -200px;
}


.contact-container {

    position: relative;

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 90px;

    align-items: center;
}


.contact-left h2 {

    font-size:
        clamp(
            45px,
            5vw,
            70px
        );

    line-height: 1;

    letter-spacing:
        -4px;

    max-width: 600px;
}


.contact-left h2 span {

    background:
        linear-gradient(
            90deg,
            #00dfff,
            #00ffb7
        );

    -webkit-background-clip:
        text;

    color: transparent;
}


.contact-left p {

    color: #8493a2;

    max-width: 580px;

    line-height: 1.8;

    margin-top: 25px;
}


.contact-buttons {

    display: flex;

    gap: 15px;

    margin-top: 35px;
}


.whatsapp-contact {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        15px 25px;

    border-radius: 12px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.04);

    transition: .3s;
}


.whatsapp-contact:hover {

    transform:
        translateY(-3px);

    background:
        rgba(255,255,255,.08);
}



.contact-panel {

    padding: 28px;

    border-radius: 20px;

    background:
        rgba(4,10,16,.55);

    border:
        1px solid
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.25);

    transition:
        transform .4s ease,
        border-color .4s ease;
}


.contact-panel:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(0,220,255,.25);
}


.contact-panel-top {

    display: flex;
    align-items: center;

    gap: 10px;

    color: #718495;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 25px;
}


.online-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #00f0a0;

    box-shadow:
        0 0 12px
        #00f0a0;
}


.contact-row {

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    min-height: 62px;

    border-bottom:
        1px solid
        rgba(255,255,255,.055);
}


.contact-row small {

    color: #50606f;

    font-size: 9px;

    letter-spacing:
        1.5px;
}


.contact-row strong {

    font-size: 13px;

    text-align: right;

    color: #d9e2ea;
}


.status-ready {

    color:
        #00dfa1 !important;
}


.contact-line {

    height: 1px;

    margin:
        25px 0;

    background:
        linear-gradient(
            90deg,
            #00d9ff,
            transparent
        );
}


.contact-message {

    color: #697887;

    line-height: 1.7;

    font-size: 12px;
}



/* ================================= */
/* FLOATING WHATSAPP */
/* ================================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 90;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        9px 17px
        9px 9px;

    border-radius:
        100px;

    background:
        rgba(10,20,20,.90);

    backdrop-filter:
        blur(15px);

    border:
        1px solid
        rgba(0,255,180,.22);

    text-decoration: none;

    color: white;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.35);

    transition:
        .3s;
}


.floating-whatsapp:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(0,255,180,.6);
}


.wa-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #00f0a0,
            #00c876
        );

    color: #00150d;

    font-size: 11px;

    font-weight: 900;

    box-shadow:
        0 0 20px
        rgba(0,240,160,.2);
}


.wa-text {

    font-size: 12px;

    font-weight: 600;
}



/* ================================= */
/* EXTRA WOW EFFECT */
/* ================================= */

.feature-card,
.software-frame,
.software-point,
.contact-panel {

    position: relative;
}


.feature-card::after,
.software-point::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            115deg,
            transparent 30%,
            rgba(255,255,255,.045),
            transparent 70%
        );

    transform:
        translateX(-100%);

    transition:
        transform .8s ease;

    pointer-events: none;
}


.feature-card:hover::after,
.software-point:hover::after {

    transform:
        translateX(100%);
}



/* MOBILE */

@media(max-width: 700px) {

    .menu-button {
        display: flex;
    }


    .nav-container {

        padding:
            0 15px;
    }


    .contact-section {

        margin:
            80px 20px;

        padding:
            50px 25px;

        border-radius:
            22px;
    }


    .contact-container {

        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    .contact-left h2 {

        letter-spacing:
            -2px;
    }


    .contact-buttons {

        flex-direction:
            column;
    }


    .contact-buttons a {

        width: 100%;

        justify-content:
            center;
    }


    .contact-row {

        gap:
            25px;
    }


    .floating-whatsapp {

        right: 15px;
        bottom: 15px;
    }


    .wa-text {

        display: none;
    }


    .floating-whatsapp {

        padding:
            7px;
    }


    .cursor-glow {

        display: none;
    }

}

/* ================================= */
/* STEP 7 - INTERACTIVE SHOWCASE */
/* ================================= */

.product-showcase {

    padding:
        130px 50px;

    border-top:
        1px solid
        rgba(255,255,255,.06);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.012),
            rgba(0,160,255,.018),
            rgba(255,255,255,.012)
        );
}


.product-showcase-inner {

    max-width:
        1300px;

    margin:
        auto;
}


.product-title {

    display:
        grid;

    grid-template-columns:
        1.25fr .75fr;

    gap:
        80px;

    align-items:
        end;
}


.product-title h2 {

    font-size:
        clamp(
            42px,
            5vw,
            68px
        );

    line-height:
        1.03;

    letter-spacing:
        -3px;
}


.product-title h2 span {

    display:
        block;

    color:
        #596878;
}


.product-title p {

    color:
        #8493a2;

    line-height:
        1.8;
}


.product-demo {

    display:
        grid;

    grid-template-columns:
        330px 1fr;

    gap:
        30px;

    margin-top:
        70px;
}


/* LEFT MENU */

.demo-menu {

    display:
        flex;

    flex-direction:
        column;

    gap:
        10px;
}


.demo-tab {

    width:
        100%;

    min-height:
        85px;

    display:
        grid;

    grid-template-columns:
        35px 1fr 25px;

    align-items:
        center;

    gap:
        14px;

    padding:
        16px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius:
        15px;

    background:
        rgba(255,255,255,.018);

    color:
        white;

    text-align:
        left;

    cursor:
        pointer;

    transition:
        .35s;
}


.demo-tab:hover {

    transform:
        translateX(6px);

    background:
        rgba(255,255,255,.04);

    border-color:
        rgba(0,220,255,.20);
}


.demo-tab.active {

    background:
        linear-gradient(
            90deg,
            rgba(0,210,255,.12),
            rgba(0,255,190,.025)
        );

    border-color:
        rgba(0,220,255,.35);

    box-shadow:
        inset 3px 0 0
        #00d9ff;
}


.tab-number {

    color:
        #485968;

    font-size:
        10px;

    letter-spacing:
        1px;
}


.demo-tab.active
.tab-number {

    color:
        #00d9ff;
}


.demo-tab div {

    display:
        flex;

    flex-direction:
        column;

    gap:
        6px;
}


.demo-tab strong {

    font-size:
        14px;
}


.demo-tab small {

    color:
        #667887;

    font-size:
        10px;
}


.demo-tab b {

    color:
        #475867;

    font-size:
        18px;

    transition:
        .3s;
}


.demo-tab.active b {

    color:
        #00dcff;

    transform:
        translateX(4px);
}


/* RIGHT DISPLAY */

.demo-display {

    position:
        relative;
}


.demo-glow {

    position:
        absolute;

    width:
        75%;

    height:
        60%;

    left:
        12%;

    top:
        10%;

    background:
        #00bfff;

    filter:
        blur(130px);

    opacity:
        .12;
}


.demo-window {

    position:
        relative;

    border-radius:
        22px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255,255,255,.10);

    background:
        #060b11;

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.4);
}


.demo-window-top {

    height:
        52px;

    display:
        grid;

    grid-template-columns:
        1fr 1fr 1fr;

    align-items:
        center;

    padding:
        0 18px;

    color:
        #687a89;

    font-size:
        9px;

    letter-spacing:
        2px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}


.demo-window-top > div:nth-child(2) {

    text-align:
        center;
}


.demo-window-top small {

    text-align:
        right;

    color:
        #00d9ff;

    font-size:
        7px;
}


.demo-window-dots {

    display:
        flex;

    gap:
        7px;
}


.demo-window-dots span {

    width:
        8px;

    height:
        8px;

    border-radius:
        50%;

    background:
        #293540;
}


.demo-image-container {

    position:
        relative;

    padding:
        13px;

    overflow:
        hidden;
}


.demo-image-container img {

    width:
        100%;

    display:
        block;

    border-radius:
        12px;

    transition:
        opacity .25s ease,
        transform .45s ease;

    border:
        1px solid
        rgba(255,255,255,.07);
}


.demo-image-container img.changing {

    opacity:
        0;

    transform:
        scale(.975);
}


.image-overlay {

    position:
        absolute;

    inset:
        13px;

    border-radius:
        12px;

    pointer-events:
        none;

    background:
        linear-gradient(
            125deg,
            rgba(255,255,255,.05),
            transparent 30%
        );
}


/* DESCRIPTION */

.demo-description {

    display:
        grid;

    grid-template-columns:
        70px 1fr;

    gap:
        25px;

    margin-top:
        20px;

    padding:
        25px;

    border-radius:
        18px;

    background:
        rgba(255,255,255,.02);

    border:
        1px solid
        rgba(255,255,255,.07);
}


.demo-description-number {

    font-size:
        38px;

    color:
        rgba(0,217,255,.22);

    font-weight:
        800;
}


.demo-description small {

    color:
        #00d9ff;

    font-size:
        8px;

    letter-spacing:
        2px;
}


.demo-description h3 {

    font-size:
        24px;

    margin:
        7px 0 10px;
}


.demo-description p {

    max-width:
        750px;

    color:
        #8393a1;

    line-height:
        1.7;

    font-size:
        13px;
}


/* MOBILE */

@media(max-width: 950px) {

    .product-title {

        grid-template-columns:
            1fr;

        gap:
            25px;
    }


    .product-demo {

        grid-template-columns:
            1fr;
    }


    .demo-menu {

        display:
            grid;

        grid-template-columns:
            repeat(2,1fr);
    }

}


@media(max-width: 600px) {

    .product-showcase {

        padding:
            90px 20px;
    }


    .demo-menu {

        grid-template-columns:
            1fr;
    }


    .demo-description {

        grid-template-columns:
            1fr;
    }


    .demo-description-number {

        font-size:
            25px;
    }


    .demo-window-top {

        grid-template-columns:
            1fr 1fr;
    }


    .demo-window-top small {

        display:
            none;
    }

}