/* ==========================================================================
   FONT FACE DECLARATIONS FOR LOCAL SYSTEM FONTS
   ========================================================================== */

/* Trade Gothic Next Heavy Condensed */
@font-face {
    font-family: 'Trade Gothic Next HvyCd';
    src: local('Trade Gothic Next HvyCd'),
         local('Trade Gothic Next Heavy Condensed'),
         local('TradeGothicNext-HeavyCondensed'),
         local('Trade Gothic Next W01-HvyCd'),
         local('TradeGothicNext-HvyCd'),
         local('TradeGothicNextHeavyCondensed'),
         local('Trade Gothic Next');
    font-weight: 700 900;
    font-style: normal;
}

/* Speak Pro (Regular / Medium / Bold) */
@font-face {
    font-family: 'Speak Pro';
    src: local('Speak Pro'),
         local('SpeakPro'),
         local('Speak Pro Regular'),
         local('SpeakPro-Regular'),
         local('Speak-Pro'),
         local('SpeakProRegular');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Speak Pro';
    src: local('Speak Pro Medium'),
         local('SpeakPro-Medium'),
         local('Speak Pro-Medium'),
         local('SpeakProMedium'),
         local('Speak Pro');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Speak Pro';
    src: local('Speak Pro SemiBold'),
         local('SpeakPro-SemiBold'),
         local('Speak Pro Bold'),
         local('SpeakPro-Bold'),
         local('SpeakProBold'),
         local('Speak Pro');
    font-weight: 600 700;
    font-style: normal;
}

/* --- Custom Properties & Design Tokens --- */
:root {
    --bg-darker: #0c0a09;       /* Stone 950 */
    --bg-dark: #141210;         /* Stone 925 */
    --bg-card: rgba(26, 24, 22, 0.75); /* Glassmorphic Stone */
    --bg-card-hover: rgba(38, 35, 32, 0.9);
    --bg-accent-dark: #24201d;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(251, 146, 60, 0.35);
    --border-glass: rgba(255, 255, 255, 0.12);
    
    --primary: #fb923c;         /* Orange 400 */
    --primary-hover: #fdba74;   /* Orange 300 */
    --primary-glow: rgba(251, 146, 60, 0.25);
    --primary-dim: rgba(251, 146, 60, 0.12);
    
    --text-white: #ffffff;
    --text-slate: #cbd5e1;      /* Slate 300 */
    --text-dim: #94a3b8;        /* Slate 400 */
    --text-muted: #64748b;
    
    --font-heading: 'Trade Gothic Next HvyCd', 'Trade Gothic Next Heavy Condensed', 'Trade Gothic Next', 'TradeGothicNext-HeavyCondensed', 'Trade Gothic Next W01-HvyCd', 'Oswald', sans-serif;
    --font-sans: 'Speak Pro', 'SpeakPro', 'Speak-Pro', 'SpeakPro-Regular', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Reset & Layout Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-darker);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.5;
}

/* ==========================================================================
   REGLA 1: TODOS LOS TÍTULOS Y ENCABEZADOS (TRADE GOTHIC NEXT HVYCD)
   ========================================================================== */
h1, h2, h3, h4, h5, h6,
.hero-card-title,
.section-title,
.showcase-main-title,
.playground-overlaid-title,
.category-name,
.plan-name,
.roi-metric,
.action-title,
.nav-item-title {
    font-family: var(--font-heading) !important;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

/* ==========================================================================
   REGLA 2: TODO EL RESTO DEL TEXTO (SPEAK PRO)
   ========================================================================== */
body, p, span, a, button, input, select, textarea,
.nav-link,
.hero-card-desc,
.showcase-main-desc,
.playground-overlaid-desc,
.category-sub,
.section-subtitle,
.nav-item-sub,
.btn,
.btn-card-secondary,
.showcase-category-btn,
.plan-desc,
.plan-features-clean,
.plan-features-clean li,
.plan-period,
.roi-tag,
.roi-sub,
.roi-vs,
.faq-trigger,
.faq-content,
.faq-content p,
.action-desc,
.action-footer,
.hero-cursor-hint,
.guarantee-compact-note {
    font-family: var(--font-sans) !important;
}

/* Lenis Smooth Scroll Engine Styles */
html.lenis, html.lenis body {
    height: auto;
}

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

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

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

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Scrollbar Minimal */
html::-webkit-scrollbar {
    width: 5px;
}
html::-webkit-scrollbar-track {
    background: #0c0a09;
}
html::-webkit-scrollbar-thumb {
    background: #24201d;
    border-radius: 3px;
}
html::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    min-height: 100%;
    position: relative;
    background-color: var(--bg-darker);
    overflow-x: hidden;
}

/* Background Ambient Glows */
.ambient-glow {
    position: fixed;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.18;
}

.glow-top {
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #fb923c 0%, rgba(251, 146, 60, 0) 70%);
}

.glow-middle {
    top: 45%;
    right: -200px;
    background: radial-gradient(circle, #f97316 0%, rgba(249, 115, 22, 0) 70%);
}

.glow-bottom {
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, #ea580c 0%, rgba(234, 88, 12, 0) 70%);
}

/* Fullpage Wrapper */
.fullpage-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Section Slide (Natural Smooth Viewport) */
.section-slide {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 1.5rem 4rem 1.5rem;
    box-sizing: border-box;
    overflow: hidden;
}

/* Smooth Progressive Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Atmospheric Slide Backgrounds */
#hero { background: radial-gradient(circle at 50% 25%, #221810 0%, #120d09 60%, #080605 100%); }
#showcase { background: radial-gradient(circle at 50% 40%, #151b22 0%, #0d1217 60%, #06080a 100%); }
#playground { background: radial-gradient(circle at 50% 50%, #1e1814 0%, #110d0b 60%, #090706 100%); }
#precios { background: radial-gradient(circle at 50% 35%, #241910 0%, #120d08 60%, #070503 100%); }
#faq { background: radial-gradient(circle at 50% 55%, #18141e 0%, #0d0b11 60%, #070609 100%); }

/* Subtle Architectural Grid Pattern Overlay */
.section-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.slide-content-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 840px;
    position: relative;
    z-index: 1;
}

/* --- Fixed Top Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0.85rem 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(12, 10, 9, 0.7);
    border-bottom: 1px solid var(--border-subtle);
}

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

.logo-img {
    height: 28px;
    width: auto;
    object-contain: fit;
    display: block;
}

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

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    padding: 0.35rem 0;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.3rem;
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* --- Fixed Side Navigation Dots (Minimalist Architectural Indicator) --- */
.side-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
    background: none;
    border: none;
    padding: 0;
    pointer-events: auto;
}

.side-dot {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    padding: 3px 0;
    transition: var(--transition-fast);
}

.dot-label {
    font-size: 0.65rem;
    color: var(--text-slate);
    background: rgba(14, 12, 10, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: var(--transition-smooth);
    pointer-events: none;
    white-space: nowrap;
}

.dot-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.side-dot:hover .dot-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.side-dot:hover .dot-circle {
    background-color: var(--text-white);
    transform: scale(1.2);
}

.side-dot.active .dot-circle {
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transform: scale(1.4);
}

.side-dot.active .dot-label {
    opacity: 1;
    visibility: visible;
    color: var(--primary);
    border-color: rgba(251, 146, 60, 0.35);
    transform: translateX(0);
}

/* --- Section Headers --- */
.section-header-compact {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1.4rem auto;
}

.section-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.12em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    color: var(--text-white);
    line-height: 1.1;
}

.section-subtitle {
    color: var(--text-slate);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.45;
}

/* --- Buttons & Badges --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-sm {
    padding: 0.42rem 1rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #0c0a09;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-color: var(--border-subtle);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glass);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-glow {
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 28px rgba(251, 146, 60, 0.45);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: rgba(251, 146, 60, 0.08);
    border: 1px solid rgba(251, 146, 60, 0.25);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight { color: var(--primary); }
.font-mono { font-family: var(--font-mono); }

/* ==========================================================================
   00. HERO SECTION — INTERACTIVE REVEAL LENS
   ========================================================================== */
.hero-slide {
    position: relative;
    overflow: hidden;
}

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

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: mask-image, -webkit-mask-image;
}

/* Layer 1: Base Wireframe/Line Drawing (Pixel-Perfect Orange CAD Contours - Soft Subdued Glow) */
.hero-bg-wireframe {
    background-image: url('images/hero_wireframe_orange.jpg');
    opacity: 0.52;
    filter: brightness(0.85) contrast(1.1);
}

/* Layer 2: Exact Matching 4K Photorealistic Render revealed by the flashlight */
.hero-bg-render {
    background-image: url('images/hero_render_4k.jpg');
    opacity: 1;
    mask-image: radial-gradient(circle 320px at var(--lens-x, 50%) var(--lens-y, 45%), black 22%, rgba(0, 0, 0, 0.65) 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 320px at var(--lens-x, 50%) var(--lens-y, 45%), black 22%, rgba(0, 0, 0, 0.65) 60%, transparent 100%);
}

/* Ambient Soft Flashlight Spotlight (+20% larger, diffused organic illumination) */
.hero-flashlight-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.28) 0%, rgba(251, 146, 60, 0.12) 42%, rgba(251, 146, 60, 0.02) 68%, transparent 82%);
    transform: translate(calc(var(--lens-x, 50%) - 340px), calc(var(--lens-y, 45%) - 340px));
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(40px);
    z-index: 3;
}

/* Foreground Content: Chaos V-Ray Style Left-Aligned Layout */
.hero-container-layout {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    padding-top: 1rem;
}

.hero-glass-card-chaos {
    background: rgba(14, 12, 10, 0.58);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.6rem 2.8rem;
    max-width: 580px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    transition: var(--transition-smooth);
}

.hero-glass-card-chaos:hover {
    border-color: rgba(251, 146, 60, 0.35);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 35px rgba(251, 146, 60, 0.12);
    transform: translateY(-2px);
}

.card-brand-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.35rem;
}

.card-brand-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.6vw, 3.1rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.08;
    color: var(--text-white);
    margin: 0;
}

.hero-card-desc {
    font-size: clamp(0.9rem, 1.15vw, 1.02rem);
    color: var(--text-slate);
    text-align: left;
    margin: 0;
    font-weight: 400;
    line-height: 1.55;
}

.hero-card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.4rem;
    width: 100%;
    flex-wrap: wrap;
}

.btn-card-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 9999px;
    padding: 0.72rem 1.6rem;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-card-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero-glass-card-chaos .btn-primary {
    border-radius: 9999px;
    padding: 0.72rem 1.6rem;
    font-size: 0.88rem;
}

.hero-cursor-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(18, 15, 13, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: 9999px;
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
    margin-top: 1.4rem;
    animation: hintPulse 2.5s infinite;
}

.hint-icon {
    width: 14px;
    height: 14px;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.9; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(3px); }
}

/* ==========================================================================
   01. SHOWCASE INMERSIVO A PANTALLA COMPLETA
   ========================================================================== */
.showcase-slide {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.showcase-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.showcase-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 10, 9, 0.25) 0%, rgba(12, 10, 9, 0.75) 100%),
                linear-gradient(180deg, rgba(12, 10, 9, 0.5) 0%, transparent 35%, rgba(12, 10, 9, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.showcase-immersive-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
    min-height: 80vh;
    padding: 5rem 1.5rem 3.5rem 1.5rem;
}

/* Left: Clean Floating Text Block on the Left */
.showcase-minimal-text {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.75rem;
    align-self: flex-end;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

.showcase-main-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--text-white);
    line-height: 1.08;
    margin: 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}

.showcase-main-desc {
    font-family: var(--font-sans) !important;
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    color: var(--text-slate);
    line-height: 1.55;
    margin: 0;
    font-weight: 400;
    max-width: 460px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

/* Right: Vertical Category Switcher List on the Right */
.showcase-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    max-width: 360px;
    align-self: flex-end;
    margin: 0;
    position: relative;
    z-index: 10;
}

.showcase-category-btn {
    background: rgba(18, 15, 13, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0 1rem;
    height: 58px;
    min-height: 58px;
    max-height: 58px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    color: inherit;
    box-sizing: border-box;
}

.showcase-category-btn:hover {
    background: rgba(28, 24, 20, 0.85);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateX(-4px);
}

.showcase-category-btn.active {
    background: rgba(38, 30, 24, 0.92);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(251, 146, 60, 0.22), inset 0 0 0 1px var(--primary);
    transform: translateX(-6px);
}

.category-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.category-icon-box i {
    width: 18px;
    height: 18px;
}

.showcase-category-btn.active .category-icon-box {
    background: var(--primary);
    color: #0c0a09;
    box-shadow: 0 0 12px rgba(251, 146, 60, 0.4);
}

.category-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    gap: 2px;
}

.category-name {
    font-family: var(--font-heading) !important;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-white);
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-sub {
    font-family: var(--font-sans) !important;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-dim);
    margin-left: auto;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.showcase-category-btn.active .category-arrow {
    color: var(--primary);
    transform: translateX(2px);
}

/* ==========================================================================
   02. PLAYGROUND INTERACTIVO SECTION (FULLSCREEN IMMERSIVE COMPARATOR)
   ========================================================================== */
.playground-immersive-section {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #0c0a09;
}

.playground-immersive-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    background: #000;
}

.image-base-layer,
.image-reveal-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-base-layer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
}

.image-reveal-layer {
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid var(--primary);
    box-shadow: 6px 0 35px rgba(251, 146, 60, 0.45);
    z-index: 10;
}

.image-reveal-layer img {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--slider-w, 100vw);
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
}

.playground-floating-header {
    position: absolute;
    top: 5rem;
    right: 3.5rem;
    left: auto;
    transform: none;
    z-index: 25;
    text-align: right;
    max-width: 580px;
    width: 90%;
    background: rgba(14, 12, 10, 0.62);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.6rem 2.2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    pointer-events: none;
}

.playground-overlaid-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.8rem, 2.7vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--text-white);
    line-height: 1.1;
    margin: 0;
    text-align: right;
}

.playground-overlaid-desc {
    font-family: var(--font-sans) !important;
    font-size: clamp(0.84rem, 0.98vw, 0.92rem);
    color: var(--text-slate);
    line-height: 1.5;
    margin: 0;
    text-align: right;
    max-width: 480px;
}

.label-left, .label-right {
    position: absolute;
    bottom: 2.5rem;
    padding: 6px 14px;
    background: rgba(12, 10, 9, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-white);
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 20;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.label-left { left: 3rem; }
.label-right { right: 3rem; }

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 36px;
    margin-left: -18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: ew-resize;
}

.handle-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #0c0a09;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--primary);
    border: 2px solid #ffffff;
}

.handle-button i {
    width: 18px;
    height: 18px;
}

.handle-line {
    width: 2px;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.tech-box-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Extrusion Container */
.workflow-image-container {
    position: relative;
    width: 100%;
    height: 235px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-subtle);
    margin-bottom: 0.85rem;
}

.workflow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.workflow-img.active {
    opacity: 1;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 12px var(--primary);
    opacity: 0;
    z-index: 10;
}

.scanline.animating {
    animation: scanlaser 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scanlaser {
    0% { top: 0%; opacity: 1; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.playground-controls {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.btn-group-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    background: rgba(18, 15, 13, 0.7);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.btn-tab {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.45rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-tab.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

/* ==========================================================================
   AMBIENT BACKGROUNDS FOR SLIDES 03 & 04 (WARM ARCHITECTURAL GLOW)
   ========================================================================== */
.prices-immersive-section,
.faq-immersive-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0c0a;
}

.section-ambient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 40%;
    opacity: 0.75;
    filter: blur(2px) brightness(0.92);
    transform: scale(1.02);
    z-index: 1;
    pointer-events: none;
}

.section-ambient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(14, 11, 9, 0.45) 0%, rgba(12, 9, 8, 0.76) 65%, rgba(10, 8, 7, 0.92) 100%),
                radial-gradient(circle at 50% 65%, rgba(251, 146, 60, 0.08) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.prices-immersive-section .container,
.faq-immersive-section .container {
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   03. PRECIOS & PLANES SECTION
   ========================================================================== */
.pricing-grid-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    width: 100%;
    max-width: 880px;
    margin: 1.5rem auto 0 auto;
}

.pricing-card-clean {
    background: rgba(16, 13, 11, 0.76);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card-clean:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.pricing-card-clean.featured {
    background: rgba(24, 18, 14, 0.82);
    border-color: rgba(251, 146, 60, 0.55);
    box-shadow: 0 0 35px rgba(251, 146, 60, 0.16), 0 30px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.plan-header {
    margin-bottom: 0.9rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-type {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

.plan-name {
    font-family: var(--font-heading) !important;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.plan-price {
    font-family: var(--font-heading) !important;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.plan-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.plan-features-clean {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.plan-features-clean li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-slate);
    line-height: 1.35;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.guarantee-compact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
}

/* ==========================================================================
   04. FAQ & CIERRE SECTION
   ========================================================================== */
.faq-unified-layout {
    display: grid;
    grid-template-columns: 1.25fr 380px;
    gap: 1.8rem;
    width: 100%;
    max-width: 1060px;
    align-items: stretch;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item.glass-panel {
    background: rgba(16, 13, 11, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.faq-item.glass-panel.active {
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 146, 60, 0.08);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 0.95rem 1.2rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
}

.faq-q-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-index {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
}

.faq-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(12, 10, 9, 0.45);
}

.faq-content p {
    padding: 0 1.2rem 0.95rem 1.2rem;
    font-size: 0.8rem;
    color: var(--text-slate);
    line-height: 1.5;
}

.faq-action-card.glass-card {
    background: rgba(20, 16, 13, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(251, 146, 60, 0.45);
    border-radius: 16px;
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.4rem;
    box-shadow: 0 0 35px rgba(251, 146, 60, 0.12), 0 30px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.action-card-header .tech-badge {
    margin-bottom: 0.9rem;
}

.action-title {
    font-family: var(--font-heading) !important;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.action-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.45;
}

.action-footer {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.68rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.75rem;
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATION SYSTEM (MOBILE & TABLET)
   ========================================================================== */

/* Prevent horizontal scroll globally */
html, body {
    overflow-x: hidden;
    width: 100%;
}

.fullpage-wrapper {
    overflow-x: hidden;
    width: 100%;
}

/* --- Medium Screens & Tablets (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hero-container-layout {
        padding: 5rem 1.5rem 2rem 1.5rem;
    }
    .hero-glass-card-chaos {
        max-width: 520px;
        padding: 2.2rem 2.2rem;
    }
    .showcase-immersive-container {
        padding: 5rem 1.5rem 3rem 1.5rem;
        gap: 2rem;
    }
    .playground-floating-header {
        top: 4.5rem;
        right: 2rem;
        max-width: 480px;
        padding: 1.2rem 1.6rem;
    }
    .pricing-grid-clean {
        max-width: 780px;
    }
}

/* --- Tablets & Mobile Devices (max-width: 900px) --- */
@media (max-width: 900px) {
    html {
        scroll-snap-type: none;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        box-sizing: border-box;
    }

    .section-slide {
        height: auto !important;
        min-height: 100svh !important;
        scroll-snap-align: none !important;
        overflow: visible !important;
        padding-top: 5.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .slide-content-center {
        height: auto !important;
        max-height: none !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .prices-immersive-section,
    .faq-immersive-section {
        height: auto !important;
        min-height: 100svh !important;
        overflow: visible !important;
        padding-top: 5.5rem !important;
        padding-bottom: 4rem !important;
    }
    
    .side-nav {
        display: none !important;
    }

    /* Fixed Top Navbar & High-Contrast Mobile Hamburger */
    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.22) !important;
        cursor: pointer !important;
        z-index: 101 !important;
    }

    .menu-toggle .bar {
        width: 20px;
        height: 2px;
        background-color: #ffffff;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(12, 10, 9, 0.98);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 3rem 2rem;
        gap: 1.6rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
        z-index: 95;
    }

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

    .nav-link {
        font-family: var(--font-heading);
        font-size: 1.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-white);
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link.active {
        color: var(--primary);
    }

    /* 01. Showcase Slide Fixes */
    .showcase-slide {
        height: auto !important;
        min-height: 100svh !important;
        padding-top: 5.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .showcase-immersive-container {
        min-height: auto !important;
        padding: 0 !important;
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1.5rem !important;
    }

    .showcase-minimal-text {
        max-width: 100% !important;
        align-self: flex-start !important;
        margin-bottom: 0.25rem !important;
    }

    .showcase-main-title {
        font-size: 1.75rem !important;
        line-height: 1.12 !important;
    }

    .showcase-main-desc {
        font-size: 0.86rem !important;
        line-height: 1.45 !important;
    }

    .showcase-category-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.55rem !important;
    }

    .showcase-category-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        transform: none !important;
        height: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
        padding: 0 0.85rem !important;
    }

    .showcase-category-btn:hover {
        transform: none !important;
    }

    .showcase-category-btn.active {
        transform: none !important;
        border-color: var(--primary) !important;
        box-shadow: 0 0 16px rgba(251, 146, 60, 0.3), inset 0 0 0 1.5px var(--primary) !important;
    }

    .category-info {
        min-width: 0 !important;
        flex: 1 !important;
        overflow: hidden !important;
    }

    .category-name {
        font-size: 0.84rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .category-sub {
        font-size: 0.68rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
    }

    /* 02. Playground Slide */
    .playground-immersive-section {
        height: 100svh !important;
        min-height: 100svh !important;
        padding: 0 !important;
    }

    .playground-floating-header {
        top: 4.5rem !important;
        right: 1rem !important;
        left: 1rem !important;
        width: auto !important;
        max-width: none !important;
        padding: 0.9rem 1.1rem !important;
        border-radius: 12px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .playground-overlaid-title {
        font-size: 1.15rem !important;
        text-align: left !important;
    }

    .playground-overlaid-desc {
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
        text-align: left !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .label-left { left: 1rem !important; bottom: 1.5rem !important; font-size: 0.65rem !important; padding: 4px 8px !important; }
    .label-right { right: 1rem !important; bottom: 1.5rem !important; font-size: 0.65rem !important; padding: 4px 8px !important; }

    /* 03. Precios Grid Fixes */
    .pricing-grid-clean {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 440px !important;
        margin: 0 auto 1.5rem auto !important;
        gap: 1.4rem !important;
    }

    .pricing-card-clean {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.6rem 1.3rem !important;
    }

    /* 04. FAQ Layout Fixes */
    .faq-unified-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 520px !important;
        margin: 0 auto !important;
        gap: 1.6rem !important;
    }

    .faq-item.glass-panel {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .faq-trigger {
        padding: 0.85rem 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .faq-q-title {
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
        text-align: left !important;
    }

    .faq-content {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .faq-action-card {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.6rem 1.3rem !important;
    }
}

/* --- Small Mobile Phones (max-width: 540px) --- */
@media (max-width: 540px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    .logo-img {
        height: 24px;
    }
    .nav-actions .btn-primary {
        padding: 0.38rem 0.75rem;
        font-size: 0.75rem;
    }
    .hero-glass-card-chaos {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
        gap: 0.95rem;
    }
    .hero-card-title {
        font-size: 1.7rem;
        line-height: 1.1;
    }
    .hero-card-desc {
        font-size: 0.86rem;
        line-height: 1.45;
    }
    .hero-card-actions {
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
    }
    .hero-card-actions .btn {
        width: 100%;
        height: 46px;
    }
    .hero-cursor-hint {
        font-size: 0.62rem;
        padding: 0.3rem 0.75rem;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .section-title {
        font-size: 1.55rem !important;
        line-height: 1.15 !important;
    }
    .section-subtitle {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
    }
    .pricing-card-clean {
        padding: 1.4rem 1.15rem !important;
    }
    .plan-price {
        font-size: 2.2rem !important;
    }
    .faq-q-title {
        font-size: 0.8rem !important;
    }
    .faq-content p {
        font-size: 0.78rem !important;
    }
    .faq-action-card {
        padding: 1.4rem 1.15rem !important;
    }
    .action-title {
        font-size: 1.2rem !important;
    }
}
