/* ==========================================================================
   🚀 LG GRÁFICA & COPIADORA — PREMIUM STYLE
   Teal & Cyan Cyber-Aesthetic | Mobile-First | Premium Interactions
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
    --bg-deep: #050b0c;
    --bg-dark: #071618;
    --bg-medium: #0d2527;
    --bg-light: #133a3d;
    --primary: #4ab8c4;
    --primary-glow: #76cdd6;
    --accent: #d4a359;
    --accent-glow: #e5be85;
    --secondary: #d4a359;
    --text-light: #ece7dc;
    --text-white: #ffffff;
    --text-muted: #889e9f;
    --border-color: rgba(74, 184, 196, 0.12);
    --border-hover: rgba(212, 163, 89, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(74, 184, 196, 0.18);
    --shadow-glow-strong: 0 0 50px rgba(74, 184, 196, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: initial; /* Managed by Lenis smooth scroll */
    font-size: 16px;
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-medium);
    border-radius: 10px;
    border: 2px solid var(--bg-deep);
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

li {
    list-style: none;
}

/* --------------------------------------------------------------------------
   2. CUSTOM PREMIUM ELEMENTS (CURSOR & SMOOTH SCROLL)
   -------------------------------------------------------------------------- */
/* Premium Cursor */
.custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cursor-text {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-deep);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}

body.cursor-active.cursor-has-text .custom-cursor-ring {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-color: var(--primary);
}

body.cursor-active.cursor-has-text .cursor-text {
    opacity: 1;
    transform: scale(1);
}

body.cursor-active.cursor-has-text .custom-cursor-dot {
    opacity: 0;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s, height 0.2s;
    opacity: 0;
}

/* Cursor Hover States */
body.cursor-active .custom-cursor-ring {
    width: 65px;
    height: 65px;
    background-color: rgba(92, 188, 201, 0.08);
    border-color: var(--primary-glow);
}

body.cursor-active .custom-cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-glow);
}

body.cursor-blend .custom-cursor-ring {
    width: 70px;
    height: 70px;
    background-color: var(--text-light);
    border-color: transparent;
    mix-blend-mode: difference;
}

body.cursor-blend .custom-cursor-dot {
    opacity: 0;
}

@media (max-width: 1024px) {
    .custom-cursor-ring, .custom-cursor-dot {
        display: none !important;
    }
}

/* Lenis Scroll Setup */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overflow-anchor: none;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   3. CINEMATIC LOADING SCREEN
   -------------------------------------------------------------------------- */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-deep);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loading-container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.loading-logo-svg {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.loading-logo-svg path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLogo 3.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

.loading-percentage {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 4rem;
    color: var(--text-white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.loading-subtext {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--primary);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
}

.loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(92, 188, 201, 0.1);
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-dark), var(--primary), var(--primary-glow));
    transition: width 0.1s linear;
    box-shadow: 0 0 15px var(--primary);
}

/* Loading Curtain */
.curtain-panel {
    position: absolute;
    width: 100%;
    height: 50%;
    background-color: var(--bg-dark);
    z-index: 1;
    transition: var(--transition-slow);
}

.curtain-top {
    top: 0;
}

.curtain-bottom {
    bottom: 0;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR (NAVBAR)
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 999;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(5, 34, 34, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1001;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
}

.nav-logo-icon path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.nav-sub {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bg-deep);
    background-color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(92, 188, 201, 0.2);
}

.nav-cta:hover {
    background-color: var(--primary-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: transparent;
        border-left: none;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 4rem 3rem;
        gap: 2rem;
        z-index: 1000;
        transition: var(--transition-slow);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   5. HERO SECTION & GLOW BG
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Cyber Glow Background */
.hero-glow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.glow-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 80%);
    top: -10%;
    right: -10%;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 80%);
    bottom: -10%;
    left: -10%;
    opacity: 0.18;
    animation: floatGlow 18s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 30px) scale(1.15);
    }
}

@keyframes noisePlay {
    0%, 100% { transform:translate(0, 0) }
    10% { transform:translate(-2%, -2%) }
    20% { transform:translate(-4%, 2%) }
    30% { transform:translate(2%, -4%) }
    40% { transform:translate(-2%, 6%) }
    50% { transform:translate(-4%, 2%) }
    60% { transform:translate(6%, -2%) }
    70% { transform:translate(0, 4%) }
    80% { transform:translate(-6%, 2%) }
    90% { transform:translate(4%, 2%) }
}

.noise-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    z-index: 2;
    pointer-events: none;
    animation: noisePlay 1s steps(4) infinite;
}

.hero-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    background-color: rgba(92, 188, 201, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-tag span {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(92, 188, 201, 0.2);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Hero Search Bar */
.hero-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 0 2.2rem 0;
    z-index: 10;
}

.hero-search-wrapper i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.15rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.hero-search-wrapper input {
    width: 100%;
    padding: 1.15rem 1.5rem 1.15rem 3.4rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    background: rgba(13, 37, 39, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-search-wrapper input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.hero-search-wrapper input:focus {
    border-color: var(--primary);
    background: rgba(13, 37, 39, 0.7);
    box-shadow: var(--shadow-glow), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero-search-wrapper input:focus + i {
    color: var(--primary-glow);
    text-shadow: 0 0 10px rgba(118, 205, 214, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Button Custom Styles */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-deep);
    box-shadow: 0 10px 25px rgba(92, 188, 201, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-glow);
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--text-white);
    background-color: rgba(92, 188, 201, 0.05);
    transform: translateY(-3px);
}

/* Hero Badge Mockup Graphic (Premium Web Aspect) */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-scene {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    position: relative;
}

.graphic-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(40px);
    z-index: 1;
}

.glass-card-mock {
    position: absolute;
    width: 320px;
    padding: 2rem;
    background: rgba(13, 74, 74, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    z-index: 5;
    transition: var(--transition-slow);
}

.glass-card-mock:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.mock-1 {
    top: 5%;
    left: 5%;
    transform: rotate(-6deg);
}

.mock-2 {
    bottom: 5%;
    right: 5%;
    transform: rotate(6deg);
    background: rgba(18, 94, 94, 0.5);
    border-color: rgba(212, 163, 89, 0.25);
}

.mock-2 .mock-price {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(212, 163, 89, 0.2);
}

.mock-2 .mock-feature i {
    color: var(--accent);
}

.mock-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.mock-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mock-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.mock-feature i {
    color: var(--primary);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-search-wrapper {
        margin: 1.8rem auto;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-graphic {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   6. STATISTICS SECTION
   -------------------------------------------------------------------------- */
.stats-section {
    padding: 6rem 0;
    background-color: rgba(5, 34, 34, 0.5);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
}

.stats-grid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(13, 74, 74, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition-medium);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-num span {
    color: var(--primary);
}

.stat-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

/* --------------------------------------------------------------------------
   7. INTERACTIVE CATALOG SECTION
   -------------------------------------------------------------------------- */
.section {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.section-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::before {
    content: '';
    width: 15px;
    height: 2px;
    background-color: var(--primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
    line-height: 1.15;
}

.section-title span {
    color: var(--primary);
}

/* Catalog Toolbar */
.catalog-toolbar {
    background: rgba(13, 74, 74, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow-premium);
}

.toolbar-search {
    position: relative;
    width: 100%;
}

.toolbar-search i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.search-input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.5rem;
    background-color: rgba(5, 34, 34, 0.4);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(92, 188, 201, 0.15);
}

/* Category Filter Tabs with Horizontal Scroll */
.category-filter-container {
    position: relative;
    width: 100%;
}

.category-tabs-wrapper {
    overflow-x: auto;
    display: flex;
    gap: 0.8rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none; /* Firefox */
}

.category-tabs-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-tab {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    background-color: rgba(5, 34, 34, 0.3);
    border: 1px solid var(--border-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-tab:hover, .category-tab.active {
    color: var(--bg-deep);
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: rgba(13, 74, 74, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-medium), border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(74, 184, 196, 0.04));
    pointer-events: none;
    z-index: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 150px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 80%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.product-header {
    margin-bottom: 1.5rem;
}

.product-cat-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    background-color: rgba(92, 188, 201, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(92, 188, 201, 0.1);
    display: inline-block;
    margin-bottom: 0.8rem;
}

.product-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-white);
    line-height: 1.25;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.product-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-white);
}

.product-qty {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.product-btn {
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border-color);
    padding: 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    z-index: 5;
}

.product-card:hover .product-btn {
    background-color: var(--primary);
    color: var(--bg-deep);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(92, 188, 201, 0.2);
}

.product-btn:hover {
    transform: scale(1.02);
}

/* Catalog Actions */
.catalog-actions {
    text-align: center;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

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

/* --------------------------------------------------------------------------
   8. DIGITAL SERVICES (SITES / SYSTEMAS R$ 299)
   -------------------------------------------------------------------------- */
.services-section {
    background-color: rgba(5, 34, 34, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-card {
    background: rgba(13, 74, 74, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(74, 184, 196, 0.15);
    border-radius: 32px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-medium), border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 200px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.05), transparent 80%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.service-card::before {
    content: 'POPULAR';
    position: absolute;
    top: 2rem;
    right: -2.5rem;
    background-color: var(--secondary);
    color: var(--bg-deep);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
}

.service-card.highlighted::before {
    opacity: 1;
    background-color: var(--accent);
}

.service-card.highlighted {
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(212, 163, 89, 0.15);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-strong);
}

.service-header {
    margin-bottom: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(92, 188, 201, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-pricing {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.service-price-currency {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.service-card.highlighted .service-price-currency {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(212, 163, 89, 0.2);
}

.service-price-value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--text-white);
    line-height: 1;
}

.service-card.highlighted .service-price-value {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(212, 163, 89, 0.3);
}

.service-price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-light);
}

.service-feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   9. DIFFERENTIALS & ACCORDION FAQ
   -------------------------------------------------------------------------- */
/* Differentials Grid */
.diffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.diff-card {
    background: rgba(13, 74, 74, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-medium);
}

.diff-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background-color: rgba(13, 74, 74, 0.35);
}

.diff-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.diff-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.diff-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .diffs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(13, 74, 74, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-white);
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    background-color: rgba(92, 188, 201, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
    background-color: var(--primary);
    color: var(--bg-deep);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-inner {
    padding: 0 2rem 1.8rem 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. PREMIUM CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    position: relative;
}

.contact-box {
    background: linear-gradient(135deg, rgba(13, 74, 74, 0.5) 0%, rgba(5, 34, 34, 0.5) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary);
    border-radius: 32px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow-strong);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.contact-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(92, 188, 201, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-details h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.contact-details p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(92, 188, 201, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid var(--border-color);
}

.info-text-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text-val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Call to Action Button in Contact Form Area */
.contact-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: rgba(5, 34, 34, 0.4);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
}

.contact-cta-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.contact-cta-text {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-btn-large {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

@media (max-width: 991px) {
    .contact-box {
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 3rem;
    }
}

/* --------------------------------------------------------------------------
   11. FOOTER & FLOATING WHATSAPP
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--bg-deep);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
    position: relative;
    z-index: 5;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(92, 188, 201, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--bg-deep);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link-item a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-link-item a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-medium);
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip-text {
    position: absolute;
    right: 75px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-fast);
    pointer-events: none;
}

.whatsapp-float-btn:hover .whatsapp-tooltip-text {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-tooltip-text {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   12. ANIMATION UTILITIES (GSAP READY)
   -------------------------------------------------------------------------- */
.reveal-text {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

/* ==========================================================================
   13. INOVAÇÕES PREMIUM ESTILO LANDO NORRIS (MARQUEE, HORIZONTAL PIN, CURSOR REVEAL)
   ========================================================================== */

/* A. Infinite Marquee Ticker */
.marquee-ticker-container {
    width: 100%;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-ticker-inner {
    display: flex;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
    animation: marqueeContinuous 45s linear infinite;
}

.marquee-ticker-inner span {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(74, 184, 196, 0.25);
    padding: 0 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    display: inline-block;
}

.marquee-ticker-inner span:nth-child(even) {
    color: var(--text-light);
    -webkit-text-stroke: none;
    text-shadow: 0 0 15px rgba(236, 231, 220, 0.1);
}

.marquee-ticker-inner span:hover {
    color: var(--primary);
    -webkit-text-stroke: none;
    text-shadow: var(--shadow-glow);
}

@keyframes marqueeContinuous {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .marquee-ticker-inner span {
        font-size: 1.5rem;
        padding: 0 1.5rem;
    }
    .marquee-ticker-container {
        padding: 1rem 0;
    }
}

/* B. Horizontal Scrolling Section */
.horizontal-scroll-section {
    position: relative;
    width: 100%;
    height: 350vh;
    background-color: var(--bg-deep);
    z-index: 10;
}

.horizontal-scroll-section .pin-wrap {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4vh 0;
}

.horizontal-header {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 3vh auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.horizontal-header .section-title {
    margin-bottom: 0;
    line-height: 1.1;
}

.scroll-helper-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.scroll-helper-text i {
    animation: arrowPulse 1.5s infinite alternate ease-in-out;
}

@keyframes arrowPulse {
    0% { transform: translateX(0); }
    100% { transform: translateX(8px); }
}

.horizontal-cards-container {
    display: flex;
    gap: 3.5rem;
    padding: 0 calc((100vw - 90%) / 2 + 50px);
    width: max-content;
    will-change: transform;
    flex-grow: 1;
    align-items: center;
}

.horizontal-card {
    position: relative;
    width: 580px;
    height: 480px;
    background-color: rgba(13, 37, 39, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.horizontal-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow), 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px) scale(1.02);
}

.h-card-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 163, 89, 0.1) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.h-card-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-right: 1px solid var(--border-color);
    background-color: #063d40;
}

.h-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    left: 0;
    will-change: transform;
    transition: transform 0.15s ease-out;
}

.horizontal-card:hover .h-card-img-wrap img {
    transform: scale(1.08) rotate(0.5deg);
}

.h-card-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.h-card-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.h-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.h-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.h-card-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.h-card-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.h-card-price-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.btn-h-card {
    background-color: var(--primary);
    color: var(--bg-deep);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.85rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(92, 188, 201, 0.2);
}

.btn-h-card:hover {
    background-color: var(--accent);
    color: var(--bg-deep);
    box-shadow: 0 8px 20px rgba(212, 163, 89, 0.3);
    transform: translateY(-2px);
}

/* C. Responsive Adjustments for Horizontal Scroll */
@media (max-width: 1024px) {
    .horizontal-scroll-section {
        height: auto !important;
    }
    
    .horizontal-scroll-section .pin-wrap {
        height: auto !important;
        position: relative !important;
        top: auto !important;
        padding: 4rem 0;
    }
    
    .horizontal-cards-container {
        padding: 0 1.5rem;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        display: flex; /* Ensure it behaves as flex container */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        flex-grow: 0;
        padding-bottom: 2rem;
    }
    
    .horizontal-cards-container::-webkit-scrollbar {
        display: none; /* Safari & Chrome */
    }
    
    .horizontal-card {
        width: 300px;
        flex-shrink: 0; /* CRITICAL: Prevent cards from squishing horizontally on mobile */
        height: auto;
        grid-template-columns: 1fr;
        scroll-snap-align: center; /* Center snap active card beautifully */
        border-radius: 20px;
    }
    
    .h-card-img-wrap {
        height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        overflow: hidden;
        background-color: #063d40;
    }
    
    .h-card-img-wrap img {
        width: 100% !important;
        left: 0 !important;
        height: 100% !important;
        object-fit: contain !important;
        position: relative;
    }
    
    .h-card-content {
        padding: 1.5rem;
    }
    
    .h-card-title {
        font-size: 1.4rem;
    }
    
    .h-card-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* D. Hover Image Cursor Follower */
.cursor-image-revealer {
    position: fixed;
    width: 300px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%) scale(0) rotate(-5deg);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-premium), var(--shadow-glow-strong);
    border: 2px solid var(--primary);
    background-color: var(--bg-medium);
    will-change: transform, opacity;
}

.cursor-image-revealer.active {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
}

.cursor-image-revealer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--bg-deep);
}

@media (max-width: 1024px) {
    .cursor-image-revealer {
        display: none !important;
    }
}

/* E. Handwritten Scroll Signature of Quality */
.signature-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2.2rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(74, 184, 196, 0.08);
    border-bottom: 1px solid rgba(74, 184, 196, 0.08);
    width: max-content;
    animation: signatureGlowPulse 4s infinite alternate ease-in-out;
}

.signature-container {
    width: 130px;
    height: 78px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signature-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.signature-path {
    stroke: var(--primary);
    filter: drop-shadow(0 0 5px rgba(74, 184, 196, 0.6));
    will-change: stroke-dashoffset;
}

.signature-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.signature-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.signature-subtitle {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

@keyframes signatureGlowPulse {
    0% {
        border-color: rgba(74, 184, 196, 0.05);
    }
    100% {
        border-color: rgba(212, 163, 89, 0.15);
    }
}

@media (max-width: 576px) {
    .signature-wrapper {
        gap: 1rem;
        margin: 1.5rem 0;
        width: 100%;
        justify-content: center;
    }
    
    .signature-container {
        width: 110px;
        height: 66px;
    }
}

/* Hide default cursor elements when active image preview follows mouse */
body.cursor-active-image .custom-cursor-ring {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    border-color: transparent !important;
}

body.cursor-active-image .custom-cursor-dot {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

/* --------------------------------------------------------------------------
   👑 LANDO NORRIS HIGH-LEVEL INNOVATIONS (ADDITIONAL CUSTOM STYLES)
   -------------------------------------------------------------------------- */

/* A. 3rd Glow Circle for Interactive Mesh Gradient Background */
.glow-circle-3 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--creme) 0%, transparent 80%);
    top: 35%;
    left: 25%;
    opacity: 0.12;
    animation: floatGlow 22s infinite alternate ease-in-out;
}

/* B. Fullscreen SVG Mobile Liquid Menu Overlay */
.menu-liquid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    display: none; /* Controlled via JS */
}

.menu-liquid-svg {
    width: 100%;
    height: 100%;
    /* Create a liquid look with fluid scaling */
}

.menu-liquid-path {
    fill: #062b2c; /* Matches deep slate/teal theme beautifully */
    transition: none; /* Controlled smoothly by GSAP morphing */
}

/* C. Cyber Laser Grid Overlay */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(92, 188, 201, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 188, 201, 0.012) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.35;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* D. Dynamic Speed Laser Lines */
.cyber-laser-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.cyber-laser-line {
    position: absolute;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
    opacity: 0.18;
    pointer-events: none;
    will-change: transform, left;
}


