/* Variables de Marca */
:root {
    --color-primary: #0B1020;
    --color-secondary: #151D33;
    --color-accent: #3B82F6;
    --color-accent-2: #06B6D4;
    --color-light: #F8FAFC;
    --color-text: #172033;
    --color-muted: #64748B;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-card-bg: rgba(21, 29, 51, 0.5);
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background-color: var(--color-primary); color: var(--color-light); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
::selection { background: var(--color-accent); color: #fff; }

/* Utils */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.highlight { color: var(--color-accent-2); }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Header */
.nex-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 24px 0; transition: all 0.3s ease; }
.nex-header.scrolled { background: rgba(11, 16, 32, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); padding: 16px 0; }
.nex-header__container { display: flex; justify-content: space-between; align-items: center; }
.nex-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-weight: 700; font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 1px; }
.nex-logo__img { height: 36px; width: auto; max-width: 180px; object-fit: contain; }
.nex-nav { display: flex; align-items: center; gap: 32px; }
.nex-nav__list { display: flex; list-style: none; gap: 28px; }
.nex-nav__list a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; position: relative; }
.nex-nav__list a:hover, .nex-nav__list a.active { color: #fff; }
.nex-nav__list a.active::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2)); }

/* Botones */
.nex-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none; cursor: pointer; border: none; transition: all 0.3s ease; font-family: var(--font-body); background: none; color: inherit; }
.nex-btn--primary { background: var(--color-accent); color: #fff; box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3); }
.nex-btn--primary:hover { background: #2563EB; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4); }
.nex-btn--accent { background: var(--color-accent-2); color: #001920; }
.nex-btn--accent:hover { background: #08BDCF; transform: translateY(-2px); }
.nex-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.nex-btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.nex-btn--block { width: 100%; margin-top: 16px; }

/* Burger */
.nex-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.nex-burger span { width: 26px; height: 2px; background: #fff; transition: all 0.3s; }
.nex-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nex-burger.active span:nth-child(2) { opacity: 0; }
.nex-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.nex-hero { padding: 160px 0 80px; position: relative; overflow: hidden; }
.nex-hero__container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.nex-tag { display: inline-block; font-size: 0.8rem; letter-spacing: 2px; color: var(--color-accent-2); font-weight: 600; margin-bottom: 16px; text-transform: uppercase; }
.nex-hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.1; margin-bottom: 24px; font-weight: 800; }
.nex-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 32px; }
.nex-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.nex-hero__visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.hero-orb { width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, rgba(11,16,32,0) 70%); position: absolute; animation: pulse 4s infinite ease-in-out; }
.hero-network { position: relative; z-index: 2; width: 100%; height: 100%; }
.pulse-node { animation: nodePulse 2s infinite ease-in-out; transform-origin: center; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes nodePulse { 0%, 100% { r: 4; opacity: 0.6; } 50% { r: 6; opacity: 1; } }

/* Section Common */
.nex-section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 40px; line-height: 1.2; font-weight: 700; }
.nex-section__header { text-align: center; max-width: 700px; margin: 0 auto 60px; }

/* Trust Block */
.nex-trust { padding: 80px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: rgba(21, 29, 51, 0.3); }
.nex-trust__title { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem); text-align: center; max-width: 800px; margin: 0 auto 48px; font-weight: 600; line-height: 1.3; }
.nex-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.nex-trust__item h3 { font-family: var(--font-head); margin: 12px 0 8px; color: var(--color-accent-2); }
.nex-trust__item p { font-size: 0.9rem; color: var(--color-muted); }
.nex-trust__item .material-icons { font-family: var(--font-head); font-size: 1.2rem; color: #fff; background: var(--color-secondary); padding: 8px 12px; border-radius: 20px; border: 1px solid var(--color-border); }

/* Problem Section */
.nex-problem { padding: 100px 0; text-align: center; }
.nex-problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.nex-problem__item { background: var(--color-card-bg); border: 1px solid var(--color-border); padding: 20px; border-radius: 8px; color: rgba(255,255,255,0.8); transition: all 0.3s; }
.nex-problem__item:hover { border-color: rgba(239, 68, 68, 0.5); transform: translateY(-4px); }
.nex-problem__subtitle { font-family: var(--font-head); font-size: 1.4rem; color: var(--color-accent-2); margin-top: 32px; font-weight: 600; }

/* Services Tabs */
.nex-services { padding: 100px 0; }
.nex-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.nex-tab { background: transparent; border: 1px solid var(--color-border); color: rgba(255,255,255,0.7); padding: 10px 20px; border-radius: 24px; cursor: pointer; transition: all 0.3s; font-family: var(--font-body); font-weight: 500; }
.nex-tab:hover { border-color: var(--color-accent); color: #fff; }
.nex-tab.active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.nex-tabs-content { position: relative; min-height: 300px; }
.nex-tab-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 24px; animation: fadeIn 0.5s ease; }
.nex-tab-panel.active { display: grid; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.nex-service-card { background: var(--color-card-bg); backdrop-filter: blur(10px); border: 1px solid var(--color-border); padding: 28px; border-radius: 12px; transition: all 0.3s; }
.nex-service-card:hover { border-color: var(--color-accent); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.nex-service-card h4 { font-family: var(--font-head); margin-bottom: 12px; color: #fff; font-size: 1.1rem; }
.nex-service-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 16px; }
.nex-card__link { color: var(--color-accent-2); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.3s; background: none; border: none; cursor: pointer; font-family: var(--font-body); padding: 0; }
.nex-card__link:hover { color: #fff; }
.nex-card__msg { color: var(--color-accent) !important; font-style: italic; font-weight: 500; }

/* Methodology */
.nex-method { padding: 100px 0; background: var(--color-secondary); clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); }
.nex-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.nex-timeline__item { text-align: center; padding: 0 10px; }
.nex-timeline__num { display: inline-block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--color-accent); background: var(--color-primary); width: 50px; height: 50px; line-height: 50px; border-radius: 50%; border: 2px solid var(--color-accent); margin-bottom: 16px; }
.nex-timeline__item h3 { font-family: var(--font-head); margin-bottom: 8px; }
.nex-timeline__item p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* Results */
.nex-results { padding: 120px 0; text-align: center; }
.nex-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.nex-metric { border: 1px solid var(--color-border); padding: 32px; border-radius: 12px; background: linear-gradient(145deg, rgba(59,130,246,0.05) 0%, rgba(11,16,32,0) 100%); }
.nex-metric h3 { font-family: var(--font-head); font-size: 3rem; color: var(--color-accent-2); display: inline-block; }
.nex-metric span { font-family: var(--font-head); font-size: 3rem; color: var(--color-accent-2); }
.nex-metric p { margin-top: 8px; color: rgba(255,255,255,0.7); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.nex-metric small { color: var(--color-muted); text-transform: none; letter-spacing: 0; display: block; margin-top: 4px; }

/* Cases */
.nex-cases { padding: 100px 0; background: var(--color-secondary); }
.nex-cases__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.nex-case { background: var(--color-primary); border-radius: 12px; overflow: hidden; border: 1px solid var(--color-border); }
.nex-case__img { height: 220px; width: 100%; background-size: cover; background-position: center; }
.placeholder-1 { background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%); }
.placeholder-2 { background: linear-gradient(135deg, #4338CA 0%, #3B82F6 100%); }
.nex-case__content { padding: 28px; }
.nex-case__content span { color: var(--color-accent-2); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.nex-case__content h3 { font-family: var(--font-head); margin: 12px 0 16px; font-size: 1.4rem; }
.nex-case__content p { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }

/* B2B Section */
.nex-b2b { padding: 120px 0; text-align: center; }
.nex-b2b__container { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.nex-b2b__text { max-width: 700px; }
.nex-b2b__text p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 16px; }
.nex-b2b__tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.nex-b2b__tags span { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); color: var(--color-accent); padding: 8px 20px; border-radius: 24px; font-size: 0.9rem; font-weight: 500; }

/* Why Nexiorum */
.nex-why { padding: 100px 0; }
.nex-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.nex-why__card { padding: 32px; background: var(--color-card-bg); border: 1px solid var(--color-border); border-radius: 12px; transition: all 0.3s; }
.nex-why__card:hover { border-color: var(--color-accent-2); transform: translateY(-4px); }
.nex-why__card h3 { font-family: var(--font-head); margin-bottom: 12px; color: #fff; font-size: 1.1rem; }
.nex-why__card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* Testimonials */
.nex-testimonials { padding: 80px 0; background: var(--color-secondary); }
.nex-testimonial-slider { max-width: 800px; margin: 0 auto; text-align: center; }
.nex-testimonial p { font-family: var(--font-head); font-size: 1.4rem; font-style: italic; margin-bottom: 32px; color: rgba(255,255,255,0.9); }
.nex-testimonial__author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.avatar-placeholder { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%); }
.nex-testimonial__author h4 { font-family: var(--font-head); color: #fff; }
.nex-testimonial__author span { color: var(--color-muted); font-size: 0.9rem; }

/* CTA Banner */
.nex-cta-banner { padding: 100px 0; text-align: center; background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%); }
.nex-cta-banner h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.nex-cta-banner p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* Blog */
.nex-blog { padding: 100px 0; }
.nex-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nex-blog-card { background: var(--color-card-bg); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.nex-blog-card:hover { transform: translateY(-4px); border-color: var(--color-accent); }
.nex-blog-card__img { height: 180px; width: 100%; }
.blog-placeholder-1 { background: linear-gradient(135deg, #1E293B 0%, #3B82F6 100%); }
.blog-placeholder-2 { background: linear-gradient(135deg, #1E293B 0%, #06B6D4 100%); }
.blog-placeholder-3 { background: linear-gradient(135deg, #1E293B 0%, #4F46E5 100%); }
.nex-blog-card__cat { display: inline-block; margin: 20px 0 8px 20px; font-size: 0.8rem; color: var(--color-accent-2); font-weight: 600; }
.nex-blog-card h3 { font-family: var(--font-head); padding: 0 20px; font-size: 1.2rem; margin-bottom: 12px; }
.nex-blog-card p { padding: 0 20px; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; flex-grow: 1; }

/* Modal Button Specific Class */
.nex-modal-btn { display: inline-block; margin: 0 20px 20px; color: var(--color-accent-2); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.3s; background: transparent; border: none; cursor: pointer; font-family: var(--font-body); padding: 0; text-align: left; }
.nex-modal-btn:hover { color: #fff; }

/* FAQ */
.nex-faq { padding: 100px 0; background: var(--color-secondary); }
.nex-accordion { max-width: 800px; margin: 0 auto; }
.nex-accordion__item { border-bottom: 1px solid var(--color-border); }
.nex-accordion__header { width: 100%; padding: 24px 0; background: none; border: none; color: #fff; font-family: var(--font-head); font-size: 1.1rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.nex-accordion__header::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); transition: transform 0.3s; }
.nex-accordion__item.active .nex-accordion__header::after { transform: rotate(45deg); }
.nex-accordion__content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.nex-accordion__item.active .nex-accordion__content { max-height: 200px; }
.nex-accordion__content p { padding-bottom: 24px; color: rgba(255,255,255,0.7); }

/* Contact */
.nex-contact { padding: 120px 0; }
.nex-contact__container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.nex-contact__info p { color: rgba(255,255,255,0.7); margin: 20px 0 32px; }
.nex-contact__list { list-style: none; }
.nex-contact__list li { margin-bottom: 12px; color: rgba(255,255,255,0.8); }
.nex-contact__list strong { color: #fff; }
.nex-form { background: var(--color-card-bg); border: 1px solid var(--color-border); padding: 40px; border-radius: 16px; backdrop-filter: blur(10px); }
.nex-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.nex-field { display: flex; flex-direction: column; margin-bottom: 20px; }
.nex-field label { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 8px; font-weight: 500; }
.nex-field input, .nex-field select, .nex-field textarea { background: rgba(11,16,32,0.6); border: 1px solid var(--color-border); border-radius: 8px; padding: 12px 16px; color: #fff; font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; }
.nex-field input:focus, .nex-field select:focus, .nex-field textarea:focus { outline: none; border-color: var(--color-accent); }
.nex-form__status { text-align: center; margin-top: 16px; font-size: 0.95rem; color: var(--color-accent-2); }

/* Footer */
.nex-footer { background: #070A15; padding: 80px 0 0; border-top: 1px solid var(--color-border); }
.nex-footer__container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.nex-footer__brand p { color: var(--color-muted); margin-top: 16px; }
.nex-footer__col h4 { font-family: var(--font-head); margin-bottom: 20px; color: #fff; font-size: 1.1rem; }
.nex-footer__col ul { list-style: none; }
.nex-footer__col ul li { margin-bottom: 12px; }
.nex-footer__col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; font-size: 0.95rem; }
.nex-footer__col ul li a:hover { color: var(--color-accent); }
.nex-footer__bottom { border-top: 1px solid var(--color-border); padding: 24px 0; }
.nex-footer__bottom .container { display: flex; justify-content: space-between; align-items: center; }
.nex-footer__bottom p { color: var(--color-muted); font-size: 0.9rem; }
.nex-footer__bottom ul { display: flex; list-style: none; gap: 24px; }
.nex-footer__bottom ul a { color: var(--color-muted); text-decoration: none; font-size: 0.9rem; }
.nex-footer__bottom ul a:hover { color: #fff; }

/* WhatsApp FAB & ScrollTop */
.nex-wsp { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: all 0.3s; text-decoration: none; }
.nex-wsp:hover { transform: scale(1.05); }
.nex-wsp__tooltip { position: absolute; right: 70px; background: #fff; color: #000; padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.nex-wsp:hover .nex-wsp__tooltip { opacity: 1; }
.nex-scrolltop { position: fixed; bottom: 90px; right: 24px; width: 40px; height: 40px; background: var(--color-secondary); border: 1px solid var(--color-border); color: #fff; border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; font-size: 1.2rem; line-height: 1; }
.nex-scrolltop.visible { opacity: 1; visibility: visible; }
.nex-scrolltop:hover { background: var(--color-accent); border-color: var(--color-accent); }

/* Modales */
.nex-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(7, 10, 21, 0.9); backdrop-filter: blur(8px); z-index: 1002; display: none; justify-content: center; align-items: center; padding: 24px; overflow-y: auto; }
.nex-modal-overlay.is-open { display: flex; }
.nex-modal { background: var(--color-secondary); border: 1px solid var(--color-border); border-radius: 12px; max-width: 700px; width: 100%; padding: 40px; position: relative; margin: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.5); animation: modalIn 0.4s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.nex-modal__close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; transition: background 0.3s; }
.nex-modal__close:hover { background: #EF4444; }
.nex-modal__title { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 8px; color: #fff; }
.nex-modal__subtitle { display: block; color: var(--color-accent-2); font-size: 0.9rem; font-weight: 600; margin-bottom: 24px; }
.nex-modal__section { margin-bottom: 24px; }
.nex-modal__section h3 { font-family: var(--font-head); margin-bottom: 8px; color: var(--color-accent); font-size: 1.1rem; }
.nex-modal__section p, .nex-modal p { color: rgba(255,255,255,0.8); margin-bottom: 16px; line-height: 1.7; }
.nex-modal__section ul { list-style: none; padding-left: 0; }
.nex-modal__section ul li { color: rgba(255,255,255,0.8); margin-bottom: 8px; padding-left: 20px; position: relative; }
.nex-modal__section ul li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent-2); font-weight: bold; }
.nex-modal__h3 { font-family: var(--font-head); margin: 24px 0 8px; color: var(--color-accent); font-size: 1.1rem; }

/* Responsive Mobile First Fixes */
@media (max-width: 1024px) {
    .nex-hero__container, .nex-contact__container { grid-template-columns: 1fr; }
    .nex-hero__visual { display: none; }
    .nex-trust__grid, .nex-metrics, .nex-why__grid { grid-template-columns: repeat(2, 1fr); }
    .nex-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .nex-footer__container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nex-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--color-primary); flex-direction: column; justify-content: center; gap: 40px; transition: right 0.4s ease; }
    .nex-nav.active { right: 0; }
    .nex-nav__list { flex-direction: column; text-align: center; gap: 24px; }
    .nex-burger { display: flex; }
    .nex-tab-panel.active { grid-template-columns: 1fr; }
    .nex-cases__grid, .nex-blog__grid { grid-template-columns: 1fr; }
    .nex-form__grid { grid-template-columns: 1fr; }
    .nex-footer__bottom .container { flex-direction: column; gap: 12px; text-align: center; }
    .nex-footer__bottom ul { flex-wrap: wrap; justify-content: center; }
    .nex-modal { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}