/**
 * Meeting-to-Deal Calculator Styles
 *
 * BEM naming convention: .pdn-mtd__element--modifier
 * Mobile-first responsive design
 * @package PDN
 */

/* Loading State */
.pdn-mtd--loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 16px;
    color: var(--pdn-mtd-text-muted, #64748B);
}

.pdn-mtd__loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #E2E8F0;
    border-top-color: #0080FF;
    border-radius: 50%;
    animation: pdn-mtd-spin 0.8s linear infinite;
}

@keyframes pdn-mtd-spin {
    to { transform: rotate(360deg); }
}

/* CSS Custom Properties */
:root {
    --pdn-mtd-primary: #0080FF;
    --pdn-mtd-primary-dark: #005BBB;
    --pdn-mtd-accent: #010C80;
    --pdn-mtd-success: #1E6B27;
    --pdn-mtd-warning: #F57C00;
    --pdn-mtd-danger: #C62828;
    --pdn-mtd-text: #1E293B;
    --pdn-mtd-text-muted: #64748B;
    --pdn-mtd-bg: #FFFFFF;
    --pdn-mtd-bg-subtle: #F8FAFC;
    --pdn-mtd-border: #E2E8F0;
    --pdn-mtd-radius: 8px;
    --pdn-mtd-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --pdn-mtd-shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --pdn-mtd-transition: 0.2s ease;
}

/* Container */
.pdn-mtd {
    font-family: 'Proza Libre', Georgia, -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 16px;
    color: var(--pdn-mtd-text);
    line-height: 1.6;
}

/* Header */
.pdn-mtd__header {
    text-align: center;
    margin-bottom: 32px;
}

.pdn-mtd__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--pdn-mtd-accent);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.pdn-mtd__subtitle {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--pdn-mtd-text-muted);
    margin: 0 0 16px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pdn-mtd__duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--pdn-mtd-text-muted);
    background: var(--pdn-mtd-bg-subtle);
    padding: 6px 12px;
    border-radius: 20px;
}

.pdn-mtd__icon {
    flex-shrink: 0;
}

/* Step Indicators */
.pdn-mtd__steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 32px;
    padding: 0 16px;
}

.pdn-mtd__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 80px;
}

.pdn-mtd__step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pdn-mtd-bg-subtle);
    border: 2px solid var(--pdn-mtd-border);
    color: var(--pdn-mtd-text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--pdn-mtd-transition);
}

.pdn-mtd__step--active .pdn-mtd__step-number {
    background: var(--pdn-mtd-primary);
    border-color: var(--pdn-mtd-primary);
    color: white;
}

.pdn-mtd__step--completed .pdn-mtd__step-number {
    background: var(--pdn-mtd-success);
    border-color: var(--pdn-mtd-success);
    color: white;
}

.pdn-mtd__step-label {
    font-size: 12px;
    color: var(--pdn-mtd-text-muted);
    text-align: center;
    font-weight: 500;
}

.pdn-mtd__step--active .pdn-mtd__step-label {
    color: var(--pdn-mtd-primary);
    font-weight: 600;
}

.pdn-mtd__step--completed .pdn-mtd__step-label {
    color: var(--pdn-mtd-success);
}

.pdn-mtd__step-connector {
    flex: 1;
    height: 2px;
    background: var(--pdn-mtd-border);
    margin-top: 18px;
    min-width: 20px;
    max-width: 60px;
}

/* Form */
.pdn-mtd__form {
    background: var(--pdn-mtd-bg);
    border: 1px solid var(--pdn-mtd-border);
    border-radius: var(--pdn-mtd-radius);
    padding: 24px;
    box-shadow: var(--pdn-mtd-shadow);
}

.pdn-mtd__form-header {
    margin-bottom: 24px;
}

.pdn-mtd__form-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: var(--pdn-mtd-text);
    margin: 0 0 8px 0;
}

.pdn-mtd__form-subtitle {
    font-size: 14px;
    color: var(--pdn-mtd-text-muted);
    margin: 0;
}

/* Fields Grid */
.pdn-mtd__fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

@media (min-width: 600px) {
    .pdn-mtd__fields {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdn-mtd__field--full {
        grid-column: 1 / -1;
    }
}

/* Field */
.pdn-mtd__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdn-mtd__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--pdn-mtd-text);
}

.pdn-mtd__hint {
    font-size: 12px;
    color: var(--pdn-mtd-text-muted);
}

/* Input */
.pdn-mtd__input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-size: 15px;
    border: 1px solid var(--pdn-mtd-border);
    border-radius: var(--pdn-mtd-radius);
    background: var(--pdn-mtd-bg);
    color: var(--pdn-mtd-text);
    transition: border-color var(--pdn-mtd-transition), box-shadow var(--pdn-mtd-transition);
}

.pdn-mtd__input:focus {
    outline: none;
    border-color: var(--pdn-mtd-primary);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.pdn-mtd__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pdn-mtd__input-wrapper .pdn-mtd__input {
    padding-right: 50px;
}

.pdn-mtd__input-suffix {
    position: absolute;
    right: 14px;
    font-size: 14px;
    color: var(--pdn-mtd-text-muted);
    pointer-events: none;
}

/* Select */
.pdn-mtd__select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-size: 15px;
    border: 1px solid var(--pdn-mtd-border);
    border-radius: var(--pdn-mtd-radius);
    background: var(--pdn-mtd-bg);
    color: var(--pdn-mtd-text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%2364748B'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 40px;
    transition: border-color var(--pdn-mtd-transition), box-shadow var(--pdn-mtd-transition);
}

.pdn-mtd__select:focus {
    outline: none;
    border-color: var(--pdn-mtd-primary);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

/* Range */
.pdn-mtd__range-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdn-mtd__range {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--pdn-mtd-border);
    border-radius: 3px;
    cursor: pointer;
}

.pdn-mtd__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--pdn-mtd-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform var(--pdn-mtd-transition);
}

.pdn-mtd__range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.pdn-mtd__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--pdn-mtd-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pdn-mtd__range-value {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    font-size: 15px;
    color: var(--pdn-mtd-primary);
}

/* Actions */
.pdn-mtd__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--pdn-mtd-border);
}

/* Buttons */
.pdn-mtd__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--pdn-mtd-radius);
    border: none;
    cursor: pointer;
    transition: all var(--pdn-mtd-transition);
    font-family: inherit;
}

.pdn-mtd__btn--primary {
    background: var(--pdn-mtd-primary);
    color: white;
}

.pdn-mtd__btn--primary:hover:not(:disabled) {
    background: var(--pdn-mtd-primary-dark);
    color: white;
}

.pdn-mtd__btn--primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pdn-mtd__btn--secondary {
    background: var(--pdn-mtd-bg-subtle);
    color: var(--pdn-mtd-text);
    border: 1px solid var(--pdn-mtd-border);
}

.pdn-mtd__btn--secondary:hover {
    background: var(--pdn-mtd-border);
}

.pdn-mtd__btn--cta {
    background: var(--pdn-mtd-accent);
    color: white;
    height: 52px;
    padding: 0 32px;
    font-size: 16px;
}

.pdn-mtd__btn--cta:hover {
    background: #000A60;
    transform: translateY(-1px);
    box-shadow: var(--pdn-mtd-shadow-lg);
}

.pdn-mtd__btn--full {
    width: 100%;
}

/* Results */
.pdn-mtd__results {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pdn-mtd__results-header {
    text-align: center;
}

.pdn-mtd__results-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: var(--pdn-mtd-text);
    margin: 0 0 8px 0;
}

.pdn-mtd__results-subtitle {
    font-size: 14px;
    color: var(--pdn-mtd-text-muted);
    margin: 0;
}

/* Overall Score */
.pdn-mtd__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: var(--score-bg, #F8FAFC);
    border-radius: var(--pdn-mtd-radius);
    text-align: center;
}

@media (min-width: 500px) {
    .pdn-mtd__score {
        flex-direction: row;
        text-align: left;
    }
}

.pdn-mtd__score-gauge {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.pdn-mtd__score-ring {
    transform: rotate(-90deg);
}

.pdn-mtd__score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
}

.pdn-mtd__score-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--score-color);
}

.pdn-mtd__score-percent {
    font-size: 16px;
    font-weight: 600;
    color: var(--score-color);
}

.pdn-mtd__score-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pdn-mtd__score-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--pdn-mtd-text);
}

.pdn-mtd__score-level {
    font-size: 16px;
    font-weight: 600;
}

.pdn-mtd__score-desc {
    font-size: 13px;
    color: var(--pdn-mtd-text-muted);
}

/* Funnel Visualization */
.pdn-mtd__funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--pdn-mtd-bg-subtle);
    border-radius: var(--pdn-mtd-radius);
}

@media (min-width: 600px) {
    .pdn-mtd__funnel {
        flex-direction: row;
        justify-content: center;
    }
}

.pdn-mtd__funnel-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--pdn-mtd-bg);
    border-radius: var(--pdn-mtd-radius);
    box-shadow: var(--pdn-mtd-shadow);
    min-width: 120px;
}

.pdn-mtd__funnel-stage--meetings .pdn-mtd__funnel-icon {
    color: var(--pdn-mtd-primary);
}

.pdn-mtd__funnel-stage--proposals .pdn-mtd__funnel-icon {
    color: var(--pdn-mtd-primary-dark);
}

.pdn-mtd__funnel-stage--deals .pdn-mtd__funnel-icon {
    color: var(--pdn-mtd-success);
}

.pdn-mtd__funnel-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdn-mtd__funnel-count {
    font-size: 28px;
    font-weight: 700;
    color: var(--pdn-mtd-text);
}

.pdn-mtd__funnel-label {
    font-size: 12px;
    color: var(--pdn-mtd-text-muted);
    text-align: center;
}

.pdn-mtd__funnel-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
}

@media (min-width: 600px) {
    .pdn-mtd__funnel-arrow {
        flex-direction: row;
    }
}

.pdn-mtd__funnel-arrow svg {
    color: var(--pdn-mtd-text-muted);
    transform: rotate(90deg);
}

@media (min-width: 600px) {
    .pdn-mtd__funnel-arrow svg {
        transform: none;
    }
}

.pdn-mtd__funnel-rate {
    font-size: 14px;
    font-weight: 600;
    color: var(--pdn-mtd-primary);
    background: rgba(0, 128, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

/* KPIs Grid */
.pdn-mtd__kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 600px) {
    .pdn-mtd__kpis {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pdn-mtd__kpi {
    padding: 20px;
    background: var(--pdn-mtd-bg);
    border: 1px solid var(--pdn-mtd-border);
    border-radius: var(--pdn-mtd-radius);
    text-align: center;
    border-left: 4px solid var(--kpi-color, var(--pdn-mtd-border));
}

.pdn-mtd__kpi--primary {
    grid-column: 1 / -1;
    background: var(--kpi-bg, var(--pdn-mtd-bg-subtle));
    border-left-width: 4px;
}

@media (min-width: 600px) {
    .pdn-mtd__kpi--primary {
        grid-column: auto;
    }
}

.pdn-mtd__kpi-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--kpi-color, var(--pdn-mtd-text));
    margin-bottom: 4px;
}

.pdn-mtd__kpi--primary .pdn-mtd__kpi-value {
    font-size: 32px;
}

.pdn-mtd__kpi-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--pdn-mtd-text);
    margin-bottom: 4px;
}

.pdn-mtd__kpi-desc {
    display: block;
    font-size: 12px;
    color: var(--pdn-mtd-text-muted);
}

/* Section Title */
.pdn-mtd__section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pdn-mtd-text);
    margin: 0 0 16px 0;
}

/* Benchmark Comparison */
.pdn-mtd__benchmark {
    background: var(--pdn-mtd-bg);
    border: 1px solid var(--pdn-mtd-border);
    border-radius: var(--pdn-mtd-radius);
    padding: 24px;
}

.pdn-mtd__benchmark-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdn-mtd__benchmark-header,
.pdn-mtd__benchmark-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px 0;
}

.pdn-mtd__benchmark-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--pdn-mtd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--pdn-mtd-border);
}

.pdn-mtd__benchmark-row {
    font-size: 14px;
}

.pdn-mtd__benchmark-label {
    font-weight: 600;
    color: var(--pdn-mtd-text);
}

.pdn-mtd__benchmark-value {
    text-align: center;
    color: var(--pdn-mtd-text-muted);
}

.pdn-mtd__benchmark-gap {
    text-align: center;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.pdn-mtd__benchmark-gap--positive {
    color: var(--pdn-mtd-success);
    background: rgba(30, 107, 39, 0.1);
}

.pdn-mtd__benchmark-gap--negative {
    color: var(--pdn-mtd-danger);
    background: rgba(198, 40, 40, 0.1);
}

/* Potential */
.pdn-mtd__potential {
    background: var(--pdn-mtd-bg);
    border: 1px solid var(--pdn-mtd-border);
    border-radius: var(--pdn-mtd-radius);
    padding: 24px;
}

.pdn-mtd__potential-desc {
    font-size: 14px;
    color: var(--pdn-mtd-text-muted);
    margin: 0 0 20px 0;
}

.pdn-mtd__potential-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 600px) {
    .pdn-mtd__potential-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pdn-mtd__potential-card {
    padding: 16px;
    background: var(--pdn-mtd-bg-subtle);
    border-radius: var(--pdn-mtd-radius);
    text-align: center;
}

.pdn-mtd__potential-card--primary {
    background: rgba(0, 128, 255, 0.1);
}

.pdn-mtd__potential-card--highlight {
    background: rgba(30, 107, 39, 0.1);
    grid-column: 1 / -1;
}

@media (min-width: 600px) {
    .pdn-mtd__potential-card--highlight {
        grid-column: auto;
    }
}

.pdn-mtd__potential-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--pdn-mtd-success);
    margin-bottom: 4px;
}

.pdn-mtd__potential-card--highlight .pdn-mtd__potential-value {
    font-size: 24px;
}

.pdn-mtd__potential-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--pdn-mtd-text);
    margin-bottom: 2px;
}

.pdn-mtd__potential-desc {
    display: block;
    font-size: 11px;
    color: var(--pdn-mtd-text-muted);
    margin: 0;
}

/* Recommendations */
.pdn-mtd__recommendations {
    background: var(--pdn-mtd-bg);
    border: 1px solid var(--pdn-mtd-border);
    border-radius: var(--pdn-mtd-radius);
    padding: 24px;
}

.pdn-mtd__recommendations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .pdn-mtd__recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pdn-mtd__recommendation {
    padding: 16px;
    background: var(--pdn-mtd-bg-subtle);
    border-radius: var(--pdn-mtd-radius);
}

.pdn-mtd__recommendation-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pdn-mtd-text);
    margin: 0 0 12px 0;
}

.pdn-mtd__recommendation-list {
    margin: 0;
    padding: 0 0 0 20px;
    font-size: 13px;
    color: var(--pdn-mtd-text-muted);
}

.pdn-mtd__recommendation-list li {
    margin-bottom: 6px;
}

.pdn-mtd__recommendation-list li:last-child {
    margin-bottom: 0;
}

/* Results Actions */
.pdn-mtd__results-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Gate */
.pdn-mtd__gate {
    background: linear-gradient(135deg, var(--pdn-mtd-accent), var(--pdn-mtd-primary-dark));
    border-radius: var(--pdn-mtd-radius);
    padding: 32px 24px;
    text-align: center;
}

.pdn-mtd__gate-content {
    max-width: 400px;
    margin: 0 auto;
}

.pdn-mtd__gate-icon {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.pdn-mtd__gate-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.pdn-mtd__gate-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px 0;
}

.pdn-mtd__gate-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.pdn-mtd__gate-field .pdn-mtd__label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    display: block;
}

.pdn-mtd__gate-field .pdn-mtd__input {
    background: rgba(255, 255, 255, 0.95);
}

.pdn-mtd__gate-privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: left;
}

.pdn-mtd__gate-privacy svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA */
.pdn-mtd__cta {
    background: linear-gradient(135deg, #1B365D, var(--pdn-mtd-accent));
    border-radius: var(--pdn-mtd-radius);
    padding: 40px 24px;
    text-align: center;
}

.pdn-mtd__cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.pdn-mtd__cta-headline {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
}

.pdn-mtd__cta-subtext {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.pdn-mtd__cta-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.pdn-mtd__cta-price {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.pdn-mtd__cta-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.pdn-mtd__cta-trust svg {
    color: var(--pdn-mtd-success);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .pdn-mtd {
        padding: 16px 12px;
    }

    .pdn-mtd__form {
        padding: 16px;
    }

    .pdn-mtd__actions {
        flex-direction: column;
    }

    .pdn-mtd__btn {
        width: 100%;
    }

    .pdn-mtd__benchmark-header,
    .pdn-mtd__benchmark-row {
        grid-template-columns: 1.2fr repeat(3, 0.8fr);
        gap: 8px;
        font-size: 12px;
    }
}

/* Print styles */
@media print {
    .pdn-mtd__actions,
    .pdn-mtd__results-actions,
    .pdn-mtd__gate,
    .pdn-mtd__cta {
        display: none;
    }

    .pdn-mtd {
        max-width: none;
        padding: 0;
    }

    .pdn-mtd__score,
    .pdn-mtd__funnel,
    .pdn-mtd__kpi,
    .pdn-mtd__benchmark,
    .pdn-mtd__potential,
    .pdn-mtd__recommendations {
        break-inside: avoid;
    }
}
