@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700&display=swap');

:root {
    --primary: #407070;
    --primary-dark: #1c6787;
    --accent: #1c6787;
    --secondary: #565B61;
    --success: #407070;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1c6787;
    --light: #f8fafc;
    --text: #565B61;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mukta', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background: #ffffff;
}

h1 {
    font-family: 'Mukta', sans-serif;
    font-weight: 200;
    color: var(--dark);
}

h2, h3, h4 {
    font-family: 'Mukta', sans-serif;
    font-weight: 500;
    color: var(--dark);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-primary:disabled {
    background: var(--secondary);
    cursor: not-allowed;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--dark);
    padding: 12px 24px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.header-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.header-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.header-signature {
    height: 32px;
    width: auto;
    filter: invert(25%) sepia(15%) saturate(700%) hue-rotate(160deg);
}

.footer-signature {
    height: 40px;
    width: auto;
    margin-bottom: 8px;
    filter: invert(30%) sepia(10%) saturate(500%) hue-rotate(160deg);
}

.quiz-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.report-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 24px;
}

.report-signature {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: invert(25%) sepia(15%) saturate(700%) hue-rotate(160deg);
}

.btn-text {
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.landing {
    min-height: 100vh;
    background: #ffffff;
}

.landing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.landing-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    background: rgba(64, 112, 112, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
}

.landing-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary);
}

.highlight {
    color: var(--primary);
    font-weight: 300;
}

.subtitle {
    font-size: 20px;
    color: var(--text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

.landing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .landing-content {
        grid-template-columns: 1fr;
    }
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-prop {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.value-icon svg {
    display: block;
}

.value-text {
    flex: 1;
}

.value-text h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text);
}

.value-text h3 strong {
    font-weight: 600;
    color: var(--dark);
}

.value-text p {
    font-size: 15px;
    color: var(--secondary);
    line-height: 1.5;
}

.form-card {
    background: linear-gradient(135deg, #407070 0%, #1c6787 100%);
    padding: 36px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    color: white;
}

.form-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
}

.form-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.start-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.form-group input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    transition: box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-card .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 600;
    margin-top: 8px;
}

.form-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background 0.2s;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: white;
}

.checkmark::after {
    content: '';
    display: none;
    width: 5px;
    height: 10px;
    border: solid var(--primary);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.9);
}

.form-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 12px;
}

.trust-section {
    text-align: center;
    padding: 48px 40px;
    background: var(--light);
    border-radius: 10px;
    margin-bottom: 40px;
}

.trust-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.trust-section p {
    color: var(--text);
    max-width: 650px;
    margin: 0 auto;
    font-size: 17px;
}

.landing-footer {
    text-align: center;
    color: var(--secondary);
    font-size: 14px;
}

.quiz {
    min-height: 100vh;
    background: linear-gradient(135deg, #2d4a5e 0%, #1c6787 50%, #407070 100%);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 20px;
}

.quiz-main {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quiz-header {
    margin-bottom: 30px;
}

.progress-section {
    margin-bottom: 20px;
}

.progress-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    transition: width 0.3s;
}

.section-intro {
    background: rgba(88, 138, 173, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.section-badge {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.section-intro p {
    color: var(--secondary);
    font-size: 14px;
}

.scenario-card {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.scenario-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.scenario-text {
    font-size: 18px;
    line-height: 1.5;
}

.instruction {
    margin-bottom: 20px;
}

.instruction p {
    font-weight: 500;
    margin-bottom: 4px;
}

.instruction-hint {
    font-size: 13px;
    color: var(--secondary);
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px;
    border-radius: 10px;
    border: 2px solid var(--border);
    cursor: grab;
    transition: all 0.2s;
}

.ranking-item:hover {
    border-color: var(--primary);
}

.ranking-item.dragging {
    opacity: 0.5;
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.rank-number {
    flex-shrink: 0;
}

.rank-select {
    width: 50px;
    padding: 8px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.rank-select:focus {
    outline: none;
    border-color: var(--primary);
}

.rank-handle {
    color: var(--secondary);
    flex-shrink: 0;
    cursor: grab;
}

.rank-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.4;
}

.validation-message {
    min-height: 24px;
    font-size: 14px;
    margin-bottom: 16px;
}

.validation-message.error {
    color: var(--danger);
}

.validation-message.success {
    color: var(--success);
}

.quiz-actions {
    display: flex;
    justify-content: flex-end;
}

.quiz-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--secondary);
    font-size: 14px;
}

.report {
    min-height: 100vh;
    background: linear-gradient(180deg, #1c6787 0%, #2d4a5e 100%);
}

.report-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.report-header {
    text-align: center;
    padding: 60px 40px 80px;
    position: relative;
}

.report-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.report-logo {
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.report-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-header h1 {
    font-size: 42px;
    margin-bottom: 8px;
    color: white;
}

.report-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.report-content {
    background: #f0f4f8;
    padding: 40px 20px 60px;
    border-radius: 32px 32px 0 0;
    margin-top: -30px;
    position: relative;
}

.report-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.report-section h2 {
    font-size: 26px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
    width: 100%;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.summary-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    padding: 28px;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(64, 112, 112, 0.08), transparent 70%);
}

.card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.card-value {
    font-family: 'Mukta', sans-serif;
    font-weight: 200;
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.card-detail {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.archetype-name {
    font-weight: 600;
    color: var(--dark);
    margin-top: 16px;
    font-size: 17px;
}

.archetype-desc {
    font-size: 14px;
    color: var(--secondary);
    font-style: italic;
    line-height: 1.5;
}

.tension-alert {
    display: flex;
    gap: 16px;
    background: #fef3c7;
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--warning);
}

.alert-icon {
    font-size: 24px;
}

.alert-content p {
    font-size: 14px;
    margin-top: 4px;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.stage-card {
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--border);
}

.stage-card.healthy {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.stage-card.needs-work {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.05);
}

.stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stage-header h3 {
    font-size: 18px;
}

.stage-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.stage-card.healthy .stage-indicator {
    background: var(--success);
    color: white;
}

.stage-card.needs-work .stage-indicator {
    background: var(--warning);
    color: white;
}

.stage-state {
    font-size: 14px;
    margin-bottom: 12px;
}

.stage-constraint {
    font-size: 13px;
    background: rgba(245, 158, 11, 0.1);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.stage-constraint strong {
    display: block;
    margin-bottom: 4px;
    color: var(--warning);
}

.stage-watch {
    font-size: 13px;
    color: var(--secondary);
}

.stage-watch strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

.pattern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.pattern-card {
    padding: 24px;
    border-radius: 12px;
}

.pattern-card.toward {
    background: rgba(88, 138, 173, 0.08);
    border: 2px solid rgba(88, 138, 173, 0.3);
}

.pattern-card.away {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.pattern-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pattern-card.toward .pattern-label {
    color: var(--primary);
}

.pattern-card.away .pattern-label {
    color: var(--danger);
}

.pattern-stage {
    font-family: 'Mukta', sans-serif;
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 8px;
}

.pattern-card p {
    font-size: 14px;
    color: var(--secondary);
}

.archetype-detail {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
}

.archetype-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.archetype-detail h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.archetype-full-desc {
    font-size: 15px;
    color: var(--secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.archetype-cost {
    background: white;
    padding: 16px;
    border-radius: 8px;
}

.archetype-cost strong {
    color: var(--danger);
    display: block;
    margin-bottom: 4px;
}

.archetype-cost p {
    font-size: 14px;
}

.tension-block {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.tension-block:last-child {
    margin-bottom: 0;
}

.tension-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.tension-intro {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.tension-steps ol {
    padding-left: 20px;
}

.tension-steps li {
    font-size: 14px;
    margin-bottom: 8px;
}

.aligned-message {
    text-align: center;
    padding: 24px;
}

.aligned-icon {
    font-size: 48px;
    color: var(--success);
    margin-bottom: 16px;
}

.priority-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.priority-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--light);
    border-radius: 10px;
}

.priority-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.priority-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.priority-content p {
    font-size: 14px;
    color: var(--secondary);
}

.ignore-section {
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
}

.ignore-section h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.ignore-section p {
    font-size: 14px;
    color: var(--secondary);
}

.recommendations-block {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
}

.recommendations-block h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.rec-meaning {
    margin-bottom: 24px;
}

.rec-meaning strong {
    display: block;
    margin-bottom: 4px;
}

.rec-meaning p {
    font-size: 14px;
    color: var(--secondary);
}

.rec-steps {
    margin-bottom: 24px;
}

.rec-steps > strong {
    display: block;
    margin-bottom: 16px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
    gap: 16px;
    background: white;
    padding: 16px;
    border-radius: 10px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--secondary);
}

.success-indicator {
    background: rgba(16, 185, 129, 0.1);
    padding: 16px;
    border-radius: 10px;
    border-left: 4px solid var(--success);
}

.success-indicator strong {
    display: block;
    margin-bottom: 4px;
    color: var(--success);
}

.success-indicator p {
    font-size: 14px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-section h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.cta-card {
    text-align: center;
}

.cta-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--light);
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-intro {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.cta-intro strong {
    color: var(--primary);
}

.cta-details {
    background: linear-gradient(135deg, #f0f7f7 0%, #e8f0f4 100%);
    padding: 32px;
    border-radius: 16px;
    margin: 28px 0;
    border: 1px solid rgba(64, 112, 112, 0.1);
}

.cta-details h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

.cta-details ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.cta-details li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.cta-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
}

.cta-details li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 6px;
    font-size: 11px;
    color: var(--primary);
    font-weight: bold;
}

.cta-promise {
    font-size: 14px;
    color: var(--secondary);
    font-style: italic;
    text-align: center;
    margin-top: 16px;
}

.cta-final {
    text-align: center;
    margin-top: 36px;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
}

.cta-headline {
    font-size: 20px;
    margin-bottom: 20px;
    font-style: italic;
    color: white;
}

.cta-final .btn-primary {
    background: white;
    color: var(--primary);
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-final .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.report-footer {
    background: linear-gradient(135deg, #1c3a4a 0%, #1c6787 100%);
    color: white;
    padding: 48px 40px;
    text-align: center;
}

.report-signature {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 24px;
}

.footer-content h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-content p {
    opacity: 0.85;
    margin-bottom: 14px;
    font-size: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-cta {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-cta p {
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-cta a {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s;
}

.footer-cta a:hover {
    background: rgba(255,255,255,0.2);
}

.report-actions {
    background: #f0f4f8;
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    padding: 32px 20px;
}

@media print {
    body {
        background: white;
    }
    
    .report-container {
        padding: 0;
    }
    
    .report-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--border);
    }
    
    .cta-section,
    .report-actions {
        display: none;
    }
}

@media (max-width: 600px) {
    .summary-grid,
    .pattern-grid,
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .report-section {
        padding: 20px;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .report-actions {
        flex-direction: column;
        gap: 12px;
    }
}
