/**
 * LICENSING ACCORDION - Bootstrap 5 Accordion Customization
 * Replaces the old tab system with an expandable accordion
 * UX Fix: All navigation options visible at all times
 */

/* ========================================
   SECTION GENERAL
   ======================================== */
.licensing-accordion-section {
    background: linear-gradient(135deg, #0a1628 0%, #0f1b39 100%);
    color: #ffffff;
}

.licensing-accordion-section .section-title h2 {
    color: #ffffff;
}

.licensing-accordion-section .section-subtitle {
    color: #b8c5db;
}

.licensing-accordion-section .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ========================================
   ACCORDION GENERAL STYLES
   ======================================== */
.licensing-accordion {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
}

.licensing-accordion .accordion-item {
    border: 2px solid rgba(5, 144, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    background: #0f1b39;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.licensing-accordion .accordion-item:hover {
    box-shadow: 0 8px 16px rgba(5, 144, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(5, 144, 255, 0.4);
}

/* ========================================
   ACCORDION HEADER (Button)
   ======================================== */
.licensing-accordion .accordion-header {
    margin-bottom: 0;
}

.licensing-accordion .accordion-button {
    padding: 1.5rem 1.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1a2847 0%, #0f1b39 100%);
    border: none;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.licensing-accordion .accordion-button:hover {
    background: linear-gradient(135deg, #1e2f52 0%, #152240 100%);
}

.licensing-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--general-color, #0590ff) 0%, #0070cc 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(5, 144, 255, 0.4);
}

.licensing-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 112, 204, 0.25);
    border-color: var(--general-color, #0070cc);
}

.licensing-accordion .accordion-button::after {
    margin-left: auto;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.licensing-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ========================================
   ACCORDION ICON AND TITLE
   ======================================== */
.accordion-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.accordion-title {
    flex: 1;
    text-align: left;
}

/* ========================================
   ACCORDION BODY (Content)
   ======================================== */
.licensing-accordion .accordion-body {
    padding: 2rem 2.5rem;
    background: #0f1b39;
    border-top: 2px solid rgba(5, 144, 255, 0.2);
}

.accordion-section {
    margin-bottom: 2.5rem;
}

.accordion-section:last-child {
    margin-bottom: 0;
}

.accordion-section h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(5, 144, 255, 0.3);
}

.accordion-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8c5db;
    margin-bottom: 1rem;
}

.accordion-section p.highlight-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e8ecf1;
    margin-bottom: 1.5rem;
}

.accordion-section p strong {
    color: #ffffff;
    font-weight: 700;
}

/* ========================================
   FEATURE LISTS
   ======================================== */
.accordion-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.accordion-section .feature-list li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    color: #b8c5db;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(5, 144, 255, 0.1);
}

.accordion-section .feature-list li:last-child {
    border-bottom: none;
}

.accordion-section .feature-list li::before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #28a745;
    font-size: 1.2rem;
}

/* ========================================
   HIGHLIGHT BOXES
   ======================================== */
.highlight-box {
    background: linear-gradient(135deg, rgba(5, 144, 255, 0.15) 0%, rgba(5, 144, 255, 0.08) 100%);
    border-left: 5px solid var(--general-color, #0590ff);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight-box strong {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.highlight-box p {
    margin: 0;
    color: #e8ecf1;
    font-size: 1rem;
}

/* ========================================
   YEAR COMPARISON (Ahorro section)
   ======================================== */
.year-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.year-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(5, 144, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.year-box.highlight {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.1) 100%);
    border-color: #28a745;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.year-label {
    display: inline-block;
    background: var(--general-color, #0590ff);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.year-box.highlight .year-label {
    background: #28a745;
}

.year-box p {
    margin: 0.5rem 0;
    color: #b8c5db;
}

.year-box p strong {
    color: #ffffff;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .licensing-accordion {
        max-width: 100%;
    }

    .licensing-accordion-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .licensing-accordion-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .licensing-accordion .accordion-button {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }

    .accordion-icon {
        font-size: 1.4rem;
    }

    .licensing-accordion .accordion-body {
        padding: 1.5rem 1rem;
    }

    .accordion-section h3 {
        font-size: 1.3rem;
    }

    .year-comparison {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .licensing-accordion-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .licensing-accordion .accordion-button {
        padding: 1rem 0.8rem;
        font-size: 0.95rem;
        gap: 10px;
    }

    .accordion-icon {
        font-size: 1.2rem;
    }

    .accordion-section .feature-list li {
        font-size: 0.95rem;
        padding-left: 2rem;
    }

    .garantias-grid {
        gap: 1rem;
    }

    .migration-process {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.accordion-collapse {
    transition: height 0.35s ease;
}

.licensing-accordion .accordion-item {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   GARANTÍAS CARDS (Guarantee cards styling)
   ======================================== */
.garantias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.garantia-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(5, 144, 255, 0.2);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.garantia-card:hover {
    box-shadow: 0 8px 24px rgba(5, 144, 255, 0.3);
    transform: translateY(-4px);
    border-color: rgba(5, 144, 255, 0.4);
}

.garantia-card.primary-card {
    border-color: #ff9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
}

.garantia-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.garantia-card.primary-card .garantia-header {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.garantia-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.garantia-icon i {
    color: var(--general-color, #0590ff);
}

.garantia-card.primary-card .garantia-icon {
    background: #ffffff;
}

.garantia-card.primary-card .garantia-icon i {
    color: #ff9800;
}

.garantia-header h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.garantia-card.primary-card .garantia-header h4 {
    color: #ffffff;
}

.garantia-body {
    padding: 1.5rem;
}

.garantia-description {
    color: #b8c5db;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.garantia-description strong {
    color: #ffffff;
}

.garantia-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.garantia-benefits li {
    padding: 0.75rem 0;
    color: #b8c5db;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(5, 144, 255, 0.1);
}

.garantia-benefits li strong {
    color: #ffffff;
}

.garantia-benefits li:last-child {
    border-bottom: none;
}

.garantia-benefits li i {
    color: #4caf50 !important;
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
    margin-top: 0.1rem !important;
    margin-right: 1.25rem !important;
    padding-right: 0.5rem !important;
    min-width: 1.5rem !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
}

/* Sobrescribir estilos de pricing-section.css que usan position: absolute */
.accordion-body .garantia-benefits li,
.licensing-accordion .garantia-benefits li {
    padding-left: 0 !important;
    position: static !important;
}

.accordion-body .garantia-benefits li i,
.licensing-accordion .garantia-benefits li i {
    position: static !important;
    left: auto !important;
    top: auto !important;
}

.garantia-badge {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: #ffffff;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.garantia-card.primary-card .garantia-badge {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.badge-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Migration Process Styling */
.migration-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(5, 144, 255, 0.2);
    border-radius: 8px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--general-color, #0590ff) 0%, #0070cc 100%);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 40px;
    margin: 0 auto 0.5rem;
}

.step-text {
    font-size: 0.85rem;
    color: #b8c5db;
    font-weight: 600;
}

.process-arrow {
    color: var(--general-color, #0590ff);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Security Badges */
.security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.security-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(5, 144, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: linear-gradient(135deg, var(--general-color, #0590ff) 0%, #0070cc 100%);
    transform: scale(1.05);
    border-color: var(--general-color, #0590ff);
}

.security-badge i {
    color: var(--general-color, #0590ff);
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.security-badge:hover i {
    color: #ffffff;
}

.security-badge span {
    color: #b8c5db;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    display: block;
}

.security-badge:hover span {
    color: #ffffff;
}

/* Garantías Summary */
.garantias-summary {
    background: linear-gradient(135deg, rgba(5, 144, 255, 0.15) 0%, rgba(5, 144, 255, 0.08) 100%);
    border-left: 5px solid var(--general-color, #0590ff);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.garantias-summary h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.garantias-summary h4 i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.summary-content p {
    color: #b8c5db;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.summary-content p strong {
    color: #ffffff;
}

.summary-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(5, 144, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.summary-metric:hover {
    border-color: rgba(5, 144, 255, 0.4);
    box-shadow: 0 4px 12px rgba(5, 144, 255, 0.3);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--general-color, #0590ff);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #b8c5db;
    font-weight: 600;
}

.summary-cta {
    color: #e8ecf1;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.summary-cta strong {
    color: #ffffff;
}

/* ========================================
   TIMELINE ALERT (FACTOR CLAVE)
   ======================================== */
.timeline-alert {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timeline-alert i {
    color: #ffc107;
    font-size: 1.8rem;
    flex-shrink: 0;
    min-width: 1.8rem;
    text-align: center;
}

.timeline-alert strong {
    color: #ffc107;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ========================================
   TIMELINE IMPLEMENTATION CARDS
   ======================================== */
.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.time-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(5, 144, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.time-card:hover {
    border-color: rgba(5, 144, 255, 0.4);
    box-shadow: 0 8px 24px rgba(5, 144, 255, 0.2);
    transform: translateY(-4px);
}

.time-card.consultorio-card {
    border-color: rgba(46, 204, 113, 0.3);
}

.time-card.consultorio-card:hover {
    border-color: rgba(46, 204, 113, 0.6);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.2);
}

.time-card.ips-media-card {
    border-color: rgba(255, 193, 7, 0.3);
}

.time-card.ips-media-card:hover {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}

.time-card.ips-grande-card {
    border-color: rgba(156, 39, 176, 0.3);
}

.time-card.ips-grande-card:hover {
    border-color: rgba(156, 39, 176, 0.6);
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.2);
}

.time-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(5, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-icon i {
    font-size: 2.5rem;
    color: var(--general-color, #0590ff);
}

.consultorio-card .time-icon {
    background: rgba(46, 204, 113, 0.1);
}

.consultorio-card .time-icon i {
    color: #2ecc71;
}

.ips-media-card .time-icon {
    background: rgba(255, 193, 7, 0.1);
}

.ips-media-card .time-icon i {
    color: #ffc107;
}

.ips-grande-card .time-icon {
    background: rgba(156, 39, 176, 0.1);
}

.ips-grande-card .time-icon i {
    color: #9c27b0;
}

.time-card h5 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.institution-size {
    color: #b8c5db;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.time-range {
    background: rgba(5, 144, 255, 0.15);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.consultorio-card .time-range {
    background: rgba(46, 204, 113, 0.15);
}

.ips-media-card .time-range {
    background: rgba(255, 193, 7, 0.15);
}

.ips-grande-card .time-range {
    background: rgba(156, 39, 176, 0.15);
}

.time-value {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.success-case {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #2ecc71;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.success-case i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.success-case p {
    color: #e8ecf1;
    margin: 0;
    font-size: 0.9rem;
}

.success-case strong {
    color: #2ecc71;
}

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

.factors-header i {
    color: var(--general-color, #0590ff);
    font-size: 1.2rem;
}

.factors-header p {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.time-factors {
    list-style: none;
    padding: 0;
    margin: 0;
}

.time-factors li {
    padding: 0.75rem 0;
    color: #b8c5db;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(5, 144, 255, 0.1);
}

.time-factors li:last-child {
    border-bottom: none;
}

.time-factors li i {
    color: var(--general-color, #0590ff);
    flex-shrink: 0;
}

.consultorio-card .time-factors li i {
    color: #2ecc71;
}

.ips-media-card .time-factors li i {
    color: #ffc107;
}

.ips-grande-card .time-factors li i {
    color: #9c27b0;
}

/* ========================================
   IMPLEMENTATION PROCESS (SCRUM)
   ======================================== */
.implementation-process {
    margin-top: 3rem;
}

.implementation-process h4 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.implementation-process h4 i {
    color: var(--general-color, #0590ff);
    margin-right: 0.5rem;
}

.process-intro {
    color: #b8c5db;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(5, 144, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(5, 144, 255, 0.4);
    box-shadow: 0 4px 12px rgba(5, 144, 255, 0.2);
}

.process-step.highlight-step {
    border-color: rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.process-step.highlight-step:hover {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--general-color, #0590ff) 0%, #0070cc 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-step .step-number {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.step-content {
    flex: 1;
}

.step-content h5 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h5 i {
    color: var(--general-color, #0590ff);
    margin-right: 0.5rem;
}

.highlight-step .step-content h5 i {
    color: #ffc107;
}

.step-note {
    color: #b8c5db;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.step-activities {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.step-activities li {
    padding: 0.75rem 0;
    color: #b8c5db;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(5, 144, 255, 0.1);
}

.step-activities li:last-child {
    border-bottom: none;
}

.step-activities li i {
    color: #2ecc71;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.step-activities li strong {
    color: #ffffff;
}

.step-highlight {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: #e8ecf1;
}

.step-highlight i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.step-highlight strong {
    color: #ffc107;
}

.go-live-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000000;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.go-live-badge i {
    margin-right: 0.5rem;
    color: #000000;
}

/* Post Go-Live Support */
.post-golive-support {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(5, 144, 255, 0.05);
    border: 2px solid rgba(5, 144, 255, 0.2);
    border-radius: 12px;
}

.post-golive-support h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-golive-support h4 i {
    color: var(--general-color, #0590ff);
    margin-right: 0.5rem;
}

.support-intro {
    color: #b8c5db;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.support-item {
    text-align: center;
}

.support-icon {
    width: 70px;
    height: 70px;
    background: rgba(5, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.support-icon i {
    font-size: 2rem;
    color: var(--general-color, #0590ff);
}

.support-item h5 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.support-item ul li {
    color: #b8c5db;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.support-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--general-color, #0590ff);
    font-size: 1.2rem;
}

.support-item ul li strong {
    color: #ffffff;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.licensing-accordion .accordion-button:focus-visible {
    outline: 3px solid var(--general-color, #0070cc);
    outline-offset: 2px;
}

/* Ensure sufficient contrast for WCAG AA */
.accordion-section .feature-list li::before {
    color: #1e7e34; /* Darker green for better contrast */
}
