/* ================================
   SOY TU NEXO
   Home V0.1
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(75, 81, 255, 0.15),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(0, 204, 255, 0.08),
            transparent 30%
        ),
        #080b12;

    color: #f5f7fb;
    min-height: 100vh;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(8, 11, 18, 0.78);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-container {
    min-height: 76px;

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

    gap: 32px;
}

.brand {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #aeb6c7;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

/* BUTTONS */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 22px;

    border-radius: 12px;

    font-weight: 700;
    font-size: 0.95rem;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

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

.button-small {
    min-height: 42px;
    padding-inline: 18px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-primary {
    background: linear-gradient(
        135deg,
        #4f62ff,
        #7657ff
    );

    box-shadow:
        0 15px 35px rgba(79, 98, 255, 0.25);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* HERO */

.hero {
    padding: 110px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 80px;
}

.eyebrow {
    margin-bottom: 18px;

    color: #91a0ff;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;

    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.98;

    letter-spacing: -0.055em;
}

.hero h1 span {
    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    max-width: 650px;

    margin-top: 28px;

    color: #aeb6c7;

    font-size: 1.13rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 30px;

    color: #8f99ac;
    font-size: 0.9rem;
}

/* HERO VISUAL */

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: "";

    position: absolute;
    inset: 10% 5%;

    background: linear-gradient(
        135deg,
        rgba(79, 98, 255, 0.32),
        rgba(0, 209, 255, 0.13)
    );

    filter: blur(70px);
}

.visual-card {
    position: relative;

    min-height: 420px;

    overflow: hidden;

    border-radius: 24px;

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

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        );

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

.browser-bar {
    height: 52px;

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

    padding: 0 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.3);
}

.visual-content {
    padding: 70px 48px;
}

.visual-label {
    color: #7edcff;

    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.visual-content h2 {
    margin-top: 18px;

    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;

    letter-spacing: -0.045em;
}

.visual-description {
    max-width: 340px;
    margin-top: 18px;
    color: #aeb6c7;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
}

.visual-line {
    height: 8px;
    width: 82%;

    margin-top: 36px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.12);
}

.visual-line.short {
    width: 58%;
    margin-top: 12px;
}

.visual-button {
    display: inline-block;
    width: max-content;

    margin-top: 40px;
    padding: 13px 20px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #4f62ff,
        #7657ff
    );

    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.visual-button:hover {
    transform: translateY(-3px);
}
/* BENEFITS */

.benefits {
    padding: 55px 0 110px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.benefit-card {
    padding: 30px;

    border-radius: 18px;

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

    background: rgba(255, 255, 255, 0.025);
}

.benefit-number {
    color: #778aff;

    font-size: 0.78rem;
    font-weight: 800;
}

.benefit-card h3 {
    margin-top: 22px;

    font-size: 1.25rem;
}

.benefit-card p {
    margin-top: 12px;

    color: #929bad;

    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-visual {
        max-width: 650px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {

    .container {
        width: min(100% - 28px, 1120px);
    }

    .nav-container {
        min-height: 68px;
    }

    .brand {
        font-size: 0.86rem;
    }

    .button-small {
        padding-inline: 14px;
    }

    .hero {
        padding-top: 64px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .visual-content {
        padding: 48px 28px;
    }

    .visual-card {
        min-height: 350px;
    }
}/* PROPOSAL */

.proposal {
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proposal-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: start;
}

.proposal-content h2 {
    margin-top: 14px;

    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.proposal-content h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.proposal-text {
    margin-top: 28px;

    color: #aeb6c7;
    font-size: 1.06rem;
    line-height: 1.75;
}

.proposal-closing {
    margin-top: 30px;

    color: #d6dbea;
    line-height: 1.7;
}

.proposal-closing strong {
    color: #ffffff;
}

.proposal-features {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;

    padding: 26px 28px;

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
}

.feature-item > span {
    color: #7f90ff;
    font-size: 0.78rem;
    font-weight: 800;
}

.feature-item h3 {
    font-size: 1.15rem;
}

.feature-item p {
    margin-top: 8px;

    color: #929bad;
    line-height: 1.65;
}

/* PROPOSAL RESPONSIVE */

@media (max-width: 900px) {

    .proposal-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 560px) {

    .proposal {
        padding: 80px 0;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}/* PROCESS */

.process {
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.process-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.process-heading h2 {
    margin-top: 14px;

    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.process-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-heading > p:last-child {
    margin-top: 22px;

    color: #aeb6c7;
    font-size: 1.06rem;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-step {
    position: relative;

    padding: 32px;

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
}

.process-number {
    display: inline-block;

    color: #7f90ff;
    font-size: 0.78rem;
    font-weight: 800;
}

.process-step h3 {
    margin-top: 26px;

    font-size: 1.3rem;
}

.process-step p {
    margin-top: 12px;

    color: #929bad;
    line-height: 1.7;
}

.process-closing {
    margin-top: 38px;

    text-align: center;

    color: #b9c1d0;
    font-size: 1.05rem;
}

.process-closing strong {
    color: #ffffff;
}

/* PROCESS RESPONSIVE */

@media (max-width: 900px) {

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

@media (max-width: 560px) {

    .process {
        padding: 80px 0;
    }
}
/* INCLUDED / WEB EXPRESS */

.included {
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.included-heading {
    max-width: 820px;
    margin-bottom: 55px;
}

.included-heading h2 {
    margin-top: 14px;

    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.included-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.included-heading > p:last-child {
    margin-top: 22px;

    max-width: 720px;

    color: #aeb6c7;
    font-size: 1.06rem;
    line-height: 1.7;
}

/* STANDARD PAGES */

.included-pages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.included-page {
    position: relative;

    min-height: 250px;
    padding: 32px;

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
}

.included-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(127, 144, 255, 0.1);
    border: 1px solid rgba(127, 144, 255, 0.18);

    color: #8ea2ff;
    font-size: 0.78rem;
    font-weight: 800;
}

.included-page h3 {
    margin-top: 30px;

    font-size: 1.35rem;
}

.included-page p {
    margin-top: 12px;

    color: #929bad;
    line-height: 1.7;
}

/* OPTIONAL MODULES */

.included-modules {
    margin-top: 34px;
    padding: 30px;

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);

    background: rgba(255, 255, 255, 0.025);
}

.included-modules-title {
    margin-bottom: 20px;

    color: #b9c1d0;
    font-size: 0.98rem;
}

.included-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.included-tags span {
    padding: 10px 15px;

    border-radius: 999px;
    border: 1px solid rgba(142, 162, 255, 0.16);

    background: rgba(142, 162, 255, 0.07);

    color: #c8cede;
    font-size: 0.88rem;
    font-weight: 600;
}

/* INCLUDED RESPONSIVE */

@media (max-width: 900px) {
    .included-pages {
        grid-template-columns: 1fr;
    }

    .included-page {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .included {
        padding: 80px 0;
    }

    .included-modules {
        padding: 22px;
    }
}
/* SERVICES BRIDGE */

.services-bridge {
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(113, 92, 255, 0.07),
            transparent 45%
        );
}

.services-bridge-heading {
    max-width: 850px;
    margin-bottom: 55px;
}

.services-bridge-heading h2 {
    margin-top: 14px;

    font-size: clamp(2.7rem, 4.8vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.services-bridge-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-bridge-heading > p:last-child {
    max-width: 720px;
    margin-top: 22px;

    color: #aeb6c7;
    font-size: 1.06rem;
    line-height: 1.7;
}

/* TWO SERVICES */

.services-bridge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;

    min-height: 390px;
    padding: 38px;

    overflow: hidden;

    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.018)
        );
}

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

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        #7f90ff,
        #9a78ff,
        transparent
    );
}

.service-card-security::before {
    background: linear-gradient(
        90deg,
        #69d9ff,
        #7f90ff,
        transparent
    );
}

.service-label {
    color: #8ea2ff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-card-security .service-label {
    color: #69d9ff;
}

.service-card h3 {
    margin-top: 22px;

    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.025em;
}

.service-card-lead {
    margin-top: 18px;

    color: #dce1ec;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.55;
}

.service-card > p:not(.service-card-lead) {
    margin-top: 14px;
    margin-bottom: 30px;

    color: #929bad;
    line-height: 1.7;
}

.service-card .button {
    align-self: flex-start;
    margin-top: auto;
}

/* SERVICES CLOSING */

.services-bridge-closing {
    max-width: 850px;
    margin: 42px auto 0;

    text-align: center;

    color: #b9c1d0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-bridge-closing strong {
    color: #ffffff;
}

/* SERVICES BRIDGE RESPONSIVE */

@media (max-width: 800px) {
    .services-bridge-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .services-bridge {
        padding: 80px 0;
    }

    .service-card {
        padding: 28px;
    }
}
/* TRUST */

.trust {
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-heading {
    max-width: 820px;
    margin-bottom: 55px;
}

.trust-heading h2 {
    margin-top: 14px;

    font-size: clamp(2.7rem, 4.8vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.trust-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-heading > p:last-child {
    max-width: 700px;
    margin-top: 22px;

    color: #aeb6c7;
    font-size: 1.06rem;
    line-height: 1.7;
}

/* TRUST PRINCIPLES */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    position: relative;
    padding: 34px 34px 38px 0;
}

.trust-item:nth-child(even) {
    padding-left: 34px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-number {
    display: block;

    color: #7f90ff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.trust-item h3 {
    margin-top: 16px;

    font-size: 1.3rem;
    letter-spacing: -0.015em;
}

.trust-item p {
    max-width: 480px;
    margin-top: 10px;

    color: #929bad;
    line-height: 1.7;
}

/* TRUST CLOSING */

.trust-closing {
    max-width: 850px;
    margin: 44px auto 0;

    text-align: center;

    color: #b9c1d0;
    font-size: 1.08rem;
    line-height: 1.7;
}

.trust-closing strong {
    display: block;
    margin-top: 4px;

    color: #ffffff;
}

/* TRUST RESPONSIVE */

@media (max-width: 760px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:nth-child(even) {
        padding: 28px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .trust {
        padding: 80px 0;
    }
}
/* FINAL CTA */

.final-cta {
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.final-cta-box {
    position: relative;
    overflow: hidden;

    padding: 70px 60px;

    text-align: center;

    border-radius: 28px;
    border: 1px solid rgba(142, 162, 255, 0.16);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(125, 103, 255, 0.18),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
}

.final-cta-box::before {
    content: "";

    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #8ea2ff,
        #69d9ff,
        transparent
    );
}

.final-cta-box .eyebrow {
    position: relative;
}

.final-cta-box h2 {
    position: relative;

    max-width: 850px;
    margin: 16px auto 0;

    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.final-cta-box h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.final-cta-text {
    position: relative;

    max-width: 700px;
    margin: 24px auto 0;

    color: #aeb6c7;
    font-size: 1.06rem;
    line-height: 1.7;
}

/* CTA ACTIONS */

.final-cta-actions {
    position: relative;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}

.final-cta-actions .button {
    min-width: 190px;
    justify-content: center;
}

.final-cta-help {
    position: relative;

    margin-top: 24px;

    color: #8f98aa;
    font-size: 0.92rem;
}

.final-cta-help a {
    color: #cbd2ff;
    font-weight: 700;
    text-decoration: none;
}

.final-cta-help a:hover {
    color: #ffffff;
}

/* FINAL CTA RESPONSIVE */

@media (max-width: 700px) {
    .final-cta-box {
        padding: 55px 25px;
    }
}

@media (max-width: 560px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions .button {
        width: 100%;
    }
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    margin-top:120px;
    padding:70px 0 28px;

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

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.015),
            rgba(255,255,255,0)
        );
}

.footer-main{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:42px;
    align-items:start;
}

.footer-brand{
    max-width:380px;
}

.footer-logo{
    display:inline-block;

    color:#fff;
    text-decoration:none;
    font-size:1rem;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.footer-brand p{
    margin-top:14px;

    color:var(--text-soft);
    line-height:1.7;
}

.footer-nav,
.footer-social{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-nav a,
.footer-social a{
    color:var(--text-soft);
    text-decoration:none;
    font-size:.95rem;

    transition:.2s ease;
}

.footer-nav a:hover,
.footer-social a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:52px;
    padding-top:24px;

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

.footer-bottom p{
    color:#6f7889;
    font-size:.85rem;
    text-align:center;
}

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

@media (max-width:900px){

    .footer-main{
        grid-template-columns:1fr;
        gap:32px;
    }

    .footer-nav,
    .footer-social{
        flex-direction:row;
        flex-wrap:wrap;
        gap:18px;
    }

}

@media (max-width:560px){

    .site-footer{
        padding-top:56px;
    }

}
/* ========================================
   SERVICES PAGE — HERO
======================================== */

.services-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(111, 92, 255, 0.14),
            transparent 38%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(74, 190, 255, 0.07),
            transparent 35%
        );
}

.services-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -180px;

    border-radius: 50%;

    background: rgba(123, 97, 255, 0.08);
    filter: blur(80px);

    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    max-width: 950px;
    margin-top: 16px;

    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.services-hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-hero-text {
    max-width: 760px;
    margin-top: 30px;

    color: #aeb6c7;
    font-size: 1.12rem;
    line-height: 1.75;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 38px;
}

/* SERVICES HERO — RESPONSIVE */

@media (max-width: 768px) {

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

    .services-hero h1 {
        font-size: clamp(2.7rem, 11vw, 4.5rem);
    }

}

@media (max-width: 560px) {

    .services-hero-actions {
        flex-direction: column;
    }

    .services-hero-actions .button {
        width: 100%;
        text-align: center;
    }

}

/* ========================================
   SERVICES — WEB EXPRESS
======================================== */

.service-detail {
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-detail-heading {
    max-width: 900px;
    margin-bottom: 60px;
}

.service-detail-heading h2 {
    margin-top: 14px;
    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.service-detail-heading h2 span {
    display: block;
    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-detail-heading > p:last-child {
    margin-top: 24px;
    max-width: 800px;
    color: #aeb6c7;
    font-size: 1.08rem;
    line-height: 1.75;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
}

.service-detail-main,
.service-detail-side {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
}

.service-detail-main h3,
.service-detail-side h3 {
    margin-bottom: 20px;
    font-size: 1.35rem;
}

.service-detail-main > p {
    margin-top: 14px;
    color: #9da6b8;
    line-height: 1.75;
}

.service-detail-highlight {
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 3px solid #8a78ff;
    border-radius: 0 12px 12px 0;
    background: rgba(138, 120, 255, 0.06);
}

.service-detail-highlight p {
    color: #b8c0d0;
    line-height: 1.7;
}

.service-detail-highlight strong {
    color: #ffffff;
}

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

.service-list li {
    position: relative;
    padding-left: 26px;
    color: #aeb6c7;
    line-height: 1.5;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8497ff;
    font-weight: 800;
}

.service-detail-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 22px;
}

.service-detail-bottom > div {
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.service-detail-label {
    margin-bottom: 12px;
    color: #8497ff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-detail-bottom > div > p:last-child {
    color: #9da6b8;
    line-height: 1.7;
}

.service-detail-cta {
    margin-top: 38px;
}

/* WEB EXPRESS RESPONSIVE */

@media (max-width: 900px) {
    .service-detail-grid,
    .service-detail-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .service-detail {
        padding: 80px 0;
    }

    .service-detail-main,
    .service-detail-side {
        padding: 25px;
    }
}
/* ========================================
   SERVICES — AUDITORÍA OSINT
======================================== */

.service-detail-osint {
    position: relative;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(76, 198, 255, 0.06),
            transparent 32%
        );
}

.service-detail-osint .service-detail-heading h2 span {
    background: linear-gradient(
        90deg,
        #69d9ff,
        #7f90ff,
        #9a78ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-intro {
    max-width: 780px;
}

/* OSINT COLUMNS */

.service-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-detail-osint .service-card {
    min-height: auto;
    padding: 38px;

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
}

.service-detail-osint .service-card::before {
    background: linear-gradient(
        90deg,
        #69d9ff,
        #7f90ff,
        transparent
    );
}

.service-detail-osint .service-card h3 {
    margin-top: 0;
    margin-bottom: 18px;

    font-size: 1.45rem;
}

.service-detail-osint .service-card > p {
    margin-bottom: 24px;

    color: #9da6b8;
    line-height: 1.7;
}

/* OSINT HIGHLIGHT */

.service-highlight {
    margin-top: 28px;
    padding: 20px 22px;

    border-left: 3px solid #69d9ff;
    border-radius: 0 12px 12px 0;

    background: rgba(105, 217, 255, 0.06);

    color: #d6deeb;
    line-height: 1.65;
}

/* OSINT INFO */

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;

    margin-top: 22px;
}

.service-info-card {
    padding: 28px 30px;

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);

    background: rgba(255, 255, 255, 0.02);
}

.service-info-card .eyebrow {
    margin-bottom: 12px;
}

.service-info-card > p:last-child {
    color: #9da6b8;
    line-height: 1.7;
}

/* OSINT ACTION */

.service-action {
    margin-top: 38px;
}

/* OSINT RESPONSIVE */

@media (max-width: 900px) {

    .service-columns,
    .service-info-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 560px) {

    .service-detail-osint .service-card {
        padding: 26px;
    }

    .service-info-card {
        padding: 24px;
    }

}
/* ========================================
   ABOUT / NOSOTROS
======================================== */

.about-hero {
    padding: 120px 0 100px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(126, 99, 255, 0.12),
            transparent 38%
        );
}

.about-hero h1 {
    max-width: 900px;
    margin-top: 16px;

    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.about-hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-hero-text {
    max-width: 760px;
    margin-top: 28px;

    color: #aeb6c7;
    font-size: 1.12rem;
    line-height: 1.75;
}


/* ABOUT STORY */

.about-story {
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.about-story-title h2 {
    margin-top: 14px;

    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-story-title h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #9a78ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-story-content {
    display: grid;
    gap: 24px;
}

.about-story-content p {
    color: #aeb6c7;
    line-height: 1.8;
    font-size: 1.04rem;
}

.about-story-content strong {
    color: #ffffff;
}


/* ABOUT VISION */

.about-vision {
    padding: 20px 0 110px;
}

.about-vision-card {
    padding: 58px;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(105, 217, 255, 0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
}

.about-vision-card h2 {
    max-width: 900px;
    margin-top: 14px;

    font-size: clamp(2.5rem, 4.5vw, 4.3rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.about-vision-card h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #69d9ff,
        #8ea2ff,
        #9a78ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-vision-card > p {
    max-width: 850px;
    margin-top: 28px;

    color: #9da6b8;
    line-height: 1.8;
}

.about-highlight {
    margin-top: 34px !important;

    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
}


/* ABOUT GROWTH */

.about-growth {
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-growth-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.about-growth h2 {
    margin-top: 14px;

    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-growth h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8ea2ff,
        #69d9ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-growth-content {
    display: grid;
    gap: 24px;
}

.about-growth-content p {
    color: #aeb6c7;
    line-height: 1.8;
    font-size: 1.04rem;
}

.about-signature {
    margin-top: 8px;

    color: #ffffff;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}


/* ABOUT RESPONSIVE */

@media (max-width: 900px) {

    .about-story-grid,
    .about-growth-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 700px) {

    .about-vision-card {
        padding: 38px 28px;
    }

}

@media (max-width: 560px) {

    .about-hero,
    .about-story,
    .about-growth {
        padding: 80px 0;
    }

    .about-vision {
        padding-bottom: 80px;
    }

}
/* =========================================
   CONTACT PAGE
========================================= */

/* HERO */

.contact-hero {
    padding: 135px 0 110px;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(123, 92, 255, 0.16),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            rgba(10, 18, 32, 0.98),
            rgba(15, 17, 42, 0.98)
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hero-content {
    max-width: 900px;
}

.contact-hero h1 {
    margin-top: 18px;

    font-size: clamp(3.5rem, 7vw, 6.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.contact-hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8da2ff,
        #9c78ff,
        #68d8ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-hero-text {
    max-width: 820px;
    margin-top: 34px;

    color: #b9c4d8;
    font-size: 1.2rem;
    line-height: 1.8;
}


/* CONTACT OPTIONS */

.contact-options {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 12% 55%,
            rgba(76, 202, 255, 0.07),
            transparent 30%
        ),
        rgba(5, 10, 18, 0.45);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    position: relative;

    min-height: 390px;
    padding: 42px;

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

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(126, 145, 255, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(126, 145, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        );
}

.contact-number {
    color: #8798ff;

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.contact-card h2 {
    margin-top: 28px;

    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.035em;
}

.contact-card p {
    max-width: 520px;
    margin-top: 18px;
    margin-bottom: 34px;

    color: #aeb9cd;
    font-size: 1.04rem;
    line-height: 1.75;
}

.contact-card .button {
    margin-top: auto;
}

.contact-closing {
    margin-top: 52px;

    text-align: center;

    color: #aeb9cd;
    font-size: 1.08rem;
    line-height: 1.7;
}

.contact-closing strong {
    color: #ffffff;
}


/* CONTACT RESPONSIVE */

@media (max-width: 900px) {

    .contact-hero {
        padding: 105px 0 85px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 340px;
    }
}

@media (max-width: 560px) {

    .contact-hero {
        padding: 85px 0 70px;
    }

    .contact-hero h1 {
        font-size: clamp(3rem, 14vw, 4.3rem);
    }

    .contact-hero-text {
        font-size: 1.05rem;
    }

    .contact-options {
        padding: 75px 0;
    }

    .contact-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .contact-closing {
        margin-top: 38px;
    }
}

/* FINAL ACCESSIBILITY & NAVIGATION */
.main-nav a[aria-current="page"] { color: #ffffff; }
a:focus-visible, button:focus-visible { outline: 3px solid #8ea2ff; outline-offset: 4px; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; } }
@media (max-width: 900px) { .services-bridge-grid { grid-template-columns: 1fr; } }

/* ACTION SYSTEM — unified commercial CTAs */
.service-detail-cta .button,
.service-action .button {
    min-width: 230px;
}

.service-card .button,
.final-cta-actions .button,
.services-hero-actions .button,
.contact-card .button {
    font-size: 0.95rem;
    font-weight: 700;
}

@media (max-width: 560px) {
    .service-detail-cta .button,
    .service-action .button,
    .final-cta-actions .button,
    .contact-card .button {
        width: 100%;
    }
}
