/* ============================================
   DIAGNÓSTICO WEB - Dashboard Profesional
   ============================================ */

/* Hero Section Original */
.hero-diagnostico {
    background: linear-gradient(135deg,
            rgba(23, 23, 23, 0.92) 0%,
            rgba(64, 64, 64, 0.88) 50%,
            rgba(38, 38, 38, 0.92) 100%),
        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920') center/cover;
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 235, 109, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 50px);
    }
}

.hero-diagnostico::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 235, 109, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 235, 109, 0.25);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 235, 109, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-diagnostico h1 {
    color: #fff;
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-highlight {
    color: #00EB6D;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 235, 109, 0.5);
    border-radius: 2px;
}

.hero-diagnostico .hero-lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-feature i {
    color: #00EB6D;
    font-size: 1.1rem;
}

.btn-analyze {
    background: linear-gradient(135deg, #00EB6D 0%, #00C9A7 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0.875rem 2.5rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 235, 109, 0.4);
}

.btn-analyze:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 235, 109, 0.5);
    color: #fff;
}

.url-input-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.url-input-container .form-control {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.url-input-container .form-control:focus {
    border-color: #00EB6D;
    box-shadow: 0 0 0 0.25rem rgba(0, 235, 109, 0.25);
    background: #fff;
}

.url-input-container .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    white-space: nowrap;
}

.url-examples {
    text-align: center;
}

.example-url {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.example-url:hover {
    color: #00EB6D;
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.badge-item i {
    font-size: 1.25rem;
    color: #00EB6D;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-content h3 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.loading-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PROFESSIONAL DASHBOARD STYLES
   ============================================ */

.pro-dashboard {
    background: #f5f7fa;
    min-height: 100vh;
}

/* ============================================
   HERO BANNER - DISEÑO PREMIUM CON IMAGEN DE FONDO
   ============================================ */
.pro-hero-banner {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
}

/* Imagen de fondo */
.pro-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center center / cover no-repeat;
    z-index: 0;
}

/* Overlay degradado oscuro - SIN COLOR */
.pro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(23, 23, 23, 0.92) 0%,
            rgba(64, 64, 64, 0.88) 50%,
            rgba(38, 38, 38, 0.92) 100%);
    z-index: 1;
}

/* Patrón decorativo - VERDE */
.pro-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 235, 109, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 20%, rgba(10, 142, 168, 0.25) 0%, transparent 50%);
    z-index: 2;
    animation: patternMove 30s ease-in-out infinite;
}

@keyframes patternMove {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) translate(20px, 20px);
        opacity: 0.8;
    }
}

.pro-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.pro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 235, 109, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 235, 109, 0.4);
    box-shadow: 0 8px 32px rgba(0, 235, 109, 0.3);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 8px 32px rgba(0, 235, 109, 0.3);
    }

    50% {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 235, 109, 0.4);
    }
}

.pro-hero-badge i {
    font-size: 1.1rem;
    color: #00EB6D;
}

.pro-hero-url {
    font-weight: 900;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem !important;
    line-height: 1.1;
    word-break: break-word;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 8px 40px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    animation: titleReveal 1s ease-out;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.pro-hero-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: titleReveal 1s ease-out 0.2s backwards;
}

.pro-hero-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: titleReveal 1s ease-out 0.4s backwards;
}

.pro-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pro-hero-meta-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pro-hero-meta-item i {
    font-size: 1.1rem;
    color: #00EB6D;
}

/* ============================================
   SCORE SECTION
   ============================================ */
.pro-score-section {
    background: #f5f7fa;
    padding: 3rem 0;
}

.pro-score-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

/* Gauge */
.pro-gauge {
    position: relative;
    width: 200px;
    margin: 0 auto;
}

.pro-gauge-svg {
    width: 100%;
}

.pro-gauge-fill {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-gauge-score {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.pro-gauge-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;
}

.pro-gauge-label {
    font-size: 1.25rem;
    color: #6c757d;
    font-weight: 500;
}

.pro-grade-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-grade-badge.excellent {
    background: #d1fae5;
    color: #065f46;
}

.pro-grade-badge.good {
    background: #dbeafe;
    color: #1e40af;
}

.pro-grade-badge.fair {
    background: #fef3c7;
    color: #92400e;
}

.pro-grade-badge.poor {
    background: #fee2e2;
    color: #991b1b;
}

.pro-score-title {
    font-weight: 700;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pro-score-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.pro-score-insight {
    background: #f8f9fa;
    border-left: 4px solid #0A8EA8;
    padding: 1rem;
    border-radius: 8px;
}

.pro-score-insight strong {
    color: #1a1a1a;
}

/* Metrics Section */
.pro-metrics-section {
    padding: 3rem 0;
}

.pro-metric-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.pro-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pro-metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pro-metric-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0A8EA8 0%, #00EB6D 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-metric-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.pro-metric-score {
    text-align: right;
}

.pro-metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.pro-metric-max {
    font-size: 0.875rem;
    color: #adb5bd;
}

.pro-metric-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.pro-metric-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.pro-metric-progress {
    height: 100%;
    background: linear-gradient(90deg, #0A8EA8 0%, #00EB6D 100%);
    border-radius: 4px;
    transition: width 1s ease;
    width: 0%;
}

.pro-metric-desc {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Core Web Vitals Section */
.pro-cwv-section {
    padding: 2rem 0 3rem;
}

.pro-section-header {
    text-align: center;
}

.pro-section-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pro-section-subtitle {
    color: #6c757d;
    font-size: 0.875rem;
}

.pro-cwv-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.pro-cwv-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pro-cwv-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0A8EA8 0%, #00EB6D 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pro-cwv-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.pro-cwv-info h6 {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.pro-cwv-full {
    color: #6c757d;
    font-size: 0.75rem;
    margin: 0;
}

.pro-cwv-body {
    text-align: center;
}

.pro-cwv-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pro-cwv-status {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.pro-cwv-status.pass {
    background: #d1fae5;
    color: #065f46;
}

.pro-cwv-status.fail {
    background: #fee2e2;
    color: #991b1b;
}

.pro-cwv-explanation {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pro-cwv-explanation strong {
    color: #1a1a1a;
}

/* CTA Section */
.pro-cta-section {
    background: #fff;
    padding: 3rem 0 4rem;
}

/* Enhanced CTA Card */
.pro-cta-card-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.pro-cta-pattern {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pro-cta-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.pro-cta-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.pro-cta-icon-wrapper i {
    font-size: 2.5rem;
    color: #fff;
}

.pro-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.pro-cta-title {
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.pro-cta-desc {
    opacity: 0.95;
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.pro-cta-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-item i {
    color: #00EB6D;
    font-size: 1.1rem;
}

.btn-pro-cta-enhanced {
    background: #fff;
    color: #667eea;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-pro-cta-enhanced:hover {
    background: #00EB6D;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 235, 109, 0.4);
}

.pro-cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 1rem !important;
}

/* Responsive */
@media (max-width: 991px) {
    .pro-hero-banner {
        padding: 3rem 0 2.5rem;
    }

    .pro-hero-url {
        font-size: 1.5rem;
    }

    .pro-hero-desc {
        font-size: 0.9rem;
    }

    .pro-hero-icon {
        width: 56px;
        height: 56px;
    }

    .pro-hero-icon i {
        font-size: 1.5rem;
    }

    .pro-hero-content {
        gap: 1rem;
    }

    .pro-meta-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.875rem;
    }

    .hero-diagnostico h1 {
        font-size: 2.5rem;
    }

    .text-highlight::after {
        bottom: 2px;
        height: 2px;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .pro-gauge-number {
        font-size: 2.5rem;
    }

    .pro-metric-number {
        font-size: 1.75rem;
    }

    .pro-cwv-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pro-hero-banner {
        padding: 2rem 0 1.5rem;
    }

    .pro-hero-banner .container {
        padding: 0 1rem;
    }

    .pro-hero-banner .row {
        flex-direction: column;
        gap: 1rem;
    }

    .pro-hero-banner .col-lg-4 {
        text-align: left !important;
    }

    .pro-hero-meta {
        justify-content: flex-start;
    }

    .pro-hero-icon {
        width: 48px;
        height: 48px;
    }

    .pro-hero-icon i {
        font-size: 1.25rem;
    }

    .pro-hero-url {
        font-size: 1.25rem;
    }

    .pro-hero-desc {
        font-size: 0.875rem;
    }

    .pro-meta-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    /* Hero inicial mejorado */
    .hero-diagnostico h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .text-highlight::after {
        bottom: 1px;
        height: 2px;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .hero-feature {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
    }

    .hero-diagnostico {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .url-input-container {
        padding: 1.25rem;
    }

    .url-input-container .d-flex {
        flex-direction: column;
    }

    .url-input-container .btn {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .pro-score-card {
        padding: 1.5rem;
    }

    .pro-gauge {
        width: 180px;
    }

    .pro-gauge-number {
        font-size: 2.5rem;
    }

    .pro-score-title {
        font-size: 1.25rem;
    }

    .pro-cta-card-enhanced {
        padding: 2rem;
    }

    .pro-cta-card-enhanced .row {
        flex-direction: column;
        gap: 2rem;
    }

    .pro-cta-card-enhanced .col-md-4 {
        text-align: center !important;
    }

    .pro-cta-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .pro-cta-icon-wrapper i {
        font-size: 2rem;
    }

    .pro-cta-title {
        font-size: 1.4rem;
    }

    .pro-cta-desc {
        font-size: 0.95rem;
    }

    .pro-cta-highlights {
        gap: 1rem;
        justify-content: center;
    }

    .highlight-item {
        font-size: 0.85rem;
    }

    .btn-pro-cta-enhanced {
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   EMAIL MODAL STYLES
   ============================================ */
.pro-modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pro-modal-content .modal-header {
    padding: 1.5rem 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.pro-modal-content .modal-body {
    padding: 2rem;
}

/* Preview Section */
.preview-section {
    position: relative;
}

.preview-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.preview-card.blurred {
    overflow: hidden;
}

.preview-card.blurred::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

.preview-card.blurred * {
    filter: blur(4px);
    -webkit-filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

.preview-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.preview-card .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-card h6 {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.impact-badge {
    background: linear-gradient(135deg, #0A8EA8 0%, #00EB6D 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
}

.preview-notice {
    background: #f8f9fa !important;
    border-radius: 12px;
}

/* Email Form Section */
.email-form-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.email-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0A8EA8 0%, #00EB6D 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto;
}

.email-form-section .form-control {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-form-section .form-control:focus {
    border-color: #0A8EA8;
    box-shadow: 0 0 0 4px rgba(10, 142, 168, 0.1);
}

/* ============================================
   IMPROVEMENTS SECTION STYLES
   ============================================ */
.pro-improvements-section {
    background: #f5f7fa;
    padding: 5rem 0 6rem;
    position: relative;
}

.pro-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0A8EA8 0%, #00EB6D 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-section-title {
    font-weight: 700;
    font-size: 2.25rem;
    color: #1a1a1a;
}

.pro-section-desc {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Tabs */
.pro-filter-tabs {
    position: sticky;
    top: 20px;
    z-index: 100;
    background: rgba(245, 247, 250, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-radius: 16px;
}

.pro-filter-btn {
    background: #fff;
    border: 2px solid #e9ecef;
    color: #6c757d;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.pro-filter-btn:hover {
    border-color: #0A8EA8;
    color: #0A8EA8;
    background: #fff;
}

.pro-filter-btn.active {
    background: linear-gradient(135deg, #0A8EA8 0%, #00EB6D 100%);
    border-color: transparent;
    color: #fff;
}

.pro-filter-btn .count-badge {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pro-filter-btn.active .count-badge {
    background: rgba(255, 255, 255, 0.2);
}

/* Improvements Grid */
.pro-improvements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Improvement Card - New Design */
.pro-improvement-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pro-improvement-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.pro-improvement-card[data-priority="critical"]::before {
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.pro-improvement-card[data-priority="important"]::before {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}

.pro-improvement-card[data-priority="suggestion"]::before {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.pro-improvement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pro-improvement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.pro-improvement-priority {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
}

.pro-improvement-priority.critical {
    background: #fee2e2;
    color: #991b1b;
}

.pro-improvement-priority.important {
    background: #fef3c7;
    color: #92400e;
}

.pro-improvement-priority.suggestion {
    background: #d1fae5;
    color: #065f46;
}

.pro-improvement-impact {
    background: linear-gradient(135deg, #0A8EA8 0%, #00EB6D 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 0.875rem;
    border-radius: 10px;
    flex-shrink: 0;
}

.pro-improvement-body {
    padding-left: 1rem;
}

.pro-improvement-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.pro-improvement-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pro-improvement-value {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.pro-improvement-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pro-improvement-actions .btn {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    border-radius: 10px;
    font-weight: 600;
}

/* Final CTA Card */
.pro-cta-final-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.btn-pro-primary {
    background: linear-gradient(135deg, #0A8EA8 0%, #00EB6D 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-pro-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 142, 168, 0.3);
    color: #fff;
}

/* ============================================
   CTA INTERMEDIO - MEJORAR TU SITIO
   ============================================ */
.pro-mid-cta-section {
    padding: 4rem 0;
    position: relative;
}

.pro-mid-cta-card {
    background: linear-gradient(135deg,
            #0A8EA8 0%,
            #0d6efd 30%,
            #667eea 60%,
            #764ba2 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.pro-mid-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 235, 109, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

.pro-mid-cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatReverse 20s ease-in-out infinite;
}

.pro-mid-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 235, 109, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid rgba(0, 235, 109, 0.4);
    animation: iconPulse 3s ease-in-out infinite;
}

.pro-mid-cta-icon i {
    font-size: 1.75rem;
    color: #00EB6D;
}

.pro-mid-cta-card h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pro-mid-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-cta-primary {
    background: #fff;
    color: #667eea;
    border: none;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: #667eea;
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 991px) {
    .pro-improvements-grid {
        grid-template-columns: 1fr;
    }

    .pro-filter-tabs {
        position: relative;
        top: 0;
    }

    .pro-filter-btn {
        font-size: 0.875rem;
        padding: 0.65rem 1rem;
    }
}

@media (max-width: 768px) {
    .pro-modal-content .modal-body {
        padding: 1.5rem;
    }

    .email-form-section {
        padding: 1.5rem;
    }

    .pro-section-title {
        font-size: 1.75rem;
    }

    .pro-cta-final-card {
        padding: 1.75rem;
        text-align: center;
    }

    .pro-cta-final-card .row {
        flex-direction: column;
    }
}

/* ============================================
   TECHNICAL METRICS SECTION
   ============================================ */
.pro-technical-section {
    background: #f8f9fa;
    padding: 4rem 0;
    border-top: 1px solid #e9ecef;
}

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

.pro-section-title {
    font-weight: 700;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pro-section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

/* Tech Cards */
.pro-tech-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.pro-tech-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pro-tech-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.pro-tech-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pro-tech-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.pro-tech-info {
    flex-grow: 1;
}

.pro-tech-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.pro-tech-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.pro-tech-body {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.pro-tech-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pro-tech-label {
    font-size: 0.875rem;
    color: #6c757d;
}

.pro-tech-number {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.pro-tech-desc {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.pro-tech-status {
    margin-bottom: 0.5rem;
}

.pro-tech-status .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    text-transform: uppercase;
}

/* Info Cards */
.pro-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    border-left: 4px solid;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.pro-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pro-info-card-warning {
    border-left-color: #f59e0b;
}

.pro-info-card-info {
    border-left-color: #0d6efd;
}

.pro-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.pro-info-card-warning .pro-info-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.pro-info-card-info .pro-info-icon {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.pro-info-content {
    flex-grow: 1;
}

.pro-info-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pro-info-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pro-info-desc {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .pro-technical-section {
        padding: 3rem 0;
    }

    .pro-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pro-tech-card {
        padding: 1.25rem;
    }

    .pro-tech-value {
        font-size: 1.5rem;
    }

    .pro-info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .pro-info-icon {
        margin: 0 auto;
    }
}

/* ============================================
   UNLOCK OVERLAY STYLES
   ============================================ */
.unlock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.unlock-cta-container {
    max-width: 600px;
    width: 100%;
}

.unlock-cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.4);
}

.unlock-pattern {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.unlock-pattern::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.unlock-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.unlock-icon-wrapper i {
    font-size: 3rem;
    color: #fff;
}

.unlock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.unlock-title {
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.unlock-desc {
    text-align: center;
    opacity: 0.95;
    font-size: 1.1rem;
    line-height: 1.6;
}

.unlock-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.unlock-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.unlock-highlight i {
    color: #00EB6D;
    font-size: 1.2rem;
}

.unlock-email-form {
    margin-top: 2rem;
}

.unlock-input {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
}

.unlock-input:focus {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.unlock-optin {
    color: #fff;
}

.unlock-optin label {
    color: rgba(255, 255, 255, 0.9);
}

.btn-unlock-action {
    background: #fff;
    color: #667eea;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
}

.btn-unlock-action:hover {
    background: #00EB6D;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 235, 109, 0.4);
}

.unlock-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Dashboard blur when unlock overlay is active */
.pro-dashboard.blurred {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
    .unlock-overlay {
        padding: 1rem;
    }

    .unlock-cta-card {
        padding: 2rem 1.5rem;
    }

    .unlock-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .unlock-icon-wrapper i {
        font-size: 2.5rem;
    }

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

    .unlock-desc {
        font-size: 1rem;
    }

    .unlock-highlights {
        gap: 1rem;
    }

    .unlock-highlight {
        font-size: 0.85rem;
    }

    .btn-unlock-action {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   LIMIT MODAL STYLES
   ============================================ */
.limit-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.limit-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(10px);
}

.limit-modal-content {
    position: relative;
    width: 90%;
    max-width: 540px;
    z-index: 1;
    animation: slideUp 0.4s ease;
}

.limit-modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0A8EA8 0%, #667eea 50%, #764ba2 100%);
    border-radius: 24px;
    overflow: hidden;
}

.limit-modal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.limit-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.limit-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.limit-modal-body {
    position: relative;
    padding: 3rem 2.5rem 2.5rem;
    color: #fff;
    text-align: center;
}

.limit-icon-wrapper {
    margin: 0 auto 1.5rem;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.limit-icon {
    font-size: 3rem;
    color: #fff;
}

.limit-modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.limit-modal-desc {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.limit-features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
    text-align: left;
}

.limit-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.limit-feature i {
    font-size: 1.25rem;
    color: #00EB6D;
    flex-shrink: 0;
}

.limit-modal-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-limit-primary {
    background: #fff;
    color: #667eea;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-limit-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: #0A8EA8;
}

.btn-limit-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-limit-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.limit-modal-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.limit-modal-note i {
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .limit-modal-content {
        width: 95%;
        max-width: 100%;
    }

    .limit-modal-body {
        padding: 2rem 1.5rem 1.5rem;
    }

    .limit-modal-title {
        font-size: 1.5rem;
    }

    .limit-modal-desc {
        font-size: 1rem;
    }

    .limit-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .limit-icon {
        font-size: 2.5rem;
    }

    .btn-limit-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}