/* style.css - Versión Final Definitiva */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Variables de color para Timeline */
    --color-secret: #98fb98; /* Verde Pastel */
    --color-pro: #8b5cf6;    /* Morado Pro */
    --color-gold: #ffd700;   /* Dorado */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--primary-white);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* Prevent text overflow globally */
p, li, td, th, span, a, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* --- PARTÍCULAS --- */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    top: 0;
    left: 0;
    z-index: -1;
}

/* Logo */
.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navegación */
.navbar {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: var(--primary-white) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ccc !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-white);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Navbar Auth Button */
.nav-auth-item {
    margin-left: 0.75rem;
}

.nav-auth-btn {
    display: flex !important;
    align-items: center;
    gap: 0;
    padding: 0.45rem 1.1rem !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 0.85rem !important;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-auth-btn:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.25);
}

.nav-auth-btn::after {
    display: none !important;
}

.nav-auth-logged {
    gap: 8px;
}

.nav-auth-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.nav-auth-name {
    font-size: 0.85rem;
    font-weight: 500;
}

/* DISEÑO MENÚ HAMBURGUESA */
.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    background: transparent !important;
    position: relative;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

.navbar-toggler:hover .navbar-toggler-icon::before { top: -10px; }
.navbar-toggler:hover .navbar-toggler-icon::after { top: 10px; }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon { background-color: transparent; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before { top: 0; transform: rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after { top: 0; transform: rotate(-45deg); }

/* Secciones Hero */
.hero-section,
.about-hero-section,
.mywallet-hero-section,
.services-hero-section,
.contact-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.8) 100%);
    padding-top: 80px;
}

/* Hero auto-height on mobile to prevent content cutoff */
@media (max-width: 992px) {
    .hero-section,
    .about-hero-section,
    .mywallet-hero-section,
    .services-hero-section,
    .contact-hero-section {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 60px;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight { color: #888; }

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

/* --- BOTONES --- */
.btn-primary {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #ddd;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-white);
    border: 1px solid var(--primary-white);
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Efecto liquid glass */
.liquid-glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

.hero-image-container { position: relative; }

.app-icons { display: flex; justify-content: center; gap: 2rem; }

.app-icon {
    width: 80px; height: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.app-icon:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.floating-animation { animation: floating 6s ease-in-out infinite; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Secciones generales */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle { font-size: 1.2rem; color: #ccc; margin-bottom: 3rem; }

/* Fondos con transparencia */
.about-preview-section { background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%); }

.about-preview-image { display: flex; justify-content: center; }

.image-placeholder {
    width: 300px; height: 300px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem; color: #888;
}

/* HISTORIA */
.history-section { background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%); }

.history-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.history-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.history-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Valores */
.values-section { background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%); }

.value-card {
    text-align: center; padding: 2rem; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-start;
}

.value-icon { font-size: 3rem; color: #888; margin-bottom: 1.5rem; }
.value-card h4 { font-size: 1.5rem; margin-bottom: 1rem; }

/* Equipo */
.team-section { background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%); }

.team-card {
    text-align: center; padding: 2rem; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-start;
}

.team-img {
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 3rem; color: #888;
}

.team-role { color: #888; font-weight: 600; margin-bottom: 1rem; }
.team-desc { font-size: 0.9rem; color: #ccc; }

/* MyWallet */
.mywallet-preview-section { background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%); }

.app-stats { display: flex; gap: 2rem; margin-top: 2rem; }
.stat-item h4 { font-size: 2rem; font-weight: 700; }
.stat-item p { color: #ccc; font-size: 0.9rem; }

/* Móvil Unificado */
.phone-mockup, 
.phone-mockup-large {
    width: 300px; height: 620px;
    background: var(--primary-black);
    border-radius: 40px; padding: 8px; position: relative; margin: 0 auto;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.phone-mockup .phone-screen, 
.phone-mockup-large .phone-screen {
    width: 100%; height: 100%; background: #000;
    border-radius: 30px; overflow: hidden; padding: 0;
    display: flex; align-items: center; justify-content: center;
}

.phone-mockup .phone-screen img, 
.phone-mockup-large .phone-screen img {
    max-width: 100%; max-height: 100%; width: auto; height: auto;
    object-fit: contain; border-radius: 25px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Legacy MyWallet styles */
.wallet-header { text-align: center; margin-bottom: 2rem; }
.wallet-header h5 { font-size: 1.5rem; font-weight: 600; }
.balance { font-size: 2.5rem; font-weight: 700; display: block; margin-top: 0.5rem; }

/* Características MyWallet */
.features-section { background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%); }

.feature-card-large {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 15px; padding: 2rem; height: 100%; transition: all 0.3s ease;
    display: flex; flex-direction: column; justify-content: center;
}

.feature-card-large:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

.feature-icon-large { font-size: 3rem; color: #888; margin-bottom: 1.5rem; }
.feature-list { list-style: none; padding-left: 0; margin-top: 1rem; }
.feature-list li {
    padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.feature-demo { padding: 2rem; }
.demo-images { display: flex; gap: 1rem; margin-top: 1.5rem; }
.demo-img-small {
    width: 80px; height: 80px; background: rgba(255, 255, 255, 0.1);
    border-radius: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}

.security-features { display: flex; gap: 1rem; margin-top: 1.5rem; }
.security-item { text-align: center; flex: 1; }
.security-item i { font-size: 2rem; margin-bottom: 0.5rem; color: #888; }
.security-item span { display: block; font-size: 0.8rem; }

/* Descarga */
.download-section { background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%); }
.download-card { padding: 3rem; }

.btn-playstore {
    display: inline-flex; align-items: center; background: #000; color: #fff;
    padding: 1rem 2rem; border-radius: 0; border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none; transition: all 0.3s ease;
}
.btn-playstore:hover { background: #111; transform: translateY(-3px); border-color: #fff; }
.btn-playstore i { font-size: 2.5rem; margin-right: 1rem; }
.btn-text { display: flex; flex-direction: column; }
.btn-text span { font-size: 0.8rem; }
.btn-text strong { font-size: 1.2rem; }

.qrcode-placeholder {
    text-align: center; padding: 2rem; background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}
.qrcode-placeholder i { font-size: 6rem; color: #888; margin-bottom: 1rem; }

/* Servicios */
.services-detail-section { background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%); }
.service-detail-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 15px; padding: 2.5rem; height: 100%; transition: all 0.3s ease;
}
.service-detail-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}
.service-detail-icon { font-size: 3.5rem; color: #888; margin-bottom: 1.5rem; }
.tech-stack { margin: 1.5rem 0; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.tech-tag {
    background: rgba(255, 255, 255, 0.1); padding: 0.3rem 0.8rem;
    border-radius: 20px; font-size: 0.8rem;
}
.service-benefits { list-style: none; padding-left: 0; }
.service-benefits li {
    padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center;
}
.service-benefits li i { color: #888; margin-right: 0.5rem; }

/* Proceso */
.process-section { background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%); }
.process-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.process-timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: rgba(255, 255, 255, 0.2); transform: translateX(-50%);
}
.process-step { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }
.process-step:nth-child(odd) { flex-direction: row-reverse; }
.step-number {
    width: 60px; height: 60px; background: #888; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700; z-index: 1; flex-shrink: 0;
}
.step-content { flex: 1; padding: 0 2rem; }
.process-step:nth-child(even) .step-content { text-align: right; }

/* Casos Éxito */
.success-cases-section { background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%); }
.case-study-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 15px; padding: 2rem; height: 100%;
}
.case-study-header { display: flex; align-items: center; margin-bottom: 1.5rem; }
.case-study-icon { font-size: 2.5rem; color: #888; margin-right: 1rem; }
.case-study-title h4 { margin-bottom: 0.2rem; }
.case-study-title p { color: #ccc; font-size: 0.9rem; }
.case-study-stats { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.case-study-stats .stat { text-align: center; }
.case-study-stats h5 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.case-study-stats p { font-size: 0.8rem; color: #ccc; }

/* CTA */
.cta-section { background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%); }
.cta-card { padding: 4rem; }

/* Contacto */
.contact-info-section { background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%); }
.contact-info-card { text-align: center; padding: 2rem; }
.contact-info-icon { font-size: 2.5rem; color: #888; margin-bottom: 1.5rem; }
.contact-link {
    display: inline-flex; align-items: center; color: #ccc; text-decoration: none;
    margin-top: 1rem; transition: all 0.3s ease;
}
.contact-link:hover { color: #fff; }
.contact-link i { margin-left: 0.5rem; transition: transform 0.3s ease; }
.contact-link:hover i { transform: translateX(5px); }

/* Formulario */
.contact-form-section { background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%); }
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; color: #ccc; }
.contact-form .form-control {
    background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0; color: var(--primary-white); padding: 1rem; transition: all 0.3s ease; width: 100%;
}
.contact-form .form-control:focus {
    background: rgba(0, 0, 0, 0.6); border-color: #fff;
    box-shadow: none; color: var(--primary-white);
}
.contact-form .form-control::placeholder { color: #aaa; }
.privacy-link { color: #888; text-decoration: underline; }

/* Input File Custom */
.contact-form input[type="file"] {
    background: rgba(0, 0, 0, 0.4); color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1rem 0.8rem 1.5rem;
    height: auto; width: 100%; border-radius: 0;
}
.contact-form input[type="file"]::file-selector-button {
    background-color: rgba(255, 255, 255, 0.1); color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1.2rem; margin-right: 1.5rem;
    border-radius: 4px; cursor: pointer; transition: all 0.3s ease;
    font-size: 0.9rem; font-weight: 500;
}
.contact-form input[type="file"]::file-selector-button:hover {
    background-color: rgba(255, 255, 255, 0.2); border-color: #fff;
}

/* FAQ */
.faq-section { background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%); }
.faq-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.faq-item h5 { font-size: 1.2rem; margin-bottom: 1rem; color: #fff; }

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.97);
    padding: 4.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand .footer-logo {
    margin-bottom: 1.25rem;
}

.footer-description {
    color: #888;
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    color: var(--primary-white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.85rem;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-nav a i {
    margin-right: 0.5rem;
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover i {
    opacity: 1;
}

.footer-contact-list a {
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.footer-social a i {
    font-size: 16px;
    line-height: 1;
}

.footer-social a .fa-instagram {
    font-size: 18px;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: block;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #555;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-tagline {
    margin-top: 0.35rem !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.5px;
    color: #444 !important;
}

/* --- ESTILOS ESPECÍFICOS MYWALLET --- */
.pro-section {
    background: linear-gradient(-45deg, #050505, #1a0b2e, #0a0a0a, #2d1b4e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 100px 0; position: relative; overflow: hidden;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.pro-badge {
    background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c4b5fd; padding: 5px 12px; border-radius: 20px;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1rem; display: inline-block;
}

/* ANIMACIONES DE TEXTO (Shine) */
@keyframes shine-purple { to { background-position: 200% center; } }
@keyframes shine-green { to { background-position: 200% center; } }
@keyframes shine-gold { to { background-position: 200% center; } }

.text-pro {
    font-weight: 800;
    background: linear-gradient(to right, #b06ab3, #4568dc, #b06ab3);
    background-size: 200% auto; color: #fff;
    /* Sintaxis correcta para texto degradado compatible */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback estándar */

    animation: shine-purple 3s linear infinite; display: inline-block;
}

.text-secret {
    font-weight: 800;
    background: linear-gradient(to right, #98fb98, #34d399, #98fb98);
    background-size: 200% auto; color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shine-green 3s linear infinite; display: inline-block;
}

/* --- TABLA DE COMPARACIÓN --- */
.comparison-card {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border-radius: 20px; padding: 30px; border: 1px solid var(--glass-border);
    margin-top: 30px;
}
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.comparison-table th, .comparison-table td {
    padding: 15px; text-align: center; border-bottom: 1px solid var(--glass-border);
}
.comparison-table th { background-color: rgba(255, 255, 255, 0.1); color: #ffffff; font-weight: 600; }
.feature-check { color: #ffffff; font-size: 1.2rem; opacity: 0.8; }
.feature-missing { color: #666; font-size: 1.2rem; opacity: 0.5; }

@media (max-width: 768px) {
    .feature-row { margin-bottom: 40px; }
    .comparison-card { padding: 15px 10px; border-radius: 14px; }
    .comparison-table { font-size: 0.82rem; }
    .comparison-table th, .comparison-table td { padding: 10px 6px; }
}
@media (max-width: 576px) {
    .comparison-table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
}

/* --- ESTILOS HOME FUTURISTA --- */
.hero-exotic {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    position: relative; padding-top: 100px; overflow: hidden;
    background: radial-gradient(circle at center, rgba(30,30,30,0.4) 0%, rgba(0,0,0,0) 70%);
}

@media (max-width: 768px) {
    .hero-exotic {
        min-height: 85vh;
        padding-top: 80px;
    }

    .glowing-orb {
        width: 300px;
        height: 300px;
    }
}
.slogan-container { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.slogan-line {
    font-size: 6rem; font-weight: 900; line-height: 1; color: #ffffff;
    margin: 0; letter-spacing: -2px; text-shadow: 0 0 30px rgba(255,255,255,0.1);
}
.slogan-separator { display: flex; align-items: center; justify-content: center; width: 100%; margin: 10px 0; }
.slogan-middle-text { font-size: 2.5rem; font-weight: 700; color: #ffffff; margin: 0 20px; opacity: 0.8; }
.slogan-dash { height: 3px; width: 150px; background-color: #ffffff; opacity: 0.6; }

.glowing-orb {
    position: absolute; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 60%);
    border-radius: 50%; z-index: 1; filter: blur(80px);
    animation: pulse-glow 8s infinite alternate;
}
@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.3); opacity: 0.5; }
}

.manifesto-section { padding: 120px 0; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.manifesto-text {
    font-size: 2.2rem; font-weight: 300; line-height: 1.5; color: #ccc;
    border-left: 3px solid #ffffff; padding-left: 3rem;
}
.highlight-exotic { color: #fff; font-weight: 700; }

.zero-hour-section {
    padding: 100px 0; background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(10,10,10,0.8) 100%);
    overflow: hidden; position: relative;
}
.chrono-display {
    font-family: 'Inter', monospace; font-size: 6rem; font-weight: 700;
    color: rgba(255,255,255,0.1); text-align: center; line-height: 1;
    margin-bottom: 2rem; letter-spacing: 10px; position: relative;
}
.chrono-active { color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.5); }
.urgency-text h3 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.urgency-text p { font-size: 1.1rem; color: #aaa; line-height: 1.8; }

.showcase-exotic { padding: 150px 0 100px; perspective: 1000px; }
.floating-glass-box {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-radius: 30px; padding: 5rem 4rem; position: relative;
    overflow: hidden; transition: transform 0.5s ease;
}
.number-watermark {
    position: absolute; right: 20px; bottom: -40px; font-size: 15rem;
    font-weight: 900; color: rgba(255,255,255,0.02); z-index: 0;
}

.pipeline-section { padding: 50px 0 150px; }
.section-header-minimal { margin-bottom: 4rem; padding-bottom: 1rem; display: flex; justify-content: start; align-items: center; }
.loading-header h4 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 3px; margin: 0; display: flex; align-items: center; }
.animated-dots span { display: inline-block; animation: loading-pulse 1.4s infinite both; margin-left: 2px; font-size: 1.5rem; }
.animated-dots span:nth-child(2) { animation-delay: 0.2s; }
.animated-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loading-pulse {
    0% { opacity: 0.2; }
    50% { opacity: 1; transform: translateY(-2px); }
    100% { opacity: 0.2; }
}

.pipeline-card {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px; padding: 2.5rem; height: 100%; position: relative;
    overflow: hidden; transition: all 0.3s ease;
}
.pipeline-card:hover { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.04); }
.locked-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 2; opacity: 1; transition: all 0.3s ease;
}
.pipeline-card:hover .locked-overlay { backdrop-filter: blur(20px); }
.locked-icon { font-size: 2.5rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.locked-text { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.7); }
.project-codename { font-family: monospace; color: rgba(255,255,255,0.4); font-size: 1.1rem; margin-bottom: 1rem; display: block; }
.project-title { font-size: 1.8rem; margin-bottom: 1rem; filter: blur(4px); transition: filter 0.3s ease; }
.pipeline-card:hover .project-title { filter: blur(6px); }
.project-desc { color: #888; font-size: 0.9rem; filter: blur(2px); }

.product-philosophy-section { padding: 100px 0; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.05); }
.philosophy-card {
    padding: 2.5rem; height: 100%; border-right: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
.philosophy-card:last-child { border-right: none; }
.philosophy-card:hover { background: rgba(255,255,255,0.04); }
.philosophy-number {
    font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.05);
    margin-bottom: 1rem; display: block; line-height: 1;
}
.philosophy-title { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 1rem; }
.btn-exclusive {
    display: inline-block; padding: 1rem 3rem; border: 1px solid rgba(255,255,255,0.5);
    color: #fff; text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem;
    text-decoration: none; transition: all 0.4s ease; background: transparent;
    position: relative; overflow: hidden;
}
.btn-exclusive::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
    background: #fff; transition: width 0.4s ease; z-index: -1;
}
.btn-exclusive:hover { color: #000; }
.btn-exclusive:hover::before { width: 100%; }

@media (max-width: 992px) {
    .slogan-line { font-size: 4.5rem; }
    .slogan-middle-text { font-size: 2rem; }
    .slogan-dash { width: 100px; }
    .chrono-display { font-size: 4rem; }
    .philosophy-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }

    /* Timeline content full width on mobile */
    .timeline-content {
        flex: none;
        width: 100%;
    }

    .timeline-content:hover {
        transform: none;
    }

    /* Disable float animation on mobile for performance */
    .phone-mockup,
    .phone-mockup-large {
        animation: none;
    }

    /* Disable hover transforms on cards for touch */
    .feature-card-large:hover,
    .service-detail-card:hover,
    .pipeline-card:hover .project-title,
    .channel-card:hover,
    .trust-card:hover,
    .value-card:hover {
        transform: none;
    }
}
@media (max-width: 576px) {
    .slogan-line { font-size: 3rem; }
    .slogan-middle-text { font-size: 1.5rem; margin: 0 10px; }
    .slogan-dash { width: 60px; }
    .manifesto-text { font-size: 1.5rem; padding-left: 1.5rem; }
    .chrono-display { font-size: 2.5rem; letter-spacing: 5px;}
}

/* --- SECTION: ABOUT / MANIFESTO --- */
.manifesto-wrapper {
    position: relative; padding: 4rem;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 30px;
    backdrop-filter: blur(10px); text-align: center; overflow: hidden;
    transition: transform 0.3s ease;
}
.manifesto-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.quote-mark {
    position: absolute; top: 20px; left: 30px; font-size: 8rem;
    color: rgba(255, 255, 255, 0.03); font-family: serif; line-height: 1;
    z-index: 0; pointer-events: none;
}
.manifesto-content { position: relative; z-index: 1; }
.manifesto-content p {
    font-size: 1.25rem; line-height: 1.8; color: #ccc; font-weight: 300;
    margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto;
}
.manifesto-content strong { color: #fff; font-weight: 600; }
.founder-signature { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.signature-line {
    height: 2px; margin: 0 auto 1.5rem auto; background: #ffffff; border-radius: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #ffffff 50%, rgba(255,255,255,0) 100%);
    animation: energyPulse 3s infinite ease-in-out;
}
@keyframes energyPulse {
    0% { width: 40px; opacity: 0.4; box-shadow: 0 0 0px rgba(255, 255, 255, 0); }
    50% { width: 100px; opacity: 1; box-shadow: 0 0 15px rgba(255, 255, 255, 0.8); }
    100% { width: 40px; opacity: 0.4; box-shadow: 0 0 0px rgba(255, 255, 255, 0); }
}
.founder-name { font-size: 1.8rem; margin-bottom: 0.2rem; letter-spacing: 1px; color: #ffffff; font-weight: 700; }
.founder-title { font-family: monospace; color: #888; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.founder-socials { display: flex; gap: 1.5rem; margin-top: 0.5rem; }
.founder-socials a { color: #666; font-size: 1.2rem; transition: all 0.3s ease; }
.founder-socials a:hover { color: #fff; transform: translateY(-3px); }

/* --- SECCIÓN: DESIGN DNA (APPLE STYLE) --- */
.design-dna-section {
    background-color: #000000; padding: 120px 0;
    position: relative; overflow: hidden; border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.tech-label {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 3px;
    color: #888; text-transform: uppercase; margin-bottom: 1.5rem; display: block;
}
.dna-title { font-size: 3.5rem; font-weight: 700; line-height: 1.1; color: #666; margin-bottom: 2rem; }
.dna-text { font-size: 1.2rem; color: #aaa; max-width: 500px; line-height: 1.6; }
.dna-features { display: flex; flex-direction: column; gap: 2rem; }
.dna-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.dna-icon {
    width: 50px; height: 50px; background: rgba(255, 255, 255, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff;
}
.dna-item h4 { color: #fff; font-size: 1.1rem; margin-bottom: 0.3rem; }
.dna-item p { color: #666; font-size: 0.9rem; margin: 0; }
.design-showcase {
    position: relative; width: 100%; display: flex; align-items: center; justify-content: center;
    padding: 2rem 0; perspective: 1000px;
}
.glow-effect {
    position: absolute; width: 350px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 70%);
    filter: blur(60px); z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
    .design-showcase { margin-top: 4rem; margin-bottom: 2rem; transform: scale(0.9); }
    .glow-effect { width: 250px; height: 400px; opacity: 0.6; }
    .dna-title { font-size: 2.2rem; }
    .design-dna-section { padding: 60px 0; }
}

/* --- TRUST ARCHITECTURE --- */
.trust-architecture-section {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    padding: 100px 0; border-top: 1px solid #111;
}
.highlight-secure { color: #ffffff; font-weight: 600; }
.trust-card {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem; border-radius: 20px; height: 100%; transition: all 0.3s ease; text-align: center;
}
.trust-card:hover {
    background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}
.trust-icon { font-size: 2.5rem; color: #ffffff; margin-bottom: 1.5rem; opacity: 0.9; }
.trust-card h4 { color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }
.trust-card p { color: #888; font-size: 0.95rem; line-height: 1.6; }
.featured-trust { border-color: rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03); }

/* --- CONTACT CHANNELS --- */
.contact-channels-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    padding-bottom: 50px;
}
.channel-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem; height: 100%; text-align: center; border-radius: 4px;
    transition: all 0.3s ease; position: relative;
}
.channel-card:hover {
    background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}
.channel-icon { font-size: 2.5rem; color: #fff; margin-bottom: 1.5rem; opacity: 0.9; }
.channel-card h4 { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: #fff; }
.channel-card p { color: #aaa; font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.6; }
.channel-link {
    display: inline-block; color: #fff; font-family: 'Inter', monospace;
    font-size: 1.1rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px; transition: all 0.3s ease;
}
.channel-link:hover { border-color: #fff; opacity: 0.8; }
.featured-channel { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); }


/* =======================================================
   TIMELINE STYLES (MIGRADO DE ABOUT.HTML)
   ======================================================= */
.timeline-container { position: relative; padding: 2rem 0; }
.timeline-line {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative; margin-bottom: 3rem; display: flex; align-items: center;
    opacity: 0; animation: fadeInUp 0.6s ease forwards;
}
/* Staggered animation delays */
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; }

.timeline-year {
    flex: 0 0 45%; text-align: right; padding-right: 2rem;
    font-size: 1.5rem; font-weight: 700; color: #ffffff; position: relative;
    transition: color 0.3s ease;
}
.timeline-item:nth-child(odd) .timeline-year {
    text-align: left; padding-right: 0; padding-left: 2rem;
}

/* DOT BASE STYLE */
.timeline-dot {
    flex: 0 0 auto; width: 20px; height: 20px;
    background: linear-gradient(135deg, #ffffff, #888888);
    border-radius: 50%; border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 2; position: relative; transition: all 0.3s ease;
}

.timeline-content {
    flex: 0 0 45%; background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; padding: 1.5rem; transition: all 0.3s ease;
    /* Para suavizar la transición del borde en hover */
    border: 1px solid transparent; 
    border-color: rgba(255, 255, 255, 0.1);
}
/* Hover por defecto (Blanco) */
.timeline-content:hover {
    background: rgba(255, 255, 255, 0.05); 
    border-color: rgba(255, 255, 255, 0.3); /* Borde blanco */
    transform: translateY(-5px); 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* Glow blanco */
}

.timeline-content h5 { color: #fff; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.timeline-content p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 0; line-height: 1.6; }

.milestone-badge {
    display: inline-block; padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px; font-size: 0.75rem; color: #ffffff;
    margin-top: 0.5rem; font-weight: 500;
}


/* --- ESTILOS DE HITOS ESPECÍFICOS (ANIMADOS) --- */

/* 1. SECRET ITEM (VERDE PASTEL ANIMADO) */
.timeline-item.secret-item .timeline-year,
.timeline-item.secret-item i,
.timeline-item.secret-item .milestone-badge {
    background: linear-gradient(to right, #98fb98, #34d399, #98fb98);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback estándar */
    animation: shine-green 3s linear infinite;
}

.timeline-item.secret-item .milestone-badge {
    /* Fondo muy sutil para que se lea */
    background-color: rgba(152, 251, 152, 0.05); 
    /* Borde estático visible */
    border: 1px solid rgba(152, 251, 152, 0.5); 
    box-shadow: 0 0 10px rgba(152, 251, 152, 0.15);
}

.timeline-item.secret-item .timeline-dot {
    background: #000;
    border-color: var(--color-secret);
    box-shadow: 0 0 15px rgba(152, 251, 152, 0.4);
}

/* Hover Verde */
.timeline-item.secret-item .timeline-content:hover {
    border-color: var(--color-secret);
    box-shadow: 0 0 20px rgba(152, 251, 152, 0.3);
}


/* 2. PRO ITEM (MORADO ANIMADO) */
.timeline-item.pro-item .timeline-year,
.timeline-item.pro-item i,
.timeline-item.pro-item .milestone-badge {
    background: linear-gradient(to right, #b06ab3, #4568dc, #b06ab3); 
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shine-purple 3s linear infinite;
}

.timeline-item.pro-item .milestone-badge {
    background-color: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.timeline-item.pro-item .timeline-dot {
    background: #000;
    border-color: var(--color-pro);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

/* Hover Morado */
.timeline-item.pro-item .timeline-content:hover {
    border-color: var(--color-pro);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}


/* 3. GOLD ITEM (DORADO ANIMADO) */
.timeline-item.gold-item .timeline-year,
.timeline-item.gold-item i,
.timeline-item.gold-item .milestone-badge {
    background: linear-gradient(to right, #ffd700, #fcd34d, #d97706, #ffd700); 
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shine-gold 3s linear infinite;
}

.timeline-item.gold-item .milestone-badge {
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.timeline-item.gold-item .timeline-dot {
    background: #000;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Hover Dorado */
.timeline-item.gold-item .timeline-content:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}


/* ===========================
   SHARED COMPONENTS
   =========================== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll down arrow animation */
.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #888;
    font-size: 2rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
    z-index: 10;
}

.scroll-down-arrow:hover {
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Hero fixed (full viewport) */
.hero-fixed {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Nav icon utilities */
.nav-icon-img {
    height: 1.2em;
    vertical-align: text-bottom;
}

.nav-auth-icon {
    margin-right: 6px;
    font-size: 0.85rem;
}

/* Inline logo (used in headings/paragraphs) */
.inline-logo-sm {
    height: 0.85em;
    vertical-align: baseline;
}

.inline-logo-md {
    height: 1em;
    vertical-align: bottom;
}

.inline-logo-lg {
    height: 1.2em;
    vertical-align: text-bottom;
}

.inline-logo-xl {
    height: 1.3em;
    vertical-align: bottom;
}

/* Media Query Timeline */
@media (max-width: 992px) {
    .timeline-line { display: none; }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 2rem;
        padding-left: 2rem;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
    }

    .timeline-dot { display: none; }

    .timeline-year {
        flex: none;
        width: 100%;
        text-align: left !important;
        padding: 0 !important;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .timeline-content {
        flex: none;
        width: 100%;
        margin: 0;
        padding: 1.2rem;
    }

    .timeline-content h5 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .timeline-item {
        padding-left: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .timeline-year {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-content h5 {
        font-size: 0.95rem;
    }

    .timeline-content p {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .milestone-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}




