/* ==========================================================================
   SPOTNET MEDIA INC. - MODERN DESIGN SYSTEM & STYLE ARCHITECTURE
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    /* Color Palette */
    --color-bg: #030308;
    --color-bg-soft: rgba(10, 10, 18, 0.6);
    --color-panel: rgba(255, 255, 255, 0.03);
    --color-panel-border: rgba(255, 255, 255, 0.08);
    
    --color-text: #ffffff;
    --color-text-muted: #a0aab2;
    --color-text-dark: #636d77;
    
    /* Neon Glowing Accents */
    --color-primary: #00f2fe;     /* Electric Cyan */
    --color-primary-rgb: 0, 242, 254;
    --color-secondary: #a12cff;   /* Neural Purple */
    --color-secondary-rgb: 161, 44, 255;
    --color-accent: #ff007f;      /* Hot Pink */
    --color-accent-rgb: 255, 0, 127;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(161, 44, 255, 0.15) 100%);
    --gradient-dark: linear-gradient(180deg, #05050f 0%, #020205 100%);
    
    /* Layout & Styling Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow-neon: 0 0 30px rgba(0, 242, 254, 0.25);
    --box-shadow-neon-purple: 0 0 30px rgba(161, 44, 255, 0.25);
    
    /* Transition Speed */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Base Reset & Core Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #05050f;
}
::-webkit-scrollbar-thumb {
    background: rgba(161, 44, 255, 0.3);
    border-radius: 5px;
    border: 2px solid #05050f;
    transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 242, 254, 0.6);
}

/* --- Background Ambient Glows --- */
.glow-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -2;
    opacity: 0.45;
    pointer-events: none;
    mix-blend-mode: screen;
}
.glow-bg-1 {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, rgba(0,0,0,0) 70%);
    animation: pulseGlow 12s infinite alternate ease-in-out;
}
.glow-bg-2 {
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(161, 44, 255, 0.4) 0%, rgba(0,0,0,0) 70%);
    animation: pulseGlow 15s infinite alternate-reverse ease-in-out;
}
.glow-bg-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 0, 127, 0.25) 0%, rgba(0,0,0,0) 70%);
    animation: pulseGlow 20s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.35; }
    50% { transform: scale(1.15) translate(50px, -50px); opacity: 0.55; }
    100% { transform: scale(0.9) translate(-30px, 30px); opacity: 0.35; }
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--color-text-muted);
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 25px rgba(0, 242, 254, 0.55);
    background: linear-gradient(135deg, #ffffff 30%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Layout Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(0, 242, 254, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 242, 254, 0.18);
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* --- Glassmorphism Card System --- */
.glass-card {
    background: var(--color-panel);
    border: 1px solid var(--color-panel-border);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius-md);
    padding: 40px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.75s ease;
}
.glass-card:hover::before {
    left: 120%;
}

/* --- Button Component System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-hero);
    color: #030308;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}
.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-fast);
    transform: scale(0.5);
    pointer-events: none;
}
.glow-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

/* ==========================================================================
   NAVBAR COMPONENT
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition-normal);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(3, 3, 8, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.spotnet-logo-svg {
    display: block;
    transition: transform var(--transition-fast);
}
.logo:hover .spotnet-logo-svg {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--color-text);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 10px 22px;
    border-radius: 50px;
    color: var(--color-primary);
}
.nav-btn:hover {
    background: var(--gradient-hero);
    color: #030308;
    border-color: transparent;
    transform: translateY(-2px);
}
.nav-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}
.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO / HEADER SECTION
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 780px;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(161, 44, 255, 0.12);
    border: 1px solid rgba(161, 44, 255, 0.25);
    border-radius: 50px;
    color: #c98eff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(161, 44, 255, 0.1);
}

.hero-title {
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 680px;
    color: var(--color-text-muted);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* 3D Parallax Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
    filter: drop-shadow(0 0 30px rgba(var(--color-primary-rgb), 0.3));
}
.shape-sphere {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, var(--color-primary) 0%, #002e4d 100%);
    top: 10%;
    right: 15%;
    animation: floatShape 8s infinite alternate ease-in-out;
}
.shape-cube {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, var(--color-secondary) 0%, #1e003a 100%);
    bottom: 20%;
    right: 8%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: floatShape 11s infinite alternate-reverse ease-in-out;
}
.shape-torus {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #4a001e 100%);
    top: 50%;
    right: 35%;
    border-radius: 30%;
    animation: floatShape 6s infinite alternate ease-in-out;
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(45deg); }
}

/* Scroll Down Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}
.scroll-indicator:hover {
    color: var(--color-text);
}
.mouse-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    display: block;
    position: relative;
}
.mouse-wheel::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.6s infinite ease-out;
}

@keyframes wheelScroll {
    0% { top: 6px; opacity: 1; }
    80% { top: 22px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

/* ==========================================================================
   SPOTNET ECOSYSTEM SECTION (3D SLIDER)
   ========================================================================== */
.ecosistema {
    background-color: #020206;
    overflow-x: hidden;
}

.slider-container {
    width: 100%;
    position: relative;
    perspective: 1200px;
    padding: 40px 0;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    position: relative;
}

/* Slide Cards with 3D Depth states */
.slide-card {
    position: absolute;
    width: 380px;
    min-height: 420px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 45px 35px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform var(--transition-slow), opacity var(--transition-slow), z-index var(--transition-slow), border-color var(--transition-normal);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.card-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 65%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.slide-card.active {
    opacity: 1;
    transform: translate3d(0, 0, 80px) rotateY(0deg);
    z-index: 5;
    pointer-events: auto;
    border-color: rgba(255, 255, 255, 0.18);
}
.slide-card.active .card-glow {
    opacity: 1;
}

.slide-card.next {
    opacity: 0.65;
    transform: translate3d(320px, 0, -100px) rotateY(-18deg) scale(0.9);
    z-index: 2;
    pointer-events: auto;
}

.slide-card.prev {
    opacity: 0.65;
    transform: translate3d(-320px, 0, -100px) rotateY(18deg) scale(0.9);
    z-index: 2;
    pointer-events: auto;
}

/* Hide extra hidden cards */
.slide-card.hidden {
    display: none;
}

/* Card Content Elements */
.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}
.card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    filter: blur(10px);
    z-index: -1;
    opacity: 0.55;
}
.icon-purple {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #4facfe 100%);
    color: #ffffff;
}
.icon-purple::after { background: var(--color-secondary); }
.icon-cyan {
    background: linear-gradient(135deg, var(--color-primary) 0%, #00cdac 100%);
    color: #030308;
}
.icon-cyan::after { background: var(--color-primary); }
.icon-pink {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff8a00 100%);
    color: #ffffff;
}
.icon-pink::after { background: var(--color-accent); }

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: var(--font-heading);
}

.card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 24px;
}

.card-footer-info {
    margin-top: auto;
    display: flex;
    gap: 10px;
}
.tech-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Slider Controls Styles */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}
.slider-btn:hover {
    background: var(--gradient-hero);
    color: #030308;
    border-color: transparent;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}
.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}
.slider-dots .dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--color-primary);
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.servicios {
    background: #030308;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 50px 35px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.service-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
    transform: translateZ(30px);
}
.service-card:hover .service-icon {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 15px;
    transform: translateZ(20px);
}

.service-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-muted);
    transform: translateZ(10px);
}

/* ==========================================================================
   3D DEVICE SHOWCASE SPLIT SECTION
   ========================================================================== */
.showcase {
    background: #020206;
    overflow: hidden;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-content {
    max-width: 520px;
}

.showcase-text {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 30px;
}

.showcase-features {
    list-style: none;
    margin-bottom: 40px;
}
.showcase-features li {
    display: flex;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text-muted);
}
.showcase-features li strong {
    color: var(--color-text);
    font-weight: 600;
    margin-right: 5px;
}
.feat-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

/* --- THE 3D CSS PHONE MODEL --- */
.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.phone-3d-wrapper {
    perspective: 1000px;
    width: 280px;
    height: 560px;
}

.phone-body {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-20deg) rotateZ(0deg);
    transition: transform 0.1s ease-out;
}

/* Floating Shadow */
.phone-shadow {
    position: absolute;
    width: 110%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
    bottom: -60px;
    left: -5%;
    transform: rotateX(90deg) translateZ(-20px);
    z-index: -1;
    filter: blur(10px);
}

/* General Face Settings */
.phone-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 36px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Front Face: Screen content */
.phone-front {
    background: #000000;
    border: 10px solid #1a1a24;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
    transform: translateZ(8px);
    z-index: 2;
    overflow: hidden;
}

/* Phone Thickness Side Extrusion */
.phone-side {
    position: absolute;
    background: linear-gradient(to bottom, #2b2b35, #111116, #2b2b35);
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.15);
}

.phone-left, .phone-right {
    width: 16px; /* Phone Thickness */
    height: calc(100% - 20px);
    top: 10px;
}
.phone-left {
    left: -8px;
    transform: rotateY(-90deg);
}
.phone-right {
    right: -8px;
    transform: rotateY(90deg);
}

.phone-top, .phone-bottom {
    width: calc(100% - 20px);
    height: 16px;
    left: 10px;
}
.phone-top {
    top: -8px;
    transform: rotateX(90deg);
}
.phone-bottom {
    bottom: -8px;
    transform: rotateX(-90deg);
}

/* Back Face */
.phone-back {
    background: linear-gradient(135deg, #09090e 0%, #151525 100%);
    border: 10px solid #1a1a24;
    transform: translateZ(-8px) rotateY(180deg);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.camera-module {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: #030305;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.lens {
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    border: 2px solid #2b2b35;
}
.flash {
    width: 8px;
    height: 8px;
    background: #eef;
    border-radius: 50%;
    margin-left: 4px;
}
.back-logo-svg {
    display: block;
    margin: 0 auto;
}

/* Notch & Display Elements */
.phone-header-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background: #1a1a24;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.app-screen {
    width: 100%;
    height: 100%;
    background: #07070e;
    display: flex;
    flex-direction: column;
    padding: 22px 14px 14px 14px;
}

.app-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.app-logo-svg {
    display: block;
    flex-shrink: 0;
}
.app-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-hero);
}

.app-chart-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 16px;
}
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.chart-header span {
    font-size: 10px;
    color: var(--color-text-muted);
}
.chart-header strong {
    font-size: 13px;
    color: var(--color-primary);
}
.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 70px;
}
.chart-bars .bar {
    width: 12px;
    height: var(--height);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    transition: background 0.3s;
}
.chart-bars .bar.active {
    background: var(--gradient-hero);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.app-card-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 10px;
}
.feed-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}
.feed-icon.i-ai {
    background: var(--color-secondary);
}
.feed-icon.i-shop {
    background: var(--color-primary);
}
.feed-info h4 {
    font-size: 11px;
    font-weight: 600;
}
.feed-info p {
    font-size: 9px;
    color: var(--color-text-dark);
}

.app-bottom-bar {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.app-bottom-bar .nav-item {
    width: 16px;
    height: 16px;
    background: var(--color-text-dark);
    border-radius: 4px;
}
.app-bottom-bar .nav-item.active {
    background: var(--color-primary);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.differential {
    background: #030308;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 50px 40px;
}
.quote-mark {
    font-size: 72px;
    font-family: Georgia, serif;
    color: var(--color-primary);
    line-height: 0.1;
    margin-top: 25px;
    opacity: 0.35;
}
.quote-text {
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.author-details h4 {
    font-size: 15px;
    font-weight: 600;
}
.author-details p {
    font-size: 12px;
    color: var(--color-text-dark);
}

/* ==========================================================================
   CONTACT FORM SECTION (GLASSMORPHIC)
   ========================================================================== */
.contacto {
    background: #020206;
}

.contact-card {
    padding: 60px 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition-slow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 14px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.form-group select option {
    background-color: #0c0c16;
    color: var(--color-text);
}

.form-action {
    margin-top: 10px;
}

.full-width {
    width: 100%;
}

/* Button loader state during fake submission */
.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: #030308;
    border-radius: 50%;
    margin-left: 10px;
    display: none;
    animation: rotateLoader 0.8s infinite linear;
}
@keyframes rotateLoader {
    100% { transform: rotate(360deg); }
}

/* Response message block */
.form-response {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    animation: fadeInUp 0.6s ease-out;
}
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
}
.form-response h3 {
    font-size: 28px;
    margin-bottom: 12px;
}
.form-response p {
    font-size: 15px;
    max-width: 500px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background: #010103;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}
.footer-desc {
    font-size: 14px;
    font-weight: 300;
    margin: 20px 0 24px 0;
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-socials a {
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.footer-socials a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(0, 242, 254, 0.08);
    transform: translateY(-3px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 15px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.footer-column a {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}
.footer-column a:hover {
    color: var(--color-text);
    padding-left: 4px;
}

.contact-info-item {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: var(--color-text-dark);
}

.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition-fast);
}
.footer-legal a:hover {
    color: var(--color-text-muted);
}

/* ==========================================================================
   SCROLL REVEAL & ANTECEDENTS ANIMATION
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.hero-content .fade-in:nth-child(1) { animation-delay: 0.2s; }
.hero-content .fade-in:nth-child(2) { animation-delay: 0.4s; }
.hero-content .fade-in:nth-child(3) { animation-delay: 0.6s; }
.hero-content .fade-in:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUT MEDIA QUERIES (MOBILE FIRST COMPATIBILITY)
   ========================================================================== */

@media (max-width: 1024px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .showcase-content {
        max-width: 100%;
        text-align: center;
    }
    .showcase-features {
        display: inline-block;
        text-align: left;
        max-width: 500px;
    }
    .slider-wrapper {
        min-height: 440px;
    }
    .slide-card {
        width: 330px;
        min-height: 400px;
        padding: 35px 25px;
    }
    .slide-card.next {
        transform: translate3d(240px, 0, -100px) rotateY(-18deg) scale(0.85);
    }
    .slide-card.prev {
        transform: translate3d(-240px, 0, -100px) rotateY(18deg) scale(0.85);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(3, 3, 8, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-slow);
        border-left: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero {
        padding-top: 100px;
        text-align: center;
        height: auto;
        min-height: 100vh;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    
    .floating-shape {
        display: none;
    }
    
    .slider-wrapper {
        min-height: 380px;
    }
    .slide-card {
        width: 290px;
        min-height: 360px;
        padding: 30px 20px;
    }
    .slide-card.next {
        transform: translate3d(140px, 0, -120px) rotateY(-18deg) scale(0.8);
        opacity: 0.35;
    }
    .slide-card.prev {
        transform: translate3d(-140px, 0, -120px) rotateY(18deg) scale(0.8);
        opacity: 0.35;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-card {
        width: 260px;
        min-height: 340px;
    }
    .slide-card.next {
        transform: translate3d(90px, 0, -140px) rotateY(-15deg) scale(0.75);
    }
    .slide-card.prev {
        transform: translate3d(-90px, 0, -140px) rotateY(15deg) scale(0.75);
    }
    
    .contact-card {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   HISPANIC POST INC. SECTION
   ========================================================================== */
.hispanic-post {
    background: linear-gradient(180deg, #020208 0%, #030310 100%);
    border-top: 1px solid rgba(161, 44, 255, 0.12);
    border-bottom: 1px solid rgba(161, 44, 255, 0.12);
}

.hp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hp-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(161, 44, 255, 0.1);
    border: 1px solid rgba(161, 44, 255, 0.25);
    border-radius: 50px;
    color: #c98eff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hp-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.hp-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.hp-desc strong { color: var(--color-text); }
.hp-desc em { color: var(--color-primary); font-style: normal; font-weight: 600; }

.hp-publications {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.hp-pub-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    transition: var(--transition-normal);
}
.hp-pub-card:hover {
    border-color: rgba(161, 44, 255, 0.3);
    transform: translateX(6px);
}
.hp-pub-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp-pub-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}
.hp-pub-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Stats right column */
.hp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hp-stat-card {
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}
.hp-stat-card:hover {
    border-color: rgba(0, 242, 254, 0.25);
    transform: translateY(-4px);
}
.hp-stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}
.hp-stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hp-grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-stats { grid-template-columns: 1fr 1fr; }
}

.hp-pub-logo {
    width: 90px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: var(--transition-normal);
}
.hp-pub-logo--dh {
    background: #fad02c; /* Directorio Hispano signature yellow background */
}
.hp-pub-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.hp-pub-card:hover .hp-pub-logo {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(161, 44, 255, 0.25);
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */
.portafolio {
    background: #030308;
}

/* Filter tabs */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pf-btn {
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}
.pf-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.2);
}
.pf-btn.active {
    background: var(--gradient-hero);
    color: #030308;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
}

/* Portfolio grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.portfolio-card {
    padding: 0;
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Card hidden by filter */
.portfolio-card.hidden {
    display: none;
}

.pf-card-header {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pf-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}
.pf-card-icon {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.15);
}
.pf-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
}

.pf-card-body {
    padding: 28px 28px 24px;
}
.pf-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.pf-card-body p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}
.pf-tech-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-filters { gap: 8px; }
    .pf-btn { padding: 8px 16px; font-size: 12px; }
}

/* ==========================================================================
   PORTFOLIO — VER SITIO BUTTON & CLICKABLE HEADER
   ========================================================================== */
.pf-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.pf-card-link:hover .pf-card-header {
    filter: brightness(1.12);
}
.pf-card-link:hover .pf-card-icon {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}

.pf-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 50px;
    background: rgba(0, 242, 254, 0.05);
    text-decoration: none;
    transition: all 0.25s ease;
}
.pf-visit-btn:hover {
    background: rgba(0, 242, 254, 0.12);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.15);
    transform: translateX(3px);
}
.pf-visit-btn svg {
    transition: transform 0.25s ease;
}
.pf-visit-btn:hover svg {
    transform: translateX(4px);
}

/* --- Header Action Elements (Lang & Theme Toggle) --- */
.nav-actions-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

@media (max-width: 900px) {
    .nav-actions-wrap {
        margin-left: 0;
        margin-top: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
}
.lang-selector a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}
.lang-selector a:hover, .lang-selector a.active {
    color: var(--color-primary);
}

.theme-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--color-panel-border);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.theme-toggle-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* --- Light Mode Overrides (Clean Minimalist Aesthetic) --- */
:root[data-theme="light"] {
    --color-bg: #f8fafc;
    --color-bg-soft: rgba(248, 250, 252, 0.9);
    --color-panel: #ffffff;
    --color-panel-border: rgba(0, 0, 0, 0.08);
    
    --color-text: #0f172a;
    --color-text-muted: #475569;
    --color-text-dark: #64748b;

    --gradient-hero: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --gradient-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    --gradient-dark: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    
    --box-shadow-neon: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-neon-purple: 0 10px 30px rgba(0, 0, 0, 0.05);
}

:root[data-theme="light"] body {
    color: var(--color-text);
}

/* Hide all neon and dark-specific glowing elements in light mode */
:root[data-theme="light"] .glow-bg,
:root[data-theme="light"] .hero-canvas,
:root[data-theme="light"] .floating-shape {
    display: none !important;
}

:root[data-theme="light"] .spotnet-logo-svg .logo-word {
    fill: #0f172a;
}

:root[data-theme="light"] .spotnet-logo-svg .logo-sub {
    fill: #475569;
}

:root[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

:root[data-theme="light"] .nav-link {
    color: #475569;
}

:root[data-theme="light"] .nav-link:hover,
:root[data-theme="light"] .nav-link.active {
    color: #2563eb;
}

:root[data-theme="light"] .theme-toggle-btn {
    border-color: #cbd5e1;
    color: #475569;
}
:root[data-theme="light"] .theme-toggle-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

:root[data-theme="light"] .hero-title,
:root[data-theme="light"] .section-title,
:root[data-theme="light"] h1, 
:root[data-theme="light"] h2, 
:root[data-theme="light"] h3, 
:root[data-theme="light"] h4 {
    color: #0f172a;
}

:root[data-theme="light"] .hero-subtitle,
:root[data-theme="light"] p {
    color: #334155;
}

:root[data-theme="light"] .glass-card, 
:root[data-theme="light"] .ecosystem-card,
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .pf-card-body,
:root[data-theme="light"] .hp-stat-card {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.08);
}

:root[data-theme="light"] .stat-num,
:root[data-theme="light"] .stat-label {
    color: #0f172a;
}

:root[data-theme="light"] .gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

:root[data-theme="light"] .contact-input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

:root[data-theme="light"] .contact-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ==========================================================================
   DROPDOWN MENU STYLES
   ========================================================================== */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-item-dropdown .dropdown-toggle::after {
    content: " \25BC"; /* Down arrow */
    font-size: 0.7em;
    margin-left: 5px;
    opacity: 0.7;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-color);
}

/* Mobile adjustments */
@media (max-width: 968px) {
    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 0;
        margin-top: 10px;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: block;
        transform: none;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        padding: 10px 0;
    }
}
