/* ======================================================
   GLACIAL -8 WONDERCOOL — Premium Stylesheet
   Distribuidora: La Puente S.L. | CEO: Juan José Casero
   ====================================================== */

/* ---- TOKENS ---- */
:root {
    /* Backgrounds — negro con tonalidad azul frío */
    --bg: #010c1a;
    --bg-2: #030f22;
    --bg-glass: rgba(0, 30, 80, 0.18);
    --border-glass: rgba(0, 180, 255, 0.10);

    /* Acentos */
    --accent: #00e5ff;
    --accent-2: #0059ff;
    --accent-glow: rgba(0, 229, 255, 0.35);
    --accent-glow-2: rgba(0, 89, 255, 0.25);

    /* Textos */
    --text: #e8f0ff;
    --text-dim: #6a84b0;
    --text-dimmer: #2a3a5a;
    --white: #ffffff;

    --font-h: 'Montserrat', sans-serif;
    --font-b: 'Inter', sans-serif;
    --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
    --trans: all 0.4s var(--ease);
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 32px;
    --shadow-glow: 0 0 80px rgba(0, 229, 255, 0.14);
    --shadow-card: 0 20px 60px rgba(0, 10, 40, 0.6);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    overflow-x: hidden;
    line-height: 1.65;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

select option {
    background: #0a1020;
    color: var(--text);
}

/* ---- CUSTOM CURSOR ---- */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 229, 255, 0.5);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s;
}

.cursor-ring.hovered {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    background: rgba(0, 229, 255, 0.07);
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-h);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.accent {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.accent-text {
    font-style: normal;
}

/* ---- LAYOUT ---- */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: var(--bg-2);
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-overline {
    display: inline-block;
    font-family: var(--font-b);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 100px;
    background: rgba(0, 229, 255, 0.05);
}

.section-title {
    margin-bottom: 24px;
}

.section-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: #c0cfea;
    margin-bottom: 20px;
}

.section-body {
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 32px;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(3, 8, 16, 0.95) 0%, transparent 100%);
    transition: var(--trans);
}

#navbar.scrolled {
    background: rgba(1, 12, 26, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.logo {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-glacial {
    color: var(--white);
}

.logo-minus {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
    margin: 0 4px;
}

.logo-wondercool {
    color: var(--text-dim);
    font-size: 0.75em;
    font-weight: 500;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(240, 244, 255, 0.7);
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 4px 10px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-family: var(--font-b);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 100px;
    transition: all 0.25s;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--bg);
    background: var(--accent);
}

.lang-sep {
    color: var(--text-dimmer);
    font-size: 0.7rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
}

/* ---- HERO ---- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.08);
    animation: kenBurns 20s infinite alternate;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.0);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(3, 8, 16, 0.88) 0%,
            rgba(0, 10, 30, 0.70) 50%,
            rgba(3, 8, 16, 0.85) 100%);
    z-index: 1;
}

/* Animated radial glow behind text */
.hero-overlay::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 89, 255, 0.12) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.animate-in>* {
    opacity: 0;
    transform: translateY(30px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 100px;
    padding: 8px 22px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    margin-bottom: 28px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-line1 {
    display: block;
}

.hero-line2 {
    display: block;
    color: var(--white);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(240, 244, 255, 0.75);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 16px 44px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: 0 0 40px var(--accent-glow), 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--trans);
}

.btn-hero-primary:hover {
    background: var(--white);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.btn-hero-secondary {
    padding: 16px 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: var(--trans);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-4px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        height: 0;
        opacity: 1;
    }

    80% {
        height: 60px;
        opacity: 0.5;
    }

    100% {
        height: 60px;
        opacity: 0;
    }
}

/* Floating Social */
.social-float {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-float-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--trans);
    border: 1.5px solid var(--border-glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-float-btn.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: none;
    color: white;
}

.social-float-btn.facebook {
    background: #1877f2;
    border: none;
    color: white;
}

.social-float-btn:hover {
    transform: scale(1.15) translateX(-4px);
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: linear-gradient(90deg, var(--bg-2) 0%, #040c1e 50%, var(--bg-2) 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-pill {
    text-align: center;
    padding: 20px 60px;
    flex: 1;
    min-width: 180px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-glass);
}

.stat-n {
    display: block;
    font-family: var(--font-h);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-sym {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-l {
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

/* ---- SPLIT LAYOUT ---- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-dim);
    transition: color 0.3s;
}

.feat-list li:hover {
    color: var(--text);
}

.feat-list i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- IMAGE FRAME ---- */
.img-frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-6deg);
    transition: transform 0.6s var(--ease);
    box-shadow: var(--shadow-card);
}

.img-frame:hover {
    transform: perspective(1200px) rotateY(0deg);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-frame.glow {
    box-shadow: var(--shadow-card), 0 0 80px rgba(0, 229, 255, 0.15);
}

.img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(3, 8, 16, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    border-radius: var(--r-sm);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

/* ---- HERO SLIDE IMAGE CLASSES (moved from inline style for clean HTML) ---- */
.hero-slide-1 {
    background-image: url('../assets/images/1000406824.jpg');
}

.hero-slide-2 {
    background-image: url('../assets/images/1000435123.jpg');
}

.hero-slide-3 {
    background-image: url('../assets/images/1000406755.jpg');
}

/* ---- UTILITY ---- */
.hidden {
    display: none !important;
}

/* ---- HERO BG SLIDER ---- */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-slider.active {
    opacity: 1;
}

/* ---- TECH GRID ---- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.tech-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-md);
    padding: 40px 32px;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.tech-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 229, 255, 0.08);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 22px;
    display: block;
}

.tech-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.tech-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ---- PREMIUM GALLERY GRID ---- */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid var(--border-glass);
    aspect-ratio: 3 / 4; /* Professional portrait format */
    transition: all 0.5s var(--ease);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: all 0.8s var(--ease);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 229, 255, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 12, 26, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1; /* Always visible labels but cleaner */
    transform: translateY(0);
    transition: all 0.4s var(--ease);
}

.gallery-overlay span {
    color: var(--accent);
    font-family: var(--font-h);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.15rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

/* Controls - Removed Carousel Nav */
.gallery-nav, .gallery-dots {
    display: none;
}

/* ---- MARQUEE ---- */
.marquee-section {
    overflow: hidden;
    margin-top: 60px;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 45s linear infinite;
    width: max-content;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

.marquee-slide {
    width: 300px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    overflow: hidden;
}

.marquee-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.4s;
}

.marquee-section:hover .marquee-slide img {
    filter: grayscale(0%);
}

/* ---- ROI CALCULATOR ---- */
.roi-calculator {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.roi-inputs {
    grid-column: 1;
}

.roi-input-group {
    margin-bottom: 28px;
}

.roi-input-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.roi-input-group input[type="number"],
.roi-input-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-sm);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.roi-input-group input:focus,
.roi-input-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}

.range-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.range-container input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 2px;
    outline: none;
    padding: 0;
    border: none;
    cursor: pointer;
}

.range-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    cursor: pointer;
}

.range-val {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 32px;
    text-align: right;
}

.btn-calc {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    border: none;
    border-radius: var(--r-sm);
    color: var(--bg);
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: 0 8px 30px rgba(0, 89, 255, 0.3);
}

.btn-calc:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.4);
}

.roi-results {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
}

.roi-result-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-md);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--trans);
}

.roi-result-card.highlight {
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.06);
}

.roi-result-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.roi-result-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.roi-result-value {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
}

.roi-disclaimer {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    color: var(--text-dimmer);
    text-align: center;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
}

/* ---- RENTING ---- */
.renting-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.santander-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(236, 0, 0, 0.1);
    border: 1px solid rgba(236, 0, 0, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    color: #ff3333;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 36px;
    background: linear-gradient(135deg, rgba(236, 0, 0, 0.15), rgba(236, 0, 0, 0.05));
    border: 1.5px solid rgba(236, 0, 0, 0.4);
    border-radius: 100px;
    color: #ff4444;
    font-family: var(--font-h);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 36px;
    transition: var(--trans);
}

.btn-download:hover {
    background: rgba(236, 0, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 0, 0, 0.2);
    color: #ff6666;
}

.btn-download i {
    font-size: 1.3rem;
}

.renting-info-cards {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.info-card {
    flex: 1;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-sm);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: var(--trans);
}

.info-card i {
    color: var(--accent);
}

.info-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--text);
}

/* ---- TESTIMONIALS ---- */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-md);
    padding: 36px;
    transition: var(--trans);
}

.testi-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.testi-stars {
    color: #ffd700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.testi-text {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    font-size: 2.5rem;
    color: var(--text-dimmer);
}

.testi-author strong {
    display: block;
    font-size: 0.95rem;
}

.testi-author span {
    font-size: 0.77rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- CONTACT ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel {}

.cinfo-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-glass);
}

.cinfo-block:last-child {
    border-bottom: none;
}

.cinfo-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.cinfo-content strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.cinfo-content a {
    font-size: 1rem;
    color: var(--text);
    transition: color 0.3s;
}

.cinfo-content a:hover {
    color: var(--accent);
}

.social-buttons-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.social-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: var(--r-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--trans);
}

.social-cta.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-cta.facebook {
    background: #1877f2;
    color: white;
}

.social-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-form-panel {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-sm);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    appearance: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    border: none;
    border-radius: var(--r-sm);
    color: var(--bg);
    font-family: var(--font-h);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 89, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 14px 40px rgba(0, 229, 255, 0.4);
}

.form-success {
    text-align: center;
    padding: 60px 40px;
}

.form-success i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
}

.form-success h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.form-success p {
    color: var(--text-dim);
    line-height: 1.8;
}

/* ---- TOAST ---- */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 28px;
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid var(--accent);
    border-radius: var(--r-sm);
    color: var(--white);
    font-size: 0.9rem;
    z-index: 9998;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s var(--ease);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ---- FOOTER ---- */
.footer {
    background: #020609;
    border-top: 1px solid var(--border-glass);
    padding: 100px 0 40px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-logo-url {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-dim);
    display: block;
    letter-spacing: 2px;
    margin-top: 4px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(1, 12, 26, 0.6);
    border: 1px solid var(--border-glass);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s var(--ease);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 229, 255, 0.08);
    transform: translateY(-3px);
}

.footer-links-col h4,
.footer-company h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 12px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links-col a {
    color: var(--text-dim);
    font-size: 0.87rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: var(--accent);
}

.company-name {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.ceo-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-sm);
    margin-bottom: 20px;
}

.ceo-info i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ceo-info strong {
    display: block;
    font-size: 0.95rem;
}

.ceo-title {
    font-size: 0.73rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--accent);
    border-radius: var(--r-sm);
    color: var(--bg);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--trans);
}

.footer-contact-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-dimmer);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-dimmer);
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--text-dim);
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .roi-calculator {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .roi-inputs {
        grid-column: 1;
    }

    .roi-results {
        grid-column: 1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .roi-result-card {
        flex: 1;
        min-width: 180px;
    }

    .roi-disclaimer {
        grid-column: 1;
    }
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .renting-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.large {
        grid-column: span 2;
        aspect-ratio: 3/2;
    }

    .stats-container {
        gap: 0;
    }

    .stats-bar {
        padding: 40px 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-pill {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(3, 8, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 998;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .social-float {
        display: none;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 80px 0;
    }

    .contact-form-panel {
        padding: 30px 24px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        display: grid;
    }

    .stat-pill {
        padding: 20px 10px;
    }
}