        /* ═══════════════════════════════════
           DESIGN TOKENS
        ═══════════════════════════════════ */
        :root {
            --primary:      #13357b;
            --primary-dark: #0b1f4d;
            --primary-mid:  #1a4a9e;
            --primary-soft: #eef1fd;
            --success:      #2ab57d;
            --warning:      #ffbc00;
            --danger:       #fd625e;
            --body-bg:      #f5f6f8;
            --card-bg:      #ffffff;
            --border:       #e9ebee;
            --text:         #495057;
            --text-muted:   #74788d;
            --heading:      #1e2d4a;
            --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
            --shadow:       0 2px 12px rgba(0,0,0,.08);
            --shadow-lg:    0 8px 32px rgba(19,53,123,.12);
            --radius:       14px;
            --radius-sm:    9px;
            --transition:   all .22s ease;
        }

        *, *::before, *::after { box-sizing: border-box; }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--body-bg);
            color: var(--text);
            font-size: 0.875rem;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }

        /* ═══════════════════════════════════
           FONDO
        ═══════════════════════════════════ */
        .page-bg {
            position: fixed;
            inset: 0;
            z-index: -2;
            background-image: url('https://pagos.ieshercar.com/public/images/fondo-login.jpg');
            background-size: cover;
            background-position: center;
            opacity: .55;
        }
        .page-bg-overlay {
            position: fixed;
            inset: 0;
            z-index: -1;
            background: linear-gradient(160deg, rgba(19,53,123,.08) 0%, rgba(245,246,248,.92) 60%);
        }

        /* ═══════════════════════════════════
           NAVBAR
        ═══════════════════════════════════ */
        .main-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 6px rgba(0,0,0,.05);
            padding: .6rem 0;
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: .65rem;
            text-decoration: none;
        }

        .navbar-brand img {
            height: 36px;
            width: auto;
        }

        .navbar-brand .brand-text {
            font-weight: 800;
            font-size: .96rem;
            color: var(--primary);
            letter-spacing: -.2px;
            line-height: 1.2;
        }

        .navbar-toggler {
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            padding: .35rem .55rem;
        }
        .navbar-toggler:focus { box-shadow: none; }

        /* ═══════════════════════════════════
           HERO HEADER
        ═══════════════════════════════════ */
        .hero {
            padding: 3.5rem 0 2rem;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-soft);
            color: var(--primary);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .4px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--heading);
            line-height: 1.2;
            margin-bottom: .75rem;
        }

        .hero h1 .accent {
            color: var(--primary);
        }

        .hero .lead {
            font-size: .92rem;
            color: var(--text-muted);
            max-width: 520px;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        /* Pills */
        .info-pills {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
        }

        .info-pill {
            background: #fff;
            color: var(--primary);
            border: 1px solid rgba(19,53,123,.15);
            border-radius: 20px;
            padding: .3rem .9rem;
            font-size: .72rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            box-shadow: var(--shadow-sm);
        }

        /* ═══════════════════════════════════
           CARDS PRINCIPALES
        ═══════════════════════════════════ */
        .action-cards { padding: 0 0 2rem; }

        .action-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .action-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: rgba(19,53,123,.15);
        }

        .action-card-header {
            background: var(--primary);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .action-card-header.success { background: var(--success); }
        .action-card-header.warning { background: #e6a800; }

        .hdr-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            color: #fff;
            flex-shrink: 0;
        }

        .action-card-header h5 {
            color: #fff;
            font-size: .86rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }

        .action-card-header p {
            color: rgba(255,255,255,.75);
            font-size: .72rem;
            margin: 3px 0 0;
        }

        .action-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 14px;
        }

        .action-card-body p {
            color: var(--text-muted);
            font-size: .83rem;
            line-height: 1.65;
            margin: 0;
        }

        /* ═══════════════════════════════════
           BOTONES
        ═══════════════════════════════════ */
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: .82rem;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            box-shadow: 0 2px 8px rgba(19,53,123,.2);
            transition: var(--transition);
            text-decoration: none;
            letter-spacing: .2px;
            font-family: inherit;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(19,53,123,.28);
        }

        .btn-primary:active { transform: translateY(0); }

        .btn-success {
            background: var(--success);
            box-shadow: 0 2px 8px rgba(42,181,125,.2);
        }
        .btn-success:hover { background: #229a68; }

        .btn-warning {
            background: #e6a800;
            box-shadow: 0 2px 8px rgba(230,168,0,.25);
        }
        .btn-warning:hover { background: #cc9600; }

        /* ═══════════════════════════════════
           SECCIÓN BENEFICIOS
        ═══════════════════════════════════ */
        .benefits-section {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.5rem;
        }

        .section-title-text {
            font-size: .72rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: .8px;
            white-space: nowrap;
        }

        .section-title-line {
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 12px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px 12px;
            background: var(--body-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            cursor: default;
            transition: var(--transition);
            gap: 0;
        }

        .benefit-item:hover {
            background: #fff;
            border-color: rgba(19,53,123,.2);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .benefit-item:hover .benefit-icon {
            background: var(--primary);
            color: #fff;
        }

        .benefit-label {
            font-weight: 700;
            font-size: .8rem;
            color: var(--heading);
        }

        /* ═══════════════════════════════════
           FOOTER
        ═══════════════════════════════════ */
        .footer-minia {
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 14px 0;
            font-size: .8rem;
            color: var(--text-muted);
        }

        .footer-minia a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-minia a:hover { color: var(--primary-dark); }

        /* ═══════════════════════════════════
           ANIMACIONES
        ═══════════════════════════════════ */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @media (prefers-reduced-motion: no-preference) {
            .hero            { animation: fadeUp .5s ease-out both; }
            .action-card     { animation: fadeUp .5s ease-out both; }
            .action-card:nth-child(1) { animation-delay: .05s; }
            .action-card:nth-child(2) { animation-delay: .12s; }
            .action-card:nth-child(3) { animation-delay: .19s; }
            .benefits-section{ animation: fadeUp .5s .25s ease-out both; }
            .benefit-item    { animation: fadeUp .4s ease-out both; }
            .benefit-item:nth-child(1) { animation-delay: .3s; }
            .benefit-item:nth-child(2) { animation-delay: .36s; }
            .benefit-item:nth-child(3) { animation-delay: .42s; }
            .benefit-item:nth-child(4) { animation-delay: .48s; }
            .benefit-item:nth-child(5) { animation-delay: .54s; }
            .benefit-item:nth-child(6) { animation-delay: .6s; }
        }