/* Estilos especificos de formulario-diagnostico.html */

.radio-option input[type="radio"] {
            display: none;
        }

        .form-navbar-brand {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
            min-width: 0;
            text-decoration: none;
        }

        .form-navbar-logo {
            display: block;
            width: min(240px, 56vw);
            height: auto;
            max-height: 56px;
            object-fit: contain;
        }

        .radio-option label {
            display: flex;
            align-items: center;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
            height: 100%;
        }

        .radio-option label:hover {
            border-color: #cbd5e1;
            background-color: #f8fafc;
        }

        .radio-option input[type="radio"]:checked+label {
            border-color: #22c55e;
            background-color: #f0fdf4;
            color: #15803d;
            box-shadow: 0 0 0 1px #22c55e;
        }

        .radio-option .circle {
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 50%;
            border: 2px solid #cbd5e1;
            margin-right: 0.75rem;
            flex-shrink: 0;
            display: inline-block;
            position: relative;
        }

        .radio-option input[type="radio"]:checked+label .circle {
            border-color: #22c55e;
        }

        .radio-option input[type="radio"]:checked+label .circle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0.625rem;
            height: 0.625rem;
            background-color: #22c55e;
            border-radius: 50%;
        }

        .form-flow-header {
            padding: 24px 24px 20px;
            background:
                radial-gradient(circle at top right, rgba(31, 103, 140, 0.1), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
            border-bottom: 1px solid rgba(148, 163, 184, 0.16);
        }

        .form-flow-topline {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: center;
            margin-bottom: 14px;
        }

        .form-flow-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(34, 197, 94, 0.08);
            color: #15803d;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .form-flow-count {
            color: #1f678c;
            font-size: 14px;
            font-weight: 800;
        }

        .form-flow-title {
            margin: 0;
            color: #0f172a;
            font-size: 28px;
            line-height: 1.08;
            font-weight: 800;
        }

        .form-flow-subtitle {
            margin: 8px 0 0;
            color: #64748b;
            font-size: 15px;
            line-height: 1.55;
            max-width: 720px;
        }

        .form-progress-track {
            margin-top: 18px;
            width: 100%;
            height: 10px;
            border-radius: 999px;
            background: rgba(148, 163, 184, 0.18);
            overflow: hidden;
        }

        .form-progress-fill {
            width: 33.333%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, #1f678c 0%, #22c55e 100%);
            box-shadow: 0 8px 20px rgba(34, 197, 94, 0.28);
            transition: width 0.35s ease;
        }

        .form-step {
            display: none;
            animation: formStepFade 0.28s ease;
        }

        .form-step.is-active {
            display: block;
        }

        .field-block {
            position: relative;
        }

        .field-block.error-state label {
            color: #b91c1c;
        }

        .field-block.error-state input,
        .field-block.error-state select {
            border-color: #ef4444 !important;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
            background: #fffafa;
        }

        .question-block.error-state {
            border-color: #f87171 !important;
            background: #fffafa !important;
            box-shadow: 0 18px 40px rgba(239, 68, 68, 0.08);
        }

        .question-block.error-state h4,
        .question-block.error-state p {
            color: #991b1b;
        }

        .field-error-message {
            margin-top: 10px;
            color: #b91c1c;
            font-size: 13px;
            line-height: 1.45;
            font-weight: 600;
        }

        .form-flow-actions {
            padding: 24px 24px 28px;
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .form-flow-buttons {
            display: flex;
            flex-direction: column-reverse;
            gap: 12px;
        }

        .form-secondary-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 18px;
            border: 1px solid rgba(31, 103, 140, 0.18);
            background: #f8fafc;
            color: #1f678c;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.25s ease;
        }

        .form-secondary-button:hover {
            background: #eef6fb;
            border-color: rgba(31, 103, 140, 0.28);
        }

        .form-step-summary {
            margin: 0;
            color: #64748b;
            font-size: 14px;
            line-height: 1.5;
        }

        @keyframes formStepFade {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        @media (min-width: 768px) {
            .form-navbar-logo {
                width: 260px;
                max-height: 64px;
            }

            .form-flow-header {
                padding: 30px 32px 24px;
            }

            .form-flow-actions {
                padding: 24px 32px 32px;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .form-flow-buttons {
                flex-direction: row;
                align-items: center;
                justify-content: flex-end;
            }
        }

        /* Estilos para el header fijo del PDF */
        .pdf-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 20px 40px;
            border-bottom: 1px solid #e2e8f0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .pdf-header img {
            height: 65px;
            max-width: 250px;
            object-fit: contain;
        }
        .pdf-header .fecha {
            color: #555;
            font-size: 14px;
            text-align: right;
        }
        /* Espacio para que el contenido no quede tapado por el header */
        .pdf-main-content {
            padding-top: 120px;
        }
        /* Ajuste del gráfico en el PDF */
        #pdfChart {
            width: 400px;
            height: 400px;
            display: block;
            margin: 20px auto;
            border: 1px solid #ccc;
        }

        #pdfReport,
        #pdfReport * {
            font-family: Arial, sans-serif !important;
        }

        #pdfReport {
            margin: 0 !important;
            padding: 0 !important;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            overflow: hidden;
        }

        .pdf-page {
            width: 100%;
            height: 1056px;
            min-height: 1056px;
            flex: 0 0 1056px;
            margin: 0;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            display: block;
            background: #ffffff;
        }

        .pdf-shell {
            position: relative;
            height: 1056px;
            padding: 44px 42px 38px;
            box-sizing: border-box;
            background: #ffffff;
        }

        .pdf-shell--closing {
            padding: 14px 0 0;
        }

        .pdf-brand-line {
            width: 88px;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, #0f766e 0%, #0ea5e9 100%);
            margin-bottom: 18px;
        }

        .pdf-mini-label {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(15, 118, 110, 0.08);
            color: #115e59;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .pdf-section-title {
            margin: 0;
            color: #0f172a;
            font-size: 30px;
            line-height: 1.15;
            font-weight: 700;
        }

        .pdf-section-subtitle {
            margin: 10px 0 0;
            color: #475569;
            font-size: 14px;
            line-height: 1.7;
        }

        .pdf-card {
            background: #ffffff;
            border: 1px solid #dbe7f3;
            border-radius: 22px;
            box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
        }

        .pdf-grid-two {
            display: grid;
            grid-template-columns: 1.35fr 0.95fr;
            gap: 22px;
        }

        .pdf-metric-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .pdf-metric-card {
            padding: 18px;
            border-radius: 18px;
            border: 1px solid #dbe7f3;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        }

        .pdf-metric-label {
            margin: 0 0 10px;
            color: #64748b;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 700;
        }

        .pdf-metric-value {
            margin: 0;
            color: #0f172a;
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
        }

        .pdf-metric-hint {
            margin: 8px 0 0;
            color: #475569;
            font-size: 12px;
            line-height: 1.5;
        }

        .pdf-info-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 10px;
        }

        .pdf-info-list li {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        .pdf-info-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .pdf-info-label {
            color: #64748b;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pdf-info-value {
            color: #0f172a;
            font-size: 13px;
            font-weight: 600;
            text-align: right;
        }

        .pdf-archetype-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .pdf-archetype-card {
            padding: 18px;
            border-radius: 20px;
            border: 1px solid #dbe7f3;
            background: #ffffff;
        }

        .pdf-score-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 10px;
            font-size: 13px;
        }

        .pdf-score-table td,
        .pdf-score-table th {
            padding: 14px 16px;
        }

        .pdf-score-table th {
            color: #64748b;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-align: left;
        }

        .pdf-score-row td {
            background: #ffffff;
            border-top: 1px solid #dbe7f3;
            border-bottom: 1px solid #dbe7f3;
        }

        .pdf-score-row td:first-child {
            border-left: 1px solid #dbe7f3;
            border-radius: 16px 0 0 16px;
        }

        .pdf-score-row td:last-child {
            border-right: 1px solid #dbe7f3;
            border-radius: 0 16px 16px 0;
        }

        .pdf-chart-card {
            padding: 22px;
            text-align: center;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        }

        .pdf-tag {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: #e2f8f5;
            color: #115e59;
        }

        .pdf-phase-list {
            display: grid;
            gap: 14px;
        }

        .pdf-phase-card {
            padding: 18px 20px;
            border: 1px solid #dbe7f3;
            border-radius: 20px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
            page-break-inside: avoid;
        }

        .pdf-phase-card ul {
            margin: 12px 0 0;
            padding-left: 18px;
            color: #334155;
            line-height: 1.7;
            font-size: 13px;
        }

        .pdf-phase-card li {
            margin-bottom: 8px;
        }

        .pdf-phase-card li:last-child {
            margin-bottom: 0;
        }

        .pdf-footer-note {
            margin-top: 20px;
            padding: 20px 22px;
            border-radius: 20px;
            background: #0f172a;
            color: #e2e8f0;
        }

        .pdf-topbar {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 24px;
        }

        .pdf-service-stack {
            text-align: right;
            color: #0f172a;
            font-size: 13px;
            line-height: 1.5;
            font-weight: 700;
        }

        .pdf-service-stack span {
            display: block;
        }

        .pdf-index-list {
            margin: 14px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .pdf-index-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #334155;
            font-size: 13px;
            font-weight: 600;
        }

        .pdf-index-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: linear-gradient(180deg, #0ea5e9 0%, #0f766e 100%);
            flex-shrink: 0;
        }

        .pdf-corner-logo {
            position: absolute;
            top: 28px;
            right: 32px;
            width: 142px;
            height: auto;
            object-fit: contain;
            z-index: 2;
        }

        .pdf-footer {
            position: absolute;
            left: 42px;
            right: 42px;
            bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #64748b;
            font-size: 11px;
            letter-spacing: 0.04em;
        }

        .pdf-cover-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.4fr;
            min-height: 1040px;
        }

        .pdf-cover-side {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.35)),
                linear-gradient(180deg, #d6dde5 0%, #b7c3d1 100%);
            background-size: cover;
            background-position: center;
        }

        .pdf-cover-side::before,
        .pdf-cover-side::after {
            content: '';
            position: absolute;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.16);
        }

        .pdf-cover-side::before {
            width: 280px;
            height: 280px;
            top: 110px;
            left: -120px;
        }

        .pdf-cover-side::after {
            width: 360px;
            height: 360px;
            bottom: -120px;
            right: -180px;
        }

        .pdf-cover-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 90px 54px 60px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .pdf-cover-logo {
            width: 320px;
            max-width: 100%;
            height: auto;
            margin-bottom: 28px;
        }

        .pdf-cover-kicker {
            margin: 0 0 6px;
            color: #64748b;
            font-size: 24px;
            font-weight: 400;
            line-height: 1.1;
        }

        .pdf-cover-title {
            margin: 0;
            color: #5f6876;
            font-size: 31px;
            line-height: 1.12;
            font-weight: 700;
        }

        .pdf-cover-badge {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 26px;
            background: #22c55e;
            color: #ffffff;
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.04em;
        }

        .pdf-content-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.3fr;
            min-height: 980px;
            background: linear-gradient(90deg, #ffffff 0%, #ffffff 62%, #f3f4f6 62%, #f3f4f6 100%);
        }

        .pdf-left-accent {
            position: relative;
            padding: 78px 34px 34px 42px;
        }

        .pdf-right-panel {
            padding: 112px 42px 48px 52px;
        }

        .pdf-page-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 88px;
            height: 88px;
            border-radius: 999px;
            background: #1f678c;
            color: #ffffff;
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 22px;
        }

        .pdf-page-heading {
            margin: 0 0 18px;
            color: #22c55e;
            font-size: 34px;
            line-height: 1.05;
            font-weight: 800;
        }

        .pdf-index-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 30px 28px;
        }

        .pdf-index-card {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .pdf-index-number {
            color: #1f678c;
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            min-width: 40px;
        }

        .pdf-index-copy {
            color: #0f172a;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.35;
        }

        .pdf-context-stack {
            display: grid;
            gap: 22px;
            width: 100%;
        }

        .pdf-context-card {
            padding: 26px 28px;
            border-left: 14px solid #1f678c;
            background: #ffffff;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        }

        .pdf-context-card--dark {
            background: #1f678c;
            color: #ffffff;
            border-left-color: #22c55e;
            width: 100%;
            box-sizing: border-box;
        }

        .pdf-context-card--dark h3,
        .pdf-context-card--dark p {
            color: #ffffff !important;
        }

        .pdf-context-card--dark strong {
            color: #ffffff !important;
        }

        .pdf-context-card h3 {
            margin: 0 0 14px;
            color: #22c55e;
            font-size: 28px;
            line-height: 1.1;
            font-weight: 800;
        }

        .pdf-context-card p {
            margin: 0;
            color: #334155;
            font-size: 17px;
            line-height: 1.6;
        }

        .pdf-matrix-board {
            position: relative;
            margin: 44px auto 0;
            width: 480px;
            height: 480px;
            max-width: 100%;
            background:
                linear-gradient(to right, transparent 49.5%, #1f678c 49.5%, #1f678c 50.5%, transparent 50.5%),
                linear-gradient(to bottom, transparent 49.5%, #1f678c 49.5%, #1f678c 50.5%, transparent 50.5%);
            border-left: 3px solid #1f678c;
            border-bottom: 3px solid #1f678c;
        }

        .pdf-matrix-board::before {
            content: 'NIVEL DE MADUREZ';
            position: absolute;
            top: -42px;
            left: -6px;
            color: #1f678c;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.03em;
        }

        .pdf-matrix-board::after {
            content: 'NIVEL DE DESARROLLO TECNOLÓGICO';
            position: absolute;
            right: -178px;
            top: 50%;
            width: 170px;
            color: #1f678c;
            font-size: 14px;
            font-weight: 800;
            line-height: 1.25;
            transform: translateY(34%);
        }

        .pdf-matrix-x-labels,
        .pdf-matrix-y-labels {
            position: absolute;
            color: #1f678c;
            font-size: 14px;
            font-weight: 700;
        }

        .pdf-matrix-x-labels {
            left: 84px;
            right: 64px;
            bottom: -34px;
            display: flex;
            justify-content: space-between;
        }

        .pdf-matrix-y-labels {
            top: 82px;
            left: -40px;
            bottom: 76px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .pdf-quadrant-pill {
            position: absolute;
            width: 152px;
            padding: 16px 10px;
            border-radius: 20px;
            background: #1f678c;
            color: #ffffff;
            text-align: center;
            font-size: 21px;
            font-weight: 700;
            line-height: 1.15;
            box-shadow: 0 16px 34px rgba(31, 103, 140, 0.18);
        }

        .pdf-result-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 18px;
            font-size: 16px;
        }

        .pdf-result-table th,
        .pdf-result-table td {
            border: 1px solid #cbd5e1;
            padding: 12px 14px;
        }

        .pdf-result-table th {
            background: #1f678c;
            color: #ffffff;
            text-align: left;
            font-size: 15px;
        }

        .pdf-result-table td {
            background: #f8fafc;
            color: #0f172a;
        }

        .pdf-result-table td:nth-child(2),
        .pdf-result-table td:nth-child(3) {
            text-align: center;
            font-weight: 700;
        }

        .pdf-result-copy {
            margin-top: 26px;
            color: #64748b;
            font-size: 17px;
            line-height: 1.5;
        }

        .pdf-result-copy strong {
            color: #22c55e;
        }

        .pdf-detail-list {
            margin: 18px 0 0;
            padding-left: 22px;
            color: #6b7280;
            font-size: 16px;
            line-height: 1.45;
        }

        .pdf-detail-list strong {
            color: #6b7280;
            font-size: 17px;
        }

        .pdf-detail-list p {
            margin: 4px 0 10px;
            color: #475569;
        }

        .pdf-watermark-logo {
            width: 260px;
            opacity: 0.95;
            margin: 180px auto 0;
            display: block;
        }

        .pdf-roadmap-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
            margin-top: 80px;
        }

        .pdf-roadmap-card {
            text-align: center;
            padding: 10px 8px;
        }

        .pdf-roadmap-icon {
            width: 112px;
            height: 112px;
            margin: 0 auto 18px;
            border-radius: 28px;
            background: linear-gradient(180deg, #f8fafc 0%, #dbeafe 100%);
            border: 1px solid #cbd5e1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pdf-roadmap-icon::before {
            content: '';
            position: absolute;
            inset: 24px;
            border-radius: 18px;
            background: linear-gradient(180deg, #1f678c 0%, #22c55e 100%);
            opacity: 0.9;
        }

        .pdf-roadmap-icon svg {
            position: absolute;
            inset: 24px;
            z-index: 1;
            width: calc(100% - 48px);
            height: calc(100% - 48px);
            stroke: #ffffff;
            stroke-width: 1.85;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pdf-roadmap-phase {
            display: inline-block;
            padding: 9px 28px;
            background: #22c55e;
            color: #ffffff;
            font-size: 18px;
            font-weight: 800;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .pdf-roadmap-title {
            margin: 0 0 10px;
            color: #1f678c;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .pdf-roadmap-text {
            margin: 0;
            color: #64748b;
            font-size: 15px;
            line-height: 1.55;
            text-align: left;
        }

        .pdf-roadmap-bullet {
            display: flex;
            align-items: flex-start;
            gap: 6px;
            margin-bottom: 8px;
        }

        .pdf-roadmap-bullet:last-child {
            margin-bottom: 0;
        }

        .pdf-roadmap-bullet-mark {
            color: #1f678c;
            font-weight: 800;
            line-height: 1.4;
            flex-shrink: 0;
        }

        .pdf-roadmap-bullet-copy {
            flex: 1;
        }

        .pdf-closing-shell {
            min-height: 1026px;
            display: grid;
            place-items: center;
            background:
                linear-gradient(90deg, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.15)),
                linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
            background-size: cover;
            background-position: center;
        }

        .pdf-closing-card {
            width: 560px;
            max-width: calc(100% - 80px);
            padding: 34px 34px 30px;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(3px);
        }

        .pdf-closing-logo {
            width: 340px;
            max-width: 100%;
            display: block;
            margin-bottom: 18px;
        }

        .pdf-closing-text {
            color: #ffffff;
            font-size: 18px;
            line-height: 1.35;
            margin: 0;
        }

        .pdf-closing-text strong {
            font-weight: 800;
        }

        .pdf-side-photo-card {
            margin-top: 26px;
            width: 100%;
            border-radius: 26px;
            overflow: hidden;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
            border: 1px solid #dbe7f3;
            background: #ffffff;
        }

        .pdf-side-photo-card img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pdf-side-photo-card--tall {
            height: 320px;
        }

        .pdf-side-photo-card--medium {
            height: 220px;
        }

        .pdf-top-photo {
            width: 170px;
            height: 118px;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #dbe7f3;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
            flex-shrink: 0;
        }

        .pdf-top-photo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pdf-manual-card {
            padding: 28px 30px;
            border-left: 16px solid #22c55e;
            background: #1f678c;
            color: #ffffff;
            border-radius: 0 26px 26px 0;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
        }

        .pdf-manual-card h3,
        .pdf-manual-card p,
        .pdf-manual-card strong {
            color: #ffffff !important;
        }

        .pdf-manual-card h3 {
            margin: 0 0 16px;
            font-size: 31px;
            line-height: 1.08;
            font-weight: 800;
        }

        .pdf-manual-card p {
            margin: 0;
            font-size: 18px;
            line-height: 1.62;
        }

        .pdf-v2-shell {
            position: relative;
            height: 1056px;
            box-sizing: border-box;
            background: #ffffff;
        }

        .pdf-shell--flush {
            padding: 0;
        }

        .pdf-v2-page-label,
        .pdf-v2-page-no {
            position: absolute;
            bottom: 20px;
            z-index: 5;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
        }

        .pdf-v2-page-label {
            left: 30px;
            color: #6b7a8f;
            display: none;
        }

        .pdf-v2-page-no {
            right: 30px;
            color: #6b7a8f;
        }

        .pdf-v2-page-label--light,
        .pdf-v2-page-no--light {
            color: rgba(255, 255, 255, 0.88);
        }

        .pdf-v2-split {
            display: grid;
            height: 100%;
        }

        .pdf-v2-split--cover {
            grid-template-columns: 0.42fr 0.58fr;
        }

        .pdf-v2-split--index {
            grid-template-columns: 0.32fr 0.68fr;
        }

        .pdf-v2-split--content {
            grid-template-columns: 0.56fr 0.44fr;
        }

        .pdf-v2-split--details {
            grid-template-columns: 0.35fr 0.65fr;
        }

        .pdf-v2-image-panel {
            min-height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .pdf-v2-image-fill {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }

        .pdf-v2-image-panel--left {
            background-position: center left;
        }

        .pdf-v2-image-panel--right {
            background-position: center right;
        }

        .pdf-v2-image-panel--fit-right {
            background-size: auto 100%;
            background-position: center right;
            background-repeat: no-repeat;
            background-color: #f8fafc;
        }

        .pdf-v2-image-panel--focus-center {
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .pdf-v2-image-panel--contain-left,
        .pdf-v2-image-panel--contain-right {
            background-size: contain;
            background-repeat: no-repeat;
            background-color: #f8fafc;
        }

        .pdf-v2-image-panel--contain-left {
            background-position: center left;
        }

        .pdf-v2-image-panel--contain-right {
            background-position: center right;
        }

        .pdf-v2-cover-panel {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 88px 58px 82px;
            text-align: center;
            background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
        }

        .pdf-v2-logo-main {
            width: 310px;
            max-width: 100%;
            height: auto;
        }

        .pdf-v2-logo-white {
            width: 260px;
            max-width: 100%;
            height: auto;
        }

        .pdf-v2-cover-title-row {
            margin-top: 38px;
            display: flex;
            flex-direction: column;
            gap: 22px;
            align-items: flex-start;
            width: 100%;
        }

        .pdf-v2-cover-title-main {
            margin: 0;
            color: #6a7280;
            font-size: 32px;
            line-height: 1.18;
            font-weight: 700;
            text-align: left;
        }

        .pdf-v2-cover-badge-main {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 26px;
            background: #22c55e;
            color: #ffffff;
            font-size: 34px;
            font-weight: 800;
            line-height: 1;
            white-space: nowrap;
        }

        .pdf-v2-full-bg {
            position: relative;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .pdf-v2-full-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(7, 14, 25, 0.45), rgba(7, 14, 25, 0.28));
        }

        .pdf-v2-hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            align-items: center;
            gap: 30px;
            height: 100%;
            padding: 88px 72px 88px;
            box-sizing: border-box;
        }

        .pdf-v2-hero-brand {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pdf-v2-hero-copy h2 {
            margin: 0 0 20px;
            color: #ffffff;
            font-size: 42px;
            line-height: 1.08;
            font-weight: 800;
        }

        .pdf-v2-green-accent {
            color: #22c55e;
        }

        .pdf-v2-hero-copy p {
            margin: 0;
            color: rgba(255, 255, 255, 0.92);
            font-size: 20px;
            line-height: 1.45;
            font-weight: 500;
        }

        .pdf-v2-index-panel {
            padding: 74px 48px 56px 44px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .pdf-v2-index-logo {
            width: 255px;
            max-width: 100%;
            height: auto;
            margin-bottom: 26px;
        }

        .pdf-v2-index-meta {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: flex-start;
        }

        .pdf-v2-index-copy h2 {
            margin: 0 0 12px;
            color: #22c55e;
            font-size: 34px;
            line-height: 1.05;
            font-weight: 800;
        }

        .pdf-v2-index-copy p {
            margin: 0;
            color: #6a7280;
            font-size: 18px;
            line-height: 1.55;
        }

        .pdf-v2-index-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            width: 100%;
            max-width: 560px;
        }

        .pdf-v2-index-item {
            display: grid;
            grid-template-columns: 40px minmax(0, 1fr);
            column-gap: 14px;
            align-items: start;
        }

        .pdf-v2-index-number {
            color: #1f678c;
            font-size: 36px;
            line-height: 1;
            font-weight: 800;
            min-width: 40px;
            text-align: right;
        }

        .pdf-v2-index-text {
            color: #1f2937;
            font-size: 15px;
            line-height: 1.45;
            font-weight: 700;
            padding-top: 3px;
        }

        .pdf-v2-split--context {
            grid-template-columns: 0.5fr 0.5fr;
        }

        .pdf-v2-split--context-image-heavy {
            grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
        }

        .pdf-v2-split--context-image-heavy > * {
            min-width: 0;
        }

        .pdf-v2-content-panel--compact {
            padding: 70px 28px 46px;
        }

        .pdf-v2-content-panel--compact .pdf-v2-badge-round {
            margin-bottom: 18px;
        }

        .pdf-v2-content-panel--compact .pdf-v2-green-title {
            font-size: 32px;
            line-height: 1.02;
            margin-bottom: 14px;
        }

        .pdf-v2-content-panel--compact .pdf-v2-copy {
            font-size: 16px;
            line-height: 1.52;
        }

        .pdf-v2-content-panel {
            padding: 88px 54px 60px;
            background: #ffffff;
        }

        .pdf-v2-badge-round {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 88px;
            height: 88px;
            border-radius: 999px;
            background: #1f678c;
            color: #ffffff;
            font-size: 34px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 26px;
        }

        .pdf-v2-green-title {
            margin: 0 0 18px;
            color: #22c55e;
            font-size: 40px;
            line-height: 1.02;
            font-weight: 800;
        }

        .pdf-v2-copy {
            color: #5f6876;
            font-size: 18px;
            line-height: 1.65;
        }

        .pdf-v2-copy p {
            margin: 0 0 18px;
        }

        .pdf-v2-copy p:last-child {
            margin-bottom: 0;
        }

        .pdf-v2-dark-panel {
            height: 100%;
            padding: 94px 54px 72px;
            background: #1f678c;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-sizing: border-box;
        }

        .pdf-v2-dark-panel h2 {
            margin: 0 0 28px;
            color: #ffffff;
            font-size: 42px;
            line-height: 1.05;
            font-weight: 800;
        }

        .pdf-v2-dark-panel p {
            margin: 0 0 20px;
            color: rgba(255, 255, 255, 0.96);
            font-size: 22px;
            line-height: 1.48;
            font-weight: 500;
        }

        .pdf-v2-dark-panel p:last-child {
            margin-bottom: 0;
        }

        .pdf-v2-centered-page {
            padding: 72px 44px 62px;
            text-align: center;
        }

        .pdf-v2-centered-page h2 {
            margin: 0 0 14px;
            color: #22c55e;
            font-size: 38px;
            line-height: 1.05;
            font-weight: 800;
        }

        .pdf-v2-centered-page p {
            margin: 0 auto 28px;
            max-width: 640px;
            color: #64748b;
            font-size: 18px;
            line-height: 1.6;
        }

        .pdf-v2-matrix-image {
            width: 100%;
            max-width: 690px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .pdf-v2-results-page {
            padding: 58px 40px 46px;
        }

        .pdf-v2-results-header {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .pdf-v2-results-header h2 {
            margin: 0 0 8px;
            color: #22c55e;
            font-size: 34px;
            line-height: 1.02;
            font-weight: 800;
        }

        .pdf-v2-results-header p {
            margin: 0;
            color: #6a7280;
            font-size: 15px;
            line-height: 1.35;
        }

        .pdf-v2-results-grid {
            display: block;
        }

        .pdf-v2-card {
            background: #ffffff;
            border: 1px solid #dbe7f3;
            border-radius: 26px;
            box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
        }

        .pdf-v2-chart-card {
            padding: 16px 14px;
            text-align: center;
            margin-bottom: 14px;
        }

        .pdf-v2-score-stack {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .pdf-v2-score-panel {
            padding: 16px 18px;
        }

        .pdf-v2-score-panel h3 {
            margin: 0 0 10px;
            color: #22c55e;
            font-size: 18px;
            line-height: 1.15;
            font-weight: 800;
        }

        .pdf-v2-score-note {
            margin: 10px 0 0;
            color: #64748b;
            font-size: 14px;
            line-height: 1.45;
        }

        .pdf-v2-score-panel .pdf-result-table {
            font-size: 14px;
        }

        .pdf-v2-score-panel .pdf-result-table th,
        .pdf-v2-score-panel .pdf-result-table td {
            padding: 9px 10px;
        }

        .pdf-v2-detail-page {
            position: relative;
            height: 100%;
            display: grid;
            grid-template-columns: 0.5fr 0.5fr;
        }

        .pdf-v2-detail-copy {
            padding: 80px 38px 52px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            box-sizing: border-box;
        }

        .pdf-v2-top-right-logo {
            position: absolute;
            top: 28px;
            right: 32px;
            width: 160px;
            height: auto;
            z-index: 5;
        }

        .pdf-v2-detail-grid {
            display: block;
        }

        .pdf-v2-info-card {
            padding: 20px 22px;
        }

        .pdf-v2-roadmap-page {
            padding: 70px 24px 54px;
        }

        .pdf-v2-roadmap-header {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 28px;
        }

        .pdf-v2-roadmap-header h2 {
            margin: 0 0 10px;
            color: #22c55e;
            font-size: 38px;
            line-height: 1.04;
            font-weight: 800;
        }

        .pdf-v2-roadmap-header p {
            margin: 0;
            color: #64748b;
            font-size: 17px;
            line-height: 1.55;
        }

        .pdf-v2-roadmap-header .pdf-v2-index-logo {
            width: 176px !important;
            max-width: 176px;
            flex-shrink: 0;
        }

        .pdf-v2-roadmap-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
        }

        .pdf-v2-roadmap-card {
            padding: 16px 12px 18px;
            text-align: center;
        }

        .pdf-v2-phase-image {
            width: 94px;
            height: 94px;
            object-fit: contain;
            display: block;
            margin: 0 auto 12px;
        }

        .pdf-v2-roadmap-phase {
            display: inline-block;
            padding: 8px 18px;
            background: #22c55e;
            color: #ffffff;
            border-radius: 10px;
            font-size: 16px;
            line-height: 1;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .pdf-v2-roadmap-title {
            margin: 0 0 12px;
            color: #1f678c;
            font-size: 18px;
            line-height: 1.16;
            font-weight: 700;
            min-height: 40px;
        }

        .pdf-v2-roadmap-text {
            text-align: left;
            color: #64748b;
            font-size: 13.5px;
            line-height: 1.4;
        }

        .pdf-v2-background-copy {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 72px;
            box-sizing: border-box;
        }

        .pdf-v2-background-card {
            width: 560px;
            max-width: 100%;
            padding: 36px 38px;
            background: rgba(15, 23, 42, 0.52);
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: #ffffff;
            backdrop-filter: blur(3px);
        }

        .pdf-v2-background-card--light {
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.95);
            color: #0f172a;
            backdrop-filter: none;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
        }

        .pdf-v2-background-card h2 {
            margin: 0 0 18px;
            color: #ffffff;
            font-size: 34px;
            line-height: 1.08;
            font-weight: 800;
        }

        .pdf-v2-background-card p {
            margin: 0 0 16px;
            color: rgba(255, 255, 255, 0.94);
            font-size: 19px;
            line-height: 1.55;
        }

        .pdf-v2-background-card--light h2 {
            color: #0f172a;
        }

        .pdf-v2-background-card--light p {
            color: #334155;
        }

        .pdf-v2-background-card p:last-child {
            margin-bottom: 0;
        }

        .pdf-v2-final-center {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            height: 100%;
            padding: 72px;
            box-sizing: border-box;
        }

        .pdf-v2-final-subtitle {
            margin: 22px 0 0;
            color: rgba(255, 255, 255, 0.92);
            font-size: 22px;
            line-height: 1.45;
            font-weight: 500;
        }

        .pdf-v2-final-copy {
            margin: 14px 0 0;
            max-width: 560px;
            color: rgba(255, 255, 255, 0.92);
            font-size: 18px;
            line-height: 1.5;
            font-weight: 500;
        }

