/* =========================================
   VARIABLES & DESIGN TOKENS
   ========================================= */
   :root {
    --bg-primary: #020617; /* Very dark slate */
    --bg-secondary: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --primary-color: #3b82f6; /* Blue */
    --primary-hover: #2563eb;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & GLOBAL
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* =========================================
   BACKGROUND EFFECTS (Orbs)
   ========================================= */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    top: -100px;
    left: -100px;
    opacity: 0.2;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #8b5cf6;
    bottom: -200px;
    right: -100px;
    opacity: 0.15;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: rgba(255,255,255, 0.2);
    background: rgba(255,255,255,0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--text-main);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-main);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

/* Grid de dos columnas para el hero */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text-content {
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}



.hero h1 {
    font-size: 3.25rem;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.6;
}

/* Cuadrícula de mini-funciones dentro del hero */
.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.hero-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.hero-feature-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.hero-feature-item p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

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

/* Columna derecha: visual del camión */
.hero-image-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-unit-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(82, 181, 212, 0.25);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 0.9rem 1.25rem;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 24px rgba(82, 181, 212, 0.1);
    align-self: flex-start;
    margin-left: auto;
}

.hero-unit-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-unit-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-unit-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.hero-unit-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-unit-status {
    font-size: 0.72rem;
    font-weight: 600;
    color: #4ade80;
    letter-spacing: 0.5px;
}

.hero-truck-img {
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    object-fit: cover;
    filter: drop-shadow(0 20px 60px rgba(82, 181, 212, 0.18));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Responsive: Colapsar a una columna en móvil */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-text-content {
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image-content {
        align-items: center;
    }
    .hero-unit-card {
        margin: 0 auto;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   PRICING / PLANES SECTION
   ========================================= */
.pricing-section {
    padding: 8rem 0 6rem;
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.07) 0%, transparent 70%);
}

.pricing-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* --- Tarjeta Base --- */
.pricing-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* --- Tarjeta Destacada (Mensual) --- */
.pricing-card.featured {
    background: rgba(6, 24, 54, 0.9);
    border: 1.5px solid #00c8c8;
    box-shadow: 0 0 40px rgba(0, 200, 200, 0.15), inset 0 0 30px rgba(0, 200, 200, 0.03);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

/* --- Tarjeta Empresarial --- */
.pricing-card.enterprise {
    background: rgba(10, 18, 50, 0.85);
    border: 1.5px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

/* --- Iconos de Plan --- */
.pricing-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pricing-icon.featured-icon {
    background: rgba(0, 200, 200, 0.12);
    border-color: rgba(0, 200, 200, 0.3);
    color: #00c8c8;
}

.pricing-icon.enterprise-icon {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

/* --- Nombre y Descripción --- */
.plan-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.plan-name.enterprise-name {
    color: #60a5fa;
}

.pricing-card.featured .plan-name {
    color: #00c8c8;
}

.plan-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    min-height: 40px;
}

.plan-per-user {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin: 0;
    opacity: 0.7;
}

/* --- Precio --- */
.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    margin: 0.75rem 0 0.5rem;
}

.price-amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    line-height: 1;
}

.price-currency {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    padding-bottom: 6px;
}

/* --- Features del Plan --- */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--text-muted);
}

/* --- Botones de Plan --- */
.btn-plan {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: auto;
}

.btn-plan:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-plan span {
    font-size: 1.1rem;
}

.btn-plan.featured-btn {
    background: linear-gradient(135deg, #00c8c8, #0070ff);
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 200, 200, 0.35);
}

.btn-plan.featured-btn:hover {
    box-shadow: 0 6px 28px rgba(0, 200, 200, 0.5);
}

.btn-plan.enterprise-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-plan.enterprise-btn:hover {
    box-shadow: 0 6px 28px rgba(59, 130, 246, 0.5);
}

/* --- Garantías --- */
.pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-trust span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.trust-dot {
    color: rgba(255,255,255,0.2);
}

.pricing-cancel {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Responsive: colapsar en móvil */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
    .pricing-trust {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* =========================================
   INDUSTRIES SECTION
   ========================================= */
.industries {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5));
}

.industry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industry-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.industry-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.industry-list {
    list-style: none;
    margin-bottom: 2rem;
}

.industry-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
}

.industry-list li strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.25rem;
}

.industry-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Abstract Glass Mockup */
.glass-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #334155;
}

.mockup-body {
    padding: 2rem;
    position: relative;
}

.wireframe-container {
    height: 250px;
    border: 1px dashed var(--glass-border);
    border-radius: 8px;
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.wireframe-box {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.box-1 { width: 80px; height: 120px; }
.box-2 { width: 60px; height: 90px; }
.box-3 { width: 100px; height: 150px; }

.stat-bar {
    height: 30px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-color);
    width: 100%;
    opacity: 0.3;
    z-index: 0;
}

.stat-bar span {
    position: relative;
    z-index: 1;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 6rem 0;
}

.cta-box {
    background: var(--accent-gradient);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    position: relative;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
    position: relative;
}

.cta-box .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #020617;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* =========================================
   ANIMATIONS (JS Revealed)
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

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

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .industry-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; /* Simplification for mobile */ }
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .cta-box h2 { font-size: 2rem; }
}

/* =========================================
   MODAL (15 Días de Prueba)
   ========================================= */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-legal {
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
}

#legal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#legal-content .legal-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

#legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

#legal-content p, #legal-content ul {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

#legal-content ul {
    padding-left: 1.5rem;
}

#legal-content li {
    margin-bottom: 0.5rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-main);
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.trial-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trial-form input {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0, 0.2);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
}

.trial-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

.modal-footer-text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0 !important;
    opacity: 0.7;
}
