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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(120% 95% at 80% 8%, rgba(114, 78, 255, 0.34), rgba(114, 78, 255, 0) 55%),
        radial-gradient(95% 85% at 12% 82%, rgba(27, 172, 255, 0.2), rgba(27, 172, 255, 0) 62%),
        linear-gradient(160deg, #080513 0%, #120b26 45%, #090615 100%);
    background-attachment: fixed;
    color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    animation: bodyGradientShift 22s ease-in-out infinite alternate;
}

body > *:not(.acrylic-ambient) {
    position: relative;
    z-index: 2;
}

.acrylic-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    mix-blend-mode: screen;
}

.orb-a {
    width: 36vw;
    height: 36vw;
    min-width: 300px;
    min-height: 300px;
    background: radial-gradient(circle, rgba(157, 134, 255, 0.75), rgba(157, 134, 255, 0));
    top: -10%;
    left: -8%;
    animation: ambientFloatA 24s ease-in-out infinite;
}

.orb-b {
    width: 30vw;
    height: 30vw;
    min-width: 240px;
    min-height: 240px;
    background: radial-gradient(circle, rgba(58, 174, 255, 0.7), rgba(58, 174, 255, 0));
    top: 42%;
    right: -8%;
    animation: ambientFloatB 30s ease-in-out infinite;
}

.orb-c {
    width: 24vw;
    height: 24vw;
    min-width: 210px;
    min-height: 210px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    bottom: -12%;
    left: 35%;
    animation: ambientFloatC 28s ease-in-out infinite;
}

.ambient-grid {
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(rgba(171, 191, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(171, 191, 255, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at 50% 45%, black 10%, transparent 72%);
    opacity: 0.28;
    animation: ambientGridDrift 34s linear infinite;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(11, 6, 24, 0.5);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    background: rgba(11, 6, 24, 0.85);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-logo {
    position: absolute;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    animation: fadeInDown 0.8s ease 0.15s both, glowTextSubtle 4s ease-in-out infinite;
    text-shadow: 0 0 0px rgba(91, 46, 255, 0);
}

.navbar-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(91, 46, 255, 0.4))
            brightness(1.05);
    animation: fadeInDown 0.8s ease 0.1s both, floatLogoSubtle 5s ease-in-out infinite;
    display: block;
}

.navbar-toggle {
    display: none;
    position: absolute;
    right: 8%;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(198, 216, 255, 0.35);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(96, 73, 255, 0.26), rgba(41, 149, 255, 0.2));
    backdrop-filter: blur(12px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.navbar-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #EAF0FF;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.navbar-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 227, 255, 0.62);
    box-shadow: 0 14px 32px rgba(8, 12, 34, 0.45);
}

.navbar-toggle:focus-visible,
.navbar-links a:focus-visible {
    outline: 2px solid rgba(167, 198, 255, 0.9);
    outline-offset: 2px;
}

.navbar.menu-open .navbar-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.menu-open .navbar-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.menu-open .navbar-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-links {
    display: flex;
    gap: 60px;
    list-style: none;
}

.navbar-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    background: conic-gradient(from 0deg, #FFFFFF, #5B2EFF, #1E90FF, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: fadeInDown 0.8s ease both, gradientRotate 8s linear infinite;
}

.navbar-links li:nth-child(1) a { animation-delay: 0.2s; }
.navbar-links li:nth-child(2) a { animation-delay: 0.3s; }
.navbar-links li:nth-child(3) a { animation-delay: 0.4s; }
.navbar-links li:nth-child(4) a { animation-delay: 0.5s; }

.navbar-links a:hover {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 12px rgba(91, 46, 255, 0.6));
}

/* ==================== HERO SECTION ==================== */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(91, 46, 255, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    animation: floatGlow 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(30, 10, 80, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    bottom: -100px;
    left: -100px;
    animation: floatGlow 8s ease-in-out infinite reverse;
}

/* ==================== COLUMNA IZQUIERDA ==================== */
.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 10;
    max-width: 500px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    animation: fadeUpBlur 1s ease 0.2s both;
}

.hero-title {
    font-size: 96px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
    max-width: 100%;
    animation: fadeUpBlur 1s ease 0.3s both;
    text-shadow: 0 20px 50px rgba(91, 46, 255, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: #B8B8C7;
    line-height: 1.6;
    max-width: 420px;
    font-weight: 400;
    animation: fadeUpBlur 1s ease 0.4s both;
}

.cta-button {
    align-self: flex-start;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
    animation: fadeUpBlur 1s ease 0.5s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: -1;
    border-radius: 12px;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.cta-button:hover::before {
    transform: scaleX(1);
}

.cta-button:hover {
    color: #0B0618;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==================== COLUMNA DERECHA ==================== */
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 15;
}

.geo-shell {
    position: relative;
    width: 470px;
    aspect-ratio: 1 / 1;
    border-radius: 34px;
    padding: 22px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(190, 213, 255, 0.26);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 34%, rgba(83, 46, 224, 0.15)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 38%);
    box-shadow:
        0 30px 68px rgba(8, 10, 32, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -20px 34px rgba(31, 21, 70, 0.32);
    overflow: hidden;
    animation: blurInObject 1.2s ease 0.4s both;
}

.geo-shell::before,
.geo-shell::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.geo-shell::before {
    inset: -26%;
    background:
        radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 40%),
        radial-gradient(circle at 78% 72%, rgba(89, 56, 255, 0.38), rgba(89, 56, 255, 0) 42%);
    filter: blur(32px);
    opacity: 0.78;
}

.geo-shell::after {
    inset: 4%;
    border-radius: 24px;
    border: 1px solid rgba(193, 212, 255, 0.2);
    box-shadow: inset 0 0 26px rgba(182, 206, 255, 0.12);
}

.geo-layer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 58%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
}

.geo-shape {
    position: absolute;
    display: block;
    border: 1px solid rgba(218, 233, 255, 0.34);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 22px rgba(9, 13, 42, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    will-change: transform, opacity;
}

.geo-shape.circle {
    border-radius: 50%;
}

.geo-shape.diamond {
    border-radius: 16px;
    transform: rotate(45deg);
}

.geo-shape.ring {
    border-radius: 50%;
    background: transparent;
    border-width: 2px;
    box-shadow: 0 0 16px rgba(166, 198, 255, 0.24);
}

.geo-shape.triangle {
    width: 84px;
    height: 84px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

.geo-shape.bar {
    border-radius: 18px;
}

.g1 { width: 92px; height: 92px; left: 7%; top: 12%; animation: geoDriftA 17s ease-in-out infinite; }
.g2 { width: 72px; height: 72px; left: 62%; top: 14%; animation: geoDriftB 16s ease-in-out infinite; }
.g3 { width: 116px; height: 116px; left: 38%; top: 26%; animation: geoDriftC 19s ease-in-out infinite; }
.g4 { left: 16%; top: 58%; animation: geoDriftD 18s ease-in-out infinite; }
.g5 { width: 130px; height: 34px; left: 54%; top: 56%; animation: geoDriftE 21s ease-in-out infinite; }
.g6 { width: 54px; height: 54px; left: 76%; top: 36%; animation: geoDriftF 15s ease-in-out infinite; }
.g7 { width: 64px; height: 64px; left: 24%; top: 74%; animation: geoDriftB 20s ease-in-out infinite reverse; }
.g8 { width: 88px; height: 88px; left: 68%; top: 72%; animation: geoDriftA 22s ease-in-out infinite reverse; }

/* ==================== FIREFLIES ==================== */
.fireflies-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
}

.firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(91, 46, 255, 1), rgba(30, 144, 255, 0.5));
    box-shadow: 0 0 8px rgba(91, 46, 255, 0.8),
               0 0 16px rgba(30, 144, 255, 0.4);
    filter: blur(0.3px);
}

.firefly:nth-child(1) { animation: fireflyFloat 15s infinite ease-in-out; animation-delay: 0s; top: 20%; left: 10%; }
.firefly:nth-child(2) { animation: fireflyFloat 18s infinite ease-in-out; animation-delay: 2s; top: 40%; right: 15%; }
.firefly:nth-child(3) { animation: fireflyFloat 20s infinite ease-in-out; animation-delay: 4s; top: 60%; left: 20%; }
.firefly:nth-child(4) { animation: fireflyFloat 16s infinite ease-in-out; animation-delay: 1s; bottom: 20%; right: 25%; }
.firefly:nth-child(5) { animation: fireflyFloat 19s infinite ease-in-out; animation-delay: 3s; top: 30%; right: 5%; }
.firefly:nth-child(6) { animation: fireflyFloat 17s infinite ease-in-out; animation-delay: 5s; bottom: 30%; left: 5%; }
.firefly:nth-child(7) { animation: fireflyFloat 21s infinite ease-in-out; animation-delay: 2.5s; top: 50%; right: 40%; }
.firefly:nth-child(8) { animation: fireflyFloat 18s infinite ease-in-out; animation-delay: 3.5s; top: 70%; left: 40%; }

/* ==================== ANIMACIONES ==================== */
@keyframes fadeUpBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

@keyframes blurInObject {
    from {
        opacity: 0;
        filter: blur(20px);
        transform: scale(0.8) rotateY(-15deg) rotateX(10deg);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1) rotateY(-15deg) rotateX(10deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

@keyframes bodyGradientShift {
    0% {
        background-position: 0% 0%, 100% 100%, 0% 0%;
    }
    100% {
        background-position: 8% 6%, 90% 94%, 0% 0%;
    }
}

@keyframes ambientFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(30px, -26px, 0) scale(1.06);
    }
}

@keyframes ambientFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-34px, 20px, 0) scale(1.08);
    }
}

@keyframes ambientFloatC {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(16px, -30px, 0) scale(1.04);
    }
}

@keyframes ambientGridDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-40px, -24px, 0);
    }
}

@keyframes geoDriftA {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0.88;
    }
    35% {
        transform: translate3d(18px, -14px, 0) rotate(24deg);
        opacity: 1;
    }
    70% {
        transform: translate3d(-10px, 18px, 0) rotate(-18deg);
        opacity: 0.76;
    }
}

@keyframes geoDriftB {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(45deg);
        opacity: 0.84;
    }
    50% {
        transform: translate3d(-20px, 16px, 0) rotate(86deg);
        opacity: 1;
    }
}

@keyframes geoDriftC {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(24px, -18px, 0) scale(1.08);
    }
}

@keyframes geoDriftD {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(14px, -20px, 0) rotate(18deg);
    }
}

@keyframes geoDriftE {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
    }
    40% {
        transform: translate3d(-16px, -14px, 0) rotate(8deg);
    }
    75% {
        transform: translate3d(10px, 14px, 0) rotate(-4deg);
    }
}

@keyframes geoDriftF {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.8;
    }
    50% {
        transform: translate3d(20px, -8px, 0);
        opacity: 1;
    }
}

@keyframes floatObject {
    0%, 100% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    }
    50% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(-15px);
    }
}

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

@keyframes glowTextSubtle {
    0%, 100% {
        text-shadow: 0 0 0px rgba(91, 46, 255, 0);
    }
    50% {
        text-shadow: 0 0 8px rgba(91, 46, 255, 0.3);
    }
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(20px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(20px, -20px);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px #5B2EFF, 0 0 20px rgba(91, 46, 255, 0.6);
    }
    50% {
        opacity: 0.6;
        text-shadow: 0 0 5px #5B2EFF, 0 0 10px rgba(91, 46, 255, 0.3);
    }
}

@keyframes gradientRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@keyframes fireflyFloat {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        opacity: 1;
        transform: translateX(50px) translateY(-40px);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-30px) translateY(-60px);
    }
    75% {
        opacity: 1;
        transform: translateX(-60px) translateY(-20px);
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
}

/* ==================== SECCION BIENVENIDA ==================== */
.welcome-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 8% 80px;
    background: linear-gradient(180deg, rgba(11, 6, 24, 0.8) 0%, rgba(30, 15, 60, 0.6) 50%, rgba(11, 6, 24, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(91, 46, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    animation: pulseGlow 5s ease-in-out infinite;
}

.welcome-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(50px);
    animation: fadeUpBlur 1.2s ease 0.3s forwards;
}

.welcome-section.visible .welcome-container {
    animation: fadeUpBlur 1.2s ease 0.3s forwards;
}

.welcome-text {
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 30px;
    position: relative;
    background: linear-gradient(90deg, #5B2EFF, #1E90FF, #00F5FF, #1E90FF, #5B2EFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 100%;
    animation: textFloat 5s ease-in-out infinite, gradientFlow 5s ease-in-out infinite;
    padding: 20px 40px;
    border-radius: 20px;
    filter: drop-shadow(0 0 15px rgba(91, 46, 255, 0.3));
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    body,
    .ambient-orb,
    .ambient-grid,
    .geo-shell,
    .geo-shape {
        animation: none !important;
    }

    .fireflies-container,
    .acrylic-ambient {
        display: none !important;
    }
}

@keyframes featureCardSheen {
    0% {
        opacity: 0;
        transform: translateX(-120%) rotate(8deg);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(135%) rotate(8deg);
    }
}

.welcome-description {
    font-size: 18px;
    color: #B8B8C7;
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeUpBlur 1.2s ease 0.5s both;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeUpBlur 1.2s ease 0.7s both;
}

.feature-card {
    padding: 30px;
    background: rgba(91, 46, 255, 0.08);
    border: 1px solid rgba(91, 46, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 33%,
        rgba(255, 255, 255, 0.28) 49%,
        rgba(255, 255, 255, 0) 64%
    );
    opacity: 0;
    transform: translateX(-120%) rotate(8deg);
    filter: blur(1px);
    pointer-events: none;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 55%),
        radial-gradient(circle at 85% 80%, rgba(91, 46, 255, 0.22), rgba(91, 46, 255, 0) 62%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    border-color: rgba(91, 46, 255, 0.6);
    background: linear-gradient(150deg, rgba(91, 46, 255, 0.2), rgba(91, 46, 255, 0.08));
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 35px rgba(91, 46, 255, 0.23);
}

.feature-card:hover::before {
    opacity: 1;
    animation: featureCardSheen 1.05s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.22));
}

.feature-card:hover .feature-title {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    animation: floatObject 3s ease-in-out infinite;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 14px;
    color: #B8B8C7;
    line-height: 1.6;
}

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5B2EFF, transparent);
    margin: 40px auto;
    animation: fadeUpBlur 1.2s ease 0.4s both;
}

[data-scroll] {
    will-change: auto;
}

/* ==================== SECCIONES DE DATOS ==================== */
.welcome-section,
.data-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.data-section {
    width: 100%;
    padding: 90px 8%;
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(120% 80% at 80% 0%, rgba(106, 78, 255, 0.16), transparent 62%),
        radial-gradient(90% 70% at 10% 100%, rgba(30, 144, 255, 0.11), transparent 68%),
        linear-gradient(180deg, rgba(11, 6, 24, 0.88) 0%, rgba(17, 10, 33, 0.9) 52%, rgba(12, 7, 25, 0.9) 100%);
}

.data-section::before,
.data-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.data-section::before {
    top: -1px;
    height: 70px;
    background: linear-gradient(180deg, rgba(11, 6, 24, 0.55) 0%, rgba(11, 6, 24, 0) 100%);
    filter: blur(8px);
}

.data-section::after {
    bottom: -1px;
    height: 80px;
    background: linear-gradient(0deg, rgba(11, 6, 24, 0.6) 0%, rgba(11, 6, 24, 0) 100%);
    filter: blur(10px);
}

.data-section + .data-section {
    margin-top: -1px;
}

.contact-section {
    padding-bottom: 110px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    color: #B8B8C7;
    margin-bottom: 30px;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.data-card {
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(91, 46, 255, 0.35);
    background: linear-gradient(145deg, rgba(91, 46, 255, 0.1), rgba(12, 18, 45, 0.22));
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(6, 7, 24, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.data-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.data-card p {
    color: #D4D4DF;
    margin-bottom: 12px;
}

.pill {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 6px 12px;
}

.empty-state {
    color: #B8B8C7;
}

.services-shell {
    position: relative;
    border: 1px solid rgba(124, 96, 255, 0.35);
    border-radius: 22px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(91, 46, 255, 0.16), rgba(30, 144, 255, 0.1)),
        linear-gradient(180deg, rgba(15, 16, 40, 0.48), rgba(11, 10, 31, 0.28));
    backdrop-filter: blur(14px);
    overflow: hidden;
    box-shadow:
        0 28px 60px rgba(6, 8, 28, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.services-shell::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    top: -170px;
    right: -110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 46, 255, 0.35), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.services-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    opacity: 0.6;
    pointer-events: none;
}

.services-shell.focused {
    animation: shellPulse 1.2s ease;
}

.services-tabs {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.service-tab {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
    color: #D8D8E8;
    border-radius: 14px;
    padding: 13px 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    display: grid;
    gap: 3px;
}

.service-tab span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #B5B6CD;
}

.service-tab strong {
    font-size: 14px;
    line-height: 1.35;
}

.service-tab:hover {
    border-color: rgba(126, 94, 255, 0.5);
    background: linear-gradient(135deg, rgba(126, 94, 255, 0.18), rgba(126, 94, 255, 0.06));
    transform: translateY(-2px);
}

.service-tab.active {
    border-color: rgba(126, 94, 255, 0.85);
    background: linear-gradient(135deg, rgba(126, 94, 255, 0.32), rgba(56, 130, 255, 0.22));
    box-shadow: 0 10px 24px rgba(44, 24, 121, 0.45);
    color: #FFFFFF;
}

.services-panel {
    position: relative;
    z-index: 2;
    min-height: 300px;
}

.service-stage {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(160deg, rgba(17, 22, 52, 0.55), rgba(6, 8, 26, 0.38)),
        radial-gradient(circle at 85% -10%, rgba(137, 106, 255, 0.2), transparent 65%);
    backdrop-filter: blur(18px);
    padding: 24px;
    box-shadow:
        0 22px 55px rgba(5, 8, 26, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: servicePanelFade 0.34s ease both;
}

.service-stage-head {
    margin-bottom: 12px;
}

.service-kicker {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #AEB0CA;
    margin-bottom: 8px;
}

.service-stage h3 {
    font-size: 30px;
    line-height: 1.1;
}

.service-desc {
    color: #D6D7E5;
    margin-bottom: 20px;
}

.service-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.meta-item {
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.meta-item span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A8ABC7;
    margin-bottom: 6px;
}

.meta-item strong {
    font-size: 14px;
    color: #FFFFFF;
}

.service-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.module-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: #DFE0EF;
}

/* ==================== PRECIOS ==================== */
.pricing-section .section-subtitle {
    max-width: 720px;
}

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

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(198, 214, 255, 0.22);
    background:
        radial-gradient(circle at 86% -18%, rgba(133, 103, 255, 0.2), rgba(133, 103, 255, 0) 58%),
        linear-gradient(170deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03) 35%, rgba(15, 16, 42, 0.46));
    backdrop-filter: blur(14px);
    box-shadow:
        0 18px 42px rgba(8, 10, 30, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(213, 225, 255, 0.45);
    box-shadow:
        0 24px 46px rgba(7, 10, 34, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    border-color: rgba(129, 150, 255, 0.72);
    background:
        radial-gradient(circle at 86% -18%, rgba(133, 103, 255, 0.42), rgba(133, 103, 255, 0) 60%),
        linear-gradient(170deg, rgba(126, 96, 255, 0.28), rgba(255, 255, 255, 0.05) 34%, rgba(15, 16, 42, 0.52));
    transform: translateY(-8px);
}

.pricing-card.business {
    border-color: rgba(83, 176, 255, 0.5);
}

.pricing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    border: 1px solid rgba(215, 226, 255, 0.25);
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #E8EEFF;
    background: rgba(255, 255, 255, 0.09);
}

.pricing-plan {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #AEB8D4;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-card.free .pricing-price {
    color: #EAF1FF;
}

.pricing-card.business .pricing-price {
    background: linear-gradient(110deg, #9fd2ff, #d6c7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .currency {
    font-size: 20px;
    vertical-align: super;
    margin-right: 4px;
}

.pricing-price .period {
    font-size: 12px;
    color: #AAB4D0;
    margin-left: 4px;
}

.pricing-caption {
    font-size: 14px;
    color: #D8DCED;
    margin-bottom: 14px;
    min-height: 40px;
}

.pricing-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.pricing-list li {
    font-size: 13px;
    color: #E5E9F8;
    position: relative;
    padding-left: 16px;
}

.pricing-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #89a2ff, #5dc1ff);
    box-shadow: 0 0 10px rgba(119, 146, 255, 0.55);
}

.pricing-cta {
    margin-top: auto;
    border: 1px solid rgba(198, 214, 255, 0.32);
    border-radius: 11px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #F3F6FF;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pricing-cta:hover {
    border-color: rgba(224, 234, 255, 0.52);
    background: linear-gradient(145deg, rgba(118, 94, 255, 0.34), rgba(41, 145, 255, 0.24));
}

@keyframes servicePanelFade {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.99);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes shellPulse {
    0% {
        box-shadow: 0 0 0 rgba(124, 96, 255, 0);
    }
    40% {
        box-shadow: 0 0 0 6px rgba(124, 96, 255, 0.22);
    }
    100% {
        box-shadow: 0 0 0 rgba(124, 96, 255, 0);
    }
}

.contact-form {
    display: grid;
    gap: 14px;
    max-width: 640px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(91, 46, 255, 0.35);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #FFFFFF;
    padding: 14px 16px;
    font: inherit;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-status {
    min-height: 24px;
    color: #7DFFB3;
}

.contact-status.error {
    color: #FF7D7D;
}

/* ==================== SUPPORT IA ==================== */
.support-widget {
    position: fixed !important;
    right: 10px;
    bottom: 14px;
    z-index: 9999 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    transform: none !important;
    pointer-events: none;
}

.support-toggle {
    border: 1px solid rgba(189, 205, 255, 0.35);
    border-radius: 999px;
    padding: 12px 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(100, 75, 255, 0.3), rgba(43, 151, 255, 0.22));
    color: #FFFFFF;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.6px;
    font-weight: 600;
    cursor: pointer;
    background-color: rgba(22, 20, 56, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow:
        0 14px 30px rgba(8, 10, 32, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    pointer-events: auto;
}

.support-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 224, 255, 0.6);
    box-shadow:
        0 18px 36px rgba(8, 10, 32, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.support-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: min(360px, calc(100vw - 32px));
    max-height: min(76vh, 620px);
    border-radius: 20px;
    border: 1px solid rgba(194, 214, 255, 0.3);
    background:
        radial-gradient(circle at 85% -15%, rgba(131, 102, 255, 0.34), rgba(131, 102, 255, 0) 58%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 35%, rgba(20, 15, 55, 0.62));
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow:
        0 22px 58px rgba(6, 8, 24, 0.56),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.support-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(217, 230, 255, 0.14);
}

.support-kicker {
    font-size: 10px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #B7BFDC;
}

.support-head h3 {
    font-size: 18px;
    line-height: 1.1;
}

.support-close {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(217, 230, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.support-tier {
    margin: 10px 14px 2px;
    font-size: 11px;
    color: #cfd8f5;
    letter-spacing: 0.5px;
}

.support-messages {
    padding: 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
}

.support-msg {
    max-width: 90%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.support-msg.user {
    margin-left: auto;
    border: 1px solid rgba(167, 186, 255, 0.28);
    background: linear-gradient(145deg, rgba(109, 86, 255, 0.28), rgba(39, 133, 255, 0.2));
}

.support-msg.bot {
    margin-right: auto;
    border: 1px solid rgba(223, 233, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
    color: #E9EBF7;
}

.support-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 14px 12px;
}

.support-chip {
    border: 1px solid rgba(204, 220, 255, 0.24);
    border-radius: 999px;
    padding: 6px 10px;
    font: inherit;
    font-size: 11px;
    color: #DEE4FF;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 14px 14px;
}

.support-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.support-input-row input {
    border: 1px solid rgba(198, 215, 255, 0.24);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font: inherit;
    font-size: 13px;
    padding: 10px 11px;
}

.support-input-row button {
    border: 1px solid rgba(185, 206, 255, 0.26);
    border-radius: 10px;
    background: linear-gradient(140deg, rgba(121, 94, 255, 0.34), rgba(45, 143, 255, 0.28));
    color: #FFFFFF;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 14px;
    cursor: pointer;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 72px;
    }

    .geo-shell {
        width: 380px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .fireflies-container,
    .acrylic-ambient {
        display: none;
    }

    .geo-shell::before,
    .geo-shell::after {
        display: none;
    }

    .geo-shell,
    .feature-card,
    .data-card,
    .service-stage,
    .pricing-card,
    .support-panel {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .navbar {
        padding: 0 5%;
    }

    .navbar-logo {
        left: 5%;
    }

    .navbar-toggle {
        display: inline-flex;
        right: 5%;
    }

    .navbar-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 5%;
        right: 5%;
        display: grid;
        gap: 6px;
        padding: 14px;
        border-radius: 16px;
        border: 1px solid rgba(201, 218, 255, 0.26);
        background:
            radial-gradient(circle at 88% -16%, rgba(130, 101, 255, 0.32), rgba(130, 101, 255, 0) 52%),
            linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 40%, rgba(18, 14, 52, 0.74));
        backdrop-filter: blur(15px);
        box-shadow: 0 22px 48px rgba(6, 8, 24, 0.56);
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top right;
        pointer-events: none;
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .navbar.menu-open .navbar-links {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .navbar-links a {
        display: block;
        padding: 10px 8px;
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    .hero {
        flex-direction: column;
        padding: 120px 5% 60px;
        gap: 60px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .geo-shell {
        width: 300px;
    }

    .welcome-text {
        font-size: 48px;
    }

    .welcome-description {
        font-size: 16px;
    }

    .welcome-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-tabs {
        grid-template-columns: 1fr;
    }

    .service-stage h3 {
        font-size: 24px;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .navbar-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding: 100px 5% 40px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 12px;
    }

    .welcome-section {
        padding: 60px 5% 60px;
    }

    .welcome-text {
        font-size: 36px;
    }

    .welcome-description {
        font-size: 14px;
    }

    .geo-shell {
        width: 230px;
    }

    .support-widget {
        right: 8px;
        bottom: 10px;
    }

    .support-toggle {
        padding: 10px 14px;
        font-size: 12px;
    }
}
