:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #0f172a;
    --gray-light: #f8fafc;
    --gray-medium: #64748b;
    --gray-dark: #1e293b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --success: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: #ffffff;
    line-height: 1.6;
}

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

/* ===== NAV ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    margin-right: 8px;
    font-size: 1.8rem;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

/* ===== HERO ===== */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: var(--primary-dark);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight-danger {
    color: var(--danger);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2.2rem;
    color: var(--danger);
    margin-bottom: 0.5rem;
}

.stat small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: #eff6ff;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.hero-trust {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-visual {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.security-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.shield-animated {
    position: relative;
    font-size: 8rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

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

.pulse-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: expandPulse 2s infinite;
}

@keyframes expandPulse {
    0% {
        width: 300px;
        height: 300px;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* ===== PROBLEMA ===== */
.problema-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.problema-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--danger);
}

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

.problema-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--danger);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.problema-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.problema-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problema-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problema-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== SOLUCIÓN ===== */
.solucion-section {
    padding: 80px 0;
}

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

.solucion-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== PLANES ===== */
.planes-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.planes-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.planes-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.plan-destacado {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--warning);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-recomendado {
    background: var(--primary);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
}

.plan-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0 0.5rem 0;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.plan-after {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-discount {
    background: #dcfce7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.plan-discount p {
    margin: 0.5rem 0;
    color: #166534;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.plan-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features li:before {
    content: attr(data-icon);
}

.plan-description {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-plan-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

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

.btn-plan-destacado {
    background: var(--primary);
}

/* TABLA COMPARATIVA */
.planes-comparativa {
    overflow-x: auto;
    margin: 4rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

table th {
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

table tr:hover {
    background: var(--bg-light);
}

.planes-nota {
    background: #fef3c7;
    border: 2px solid var(--warning);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.planes-nota p {
    color: #92400e;
    font-size: 1rem;
}

.planes-nota a {
    color: #b45309;
    font-weight: 700;
    text-decoration: none;
}

/* ===== CÓMO FUNCIONA ===== */
.como-funciona {
    padding: 80px 0;
}

.como-funciona h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-marker {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-marker:after {
    content: '';
    width: 3px;
    height: 60px;
    background: var(--border-color);
}

.timeline-item:last-child .timeline-marker:after {
    display: none;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== AUDITORÍA ===== */
.auditoria-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
}

.auditoria-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid var(--primary);
}

.auditoria-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.auditoria-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.auditoria-include h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.auditoria-include ul {
    list-style: none;
}

.auditoria-include li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    gap: 0.8rem;
}

.auditoria-cta-text {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.auditoria-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 1.5rem 0;
}

.btn-form-submit {
    background: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.auditoria-whatsapp {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.auditoria-whatsapp p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #20ba5f;
    transform: translateY(-2px);
}

/* ===== TESTIMONIOS ===== */
.testimonios-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonios-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

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

.testimonio-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonio-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonio-header h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonio-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonio-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* ===== ROI CALCULATOR ===== */
.roi-section {
    padding: 80px 0;
}

.roi-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.roi-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.roi-calculator {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.roi-input {
    margin-bottom: 3rem;
}

.roi-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
}

.roi-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.roi-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

.roi-value {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

.roi-comparison {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    padding: 3rem;
    background: white;
    border-radius: 12px;
}

.roi-item {
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.roi-item.sin-plan {
    background: #fee2e2;
}

.roi-item.con-plan {
    background: #dcfce7;
}

.roi-number {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
}

.roi-item.sin-plan .roi-number {
    color: var(--danger);
}

.roi-item.con-plan .roi-number {
    color: var(--success);
}

.roi-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.roi-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.roi-separator {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.roi-result {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    color: white;
}

.urgencia-box {
    text-align: center;
}

.urgencia-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.urgencia-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-botones {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-xl {
    font-size: 1.1rem;
    padding: 1.3rem 2.8rem;
}

.cta-bonus {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== CONTACTO ===== */
.contacto-section {
    padding: 80px 0;
    text-align: center;
}

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

.contacto-section > .container > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.contacto-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.contacto-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.contacto-btn i {
    font-size: 2.5rem;
}

.contacto-btn small {
    font-weight: 400;
    font-size: 0.85rem;
}

.contacto-btn.whatsapp {
    border-color: #25d366;
}

.contacto-btn.whatsapp:hover {
    color: #25d366;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-dark);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .auditoria-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .roi-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .roi-separator {
        display: none;
    }

    .contacto-opciones {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 0.85rem;
    }

    table th, table td {
        padding: 0.8rem;
    }

    .planes-grid {
        grid-template-columns: 1fr;
    }

    .plan-destacado {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .stats-row {
        padding: 1rem;
    }

    .stat strong {
        font-size: 1.5rem;
    }

    .planes-section h2 {
        font-size: 1.8rem;
    }

    .plan-price {
        flex-direction: column;
        align-items: flex-start;
    }
}
