/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "Segoe UI",
        sans-serif;

    background: #ffffff;

    color: #0c1018;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

::selection {
    background: #111827;
    color: white;
}


/* ========================================
   GLOBAL
======================================== */

.container {
    width: min(1200px, calc(100% - 48px));
    margin: auto;
}

.section {
    padding: 140px 0;
}

.section-tag {

    display: inline-block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.18em;

    margin-bottom: 28px;

    color: #667085;
}

.section-heading h2 {

    font-size: clamp(46px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -0.05em;

    font-weight: 600;

    max-width: 900px;
}

.section-intro {

    margin-top: 30px;

    font-size: 22px;

    line-height: 1.5;

    color: #a6adbb;

    max-width: 650px;
}

.light-title {
    color: white;
}

.light-tag {
    color: #8290a6;
}


/* ========================================
   NAVBAR
======================================== */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid rgba(10, 20, 35, 0.08);

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(22px);

    transition: 0.35s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);

    box-shadow: 0 8px 30px rgba(10, 20, 35, 0.06);
}

.nav-container {

    height: 78px;

    width: min(1380px, calc(100% - 50px));

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 160px;
}

.brand-logo {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
}

.desktop-nav {

    display: flex;

    gap: 32px;

    margin-left: auto;
}

.desktop-nav a {
    color: #344054;

    font-size: 14px;

    transition: 0.25s ease;
}

.desktop-nav a:hover {
    color: #07182f;
}
.nav-cta {
    padding: 11px 19px;

    border-radius: 999px;

    color: white;

    background: #07182f;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;

    box-shadow: 0 8px 22px rgba(7, 24, 47, 0.14);
}

.nav-cta:hover {
    transform: translateY(-2px);

    background: #102a4c;
}

.menu-button {

    display: none;

    width: 40px;
    height: 40px;

    border: 0;

    background: none;

    cursor: pointer;
}

.menu-button span {

    display: block;

    width: 21px;

    height: 1px;

    background: white;

    margin: 6px auto;
}

.mobile-menu {
    display: none;
}


/* ========================================
   HERO
======================================== */

.hero {

    min-height: 100vh;

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(450px, 1fr);

    align-items: center;

    padding:
        150px
        max(8vw, 50px)
        90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 65% 40%,
            #182439 0,
            #0c1421 30%,
            #05080e 65%
        );

    color: white;
}

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: 0.11;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.5),
            transparent
        );
}

.hero-light {

    position: absolute;

    border-radius: 999px;

    filter: blur(100px);

    pointer-events: none;
}

.hero-light-one {

    width: 450px;
    height: 450px;

    right: 14%;
    top: 18%;

    background:
        rgba(75, 110, 170, 0.16);
}

.hero-light-two {

    width: 300px;
    height: 300px;

    left: -100px;
    bottom: -50px;

    background:
        rgba(25, 85, 170, 0.13);
}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 720px;
}

.eyebrow {

    display: inline-flex;

    padding: 9px 13px;

    border: 1px solid
        rgba(255,255,255,0.13);

    border-radius: 999px;

    background:
        rgba(255,255,255,0.03);

    color:
        rgba(255,255,255,0.65);

    letter-spacing: 0.16em;

    font-size: 11px;

    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(48px, 5vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 600;
    max-width: 700px;
}

.hero h1 span {

    display: block;

    color: #9099a8;
}

.hero-description {

    margin-top: 35px;

    max-width: 610px;

    color:
        rgba(255,255,255,0.62);

    font-size:
        clamp(18px, 1.4vw, 23px);

    line-height: 1.55;
}

.hero-actions {

    display: flex;

    gap: 13px;

    margin-top: 40px;

    flex-wrap: wrap;
}

.button {

    min-height: 52px;

    padding: 0 24px;

    border-radius: 999px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform .3s ease,
        background .3s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {

    background: white;

    color: #07101b;
}

.button-secondary {

    border: 1px solid
        rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.04);

    color: white;
}

.button-secondary:hover {

    background:
        rgba(255,255,255,.09);
}

.hero-status {

    margin-top: 40px;

    font-size: 12px;

    color:
        rgba(255,255,255,.42);

    display: flex;

    align-items: center;

    gap: 10px;
}

.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #65c466;

    box-shadow:
        0 0 16px #65c466;
}


/* HERO VISUAL */

.hero-visual {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;
}

.robot-stage {

    position: relative;

    width: min(650px, 45vw);

    display: flex;

    align-items: center;

    justify-content: center;
}
/* ========================================
   HERO VIDEO
======================================== */

.hero-video {

    position: relative;

    width: 100%;
    max-width: 620px;

    aspect-ratio: 16 / 9;

    border-radius: 28px;

    overflow: hidden;

    background: #000;

    border:
        1px solid
        rgba(255,255,255,.12);

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.55);

    z-index: 2;
}


.hero-video iframe {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

}

.stage-glow {

    position: absolute;

    width: 90%;

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(105,135,178,.23),
            transparent 67%
        );
}

.robot-placeholder {

    width: 63%;

    height: 82%;

    border-radius: 110px 110px 80px 80px;

    border:
        1px solid
        rgba(255,255,255,.14);

    background:
        linear-gradient(
            140deg,
            rgba(255,255,255,.11),
            rgba(255,255,255,.02)
        );

    box-shadow:
        inset 0 0 80px rgba(255,255,255,.035),
        0 60px 120px rgba(0,0,0,.45);

    backdrop-filter: blur(16px);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

    animation:
        robotFloat 6s ease-in-out infinite;
}

.robot-placeholder span {

    font-size: 11px;

    letter-spacing: .22em;

    color:
        rgba(255,255,255,.4);
}

.robot-placeholder strong {

    font-size: 28px;

    letter-spacing: -.04em;
}

.robot-placeholder small {

    margin-top: 10px;

    color:
        rgba(255,255,255,.25);
}

@keyframes robotFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-card {

    position: absolute;

    padding: 17px 22px;

    border-radius: 16px;

    background:
        rgba(11,18,29,.68);

    border:
        1px solid
        rgba(255,255,255,.12);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.35);
}

.floating-card span {

    display: block;

    font-size: 9px;

    letter-spacing: .16em;

    color:
        rgba(255,255,255,.38);
}

.floating-card strong {

    display: block;

    margin-top: 4px;

    font-size: 18px;
}

.card-one {
    right: 1%;
    top: 24%;
}

.card-two {
    left: 2%;
    bottom: 25%;
}

.scroll-indicator {

    position: absolute;

    left: 50%;

    bottom: 28px;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.3);

    font-size: 9px;

    letter-spacing: .18em;
}

.scroll-line {

    width: 1px;

    height: 34px;

    background:
        linear-gradient(
            white,
            transparent
        );
}


/* ========================================
   ABOUT
======================================== */

.section-light {
    background: #f7f8fa;
}

.about-grid {

    display: grid;

    grid-template-columns:
        1.4fr 1fr;

    gap: 100px;

    margin-top: 90px;
}

.large-copy {

    font-size:
        clamp(30px, 3.2vw, 50px);

    line-height: 1.15;

    letter-spacing: -.035em;
}

.about-copy:nth-child(2) {

    font-size: 18px;

    line-height: 1.7;

    color: #667085;

    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* ========================================
   SOLUTIONS
======================================== */

/* ========================================
   SOLUTIONS
======================================== */

.section-dark {
    background: #080c13;
    color: white;
}


/* 2 GRANDES ARRIBA + 2 ABAJO */

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    margin-top: 80px;
}


/* TARJETA */

.solution-card {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #111824,
            #0b1018
        );

    border:
        1px solid
        rgba(255,255,255,.09);

    display: flex;
    flex-direction: column;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


.solution-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(255,255,255,.18);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.35);
}


/* NÚMERO */

.solution-number {
    position: absolute;

    top: 24px;
    left: 26px;

    z-index: 5;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(5,8,14,.68);

    border:
        1px solid
        rgba(255,255,255,.1);

    backdrop-filter: blur(10px);

    color:
        rgba(255,255,255,.72);

    font-size: 10px;
}


/* ZONA DEL ROBOT */

.solution-image {
    position: relative;

    width: 100%;
    height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(90,115,150,.22),
            rgba(15,21,30,.4) 45%,
            transparent 72%
        );
}


/* MUY IMPORTANTE:
   YA NO CORTAMOS LA FOTO */

.solution-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    padding: 25px 35px 5px;

    display: block;

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}


.solution-card:hover .solution-image img {
    transform: scale(1.04);
}


/* SOMBRA SUAVE ENTRE FOTO Y TEXTO */

.solution-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 80px;

    background:
        linear-gradient(
            transparent,
            #0d131c
        );

    pointer-events: none;
}


/* TÍTULO */

.solution-card h3 {
    position: relative;

    margin:
        24px
        32px
        0;

    font-size: 27px;

    font-weight: 600;

    line-height: 1.1;

    letter-spacing: -.035em;

    color: white;
}


/* DESCRIPCIÓN */

.solution-card p {
    margin:
        14px
        32px
        34px;

    max-width: 430px;

    color:
        rgba(255,255,255,.52);

    font-size: 15px;

    line-height: 1.65;
}


/* TABLET */

@media (max-width: 900px) {

    .solution-grid {
        grid-template-columns: 1fr;
    }

}


/* CELULAR */

@media (max-width: 650px) {

    .solution-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .solution-card {
        min-height: 420px;

        border-radius: 22px;
    }


    .solution-image {
        height: 250px;
    }


    .solution-image img {
        padding:
            25px
            20px
            0;
    }


    .solution-card h3 {
        margin:
            22px
            24px
            0;

        font-size: 24px;
    }


    .solution-card p {
        margin:
            12px
            24px
            28px;
    }

}

/* ========================================
   ROBOTS
======================================== */

.robots-section {

    background: white;
}

.dark-intro {

    color: #667085;
}

.robots-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;

    margin-top: 80px;
}

.robot-card {

    background: #f5f6f8;

    border-radius: 26px;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.robot-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 30px 70px
        rgba(10,20,35,.12);
}

.robot-image {

    height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #eef2f6;
}

.robot-product-image {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}


.robot-card:hover .robot-product-image {

    transform: scale(1.035);
}

.robot-image-g {

    background:
        radial-gradient(
            circle at 50% 45%,
            #66768c,
            #171f2a 65%
        );
}

.robot-image-a {

    background:
        radial-gradient(
            circle at 50% 40%,
            #748091,
            #21262d 65%
        );
}

.robot-image-x {

    background:
        radial-gradient(
            circle at 50% 45%,
            #66788e,
            #121a24 68%
        );
}

.robot-image-d {

    background:
        radial-gradient(
            circle at 50% 45%,
            #7d8793,
            #20252c 68%
        );
}

.robot-content {

    padding:
        34px 34px 38px;
}

.robot-type {

    font-size: 10px;

    letter-spacing: .14em;

    color: #7c8490;
}

.robot-content h3 {

    margin-top: 12px;

    font-size: 31px;

    letter-spacing: -.04em;
}

.robot-content p {

    margin-top: 14px;

    color: #68707c;

    line-height: 1.6;

    max-width: 500px;
}

.robot-actions {

    margin-top: 30px;

    display: flex;

    justify-content:
        space-between;

    gap: 20px;

    align-items: center;

    flex-wrap: wrap;
}

.text-link {

    font-weight: 600;

    font-size: 14px;
}

.text-link span {
    margin-left: 8px;
}

.official-link {
    color: #5f6875;

    font-size: 16px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.official-link:hover {
    color: #07182f;

    transform: translateY(-2px);
}

.manufacturer-note {

    margin-top: 38px;

    color: #87909d;

    font-size: 12px;

    line-height: 1.6;

    max-width: 750px;
}


/* ========================================
   INDUSTRIES
======================================== */

.industries {

    background:
        #090d14;

    color: white;
}

.industry-list {

    margin-top: 80px;

    border-top:
        1px solid
        rgba(255,255,255,.12);
}

.industry-item {

    display: grid;

    grid-template-columns:
        60px 1.2fr 1fr 40px;

    gap: 20px;

    align-items: center;

    padding:
        37px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.12);

    transition:
        padding .3s ease,
        background .3s ease;
}

.industry-item:hover {

    padding-left: 18px;
    padding-right: 18px;

    background:
        rgba(255,255,255,.025);
}

.industry-item > span {

    font-size: 11px;

    color:
        rgba(255,255,255,.3);
}

.industry-item h3 {

    font-size: 27px;

    letter-spacing: -.03em;
}

.industry-item p {

    color:
        rgba(255,255,255,.45);

    line-height: 1.5;

    font-size: 14px;
}

/* ========================================
   INDUSTRY USE CASES
======================================== */

.industry-case {

    border-bottom:
        1px solid
        rgba(255,255,255,.12);
}

.industry-case-header {

    width: 100%;

    display: grid;

    grid-template-columns:
        60px 1fr 50px;

    gap: 20px;

    align-items: center;

    padding: 37px 0;

    border: 0;

    background: transparent;

    color: white;

    text-align: left;

    cursor: pointer;

    transition:
        padding .3s ease,
        background .3s ease;
}

.industry-case-header:hover {

    padding-left: 18px;
    padding-right: 18px;

    background:
        rgba(255,255,255,.025);
}


.industry-number {

    font-size: 11px;

    color:
        rgba(255,255,255,.3);
}


.industry-title h3 {

    font-size: 27px;

    letter-spacing: -.03em;

    font-weight: 600;
}


.industry-title p {

    margin-top: 7px;

    color:
        rgba(255,255,255,.45);

    font-size: 14px;

    line-height: 1.5;
}


.industry-plus {

    justify-self: end;

    font-size: 30px;

    font-weight: 300;

    color:
        rgba(255,255,255,.55);

    transition:
        transform .35s ease,
        color .35s ease;
}


.industry-case.open
.industry-plus {

    transform:
        rotate(45deg);

    color: white;
}



/* CONTENIDO DESPLEGABLE */

.industry-case-content {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .7s
        cubic-bezier(.2,.7,.2,1),
        opacity .4s ease,
        padding .5s ease;

    padding:
        0 0;
}


.industry-case.open
.industry-case-content {

    max-height: 1000px;

    opacity: 1;

    padding:
        10px 0 45px;
}



/* GRID CASOS DE USO */

.use-case-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    margin-left: 80px;
}


.use-case-block {

    min-height: 250px;

    padding: 28px;

    border-radius: 18px;

    border:
        1px solid
        rgba(255,255,255,.1);

    background:
        rgba(255,255,255,.025);

    transition:
        background .3s ease,
        transform .3s ease,
        border-color .3s ease;
}


.use-case-block:hover {

    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,.045);

    border-color:
        rgba(255,255,255,.18);
}


.use-case-number {

    font-size: 10px;

    letter-spacing: .14em;

    color:
        rgba(255,255,255,.3);
}


.use-case-block h4 {

    margin-top: 30px;

    font-size: 21px;

    letter-spacing: -.025em;

    color: white;
}


.use-case-block ul {

    margin-top: 18px;

    padding-left: 18px;

    color:
        rgba(255,255,255,.5);

    font-size: 14px;

    line-height: 1.8;
}


.use-case-block li {

    padding-left: 3px;
}



/* RESULTADO */

.industry-result {

    margin:
        20px 0
        0 80px;

    padding:
        22px 28px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    gap: 25px;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid
        rgba(255,255,255,.1);
}


.industry-result strong {

    white-space: nowrap;

    font-size: 13px;

    color: white;
}


.industry-result p {

    font-size: 14px;

    line-height: 1.5;

    color:
        rgba(255,255,255,.5);
}



/* TABLET */

@media (max-width: 1000px) {

    .use-case-grid {

        grid-template-columns: 1fr;

        margin-left: 0;
    }

    .industry-result {

        margin-left: 0;
    }

}



/* MOBILE */

@media (max-width: 650px) {

    .industry-case-header {

        grid-template-columns:
            35px 1fr 30px;

        gap: 10px;

        padding:
            28px 0;
    }


    .industry-title h3 {

        font-size: 21px;
    }


    .industry-title p {

        font-size: 13px;
    }


    .industry-plus {

        font-size: 25px;
    }


    .use-case-block {

        min-height: auto;

        padding: 23px;
    }


    .industry-result {

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

}


/* ========================================
   WHY NOW
======================================== */

.why-section {

    background: #f5f6f8;
}

.why-grid {

    display: grid;

    grid-template-columns:
        1.2fr 1fr;

    gap: 100px;
}

.stat strong {

    display: block;

    font-size:
        clamp(100px, 13vw, 190px);

    line-height: .8;

    letter-spacing:
        -.08em;
}

.stat p {

    margin-top: 45px;

    font-size: 21px;

    color: #59616d;

    line-height: 1.5;

    max-width: 520px;
}

.source {

    margin-top: 25px;

    font-size: 11px;

    color: #9aa0a8;
}


/* ========================================
   PROCESS
======================================== */

.process-section {
    background: white;
}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 80px;
}

.process-step {

    border-top:
        1px solid #d9dde3;

    padding:
        28px 10px 0 0;

    min-height: 230px;
}

.process-step span {

    font-size: 11px;

    color: #8e96a0;
}

.process-step h3 {

    margin-top: 70px;

    font-size: 24px;
}

.process-step p {

    color: #707782;

    margin-top: 14px;

    font-size: 14px;

    line-height: 1.6;
}


/* ========================================
   CONTACT
======================================== */

.contact-section {

    position: relative;

    overflow: hidden;

    padding: 160px 0;

    background:
        #070b12;

    color: white;
}

.contact-glow {

    position: absolute;

    width: 900px;
    height: 900px;

    right: -250px;
    top: -400px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(91,120,170,.25),
            transparent 60%
        );
}

.contact-container {
    position: relative;
}

.contact-container h2 {

    font-size:
        clamp(55px, 7vw, 100px);

    letter-spacing: -.065em;

    line-height: .95;

    max-width: 900px;
}

.contact-container p {

    margin-top: 30px;

    color:
        rgba(255,255,255,.5);

    font-size: 19px;

    max-width: 590px;

    line-height: 1.6;
}

.contact-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 40px;
}

.button-white {

    color: #070b12;

    background: white;
}

.button-outline {

    color: white;

    border:
        1px solid
        rgba(255,255,255,.16);
}


/* ========================================
   FOOTER
======================================== */

.footer {

    background: #05080d;

    color: white;

    padding: 60px 0;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 80px;

    align-items: start;
}

.footer-logo {

    width: 160px;

    filter:
        brightness(0)
        invert(1);
}

.footer p {

    color:
        rgba(255,255,255,.35);

    margin-top: 14px;

    font-size: 12px;
}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 12px;

    font-size: 13px;

    color:
        rgba(255,255,255,.6);
}

.footer-legal {
    text-align: right;
}


/* ========================================
   SCROLL ANIMATIONS
======================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .9s cubic-bezier(.2,.7,.2,1),
        transform .9s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-menu {

        display: flex;

        position: fixed;

        left: 0;
        top: 78px;

        width: 100%;

        flex-direction: column;

        gap: 22px;

        padding: 30px;

        background:
            rgba(5,8,14,.98);

        color: white;

        transform:
            translateY(-130%);

        transition:
            transform .4s ease;

        z-index: 999;
    }

    .mobile-menu.open {
        transform: translateY(0);
    }

    .hero {

        grid-template-columns: 1fr;

        padding:
            140px 35px
            80px;
    }

    .hero-visual {

        margin-top: 60px;
    }

    .robot-stage {

        width: min(500px, 90vw);
    }

    .solution-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .robots-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .why-grid {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px;
    }

    .industry-item {

        grid-template-columns:
            45px 1fr 40px;
    }

    .industry-item p {
        display: none;
    }

}


@media (max-width: 650px) {

    .container {

        width:
            min(
                100% - 32px,
                1200px
            );
    }

    .section {
        padding: 95px 0;
    }

    .hero {

        padding:
            135px 22px
            70px;
    }

    .hero h1 {

        font-size:
            clamp(55px, 17vw, 80px);
    }

    .hero-description {

        font-size: 17px;
    }

    .robot-stage {

        width: 100%;
    }

    .floating-card {
        display: none;
    }

    .solution-grid,
    .process-grid {

        grid-template-columns: 1fr;
    }

    .robot-image {
        height: 300px;
    }

    .industry-item h3 {
        font-size: 21px;
    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-legal {
        text-align: left;
    }

}

/* ========================================
   FORMULARIO CONTACTO
======================================== */

.contact-form-layout {

    position: relative;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 90px;

    align-items: start;
}


.contact-copy h2 {

    font-size:
        clamp(50px, 6vw, 90px);

    line-height: .95;

    letter-spacing: -.06em;

    max-width: 700px;
}


.contact-copy p {

    margin-top: 30px;

    color:
        rgba(255,255,255,.5);

    font-size: 18px;

    line-height: 1.6;

    max-width: 520px;
}


.contact-form-wrapper {

    padding: 38px;

    border-radius: 24px;

    background:
        rgba(255,255,255,.05);

    border:
        1px solid
        rgba(255,255,255,.1);
}


.contact-form {

    display: flex;

    flex-direction: column;

    gap: 22px;
}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {

    font-size: 12px;

    font-weight: 600;

    color:
        rgba(255,255,255,.65);
}


.form-group input,
.form-group textarea {

    width: 100%;

    border:

        1px solid
        rgba(255,255,255,.13);

    border-radius: 13px;

    background:
        rgba(255,255,255,.05);

    color: white;

    padding: 15px 17px;

    font-family: inherit;

    font-size: 15px;

    outline: none;
}


.form-group input {

    height: 52px;
}


.form-group textarea {

    min-height: 115px;

    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus {

    border-color:
        rgba(255,255,255,.5);
}


.contact-submit {

    width: 100%;

    height: 55px;

    border: 0;

    border-radius: 999px;

    background: white;

    color: #07101b;

    font-weight: 600;

    cursor: pointer;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;
}


.form-status {

    margin: 0 !important;

    font-size: 13px !important;
}


.form-status.success {

    color: #72d978 !important;
}


.form-status.error {

    color: #ff8585 !important;
}


@media (max-width: 900px) {

    .contact-form-layout {

        grid-template-columns:
            1fr;

        gap: 60px;

    }

}