/* ============================================================
   SCORECARD.CSS - VERSIÓN FINAL 6.5
   AZENIS AEGIS Shield™ - PYME Guatemala
   Optimizado - Incluye Ticker de Telemetría
   ============================================================ */

/* ============================================================
   FUENTES
   ============================================================ */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-regular.woff2') format('woff2'),
         url('../fonts/open-sans-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-300.woff2') format('woff2'),
         url('../fonts/open-sans-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   TICKER AZENIS - Telemetría continua con iconos
   Mismo cyan que sector-card.active
   ============================================================ */

.aegis-ticker {
    height: 36px;
    overflow: hidden;
    background: #00D4FF;              /* ← mismo color que .sector-card.active */
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 40px;
    color: #0A1628;                   /* ← mismo negro que .sector-card.active */
    white-space: nowrap;
    letter-spacing: 1px;
    width: 100%;
    position: relative;
}

.aegis-ticker span {
    display: inline-block;
    padding: 0 24px;
    animation: aegisScroll 50s linear infinite;
}

.aegis-ticker span i {
    color: #0A1628;                   /* ← iconos negros */
    font-size: 14px;
    margin-right: 6px;
}

@keyframes aegisScroll {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   RESET Y BASE
   ============================================================ */

.scorecard-landing * {
    box-sizing: border-box;
}

.scorecard-landing {
    background: #0A1628;
    color: #E2E8F0;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
}

/* ============================================================
   HERO SCORECARD - CON TIPO Y TAMAÑO DE AEGIS
   ============================================================ */

.hero-scorecard {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('/assets/images/scorecard/hero-home.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #0A1628;
}

/* Overlay de opacidad */
.hero-scorecard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.65);
    z-index: 1;
    pointer-events: none;
}

.hero-scorecard .cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.70;
    pointer-events: none;
    z-index: 0;
}

.hero-scorecard .constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-scorecard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 5%,
        #00D4FF 20%,
        #00F0FF 40%,
        #00F0FF 60%,
        #00D4FF 80%,
        transparent 95%,
        transparent 100%
    );
    z-index: 3;
}

/* ============================================================
   CONTENIDO DEL HERO - CON TIPO Y TAMAÑO DE AEGIS
   ============================================================ */

.hero-scorecard .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-scorecard .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    padding-left: 0;
}

/* TÍTULO - MISMO TIPO Y TAMAÑO QUE AEGIS (PERO CON COLOR CYAN) */
.hero-scorecard .hero-left h1 {
    font-size: 4.5rem;          /* ← MISMO TAMAÑO QUE AEGIS */
    font-weight: 600;            /* ← MISMO PESO QUE AEGIS */
    letter-spacing: -0.03em;     /* ← MISMO ESPACIADO QUE AEGIS */
    line-height: 1.1;            /* ← MISMO INTERLINEADO QUE AEGIS */
    margin-bottom: 20px;
    color: #00D4FF;              /* ← COLOR CYAN (se mantiene) */
    text-align: left;
    max-width: 100%;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3); /* ← GLOW CYAN */
}

/* SUBTÍTULO - CON ESTILOS DE AEGIS */
.hero-scorecard .hero-left .subheadline {
    font-size: 1.2rem;           /* ← MISMO TAMAÑO QUE AEGIS */
    color: #B0B8C8;              /* ← COLOR ORIGINAL DEL SCORECARD */
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
    text-align: left;
}

.hero-scorecard .hero-left .subheadline strong {
    color: #00D4FF;
}

/* BOTONES - IGUALES */
.hero-scorecard .btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.hero-scorecard .btn-primary,
.hero-scorecard .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-scorecard .btn-primary {
    background: linear-gradient(135deg, #00D4FF, #00B4CC);
    color: #0A1628;
    border: none;
}

.hero-scorecard .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.hero-scorecard .btn-secondary {
    background: transparent;
    color: #00D4FF;
    border: 1.5px solid #00D4FF;
}

.hero-scorecard .btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00F0FF;
    transform: translateY(-2px);
    border-color: #00F0FF;
}

.hero-scorecard .hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
}

.hero-scorecard .hero-right-text {
    text-align: right;
    max-width: 400px;
    margin-left: auto;
}

.hero-scorecard .hero-right-text .hero-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00D4FF;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1.2;
}

.hero-scorecard .hero-right-text .hero-product {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-scorecard .hero-right-text .hero-features {
    font-size: 0.85rem;
    color: #B0B8C8;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE HERO
   ============================================================ */

@media (max-width: 1024px) {
    .hero-scorecard .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 80px 40px 60px;
    }
    .hero-scorecard .hero-left {
        align-items: center;
        text-align: center;
    }
    .hero-scorecard .hero-left h1 {
        font-size: 3.5rem;
        text-align: center;
    }
    .hero-scorecard .hero-left .subheadline {
        text-align: center;
        max-width: 100%;
    }
    .hero-scorecard .btn-group {
        justify-content: center;
    }
    .hero-scorecard .hero-right {
        justify-content: center;
        padding-right: 0;
    }
    .hero-scorecard .hero-right-text {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-scorecard {
        min-height: auto;
        padding: 60px 0 40px;
        background-attachment: scroll;
    }
    .hero-scorecard .hero-content {
        padding: 60px 32px 40px;
        gap: 24px;
    }
    .hero-scorecard .hero-left {
        align-items: center;
        text-align: center;
    }
    .hero-scorecard .hero-left h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 16px;
    }
    .hero-scorecard .hero-left .subheadline {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
    .hero-scorecard .btn-group {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        width: 100%;
    }
    .hero-scorecard .btn-primary,
    .hero-scorecard .btn-secondary {
        white-space: normal;
        flex-shrink: 1;
        padding: 12px 20px;
        font-size: 0.7rem;
        width: auto;
        max-width: 280px;
        text-align: center;
    }
    .hero-scorecard .hero-right {
        justify-content: center;
        padding-right: 0;
    }
    .hero-scorecard .hero-right-text {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
    }
    .hero-scorecard .hero-right-text .hero-brand {
        font-size: 1.4rem;
    }
    .hero-scorecard .hero-right-text .hero-product {
        font-size: 1rem;
    }
    .hero-scorecard .hero-right-text .hero-features {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-scorecard {
        padding: 40px 0 30px;
    }
    .hero-scorecard .hero-content {
        padding: 40px 24px 30px;
        gap: 20px;
    }
    .hero-scorecard .hero-left h1 {
        font-size: 1.9rem;
        margin-bottom: 14px;
    }
    .hero-scorecard .hero-left .subheadline {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .hero-scorecard .btn-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }
    .hero-scorecard .btn-primary,
    .hero-scorecard .btn-secondary {
        font-size: 0.7rem;
        padding: 12px 20px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero-scorecard .hero-right-text .hero-brand {
        font-size: 1.2rem;
    }
    .hero-scorecard .hero-right-text .hero-product {
        font-size: 0.9rem;
    }
    .hero-scorecard .hero-right-text .hero-features {
        font-size: 0.75rem;
    }
}

/* ============================================================
   CONTENEDOR PRINCIPAL (fondo unificado)
   ============================================================ */

.scorecard-content {
    position: relative;
    background-image: url('/assets/images/scorecard/resiliencia-operacional.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 0 40px 0;
    min-height: 100vh;
}

.scorecard-content::before {
    content: '';
    position: absolute;       /* ← CAMBIADO: solo cubre el contenedor */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.75);
    z-index: 0;
    pointer-events: none;
}

.scorecard-content > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .scorecard-content {
        background-attachment: scroll;
        background-size: cover;
    }
}

/* ============================================================
   BLOQUE INFORMATIVO
   ============================================================ */

.info-block {
    padding: 60px 20px;
    color: #E2E8F0;
    position: relative;
}

.info-block-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 8px;
}

.info-title span {
    color: #00D4FF;
}

.info-subtitle {
    color: #B0B8C8;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.info-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.info-card {
    background: rgba(15, 29, 47, 0.75);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(4px);
}

.info-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.info-card-header i {
    font-size: 2.5rem;
    color: #00D4FF;
}

.info-card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: 0;
}

.info-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.info-industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00D4FF;
}

.info-industry-tag i {
    font-size: 0.9rem;
}

.info-description {
    color: #B0B8C8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-description strong {
    color: #E2E8F0;
}

.info-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}

.info-features li {
    color: #B0B8C8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-features li i {
    color: #10B981;
    font-size: 0.8rem;
}

.info-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #00D4FF;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.info-note {
    color: #6B7280;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .info-grid-two {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .info-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CONTEXT INTRO - ¿Por qué necesita un AEGIS Scan?
   ============================================================ */

.context-intro {
    max-width: 1000px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

.context-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.context-title span {
    color: #00F0FF;
}

.context-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.context-grid .context-item {
    background: rgba(15, 29, 47, 0.75);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.context-grid .context-item:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.context-grid .context-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.context-grid .context-icon i {
    font-size: 1.5rem;
    color: #00F0FF;
}

.context-grid .context-text {
    flex: 1;
}

.context-grid .context-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.context-grid .context-text p {
    color: #B0B8C8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Outcome Section */
.context-outcome {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.context-outcome h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.outcome-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #E2E8F0;
    font-size: 0.95rem;
}

.outcome-item i {
    font-size: 1.5rem;
    color: #00F0FF;
}

/* Next Section */
.context-next {
    background: rgba(229, 72, 77, 0.08);
    border: 1px solid rgba(229, 72, 77, 0.2);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
}

.context-next h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #E5484D;
    margin: 0 0 8px 0;
}

.context-next p {
    color: #B0B8C8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive para Context Intro */
@media (max-width: 768px) {
    .context-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .context-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .context-grid .context-item {
        padding: 20px;
    }
    
    .outcome-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .outcome-item {
        justify-content: center;
        width: 100%;
    }
    
    .context-outcome {
        padding: 24px 16px;
    }
    
    .context-next {
        padding: 20px;
    }
    
    .context-next h4 {
        font-size: 1rem;
    }
    
    .context-next p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .context-title {
        font-size: 1.3rem;
    }
    
    .context-grid .context-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .context-grid .context-icon {
        width: 40px;
        height: 40px;
    }
    
    .context-grid .context-icon i {
        font-size: 1.2rem;
    }
    
    .outcome-item {
        font-size: 0.85rem;
    }
    
    .outcome-item i {
        font-size: 1.2rem;
    }
}

/* ============================================================
   VALUE MESSAGE
   ============================================================ */

.value-message {
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 32px 40px;
    background: rgba(15, 29, 47, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.value-message p {
    color: #B0B8C8;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.value-message p:last-child {
    margin-bottom: 0;
}

.value-message strong {
    color: #00D4FF;
}

@media (max-width: 768px) {
    .value-message {
        padding: 24px 20px;
    }
    .value-message p {
        font-size: 0.9rem;
    }
}

/* ============================================================
   STEPS - CENTRADO CON FLEXBOX
   ============================================================ */

.steps-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.steps-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 16px;
    width: 100%;
}

.steps-intro {
    text-align: center;
    color: #B0B8C8;
    font-size: 1rem;
    margin-bottom: 32px;
    padding: 0 20px;
    width: 100%;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 20px;
    background: rgba(15, 29, 47, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 160px;
    max-width: 200px;
    min-width: 120px;
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    background: #00D4FF;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.step-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    text-align: center;
}

.step-content p {
    color: #B0B8C8;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 1024px) {
    .step-item {
        flex: 1 1 140px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .step-item {
        flex: 1 1 120px;
        max-width: 160px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .step-item {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

/* ============================================================
   MICRO-CTA
   ============================================================ */

.micro-cta-section {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.micro-cta-section p {
    color: #B0B8C8;
    font-size: 1rem;
    margin-bottom: 16px;
    text-align: center;
    padding: 0 20px;
}

.micro-cta-section .info-btn {
    display: inline-block;
    margin: 0 auto;
}

.micro-cta-highlight {
    color: #00D4FF;
}

/* ============================================================
   SECTOR SELECTOR - 14 INDUSTRIAS
   ============================================================ */

.sector-selector-wrapper {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.selector-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #00D4FF;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.sector-selector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sector-card {
    background: rgba(15, 29, 47, 0.75);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Estado ACTIVO - Industrias PAID (cyan sólido) */
.sector-card.active {
    background: #00D4FF;
    color: #0A1628;
    border-color: #00D4FF;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.sector-card .sector-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: #00D4FF;
    transition: color 0.3s ease;
}

.sector-card.active .sector-icon {
    color: #0A1628;
}

.sector-card .sector-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.sector-card.active .sector-name {
    color: #0A1628;
}

.sector-card .sector-select {
    font-size: 0.75rem;
    color: #B0B8C8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.sector-card.active .sector-select {
    color: #0A1628;
}

/* ============================================================
   INDUSTRIAS PREMIUM (Banca, Gobierno, Salud)
   ============================================================ */

.sector-card.premium-industry {
    border-color: rgba(200, 168, 78, 0.3);
    background: rgba(15, 29, 47, 0.9);
}

.sector-card.premium-industry:hover {
    border-color: rgba(200, 168, 78, 0.6);
    box-shadow: 0 12px 40px rgba(200, 168, 78, 0.15);
}

.sector-card.premium-industry .sector-icon {
    color: #C8A84E;
}

/* Estado ACTIVO - Industrias PREMIUM (dorado sólido) */
.sector-card.premium-industry.active {
    background: #C8A84E;
    border-color: #C8A84E;
    box-shadow: 0 0 30px rgba(200, 168, 78, 0.4);
}

.sector-card.premium-industry.active .sector-icon {
    color: #0A1628;
}

.sector-card.premium-industry.active .sector-name {
    color: #0A1628;
}

.sector-card.premium-industry.active .sector-select {
    color: #0A1628;
}

/* Badge "Discovery Call" */
.sector-badge {
    font-size: 0.65rem;
    background: rgba(200, 168, 78, 0.2);
    color: #C8A84E;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Badge cuando está activo */
.sector-card.premium-industry.active .sector-badge {
    background: rgba(10, 22, 40, 0.3);
    color: #0A1628;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
    .sector-selector-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 750px) {
    .sector-selector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .sector-card {
        padding: 20px 16px;
        min-height: 120px;
    }
    .sector-card .sector-icon {
        font-size: 2rem;
    }
    .sector-card .sector-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .sector-selector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .sector-card {
        padding: 16px 12px;
        min-height: 100px;
    }
    .sector-card .sector-icon {
        font-size: 1.6rem;
    }
    .sector-card .sector-name {
        font-size: 0.75rem;
    }
}

/* ============================================================
   DASHBOARD FULL WRAPPER - ANCHO LIMITADO A 1000px
   ============================================================ */

.dashboard-full-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 0 auto 48px auto;
}

.dashboard-full-wrapper .industry-dashboard-wrapper {
    margin-bottom: 0;
}

.dashboard-full-wrapper .benchmark-section {
    margin-top: 0;
    margin-bottom: 0;
}

.dashboard-full-wrapper .cta-section {
    padding: 0;
    margin-top: 0;
}

/* ============================================================
   INDUSTRY DASHBOARD WRAPPER (fondo animado)
   ============================================================ */

.industry-dashboard-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-dashboard-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2200%;
    height: 220%;
    z-index: 0;
    background: linear-gradient(
        135deg,
        #050B16 0%,
        #050B16 20%,
        #00D4FF 50%,
        #E5484D 80%,
        #050B16 100%
    );
    background-size: 300% 300%;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

.industry-dashboard-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(
        circle at center,
        rgba(0, 212, 255, 0.3) 0%,
        rgba(229, 72, 77, 0.1) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

.industry-dashboard-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 11px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 11px
        );
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================================
   INDUSTRY DASHBOARD - IMAGEN ARRIBA, INFO ABAJO
   ============================================================ */

.industry-dashboard {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    padding: 32px;
    background: rgba(5, 11, 22, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    min-height: 400px;
    transition: all 0.5s ease;
    border-left: 4px solid rgba(0, 212, 255, 0.3);
    transition: border-color 0.5s ease;
}

.industry-dashboard.risk-critical {
    border-left-color: #DC2626;
    box-shadow: inset 0 0 30px rgba(220, 38, 38, 0.05);
}

.industry-dashboard.risk-high {
    border-left-color: #EF4444;
    box-shadow: inset 0 0 30px rgba(239, 68, 68, 0.05);
}

.industry-dashboard.risk-medium {
    border-left-color: #F59E0B;
    box-shadow: inset 0 0 30px rgba(245, 158, 11, 0.05);
}

.industry-dashboard.risk-low {
    border-left-color: #10B981;
    box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.05);
}

/* ============================================================
   IMAGEN - Centrada y con esquinas redondeadas
   ============================================================ */

.industry-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: rgba(5, 11, 22, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.50;
}

.industry-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.industry-image-wrapper img.loaded {
    opacity: 1;
}

.industry-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(0, 212, 255, 0.15);
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   INDUSTRY INFO - COLUMNA IZQUIERDA
   ============================================================ */

.industry-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.industry-info .industry-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.industry-info .industry-name i {
    color: #00D4FF;
    margin-right: 12px;
}

.level-pulse {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.pulse-dot.risk-critical {
    background: #DC2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}

.pulse-dot.risk-high {
    background: #EF4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.pulse-dot.risk-medium {
    background: #F59E0B;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.pulse-dot.risk-low {
    background: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.level-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.threats-list {
    margin: 12px 0 16px;
}

.threats-list h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #B0B8C8;
    margin-bottom: 8px;
}

.threats-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.threats-list ul li {
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00D4FF;
}

.recommendation {
    background: rgba(229, 72, 77, 0.15);
    border-left: 3px solid #E5484D;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #E2E8F0;
    margin-top: 8px;
}

.recommendation strong {
    color: #E5484D;
}

/* ============================================================
   CONTEXTO - COLUMNA DERECHA
   ============================================================ */

.context-section {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 24px;
    background: rgba(10, 22, 40, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.context-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.context-header i {
    font-size: 1.6rem;
    color: #00D4FF;
}

.context-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: 0;
}

.context-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.context-item:last-child {
    margin-bottom: 0;
}

.context-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    color: #00D4FF;
    margin-top: 2px;
}

.context-content {
    color: #B0B8C8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.context-content strong {
    color: #E2E8F0;
}

.context-divisions {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.context-divisions li {
    padding: 4px 0;
    color: #B0B8C8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.context-divisions li::before {
    content: '→';
    color: #00D4FF;
    font-weight: bold;
}

.context-divisions li strong {
    color: #00D4FF;
}

/* ============================================================
   IMPACT ANALYSIS - CON BARRAS Y COMPARATIVAS
   ============================================================ */

.impact-section {
    margin-top: 24px;
    padding: 24px 32px;
    background: rgba(5, 11, 22, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    grid-column: 1 / -1;
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.impact-header i {
    font-size: 1.6rem;
    color: #00D4FF;
}

.impact-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: 0;
}

.impact-header p {
    color: #B0B8C8;
    font-size: 0.85rem;
    margin: 0;
    margin-left: auto;
    max-width: 400px;
    text-align: right;
    line-height: 1.4;
}

/* ============================================================
   IMPACT GRID - TARJETAS CON BARRAS Y COMPARATIVAS
   ============================================================ */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.impact-item {
    background: rgba(10, 22, 40, 0.5);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: all 0.3s ease;
}

/* Estados de impacto - Bordes coloreados */
.impact-item.critico { 
    border-color: rgba(220, 38, 38, 0.3);
    border-width: 2px;
}

.impact-item.alto { 
    border-color: rgba(239, 68, 68, 0.3);
    border-width: 2px;
}

.impact-item.medio { 
    border-color: rgba(245, 158, 11, 0.3);
    border-width: 2px;
}

.impact-item.bajo { 
    border-color: rgba(16, 185, 129, 0.3);
    border-width: 2px;
}

.impact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.impact-item .impact-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #0086A1;
}

/* Iconos coloreados según nivel */
.impact-item.critico .impact-icon { color: #DC2626; }
.impact-item.alto .impact-icon { color: #EF4444; }
.impact-item.medio .impact-icon { color: #F59E0B; }
.impact-item.bajo .impact-icon { color: #10B981; }

.impact-item .impact-label {
    font-size: 0.7rem;
    color: #B0B8C8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.impact-item .impact-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #00D4FF;
    margin-bottom: 4px;
}

/* ============================================================
   BARRAS DE IMPACTO (NUEVO)
   ============================================================ */

.impact-bar {
    height: 6px;
    background: #1E293B;
    border-radius: 3px;
    margin: 10px 0 8px 0;
    overflow: hidden;
}

.impact-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.impact-fill.critico { background: #DC2626; }
.impact-fill.alto { background: #EF4444; }
.impact-fill.medio { background: #F59E0B; }
.impact-fill.bajo { background: #10B981; }

/* ============================================================
   COMPARATIVAS (NUEVO)
   ============================================================ */

.impact-compare {
    font-size: 0.7rem;
    margin-top: 8px;
    color: #94A3B8;
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.compare-before { 
    color: #EF4444; 
    text-decoration: line-through;
    font-weight: 500;
}

.compare-after { 
    color: #10B981; 
    font-weight: 600;
}

.compare-arrow {
    color: #6B7280;
    font-size: 0.6rem;
}

/* ============================================================
   BADGES DE IMPACTO
   ============================================================ */

.impact-item .impact-badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.impact-badge.bajo {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.impact-badge.medio {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.impact-badge.alto {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.impact-badge.critico {
    background: rgba(220, 38, 38, 0.2);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.impact-item .impact-note {
    font-size: 0.65rem;
    color: #6B7280;
    line-height: 1.3;
    margin-top: 4px;
}

/* ============================================================
   IMPACT FOOTER
   ============================================================ */

.impact-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #6B7280;
    flex-wrap: wrap;
    gap: 8px;
}

.impact-footer strong {
    color: #00D4FF;
}

/* ============================================================
   BENCHMARK - CON CONTORNOS DE COLOR (sin barras)
   ============================================================ */

.benchmark-section {
    position: relative;
    z-index: 2;
    background: rgba(5, 11, 22, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
}

.benchmark-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #00D4FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.benchmark-subtitle {
    color: #B0B8C8;
    text-align: center;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benchmark-item {
    text-align: center;
    padding: 20px 12px;
    background: rgba(5, 11, 22, 0.5);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benchmark-item:hover {
    transform: translateY(-2px);
}

.benchmark-item.risk-critical {
    border-color: #DC2626;
}

.benchmark-item.risk-high {
    border-color: #EF4444;
}

.benchmark-item.risk-medium {
    border-color: #F59E0B;
}

.benchmark-item.risk-low {
    border-color: #10B981;
}

.benchmark-item.benchmark-top {
    border-color: #00D4FF;
}

.benchmark-item .benchmark-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #00D4FF;
    line-height: 1.2;
    margin-bottom: 4px;
}

.benchmark-item .benchmark-label {
    font-size: 0.7rem;
    color: #B0B8C8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    text-align: center;
    padding: 20px 0;
}

.cta-section .btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #00D4FF;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    cursor: pointer;
    border: none;
}

.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

.cta-section .btn-cta.disabled,
.cta-section .btn-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.cta-section .cta-subtitle {
    color: #B0B8C8;
    font-size: 0.85rem;
    margin-top: 12px;
}

.cta-section .cta-subtitle.disabled-text {
    color: #6B7280;
}

/* ============================================================
   CTA PREMIUM (Discovery Call)
   ============================================================ */

.cta-premium {
    padding: 40px 0;
}

.premium-cta-card {
    background: rgba(15, 29, 47, 0.9);
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(4px);
}

.premium-cta-icon {
    font-size: 3rem;
    color: #C8A84E;
    margin-bottom: 16px;
}

.premium-cta-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #C8A84E;
    margin: 0 0 12px 0;
}

.premium-cta-card p {
    color: #B0B8C8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.btn-premium {
    background: linear-gradient(135deg, #C8A84E, #A68A3E) !important;
    color: #0A1628 !important;
    box-shadow: 0 4px 20px rgba(200, 168, 78, 0.3) !important;
}

.btn-premium:hover {
    box-shadow: 0 12px 40px rgba(200, 168, 78, 0.4) !important;
}

/* ============================================================
   RESPONSIVE - ANCHO COMPLETO EN MÓVILES
   ============================================================ */

@media (max-width: 900px) {
    .industry-dashboard {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 24px;
    }
    .industry-image-wrapper {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        aspect-ratio: 16/9;
        max-height: 300px;
    }
    .industry-info {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .context-section {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .impact-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .impact-header p {
        margin-left: 0;
        text-align: left;
        max-width: 100%;
    }
    .benchmark-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .benchmark-item .benchmark-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .dashboard-full-wrapper {
        max-width: 100%;
        padding: 20px;
        margin: 0 16px 48px 16px;
    }
    .industry-dashboard {
        padding: 20px;
    }
    .industry-info .industry-name {
        font-size: 1.4rem;
    }
    .context-section {
        padding: 16px;
    }
    .context-item {
        flex-direction: column;
        gap: 4px;
    }
    .context-divisions {
        margin-left: 0;
    }
    .context-content {
        font-size: 0.9rem;
    }
    .benchmark-section {
        padding: 20px;
    }
    .benchmark-section h2 {
        font-size: 1rem;
    }
    .benchmark-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .benchmark-item {
        padding: 12px 6px;
    }
    .benchmark-item .benchmark-value {
        font-size: 1.4rem;
    }
    .benchmark-item .benchmark-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    .impact-compare {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .dashboard-full-wrapper {
        padding: 16px;
        margin: 0 8px 32px 8px;
    }
    .benchmark-section {
        padding: 16px;
    }
    .benchmark-grid {
        gap: 6px;
    }
    .benchmark-item {
        padding: 8px 4px;
        border-radius: 8px;
    }
    .benchmark-item .benchmark-value {
        font-size: 1.1rem;
    }
    .benchmark-item .benchmark-label {
        font-size: 0.5rem;
    }
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .impact-item {
        padding: 16px;
    }
    .impact-item .impact-value {
        font-size: 1.2rem;
    }
    .impact-compare {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}