/* --- VARIABLES DE MARCA --- */

:root {
    --bg-dark-total: #07101a;
    --bg-dark-grid: #0a1420;
    --bg-card: #101d2b;
    --bg-panel: rgba(16, 29, 43, 0.84);
    --primary-neon: #64e6ff;
    --primary-neon-strong: #a6f2ff;
    --primary-glow: rgba(100, 230, 255, 0.34);
    --text-main: #ffffff;
    --text-muted: #9dafc1;
    --text-soft: #c8d8e6;
    --border-color: #26384d;
    --font-main: "Inter", sans-serif;
    --hero-parallax-y: 0px;
}

/* --- RESET BASICO --- */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(100, 230, 255, 0.16), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(100, 230, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #07101a 0%, #0a1420 100%);
    min-height: 100vh;
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, transparent 36%, rgba(0, 0, 0, 0.22) 100%);
    pointer-events: none;
    z-index: 0;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

a,
button,
input,
textarea {
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

section,
footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    z-index: 1;
    padding: 124px 0;
}

.container {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 32px;
}

section.container,
footer.container {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding-left: clamp(28px, 5vw, 72px);
    padding-right: clamp(28px, 5vw, 72px);
}

.text-center {
    text-align: center;
}

.badge,
.sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(0, 210, 255, 0.22);
    border-radius: 999px;
    background: rgba(6, 14, 24, 0.82);
    color: #c9f8ff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.badge::before,
.sub-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-neon);
    box-shadow: 0 0 16px var(--primary-glow);
}

.gradient-text,
.gradient-text-alt {
    background: linear-gradient(180deg, #ffffff 0%, #def7ff 56%, #76dfff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text span,
.gradient-text-alt span {
    color: transparent;
}

/* --- HEADER --- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    z-index: 100;
    transition: background 0.25s ease, border-bottom 0.25s ease, box-shadow 0.25s ease;
}

header.scrolled,
header.service-scrolled {
    background: rgba(5, 8, 15, 0.92);
    border-bottom: 1px solid rgba(0, 210, 255, 0.45);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 24px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo span {
    position: relative;
    display: inline-block;
}

.logo span:first-of-type {
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.18),
        0 0 22px rgba(110, 225, 255, 0.1);
}

.logo span:last-of-type {
    background: linear-gradient(135deg, #59f3ff 0%, #00d2ff 45%, #b3fbff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 10px rgba(0, 210, 255, 0.34),
        0 0 22px rgba(0, 210, 255, 0.22),
        0 0 42px rgba(0, 210, 255, 0.18);
}

.logo::after {
    content: "";
    position: absolute;
    left: 46px;
    right: 0;
    bottom: -6px;
    height: 10px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.28), transparent 72%);
    filter: blur(10px);
    opacity: 0.85;
    pointer-events: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.18));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.88rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    overflow: hidden;
    isolation: isolate;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-neon);
    border-color: rgba(0, 210, 255, 0.5);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 210, 255, 0.16);
}

.nav-links a:not(.btn-primary)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.18), rgba(255, 255, 255, 0.03));
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: -1;
}

.nav-links a:not(.btn-primary)::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    transform: scaleX(0.15);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.34s ease, opacity 0.34s ease;
}

.nav-links a:not(.btn-primary):hover::before,
.nav-links a:not(.btn-primary):focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:not(.btn-primary):hover::after,
.nav-links a:not(.btn-primary):focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-links li {
    opacity: 0;
    transform: translateY(-14px);
    animation: navReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-links li:nth-child(1) {
    animation-delay: 0.08s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.16s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.24s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.32s;
}

.nav-links li:nth-child(5) {
    animation-delay: 0.4s;
}

/* --- BOTONES --- */

.btn-primary,
.btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.84rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--primary-neon-strong) 100%);
    color: #02131b;
    box-shadow: 0 16px 34px rgba(0, 210, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    animation: buttonFloatPrimary 4.2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 24px 44px rgba(0, 210, 255, 0.34), 0 0 24px rgba(0, 210, 255, 0.22);
}

.btn-text {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    animation: buttonFloatSecondary 4.8s ease-in-out infinite;
}

.btn-text:hover {
    color: var(--primary-neon);
    border-color: rgba(0, 210, 255, 0.4);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 34px rgba(0, 210, 255, 0.14);
}

.btn-primary::before,
.btn-text::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 42%;
    height: 320%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(22deg);
    opacity: 0;
    z-index: -1;
}

.btn-primary::after,
.btn-text::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 58%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before,
.btn-text:hover::before {
    opacity: 1;
    animation: buttonSweep 0.85s ease forwards;
}

.btn-primary:hover::after,
.btn-text:hover::after {
    opacity: 1;
}

.btn-primary span,
.btn-text span {
    position: relative;
    z-index: 1;
}

.small-btn {
    min-height: 36px;
    padding: 0 16px;
    font-size: 0.78rem;
}

.btn-primary:focus-visible,
.btn-text:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(0, 210, 255, 0.8);
    outline-offset: 3px;
}

/* --- HERO --- */

.hero {
    min-height: 100vh;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 150px 0 84px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
    background:
        linear-gradient(180deg, rgba(7, 16, 26, 0.36) 0%, rgba(7, 16, 26, 0.64) 72%, #07101a 100%),
        linear-gradient(90deg, rgba(5, 13, 22, 0.62) 0%, rgba(5, 13, 22, 0.3) 45%, rgba(5, 13, 22, 0.6) 100%),
        url("images/fondo.jpg");
    background-position: center calc(50% + var(--hero-parallax-y));
    background-repeat: no-repeat;
    background-size: cover;
    will-change: background-position;
}

.hero-content {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.hero .badge {
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.08;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.98rem;
    color: var(--text-soft);
}

.hero-btns {
    margin-top: 40px;
    margin-bottom: 30px;
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: min(100%, 720px);
    margin: 8px auto 0;
    align-items: stretch;
}



.stat-item {
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(14, 27, 41, 0.58));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    min-height: 156px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}





.stat-item h2 {
    font-size: 2.6rem;
    color: var(--text-main);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* --- SERVICES --- */

.services {
    background: #091825;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3);
}

.services .container,
.value .container,
.contact .container,
footer .container {
    display: block;
}

.section-title {
    margin-bottom: 64px;
}

.section-title .sub-badge {
    margin-bottom: 24px;
    margin-top: 18px;
}

.section-title h2 {
    font-size: 2.9rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.98rem;
    color: #d6ebff;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 300px));
    justify-content: center;
    gap: 26px;
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.card {
    background: linear-gradient(180deg, rgba(16, 29, 43, 0.96), rgba(12, 24, 37, 0.96));
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
    width: 100%;
    min-height: 340px;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.08), transparent 34%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.card:hover {
    border-color: var(--primary-neon);
    transform: translateY(-8px);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.52);
}

.card:hover::before {
    opacity: 1;
}

.card-image-placeholder {
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: #070a0f;
    position: relative;
}

.card-image-placeholder::after {
    content: "";
    position: absolute;
    inset: auto 20px 18px 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.55), transparent);
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transform: scale(1.02);
    transition: transform 0.55s ease, opacity 0.55s ease;
}

.card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 20px 20px;
    background: linear-gradient(180deg, rgba(3, 9, 16, 0) 0%, rgba(3, 9, 16, 0.74) 26%, rgba(5, 12, 20, 0.96) 100%);
    transform: translateY(calc(100% - 88px));
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-tags {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

.card h3 {
    font-size: 1.18rem;
    margin-bottom: 0;
    font-weight: 700;
    transition: margin-bottom 0.35s ease;
}

.card p {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--text-soft);
    margin-top: 14px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
}

.card-content::after {
    content: "Explorar servicio";
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary-neon);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease 0.16s, transform 0.35s ease 0.16s;
}

.customer-service-card .card-image-placeholder,
.commercial-service-card .card-image-placeholder,
.admin-service-card .card-image-placeholder {
    background-image: url("images/atencion-cliente-ia.jpg");
    background-size: cover;
    background-position: center;
}

.commercial-service-card .card-image-placeholder {
    background-image: url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b?auto=format&fit=crop&w=1200&q=80");
}

.admin-service-card .card-image-placeholder {
    background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80");
}

.customer-service-card .card-image-placeholder img,
.commercial-service-card .card-image-placeholder img,
.admin-service-card .card-image-placeholder img {
    display: none;
}

.customer-service-card .card-content,
.commercial-service-card .card-content,
.admin-service-card .card-content {
    padding: 26px 22px 92px;
    text-align: center;
    transform: translateY(calc(100% - 150px));
}

.customer-service-card .card-tags,
.commercial-service-card .card-tags,
.admin-service-card .card-tags {
    margin-bottom: 10px;
}

.customer-service-card h3,
.commercial-service-card h3,
.admin-service-card h3 {
    margin-bottom: 8px;
}

.customer-service-card .card-content::after,
.commercial-service-card .card-content::after,
.admin-service-card .card-content::after {
    content: attr(data-detail);
    display: block;
    margin-top: 14px;
    color: #d6ebff;
    font-size: 0.93rem;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease 0.16s, transform 0.35s ease 0.16s;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.card-link {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 3;
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
    transition: opacity 0.35s ease 0.2s, transform 0.35s ease 0.2s;
    min-width: 170px;
}

.services .card:hover .card-image-placeholder img,
.services .card:focus-within .card-image-placeholder img {
    transform: scale(1.08);
    opacity: 0.45;
}

.services .card:hover .card-content,
.services .card:focus-within .card-content {
    transform: translateY(0);
}

.services .card:hover .card-tags,
.services .card:hover .card p,
.services .card:hover .card-content::after,
.services .card:hover .card-link,
.services .card:focus-within .card-tags,
.services .card:focus-within .card p,
.services .card:focus-within .card-content::after,
.services .card:focus-within .card-link {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.services .card:hover .card-tags,
.services .card:hover .card p,
.services .card:hover .card-content::after,
.services .card:focus-within .card-tags,
.services .card:focus-within .card p,
.services .card:focus-within .card-content::after {
    transform: translateY(0);
}

.services .commercial-service-card:not(:hover) .card-content {
    transform: translateY(calc(100% - 150px));
}

.services .commercial-service-card:not(:hover) .card-tags,
.services .commercial-service-card:not(:hover) p,
.services .commercial-service-card:not(:hover) .card-content::after,
.services .commercial-service-card:not(:hover) .card-link {
    opacity: 0;
}

.services .commercial-service-card:not(:hover) .card-tags,
.services .commercial-service-card:not(:hover) p,
.services .commercial-service-card:not(:hover) .card-content::after {
    transform: translateY(14px);
}

.services .commercial-service-card:not(:hover) .card-link {
    transform: translateX(-50%) translateY(14px);
}

.services .admin-service-card:not(:hover) .card-content {
    transform: translateY(calc(100% - 150px));
}

.services .admin-service-card:not(:hover) .card-tags,
.services .admin-service-card:not(:hover) p,
.services .admin-service-card:not(:hover) .card-content::after,
.services .admin-service-card:not(:hover) .card-link {
    opacity: 0;
}

.services .admin-service-card:not(:hover) .card-tags,
.services .admin-service-card:not(:hover) p,
.services .admin-service-card:not(:hover) .card-content::after {
    transform: translateY(14px);
}

.services .admin-service-card:not(:hover) .card-link {
    transform: translateX(-50%) translateY(14px);
}

.services .card:hover h3,
.services .card:focus-within h3 {
    margin-bottom: 10px;
}

/* --- PLANS --- */

.plans {
    background: #07111b;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.22);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 290px));
    justify-content: center;
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
    align-items: stretch;
    padding-bottom: 24px;
}

.plan-card {
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.96), rgba(7, 14, 24, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.08), transparent 34%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.plan-card:hover {
    border-color: var(--primary-neon);
    transform: translateY(-8px);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.52);
}

.plan-card:hover::before {
    opacity: 1;
}

.featured-plan {
    border-color: rgba(0, 210, 255, 0.45);
    box-shadow: 0 22px 46px rgba(0, 210, 255, 0.12);
}

.plan-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 210, 255, 0.12);
    color: #c8f8ff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-card h3 {
    font-size: 1.45rem;
    line-height: 1.1;
}

.plan-price {
    font-size: 1.18rem;
    font-weight: 800;
    color: #d8f6ff;
    line-height: 1.25;
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 6px;
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 12px;
    color: var(--text-soft);
    font-size: 0.9rem;
    flex: 1;
}

.plan-features li {
    padding-left: 18px;
    position: relative;
}

.plan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-neon);
    box-shadow: 0 0 12px var(--primary-glow);
}

/* --- VALUE --- */

.value {
    background: #0b1624;
}

.value-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    gap: 56px;
    align-items: center;
    text-align: center;
}

.value-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 16px 0 20px;
}

.value-text h2 span {
    color: var(--primary-neon);
}

.value-text .sub-badge {
    display: flex;
    width: fit-content;
    margin: 18px auto 0;
}

.value-text {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 8px;
}

.value-text p {
    font-size: 0.96rem;
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto;
}

.value-highlights {
    justify-content: center;
    gap: 16px;
}

.value-highlights {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.value-item {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    color: var(--text-main);
    font-size: 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.value-visual {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.value-visual img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
    display: block;
}

.roi-badge {
    position: static;
    background: rgba(16, 29, 43, 0.92);
    padding: 12px 22px;
    border-radius: 16px;
    border: 1px solid var(--primary-neon);
    text-align: center;
    font-weight: 800;
    font-size: 1.55rem;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
    min-width: 170px;
    margin-top: 4px;
}

.roi-badge span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* --- GLOBAL NETWORK --- */

.global-network {
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.06), transparent 18%),
        radial-gradient(circle at 72% 55%, rgba(86, 58, 255, 0.16), transparent 22%),
        linear-gradient(180deg, #0b1118 0%, #0e1620 100%);
}

.global-shell {
    width: min(1240px, calc(100vw - 64px));
    margin: 0 auto;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 56px clamp(28px, 5vw, 68px);
    display: grid;
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(4, 6, 10, 0.72) 44%, rgba(2, 3, 7, 0.88) 100%),
        radial-gradient(circle at 68% 42%, rgba(124, 87, 255, 0.12), transparent 24%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 28px 90px rgba(0, 0, 0, 0.34);
    overflow: hidden;
    position: relative;
}

.global-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 24%, rgba(0, 210, 255, 0.04) 74%, transparent);
    pointer-events: none;
}

.global-copy {
    position: relative;
    z-index: 1;
}

.global-copy .sub-badge {
    margin-bottom: 24px;
}

.global-copy h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.06;
    margin-bottom: 22px;
    max-width: 12ch;
}

.global-copy p {
    max-width: 500px;
    color: var(--text-soft);
    font-size: 1rem;
}

.global-cta {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 66px;
    padding: 10px 10px 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(132, 255, 117, 0.14);
    background: rgba(12, 18, 12, 0.72);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    color: var(--text-main);
    font-weight: 600;
}

.global-cta__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #4dff6b;
    box-shadow: 0 0 0 0 rgba(77, 255, 107, 0.4);
    animation: ctaPulse 1.9s ease-out infinite;
}

.global-avatars {
    display: flex;
    margin-left: 4px;
}

.global-avatars span {
    min-width: 42px;
    width: auto;
    height: 42px;
    padding: 0 10px;
    margin-left: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(74, 74, 74, 0.95), rgba(23, 23, 23, 0.95));
    color: #f2f2f2;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.global-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-orbit {
    position: absolute;
    width: min(520px, 88%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 0 24px rgba(255, 255, 255, 0.015),
        0 0 0 56px rgba(255, 255, 255, 0.01);
    opacity: 0.34;
    animation: orbitSpin 34s linear infinite;
}

.globe-scene {
    position: relative;
    width: min(560px, 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
}

.globe {
    position: relative;
    width: min(470px, 86vw);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    transform-style: preserve-3d;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.28), transparent 15%),
        radial-gradient(circle at 55% 50%, rgba(255, 255, 255, 0.06), transparent 58%),
        linear-gradient(180deg, #171c23 0%, #0e141c 100%);
    box-shadow:
        inset 30px -20px 50px rgba(255, 255, 255, 0.08),
        inset -95px 0 140px rgba(0, 0, 0, 0.72),
        0 30px 86px rgba(0, 0, 0, 0.58),
        0 0 92px rgba(91, 76, 255, 0.08);
    animation: globeFloat 7.5s ease-in-out infinite, globeTilt 16s ease-in-out infinite;
}

.globe::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 18% 17%, rgba(255, 255, 255, 0.52), transparent 20%),
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.14), transparent 11%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 24%, transparent 66%, rgba(0, 0, 0, 0.78) 100%);
    z-index: 2;
    pointer-events: none;
}

.globe::after {
    content: "";
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 52% 52%, rgba(115, 96, 255, 0.14), transparent 44%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 56%);
    filter: blur(18px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.globe-depth,
.globe-surface,
.globe-night,
.globe-shade,
.globe-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 50%;
    will-change: background-position, transform, opacity;
}

.globe-depth {
    inset: 2.5%;
    z-index: 0;
    background:
        radial-gradient(circle at 42% 40%, rgba(255, 255, 255, 0.12), transparent 34%),
        radial-gradient(circle at 58% 62%, rgba(255, 255, 255, 0.05), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.34));
    transform: translateZ(-24px) scale(0.95);
    filter: blur(2px);
}

.globe-surface {
    background-image: url("images/earth_atmos_2048.jpg");
    background-repeat: repeat-x;
    background-size: auto 122%;
    background-position: 12% 48%;
    filter: saturate(1.12) contrast(1.08) brightness(0.98);
    transform: translateZ(8px) rotateX(8deg);
    animation: earthSpin 24s linear infinite;
}

.globe-night {
    background-image: url("images/earth_lights_2048.png");
    background-repeat: repeat-x;
    background-size: auto 122%;
    background-position: 12% 48%;
    mix-blend-mode: screen;
    opacity: 0.26;
    filter: saturate(0.9) brightness(1);
    transform: translateZ(10px) rotateX(8deg);
    animation: earthSpin 24s linear infinite;
}

.globe-shade {
    z-index: 2;
    background:
        radial-gradient(circle at 30% 24%, transparent 0 24%, rgba(255, 255, 255, 0.1) 34%, transparent 44%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 32%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.72) 100%);
    transform: translateZ(16px);
}

.globe-atmosphere {
    inset: -1.5%;
    z-index: 3;
    background:
        radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.32), transparent 18%),
        radial-gradient(circle at 50% 50%, transparent 58%, rgba(130, 156, 255, 0.2) 72%, rgba(130, 156, 255, 0.08) 78%, transparent 84%);
    mix-blend-mode: screen;
    opacity: 0.92;
    transform: translateZ(20px) scale(1.01);
}

/* --- CONTACT --- */

.contact {
    background: #0b1624;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 96px;
}

.contact-box {
    background: linear-gradient(180deg, rgba(16, 29, 43, 0.98), rgba(12, 24, 37, 0.98));
    padding: 26px 24px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    margin: 0 auto;
}

.contact-box::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.22), transparent 70%);
    pointer-events: none;
}

.contact-box h2 {
    font-size: 2.1rem;
    margin: 12px 0 10px;
}

.contact-box p {
    font-size: 0.96rem;
    color: var(--text-soft);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

form {
    margin-top: 30px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: white;
    font-family: var(--font-main);
    outline: none;
    font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder,
select {
    color: #87a0b9;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-neon);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.08);
}

textarea {
    margin: 16px 0;
    resize: none;
}

select {
    margin-top: 16px;
    appearance: none;
    cursor: pointer;
}

.call-time-picker,
.plan-picker {
    margin-top: 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.18);
    color: var(--text-soft);
    overflow: hidden;
}

.call-time-picker[open],
.plan-picker[open] {
    border-color: rgba(0, 210, 255, 0.38);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.06);
}

.call-time-picker summary,
.plan-picker summary {
    padding: 13px 14px;
    cursor: pointer;
    color: #cfe9f7;
    list-style: none;
}

.call-time-picker summary::-webkit-details-marker,
.plan-picker summary::-webkit-details-marker {
    display: none;
}

.call-time-options,
.plan-options {
    display: grid;
    gap: 10px;
    padding: 0 14px 14px;
}

.call-time-options label,
.plan-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.call-time-options input,
.plan-options input {
    width: auto;
    accent-color: var(--primary-neon);
}

.custom-call-time {
    display: none;
    margin-top: 16px;
}

.custom-call-time.is-visible {
    display: block;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.contact {
    padding-bottom: 144px;
}

.full-width {
    width: 100%;
}

/* --- FOOTER --- */

footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
    background: #07101a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 72px;
}

.footer-about .logo {
    margin-bottom: 15px;
    justify-content: center;
}

.footer-about p,
.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-about {
    text-align: center;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a,
.footer-legal a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-neon);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 38px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* --- SUCCESS MODAL --- */

.success-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 300;
}

.success-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 7, 12, 0.72);
    backdrop-filter: blur(8px);
}

.success-modal__dialog {
    position: relative;
    width: min(460px, 100%);
    padding: 34px 28px 28px;
    border-radius: 28px;
    border: 1px solid rgba(0, 210, 255, 0.22);
    background: linear-gradient(180deg, rgba(10, 19, 31, 0.98), rgba(6, 12, 21, 0.98));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    text-align: center;
    z-index: 1;
}

.success-modal__dialog::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.08), transparent 35%);
    pointer-events: none;
}

.success-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #d9f8ff;
    font-size: 1.35rem;
    cursor: pointer;
}

.success-modal__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 14px;
    filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.2));
}

.success-modal__eyebrow {
    margin-bottom: 8px;
    color: #90eefe;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.success-modal h3 {
    margin-bottom: 12px;
    font-size: 1.7rem;
    line-height: 1.15;
}

.success-modal p:last-of-type {
    color: var(--text-soft);
    font-size: 0.96rem;
    max-width: 340px;
    margin: 0 auto;
}

.success-modal__button {
    margin: 24px auto 0;
    min-width: 150px;
}

/* --- ANIMACIONES --- */

@keyframes buttonFloatPrimary {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes buttonFloatSecondary {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@keyframes buttonSweep {
    0% {
        transform: translateX(-140%) rotate(22deg);
    }
    100% {
        transform: translateX(360%) rotate(22deg);
    }
}

@keyframes navReveal {
    0% {
        opacity: 0;
        transform: translateY(-14px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(77, 255, 107, 0.36);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(77, 255, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(77, 255, 107, 0);
    }
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes globeTextureDrift {
    from {
        background-position: 0 50%;
    }
    to {
        background-position: -1200px 50%;
    }
}

@keyframes globeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes earthSpin {
    from {
        background-position: 0 50%;
    }
    to {
        background-position: -1200px 50%;
    }
}

@keyframes globeTilt {
    0%,
    100% {
        transform: rotateX(14deg) rotateY(-12deg) rotateZ(-14deg);
    }
    50% {
        transform: rotateX(10deg) rotateY(-2deg) rotateZ(-10deg);
    }
}

@keyframes glowBreath {
    0%,
    100% {
        opacity: 0.42;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.04);
    }
}

@keyframes cityFlicker {
    0%,
    100% {
        opacity: 0.82;
    }
    45% {
        opacity: 1;
    }
    60% {
        opacity: 0.72;
    }
}

.fade-in-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-scale {
    opacity: 0;
    filter: blur(18px);
    will-change: opacity, transform;
    transition:
        opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    position: relative;
}

.scroll-reveal {
    transform: translate3d(0, 86px, 0) scale(0.92);
}

.scroll-reveal-left {
    transform: translate3d(-96px, 34px, 0) scale(0.9) rotate(-4deg);
}

.scroll-reveal-right {
    transform: translate3d(96px, 34px, 0) scale(0.9) rotate(4deg);
}

.scroll-reveal-scale {
    transform: translate3d(0, 72px, 0) scale(0.82) rotateX(10deg);
    transform-origin: center bottom;
}

.scroll-reveal::after,
.scroll-reveal-left::after,
.scroll-reveal-right::after,
.scroll-reveal-scale::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.26), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: scale(0.82);
    filter: blur(22px);
    pointer-events: none;
    transition:
        opacity 0.75s ease,
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.is-visible,
.scroll-reveal-left.is-visible,
.scroll-reveal-right.is-visible,
.scroll-reveal-scale.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.scroll-reveal.is-visible::after,
.scroll-reveal-left.is-visible::after,
.scroll-reveal-right.is-visible::after,
.scroll-reveal-scale.is-visible::after {
    opacity: 0.95;
    transform: scale(1.06);
    animation: revealFlash 1.1s ease forwards;
}

.stats-grid .scroll-reveal:nth-child(2),
.plans-grid .scroll-reveal-scale:nth-child(2),
.grid-cards .scroll-reveal-scale:nth-child(2) {
    --reveal-delay: 180ms;
}

.stats-grid .scroll-reveal:nth-child(3),
.plans-grid .scroll-reveal-scale:nth-child(3),
.grid-cards .scroll-reveal-scale:nth-child(3) {
    --reveal-delay: 340ms;
}

.section-title.is-visible h2,
.value-text.is-visible h2,
.contact-box.is-visible h2 {
    animation: revealTitlePulse 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-grid .stat-item.is-visible,
.plans-grid .plan-card.is-visible,
.grid-cards .card.is-visible,
.contact-box.is-visible {
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        0 0 34px rgba(0, 210, 255, 0.12);
}

.stats-grid .stat-item.is-visible h2 {
    animation: statPop 0.95s cubic-bezier(0.2, 1, 0.22, 1);
}

.stats-grid .stat-item.scroll-reveal {
    transform: translate3d(0, 54px, 0) scale(0.92);
}

.stats-grid .stat-item.scroll-reveal.is-visible {
    transform: translate3d(0, -22px, 0) scale(1);
}

@keyframes revealFlash {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }
    35% {
        opacity: 0.9;
        transform: scale(1.08);
    }
    100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

@keyframes revealTitlePulse {
    0% {
        transform: scale(0.9);
        filter: blur(8px);
        text-shadow: 0 0 0 rgba(0, 210, 255, 0);
    }
    55% {
        transform: scale(1.04);
        filter: blur(0);
        text-shadow: 0 0 28px rgba(0, 210, 255, 0.22);
    }
    100% {
        transform: scale(1);
        filter: blur(0);
        text-shadow: 0 0 0 rgba(0, 210, 255, 0);
    }
}

@keyframes statPop {
    0% {
        transform: translateY(22px) scale(0.7);
        opacity: 0;
    }
    60% {
        transform: translateY(-4px) scale(1.08);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right,
    .scroll-reveal-scale,
    .fade-in-card,
    .nav-links li,
    .btn-primary,
    .btn-text {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
        animation: none;
    }

    .scroll-reveal::after,
    .scroll-reveal-left::after,
    .scroll-reveal-right::after,
    .scroll-reveal-scale::after {
        display: none;
    }
}

/* --- RESPONSIVE --- */

@media (max-width: 992px) {
    .hero h1,
    .section-title h2,
    .contact-box h2 {
        font-size: 2.5rem;
    }

    .value-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

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

    .grid-cards {
        grid-template-columns: repeat(2, minmax(0, 300px));
    }

    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 290px));
    }

    .global-shell {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .global-copy h2,
    .global-copy p {
        max-width: none;
    }

    .global-cta {
        justify-content: center;
    }

}

@media (max-width: 768px) {
    header .nav-links {
        display: none;
    }

    section,
    footer {
        padding: 92px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 140px;
    }

    .hero h1 {
        font-size: 2.15rem;
    }

    .hero-btns,
    .value-highlights,
    .footer-bottom,
    .footer-legal {
        flex-direction: column;
        align-items: stretch;
    }

    .grid-cards,
    .stats-grid,
    .footer-grid {
        gap: 28px;
    }

    .grid-cards {
        grid-template-columns: minmax(0, 320px);
        justify-content: center;
    }

    .card {
        min-height: 320px;
    }

    .card-image-placeholder {
        height: 320px;
    }

    .card-content {
        transform: translateY(0);
    }

    .card-tags,
    .card p,
    .card-content::after,
    .card-link {
        opacity: 1;
        transform: translateY(0);
    }

    .card h3 {
        margin-bottom: 10px;
    }

    .plans-grid {
        grid-template-columns: minmax(0, 320px);
    }

    .featured-plan {
        transform: none;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-text {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 28px 20px;
    }

    .global-shell {
        width: calc(100vw - 40px);
        padding: 34px 20px;
        border-radius: 28px;
    }

    .global-copy h2 {
        font-size: 2.3rem;
    }

    .global-visual {
        min-height: 420px;
    }

    .globe {
        width: min(340px, 88vw);
    }

    .success-modal__dialog {
        padding: 30px 20px 22px;
    }

    .btn-primary,
    .btn-text {
        animation: none;
    }

    .container {
        padding: 0 20px;
    }

    section.container,
    footer.container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* --- SERVICE PAGE --- */

.service-page .grid-overlay {
    opacity: 0.38;
}

.service-main {
    position: relative;
    z-index: 1;
    padding-top: 118px;
}

.service-hero,
.service-band,
.service-flow,
.service-proof {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 32px 0 96px;
    position: relative;
}

.service-hero {
    padding-top: 40px;
}

.service-hero__grid,
.service-band__grid,
.service-proof__grid {
    width: min(1160px, calc(100vw - 64px));
    margin: 0 auto;
}

.service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.service-eyebrow,
.service-panel__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #d8f6ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-eyebrow::before,
.service-panel__label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-neon);
    box-shadow: 0 0 14px var(--primary-glow);
}

.service-hero__copy h1 {
    margin: 22px 0 18px;
    max-width: 12ch;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.service-hero__copy p {
    max-width: 620px;
    color: var(--text-soft);
    font-size: 1rem;
}

.service-hero__actions {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero__visual {
    position: relative;
}

.service-screen,
.service-panel,
.service-proof__card,
.service-proof__cta {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(16, 29, 43, 0.96), rgba(11, 22, 35, 0.96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.service-screen {
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.service-screen::before,
.service-proof__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(100, 230, 255, 0.08), transparent 35%);
    pointer-events: none;
}

.service-screen__top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    color: #d9f8ff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-screen img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-screen__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.service-screen__stats div,
.service-metric {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-screen__stats strong,
.service-metric strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.service-screen__stats span,
.service-metric span {
    color: var(--text-muted);
    font-size: 0.83rem;
    line-height: 1.45;
}

.service-band__grid,
.service-proof__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-panel,
.service-proof__card,
.service-proof__cta {
    padding: 30px;
    position: relative;
}

.service-panel h2,
.service-proof__card h2,
.service-proof__cta h2 {
    margin: 18px 0 14px;
    font-size: 2rem;
    line-height: 1.08;
}

.service-panel p,
.service-proof__card p,
.service-proof__cta p {
    color: var(--text-soft);
}

.service-panel--accent {
    background:
        radial-gradient(circle at top right, rgba(100, 230, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(16, 29, 43, 0.96), rgba(11, 22, 35, 0.96));
}

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

.service-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-soft);
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-neon);
    box-shadow: 0 0 12px var(--primary-glow);
}

.service-steps {
    width: min(1160px, calc(100vw - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-step {
    padding: 26px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-step__number {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(100, 230, 255, 0.1);
    color: #d8f6ff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-step h3 {
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.service-step p {
    color: var(--text-soft);
}

.service-metrics {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 992px) {
    .service-hero__grid,
    .service-band__grid,
    .service-proof__grid,
    .service-steps {
        grid-template-columns: 1fr;
    }

    .service-hero__copy h1 {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .service-main {
        padding-top: 104px;
    }

    .service-hero,
    .service-band,
    .service-flow,
    .service-proof {
        padding-bottom: 72px;
    }

    .service-hero__grid,
    .service-band__grid,
    .service-proof__grid,
    .service-steps {
        width: calc(100vw - 40px);
    }

    .service-hero__grid {
        gap: 24px;
    }

    .service-screen,
    .service-panel,
    .service-proof__card,
    .service-proof__cta,
    .service-step {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .service-screen img {
        height: 260px;
    }

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

    .service-hero__actions {
        flex-direction: column;
    }
}

/* --- SERVICE STORY PAGE --- */

.service-story-page {
    overflow-y: auto;
}

.service-story {
    position: relative;
    z-index: 1;
    padding-top: 96px;
    scroll-snap-type: y mandatory;
}

.story-slide {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.story-card {
    width: min(1160px, calc(100vw - 64px));
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 28px;
    align-items: center;
    padding: 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(100, 230, 255, 0.08), transparent 18%),
        linear-gradient(180deg, rgba(8, 16, 25, 0.96), rgba(4, 10, 18, 0.96));
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.story-card--reverse {
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.story-card--reverse .story-card__media {
    order: 2;
}

.story-card--reverse .story-card__copy {
    order: 1;
}

.story-card__media {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c1928;
}

.story-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 18, 0.04), rgba(4, 10, 18, 0.22));
    pointer-events: none;
}

.story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-card__copy {
    padding: 16px 10px 16px 8px;
}

.story-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #d8f6ff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-card__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-neon);
    box-shadow: 0 0 14px var(--primary-glow);
}

.story-card__copy h1,
.story-card__copy h2 {
    margin: 20px 0 16px;
    font-size: clamp(2.3rem, 4.6vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.story-card__copy p {
    max-width: 30ch;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.story-card__actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.story-card.is-visible .story-card__media img {
    transform: scale(1);
}

@media (max-width: 992px) {
    .story-card,
    .story-card--reverse {
        grid-template-columns: 1fr;
    }

    .story-card--reverse .story-card__media,
    .story-card--reverse .story-card__copy {
        order: initial;
    }

    .story-card__copy p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .service-story {
        padding-top: 92px;
        scroll-snap-type: y proximity;
    }

    .story-slide {
        padding: 24px 0 48px;
        min-height: auto;
    }

    .story-card {
        width: calc(100vw - 40px);
        padding: 16px;
        border-radius: 24px;
    }

    .story-card__media {
        min-height: 320px;
        border-radius: 20px;
    }

    .story-card__copy {
        padding: 8px 4px 6px;
    }

    .story-card__actions {
        flex-direction: column;
    }
}

/* --- CUSTOMER ATTENTION LANDING --- */

.customer-attention-page {
    background:
        radial-gradient(circle at 18% 14%, rgba(100, 230, 255, 0.15), transparent 28%),
        radial-gradient(circle at 84% 36%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #07101a 0%, #0d1b2b 46%, #09121c 100%);
}

.customer-attention-main {
    overflow: hidden;
}

.customer-hero {
    padding-bottom: 82px;
}

.customer-hero .service-hero__copy h1 {
    max-width: 13ch;
}

.customer-hero .service-hero__copy p {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 560px;
}

.customer-hero-screen {
    overflow: visible;
}

.customer-hero-screen img {
    height: clamp(360px, 42vw, 520px);
    filter: saturate(1.06) contrast(1.04);
}

.customer-chat-card {
    position: absolute;
    z-index: 3;
    width: min(285px, 54%);
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 10, 18, 0.76);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34), 0 0 28px rgba(100, 230, 255, 0.12);
    backdrop-filter: blur(12px);
}

.customer-chat-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-neon);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.customer-chat-card p {
    color: #eefbff;
    font-size: 0.94rem;
    line-height: 1.45;
}

.customer-chat-card--one {
    left: -18px;
    bottom: 24%;
}

.customer-chat-card--two {
    right: -22px;
    bottom: 8%;
}

.customer-impact,
.customer-split,
.customer-flow,
.customer-proof {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
}

.customer-impact {
    padding: 44px 0 104px;
}

.customer-impact-grid {
    width: min(1160px, calc(100vw - 64px));
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.customer-impact-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(100, 230, 255, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(16, 29, 43, 0.92), rgba(11, 22, 35, 0.94));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.customer-impact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.customer-impact-card:hover::before {
    opacity: 1;
}

.customer-impact-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    aspect-ratio: 1;
    border-radius: 16px;
    background: rgba(100, 230, 255, 0.1);
    color: #d8f6ff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.customer-impact-card h3 {
    margin: 24px 0 12px;
    font-size: 1.45rem;
    line-height: 1.12;
}

.customer-impact-card p {
    max-width: 29ch;
    color: var(--text-soft);
    line-height: 1.62;
}

.customer-split .service-panel p,
.customer-proof .service-proof__card p,
.customer-proof .service-proof__cta p {
    max-width: 54ch;
    line-height: 1.68;
}

.customer-flow .service-step p {
    max-width: 28ch;
    line-height: 1.62;
}

.customer-image-panel {
    min-height: 540px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.customer-image-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.customer-image-panel.is-visible img {
    transform: scale(1);
}

.customer-proof .service-proof__cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(100, 230, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(8, 16, 25, 0.98), rgba(4, 10, 18, 0.98));
}

@media (max-width: 992px) {
    .customer-impact-grid {
        grid-template-columns: 1fr;
    }

    .customer-image-panel {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .customer-hero .service-hero__copy h1 {
        max-width: none;
    }

    .customer-chat-card {
        width: min(250px, 76%);
        padding: 14px;
    }

    .customer-chat-card--one {
        left: 10px;
        bottom: 25%;
    }

    .customer-chat-card--two {
        right: 10px;
        bottom: 8%;
    }

    .customer-impact-grid {
        width: calc(100vw - 40px);
    }

    .customer-impact-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .customer-image-panel {
        min-height: 300px;
        border-radius: 22px;
    }
}

/* --- SALES AUTOMATION LANDING --- */

.sales-automation-page {
    background:
        radial-gradient(circle at 17% 16%, rgba(100, 230, 255, 0.14), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #07101a 0%, #0d1c2c 48%, #09121c 100%);
}

.sales-automation-main {
    overflow: hidden;
}

.sales-hero .service-hero__copy h1 {
    max-width: 12ch;
}

.sales-hero .service-hero__copy p {
    max-width: 520px;
    font-size: 1.08rem;
    line-height: 1.68;
}

.sales-hero-visual {
    position: relative;
    min-height: clamp(430px, 48vw, 610px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0c1928;
    box-shadow: 0 26px 78px rgba(0, 0, 0, 0.34);
}

.sales-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(7, 16, 26, 0.54), transparent 42%),
        linear-gradient(180deg, transparent 52%, rgba(7, 16, 26, 0.62));
    pointer-events: none;
}

.sales-hero-visual::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: -40%;
    top: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: skewX(-16deg);
    animation: salesImageSweep 5.8s ease-in-out infinite;
    pointer-events: none;
}

.sales-hero-visual img,
.sales-image-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sales-hero-visual img {
    position: absolute;
    inset: 0;
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.04);
}

.sales-orbit {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(4, 10, 18, 0.72);
    color: #eefbff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 24px rgba(100, 230, 255, 0.14);
    backdrop-filter: blur(12px);
    animation: salesFloat 4.5s ease-in-out infinite;
}

.sales-orbit--one {
    left: 24px;
    top: 24px;
}

.sales-orbit--two {
    right: 22px;
    top: 46%;
    animation-delay: 0.8s;
}

.sales-orbit--three {
    left: 36px;
    bottom: 30px;
    animation-delay: 1.35s;
}

.sales-benefits,
.sales-calendar-section,
.sales-pipeline-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
}

.sales-benefits {
    padding: 42px 0 104px;
}

.sales-benefit-grid,
.sales-calendar-grid,
.sales-pipeline {
    width: min(1160px, calc(100vw - 64px));
    margin: 42px auto 0;
}

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

.sales-benefit-card,
.sales-calendar-card,
.sales-flow-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(100, 230, 255, 0.11), transparent 26%),
        linear-gradient(180deg, rgba(16, 29, 43, 0.92), rgba(11, 22, 35, 0.94));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.sales-benefit-card {
    min-height: 190px;
    padding: 28px;
    border-radius: 26px;
}

.sales-benefit-card::before,
.sales-flow-card::before {
    content: "";
    position: absolute;
    inset: auto 18px 18px 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 230, 255, 0.62), transparent);
    transform: scaleX(0);
    transition: transform 0.45s ease;
}

.sales-benefit-card:hover::before,
.sales-flow-card:hover::before {
    transform: scaleX(1);
}

.sales-benefit-card > span,
.sales-flow-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(100, 230, 255, 0.1);
    color: #d8f6ff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.sales-benefit-card h3,
.sales-flow-card h3 {
    margin: 18px 0 8px;
    font-size: 1.45rem;
    line-height: 1.12;
}

.sales-benefit-card p,
.sales-flow-card p,
.sales-calendar-card p,
.sales-proof p {
    color: var(--text-soft);
    line-height: 1.62;
}

.sales-calendar-section {
    padding: 12px 0 104px;
}

.sales-calendar-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 24px;
    align-items: stretch;
}

.sales-image-panel {
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.sales-image-panel img {
    transform: scale(1.06);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.sales-image-panel.is-visible img {
    transform: scale(1);
}

.sales-calendar-card {
    padding: 32px;
    border-radius: 28px;
}

.sales-calendar-card h2 {
    margin: 18px 0 14px;
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    line-height: 1.02;
}

.sales-calendar-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.sales-calendar-list div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sales-calendar-list strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    aspect-ratio: 1;
    border-radius: 12px;
    background: rgba(100, 230, 255, 0.12);
    color: #d8f6ff;
}

.sales-calendar-list span {
    color: var(--text-soft);
}

.sales-pipeline-section {
    padding: 12px 0 104px;
}

.sales-pipeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sales-pipeline::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(100, 230, 255, 0.7), transparent);
    transform: translateY(-50%);
    animation: salesPipelinePulse 2.8s ease-in-out infinite;
}

.sales-flow-card {
    min-height: 165px;
    padding: 24px;
    border-radius: 24px;
}

.sales-hero-visual.scroll-reveal-right.is-visible::after {
    left: -40%;
    top: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    opacity: 1;
    transform: skewX(-16deg);
    animation: salesImageSweep 5.8s ease-in-out infinite;
}

.sales-proof .service-proof__cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sales-cta {
    background:
        radial-gradient(circle at top right, rgba(100, 230, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(8, 16, 25, 0.98), rgba(4, 10, 18, 0.98));
}

@keyframes salesFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes salesImageSweep {
    0%,
    42% {
        left: -44%;
    }

    62%,
    100% {
        left: 110%;
    }
}

@keyframes salesPipelinePulse {
    0%,
    100% {
        opacity: 0.38;
        filter: blur(0);
    }

    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

@media (max-width: 992px) {
    .sales-benefit-grid,
    .sales-calendar-grid,
    .sales-pipeline {
        grid-template-columns: 1fr;
    }

    .sales-pipeline::before {
        display: none;
    }

    .sales-image-panel {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .sales-hero .service-hero__copy h1 {
        max-width: none;
    }

    .sales-hero-visual {
        min-height: 410px;
        border-radius: 22px;
    }

    .sales-orbit {
        font-size: 0.74rem;
        min-height: 38px;
        padding: 0 12px;
    }

    .sales-benefit-grid,
    .sales-calendar-grid,
    .sales-pipeline {
        width: calc(100vw - 40px);
    }

    .sales-benefit-card,
    .sales-calendar-card,
    .sales-flow-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .sales-image-panel {
        min-height: 300px;
        border-radius: 22px;
    }
}

/* --- ADMIN AUTOMATION LANDING --- */

.admin-automation-page {
    background:
        radial-gradient(circle at 18% 16%, rgba(100, 230, 255, 0.13), transparent 28%),
        radial-gradient(circle at 84% 30%, rgba(255, 255, 255, 0.07), transparent 24%),
        linear-gradient(180deg, #07101a 0%, #0d1b2b 48%, #09121c 100%);
}

.admin-automation-main {
    overflow: hidden;
}

.admin-hero .service-hero__copy h1 {
    max-width: 12ch;
}

.admin-hero .service-hero__copy p {
    max-width: 520px;
    font-size: 1.08rem;
    line-height: 1.68;
}

.admin-hero-visual {
    position: relative;
    min-height: clamp(430px, 48vw, 610px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0c1928;
    box-shadow: 0 26px 78px rgba(0, 0, 0, 0.34);
}

.admin-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(7, 16, 26, 0.5), transparent 46%),
        linear-gradient(180deg, transparent 50%, rgba(7, 16, 26, 0.62));
    pointer-events: none;
}

.admin-hero-visual img,
.admin-image-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.admin-hero-visual img {
    position: absolute;
    inset: 0;
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.04);
}

.admin-note {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(4, 10, 18, 0.72);
    color: #eefbff;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 24px rgba(100, 230, 255, 0.14);
    backdrop-filter: blur(12px);
    animation: salesFloat 4.5s ease-in-out infinite;
}

.admin-note--one {
    left: 24px;
    top: 24px;
}

.admin-note--two {
    right: 22px;
    top: 45%;
    animation-delay: 0.75s;
}

.admin-note--three {
    left: 36px;
    bottom: 30px;
    animation-delay: 1.35s;
}

.admin-benefits,
.admin-split,
.admin-flow-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
}

.admin-benefits {
    padding: 42px 0 104px;
}

.admin-benefit-grid,
.admin-split-grid,
.admin-flow {
    width: min(1160px, calc(100vw - 64px));
    margin: 42px auto 0;
}

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

.admin-benefit-card,
.admin-panel,
.admin-flow-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(100, 230, 255, 0.11), transparent 26%),
        linear-gradient(180deg, rgba(16, 29, 43, 0.92), rgba(11, 22, 35, 0.94));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.admin-benefit-card,
.admin-flow-card {
    min-height: 185px;
    padding: 26px;
    border-radius: 26px;
}

.admin-benefit-card > span,
.admin-flow-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(100, 230, 255, 0.1);
    color: #d8f6ff;
    font-weight: 800;
}

.admin-benefit-card h3,
.admin-flow-card h3 {
    margin: 18px 0 8px;
    font-size: 1.42rem;
    line-height: 1.12;
}

.admin-benefit-card p,
.admin-flow-card p,
.admin-panel p,
.admin-proof p {
    color: var(--text-soft);
    line-height: 1.62;
}

.admin-split {
    padding: 12px 0 104px;
}

.admin-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 24px;
    align-items: stretch;
}

.admin-image-panel {
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.admin-image-panel img {
    transform: scale(1.06);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-image-panel.is-visible img {
    transform: scale(1);
}

.admin-panel {
    padding: 32px;
    border-radius: 28px;
}

.admin-panel h2 {
    margin: 18px 0 14px;
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    line-height: 1.02;
}

.admin-mini-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.admin-mini-list div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #eefbff;
    font-weight: 700;
}

.admin-flow-section {
    padding: 12px 0 104px;
}

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

.admin-flow-card::before {
    content: "";
    position: absolute;
    inset: auto 18px 18px 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 230, 255, 0.62), transparent);
    transform: scaleX(0);
    transition: transform 0.45s ease;
}

.admin-flow-card:hover::before {
    transform: scaleX(1);
}

.admin-proof .service-proof__cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-cta {
    background:
        radial-gradient(circle at top right, rgba(100, 230, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(8, 16, 25, 0.98), rgba(4, 10, 18, 0.98));
}

@media (max-width: 992px) {
    .admin-benefit-grid,
    .admin-split-grid,
    .admin-flow {
        grid-template-columns: 1fr;
    }

    .admin-image-panel {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .admin-hero .service-hero__copy h1 {
        max-width: none;
    }

    .admin-hero-visual {
        min-height: 410px;
        border-radius: 22px;
    }

    .admin-note {
        font-size: 0.74rem;
        min-height: 38px;
        padding: 0 12px;
    }

    .admin-benefit-grid,
    .admin-split-grid,
    .admin-flow {
        width: calc(100vw - 40px);
    }

    .admin-benefit-card,
    .admin-panel,
    .admin-flow-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .admin-image-panel {
        min-height: 300px;
        border-radius: 22px;
    }

    .admin-mini-list {
        grid-template-columns: 1fr;
    }
}

.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    font-family: inherit;
}

.chatbot-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 54px;
    padding: 0 20px 0 12px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #64e6ff, #8ef7c8);
    color: #031017;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 26px rgba(100, 230, 255, 0.22);
}

.chatbot-robot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f4fbff, #bdeef8);
    box-shadow: inset 0 -4px 8px rgba(3, 16, 23, 0.12), 0 8px 18px rgba(3, 16, 23, 0.18);
}

.chatbot-robot::before,
.chatbot-robot::after {
    content: "";
    position: absolute;
    top: 13px;
    width: 5px;
    height: 10px;
    border-radius: 999px;
    background: #4ecde5;
}

.chatbot-robot::before {
    left: -4px;
}

.chatbot-robot::after {
    right: -4px;
}

.chatbot-robot__antenna {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 2px;
    height: 9px;
    background: #eafaff;
    transform: translateX(-50%);
}

.chatbot-robot__antenna::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0b5;
    box-shadow: 0 0 10px rgba(0, 187, 85, 0.55);
    transform: translateX(-50%);
}

.chatbot-robot__face {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 24px;
    height: 16px;
    border-radius: 8px;
    background: #07131b;
}

.chatbot-robot__face span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #64e6ff;
    box-shadow: 0 0 8px rgba(100, 230, 255, 0.9);
}

.chatbot-toggle__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0b5;
    box-shadow: 0 0 0 6px rgba(0, 187, 85, 0.16);
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: min(380px, calc(100vw - 32px));
    max-height: min(650px, calc(100vh - 112px));
    display: grid;
    grid-template-rows: auto minmax(220px, 1fr) auto auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(100, 230, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(16, 29, 43, 0.98), rgba(8, 18, 29, 0.98));
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.44);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.chatbot-widget.is-open .chatbot-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-header__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #8ef7c8;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.chatbot-header h3 {
    margin: 0;
    color: #f2fbff;
    font-size: 1rem;
    line-height: 1.2;
}

.chatbot-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #f2fbff;
    font-size: 1.2rem;
    cursor: pointer;
}

.chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    overflow-y: auto;
}

.chatbot-message {
    max-width: 86%;
    padding: 11px 13px;
    border-radius: 16px;
    color: #eaf8ff;
    font-size: 0.92rem;
    line-height: 1.45;
}

.chatbot-message--bot {
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.chatbot-message--user {
    align-self: flex-end;
    border-bottom-right-radius: 6px;
    background: rgba(100, 230, 255, 0.18);
    color: #f5fcff;
}

.chatbot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 14px;
}

.chatbot-option {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(100, 230, 255, 0.24);
    border-radius: 999px;
    background: rgba(100, 230, 255, 0.08);
    color: #dff9ff;
    font-weight: 700;
    cursor: pointer;
}

.chatbot-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-input-row input {
    min-width: 0;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #f6fbff;
    padding: 0 14px;
    outline: none;
}

.chatbot-input-row input:focus {
    border-color: rgba(100, 230, 255, 0.7);
}

.chatbot-input-row button {
    height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: #64e6ff;
    color: #031017;
    font-weight: 900;
    cursor: pointer;
}

.chatbot-input-row button:disabled,
.chatbot-option:disabled {
    opacity: 0.62;
    cursor: wait;
}

@media (max-width: 560px) {
    .chatbot-widget {
        right: 16px;
        bottom: 16px;
    }

    .chatbot-panel {
        right: -8px;
        bottom: 66px;
        max-height: calc(100vh - 96px);
        border-radius: 18px;
    }

    .chatbot-toggle {
        min-height: 50px;
        padding: 0 16px 0 10px;
    }
}
