/* ------------------------------------------ */
/* Hero Section - Layout & Floating Badges     */
/* ------------------------------------------ */
.hero-gradient {
    background: radial-gradient(circle at 15% 20%, rgba(137, 198, 255, 0.12), transparent 57%),
                linear-gradient(120deg, #e8f3ff 0%, #f7fbff 45%, #ffffff 100%);
}

.hero-card {
    border-radius: 32px;
    background: #ffffff;
    padding: 1.75rem;
    box-shadow: 0 18px 30px rgba(14, 41, 84, 0.12), 0 35px 75px rgba(14, 41, 84, 0.18);
}

.hero-card img {
    width: 100%;
    border-radius: 1rem;
    display: block;
}

.hero-pill,
.hero-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 25px 30px rgba(15, 57, 94, 0.21);
    backdrop-filter: blur(6px);
}

.hero-chip {
    border-radius: 999px;
    padding: 0.45rem 1.25rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-chip::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #1b3d75;
}

@media (max-width: 767px) {
    .hero-card {
        border-radius: 22px;
        padding: 1.2rem;
    }

    .hero-pill,
    .hero-badge {
        position: static !important;
        margin-top: 1.5rem;
        width: 100%;
    }
}

/* ------------------------------------------ */
/* Final CTA Section                          */
/* ------------------------------------------ */
.cta-final-section {
    background: #f8fbff;
}

.cta-final-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.cta-final-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f233f;
    margin-bottom: 1rem;
}

.cta-final-content p {
    font-size: 1.05rem;
    color: #5c6b7f;
    margin-bottom: 1.75rem;
}

.cta-final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.cta-final-outline {
    border: 2px solid rgba(12, 33, 66, 0.4);
    background: #ffffff;
    color: #0f233f;
    border-radius: 1rem;
    padding: 0.95rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 18px 30px rgba(15, 57, 94, 0.08);
}

.cta-final-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    color: #0f233f;
    font-weight: 600;
}

.cta-final-list i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.cta-final-media {
    display: flex;
    justify-content: center;
}

.cta-final-frame {
    position: relative;
    border-radius: 30px;
    padding: 1.25rem;
    background: linear-gradient(135deg, #0b2f67, #0f1f39);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), 0 30px 60px rgba(9, 20, 45, 0.25);
}

.cta-final-frame img {
    width: 100%;
    max-width: 460px;
    border-radius: 22px;
    display: block;
}

.cta-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 18px;
    padding: 0.75rem 1rem;
    box-shadow: 0 20px 35px rgba(7, 17, 34, 0.12);
    min-width: 120px;
}

.cta-badge .badge-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: #5c6b7f;
}

.cta-badge strong {
    font-size: 1.2rem;
    color: var(--primary);
}

.cta-badge-left {
    left: 1.5rem;
    bottom: 1.5rem;
}

.cta-badge-right {
    right: 1.5rem;
    top: 1.5rem;
}

@media (max-width: 768px) {
    .cta-final-content h2 {
        font-size: 1.9rem;
    }

    .cta-final-list {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-final-frame img {
        max-width: 100%;
    }
}

/* ------------------------------------------ */
/* Pain Points Section - Operational Blocks    */
/* ------------------------------------------ */
.operation-section {
    background-color: #ffffff;
}

.operation-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    color: var(--primary);
}

.operation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .operation-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.operation-card {
    border: 1px solid #e7edf5;
    border-radius: 22px;
    padding: 1.75rem;
    background-color: #ffffff;
    box-shadow: 0 18px 30px rgba(11, 32, 70, 0.08), 0 8px 20px rgba(11, 32, 70, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.operation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 40px rgba(11, 32, 70, 0.16), 0 10px 20px rgba(11, 32, 70, 0.12);
}

.operation-icon,
.control-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--primary) 10%, color-mix(in srgb, var(--primary) 45%, #ffffff) 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
}

.operation-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f233f;
    margin-bottom: 0.35rem;
}

.operation-card p {
    color: #5c6b7f;
    font-size: 0.95rem;
    margin: 0;
}

/* ------------------------------------------ */
/* Control Section - KPI Feature Cards        */
/* ------------------------------------------ */
.control-section {
    background: linear-gradient(180deg, #f1f7ff 0%, #ffffff 65%);
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.control-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid #e4edf8;
    box-shadow: 0 20px 35px rgba(6, 28, 66, 0.1), 0 10px 20px rgba(6, 28, 66, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
}

.control-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(6, 28, 66, 0.15), 0 14px 30px rgba(6, 28, 66, 0.12);
}

.control-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f233f;
    margin-bottom: 0.4rem;
}

.control-card p {
    color: #5c6b7f;
    font-size: 0.95rem;
    margin: 0;
}

/* ------------------------------------------ */
/* Comparison Section - Table                 */
/* ------------------------------------------ */
.comparison-section {
    background-color: #ffffff;
}


.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 28px;
    box-shadow: 0 18px 30px rgba(10, 27, 51, 0.12), 0 35px 65px rgba(10, 27, 51, 0.16);
    background: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(15, 35, 63, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e6edf5;
    font-size: 0.95rem;
    color: #0f233f;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table thead th {
    font-size: 0.95rem;
    font-weight: 600;
    color: #62718a;
    background: #f6f9ff;
}

.comparison-table th.highlight-head {
    background: linear-gradient(180deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 70%, #ffffff) 100%);
    color: #ffffff;
    font-weight: 700;
}

.highlight-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 0.35rem;
}

.comparison-table td.highlight {
    background: rgba(3, 90, 196, 0.06);
    font-weight: 600;
    color: var(--primary);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 640px) {
    .control-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* ------------------------------------------ */
/* Role Spotlight Cards                       */
/* ------------------------------------------ */
.role-section {
    background: #f5f8fd;
}

.role-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1130px;
    margin: 0 auto;
}

.role-card {
    border-radius: 28px;
    padding: 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(7, 17, 34, 0.18), 0 8px 20px rgba(7, 17, 34, 0.12);
}

.role-card::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    top: -70px;
    right: -40px;
}

.role-card-primary {
    background: linear-gradient(115deg, var(--primary), color-mix(in srgb, var(--primary) 70%, #ffffff));
}

.role-card-dark {
    background: linear-gradient(120deg, var(--dark), color-mix(in srgb, var(--dark) 45%, #000000));
}

.role-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.role-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.role-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.role-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.role-card ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.role-card ul i {
    color: #ffffff;
    font-size: 0.85rem;
}

.role-card button {
    width: 100%;
    border-radius: 1rem;
    border: none;
    background: #ffffff;
    color: var(--primary);
    font-weight: 600;
    padding: 0.85rem 1.25rem;
    box-shadow: 0 10px 25px rgba(4, 24, 62, 0.2);
    transition: transform 0.2s ease;
}

.role-card-dark button {
    color: #0a1c39;
}

.role-card button:hover {
    transform: translateY(-2px);
}

/* ------------------------------------------ */
/* Solutions Matrix Section                   */
/* ------------------------------------------ */
.solutions-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

.solutions-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    border-radius: 1rem;
    border: none;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 18px 35px rgba(12, 82, 197, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solutions-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(12, 82, 197, 0.3);
}

.solution-card {
    border-radius: 24px;
    border: 1px solid #edf2f7;
    padding: 1.75rem;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(9, 30, 66, 0.08);
}

.solution-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #9aa6b8;
    margin-bottom: 0.35rem;
}

.solution-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f233f;
    margin-bottom: 1rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.solution-link i {
    font-size: 0.95rem;
}

.solution-module {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.solution-card p {
    color: #4a5972;
    margin: 0;
}




/* ------------------------------------------ */
/* Valores Section                   */
/* ------------------------------------------ */
.operation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .operation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .operation-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ...código existente... */



/* ------------------------------------------ */
/* Customer Results Section                   */
/* ------------------------------------------ */
.results-section {
    background: #f5f8ff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.result-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e5ecf7;
    box-shadow: 0 25px 60px rgba(10, 32, 70, 0.08);
    display: flex;
    flex-direction: column;
}

.result-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.result-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(5, 16, 43, 0) 0%, rgba(5, 16, 43, 0.75) 100%);
    color: #ffffff;
}

.result-overlay p {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    opacity: 0.85;
}

.result-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.result-body {
    padding: 1.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.result-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #eef2f8;
}

.result-metric:last-of-type {
    border-bottom: none;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(36, 112, 255, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.result-metric p {
    font-size: 0.9rem;
    color: #5c6b7f;
    margin: 0;
}

.result-metric strong {
    font-size: 1.1rem;
    color: #0f233f;
}

.result-cta {
    margin-top: 1.5rem;
    width: 100%;
    border-radius: 1rem;
    border: 1.5px solid rgba(12, 82, 197, 0.45);
    background: #ffffff;
    color: var(--primary);
    font-weight: 600;
    padding: 0.95rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 18px 30px rgba(9, 27, 61, 0.08);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.result-cta i {
    font-size: 0.95rem;
}

.result-cta:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 25px 45px rgba(12, 82, 197, 0.25);
}

/* ------------------------------------------ */
/* Implementation Timeline Section            */
/* ------------------------------------------ */
.implementation-section {
    background: #ffffff;
}

.implementation-track {
    position: relative;
    padding: 1rem 0 0;
}

.impl-line {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(26, 108, 235, 0.2), rgba(26, 108, 235, 0.8), rgba(26, 108, 235, 0.2));
    z-index: 0;
    border-radius: 999px;
}

.impl-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    z-index: 1;
}

.impl-step {
    text-align: center;
}

.impl-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.2rem;
    border-radius: 999px;
    border: 4px solid #ffffff;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 45%, #ffffff), var(--primary));
    box-shadow: 0 25px 40px rgba(15, 61, 138, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
}

.impl-circle i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.impl-time {
    position: absolute;
    bottom: -18px;
    background: #0b1b3b;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    box-shadow: 0 15px 25px rgba(11, 27, 59, 0.25);
}

.impl-step h3 {
    margin-top: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f233f;
}

.impl-step p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0.2rem 0 0;
}

.implementation-note {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(12, 82, 197, 0.35);
    background: rgba(12, 82, 197, 0.08);
    color: #0f233f;
    font-weight: 600;
}

.implementation-note i {
    color: var(--primary);
}

@media (max-width: 767px) {
    .impl-circle {
        width: 100px;
        height: 100px;
    }

    .impl-line {
        top: 62px;
    }
}

/* ------------------------------------------ */
/* Payment Options Section                    */
/* ------------------------------------------ */
.payment-section {
    background: #f5f8ff;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.payment-card {
    background: #ffffff;
    border-radius: 34px;
    padding: 2.5rem;
    border: 1px solid #e2e8f5;
    box-shadow: 0 30px 60px rgba(8, 19, 46, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.payment-card-primary {
    background: linear-gradient(115deg, var(--primary), color-mix(in srgb, var(--primary) 70%, #ffffff));
    color: #ffffff;
    border: none;
    box-shadow: 0 35px 60px rgba(15, 61, 138, 0.2);
}

.payment-pill {
    position: absolute;
    top: -18px;
    left: 22px;
    background: #0b1b3b;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 15px 25px rgba(11, 27, 59, 0.25);
}

.payment-header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;
}

.payment-card:not(.payment-card-primary) .payment-icon {
    background: rgba(26, 108, 235, 0.15);
    color: var(--primary);
}

.payment-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin: 0;
}

.payment-card-primary h3,
.payment-card-primary p,
.payment-card-primary li {
    color: #ffffff;
}

.payment-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.2rem 0 0;
}

.payment-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0f233f;
}

.payment-card-primary .payment-price {
    color: #ffffff;
}

.payment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.payment-card ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #5c6b7f;
}

.payment-card-primary ul li {
    color: rgba(255, 255, 255, 0.9);
}

.payment-card ul i {
    color: var(--primary);
    font-size: 0.85rem;
}

.payment-card-primary ul i {
    color: #ffffff;
}

.payment-cta {
    margin-top: auto;
    border: none;
    border-radius: 1rem;
    padding: 0.95rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 18px 30px rgba(9, 27, 61, 0.08);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.payment-card-primary .payment-cta {
    color: var(--primary);
}

.payment-cta.outline {
    background: var(--primary);
    color: #ffffff;
}

.payment-cta:hover {
    box-shadow: 0 25px 45px rgba(9, 27, 61, 0.12);
}

.payment-footnote {
    text-align: center;
    margin-top: 2.5rem;
    color: #5c6b7f;
    font-size: 0.95rem;
}

/* ------------------------------------------ */
/* Risk-Free Section                          */
/* ------------------------------------------ */
.risk-section {
    background: #ffffff;
}

.risk-card {
    background: #ffffff;
    border-radius: 36px;
    border: 1px solid rgba(15, 35, 63, 0.08);
    box-shadow: 0 35px 65px rgba(7, 17, 34, 0.12);
    padding: 2.75rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.risk-icon {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 26px;
    background: linear-gradient(145deg, var(--primary), color-mix(in srgb, var(--primary) 65%, #ffffff));
    box-shadow: 0 25px 40px rgba(15, 57, 94, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}

.risk-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f233f;
    margin-bottom: 0.75rem;
}

.risk-content p {
    color: #5c6b7f;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.risk-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.risk-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: #0f233f;
    font-size: 0.95rem;
}

.risk-pill i {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 40%, #ffffff), var(--primary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .risk-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .risk-icon {
        margin-bottom: 1rem;
    }

    .risk-pills {
        justify-content: center;
    }
}