/**
 * FLOW Strategy Workshop Styles
 * Mobile-first responsive design with cross-browser compatibility
 */

/* Reset and base styles */
.workshop-container * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.workshop-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: -webkit-linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    background: -moz-linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    color: #1a1a1a;
    overflow-x: hidden;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Workshop Header */
.workshop-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    background: -webkit-linear-gradient(135deg, #14B8A6, #A6E73C);
    background: -moz-linear-gradient(135deg, #14B8A6, #A6E73C);
    background: linear-gradient(135deg, #14B8A6, #A6E73C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 36px;
    font-weight: 200;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.workshop-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.workshop-subtitle {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Workshop Steps */
.workshop-step {
    background: white;
    border: 2px solid #e2e8f0;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 24px;
}

.step-number {
    background: -webkit-linear-gradient(135deg, #14B8A6, #A6E73C);
    background: -moz-linear-gradient(135deg, #14B8A6, #A6E73C);
    background: linear-gradient(135deg, #14B8A6, #A6E73C);
    color: white;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-right: 16px;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.step-info {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.step-description {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

/* Question Styles */
.question-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.question-subtitle {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Business Grid - Flexbox fallback for older browsers */
.business-grid {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

/* CSS Grid support */
@supports (display: grid) {
    .business-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 12px;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .business-grid {
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        gap: 10px;
    }

    .business-option {
        padding: 12px;
    }

    .business-icon {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .business-title {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .business-desc {
        font-size: 11px;
        line-height: 1.3;
    }
}

.business-option {
    background: rgba(20, 184, 166, 0.05);
    border: 2px solid rgba(20, 184, 166, 0.2);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.business-option:hover {
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(20, 184, 166, 0.1);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.business-option.selected {
    border-color: #14B8A6;
    background: rgba(20, 184, 166, 0.15);
    -webkit-box-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
    -moz-box-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
}

.business-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.business-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.business-desc {
    font-size: 12px;
    color: #4a5568;
    line-height: 1.3;
}

/* Textarea Input */
.textarea-input {
    width: 100%;
    background: white;
    border: 2px solid #e2e8f0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.4;
    margin-bottom: 16px;
}

.textarea-input:focus {
    border-color: #14B8A6;
    -webkit-box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    -moz-box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* AI Insight Box */
.ai-insight {
    background: rgba(166, 231, 60, 0.1);
    border: 1px solid rgba(166, 231, 60, 0.3);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
}

.ai-insight-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.ai-insight-text {
    font-size: 12px;
    color: #4a5568;
    line-height: 1.4;
}

/* ICP Suggestions */
.icp-suggestions {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

@supports (display: grid) {
    .icp-suggestions {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 10px;
        gap: 10px;
    }
}

.icp-suggestion {
    background: rgba(166, 231, 60, 0.1);
    border: 1px solid rgba(166, 231, 60, 0.3);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
}

.icp-suggestion:hover {
    background: rgba(166, 231, 60, 0.15);
    border-color: rgba(166, 231, 60, 0.4);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.icp-suggestion.selected {
    background: rgba(166, 231, 60, 0.2);
    border-color: #A6E73C;
    -webkit-box-shadow: 0 2px 12px rgba(166, 231, 60, 0.3);
    -moz-box-shadow: 0 2px 12px rgba(166, 231, 60, 0.3);
    box-shadow: 0 2px 12px rgba(166, 231, 60, 0.3);
}

.priority-number {
    position: absolute;
    top: -6px;
    right: -6px;
    background: -webkit-linear-gradient(135deg, #14B8A6, #A6E73C);
    background: -moz-linear-gradient(135deg, #14B8A6, #A6E73C);
    background: linear-gradient(135deg, #14B8A6, #A6E73C);
    color: white;
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.icp-suggestion.selected .priority-number {
    opacity: 1;
}

.icp-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.icp-desc {
    font-size: 11px;
    color: #4a5568;
    line-height: 1.3;
}

/* Funnel Frameworks */
.funnel-frameworks {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

@supports (display: grid) {
    .funnel-frameworks {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 16px;
        gap: 16px;
    }
}

.funnel-option {
    background: rgba(20, 184, 166, 0.05);
    border: 2px solid rgba(20, 184, 166, 0.2);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.funnel-option:hover {
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(20, 184, 166, 0.1);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.funnel-option.selected {
    border-color: #14B8A6;
    background: rgba(20, 184, 166, 0.15);
    -webkit-box-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
    -moz-box-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
}

.funnel-option.recommended {
    border-color: rgba(20, 184, 166, 0.45);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.18);
    padding-top: 32px;
}

.funnel-option.recommended::after {
    content: 'Recommended';
    position: absolute;
    top: 10px;
    right: 12px;
    background: linear-gradient(135deg, #14B8A6, #A6E73C);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    letter-spacing: 0.4px;
}

.funnel-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.funnel-stages {
    font-size: 13px;
    color: #14B8A6;
    margin-bottom: 6px;
    font-weight: 500;
}

.funnel-description {
    font-size: 12px;
    color: #4a5568;
    line-height: 1.4;
}

.workshop-success-message {
    background: rgba(20, 184, 166, 0.08);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
    -webkit-box-shadow: 0 12px 30px rgba(20, 184, 166, 0.12);
    -moz-box-shadow: 0 12px 30px rgba(20, 184, 166, 0.12);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.12);
}

.workshop-success-message h2 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.workshop-success-message p {
    font-size: 14px;
    color: #334155;
    margin-bottom: 18px;
}

.btn-return-flow {
    display: inline-block;
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 24px;
    margin-top: 6px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(20, 184, 166, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-return-flow:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(20, 184, 166, 0.3);
}

/* Pillar Grid */
.pillar-grid {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

@supports (display: grid) {
    .pillar-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 12px;
        gap: 12px;
    }
}

.pillar-card {
    background: rgba(20, 184, 166, 0.05);
    border: 2px solid rgba(20, 184, 166, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.pillar-card:hover {
    border-color: rgba(20, 184, 166, 0.4);
    background: rgba(20, 184, 166, 0.1);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.pillar-card.selected {
    border-color: #14B8A6;
    background: rgba(20, 184, 166, 0.15);
    -webkit-box-shadow: 0 2px 12px rgba(20, 184, 166, 0.2);
    -moz-box-shadow: 0 2px 12px rgba(20, 184, 166, 0.2);
    box-shadow: 0 2px 12px rgba(20, 184, 166, 0.2);
}

.pillar-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.pillar-order {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14B8A6, #A6E73C);
    color: #ffffff;
    font-weight: 600;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(20, 184, 166, 0.25);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pillar-order.visible {
    opacity: 1;
}

.pillar-card.custom-pillar {
    background: rgba(166, 231, 60, 0.15);
    border-color: #A6E73C;
}

.pillar-custom-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #A6E73C;
    color: #1a1a1a;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.pillar-example {
    font-size: 11px;
    color: #4a5568;
    line-height: 1.3;
}

.pillar-limit-message {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 12px;
    color: #b91c1c;
    font-weight: 600;
}

/* Primary Button */
.btn-primary {
    background: -webkit-linear-gradient(135deg, #14B8A6, #A6E73C);
    background: -moz-linear-gradient(135deg, #14B8A6, #A6E73C);
    background: linear-gradient(135deg, #14B8A6, #A6E73C);
    color: white;
    border: none;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.btn-primary:hover {
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
    -moz-box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.btn-primary:active {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.pillar-grid.loading::after {
    content: "Analyzing your expertise...";
    display: block;
    text-align: center;
    color: #4a5568;
    font-size: 13px;
    margin-top: 10px;
    font-style: italic;
}

/* Completed Workshop State */
.flow-workshop-completed {
    text-align: center;
    padding: 40px 20px;
    background: white;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.flow-workshop-completed h2 {
    color: #14B8A6;
    margin-bottom: 12px;
    font-size: 24px;
}

.flow-workshop-completed p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.5;
}

.flow-workshop-completed a {
    color: #14B8A6;
    text-decoration: none;
    font-weight: 600;
}

.flow-workshop-completed a:hover {
    text-decoration: underline;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .workshop-container {
        padding: 30px;
    }
    
    .workshop-header {
        margin-bottom: 50px;
    }
    
    .logo {
        font-size: 42px;
        margin-bottom: 14px;
    }
    
    .workshop-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .workshop-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .workshop-step {
        padding: 32px;
        margin-bottom: 28px;
    }
    
    .step-header {
        margin-bottom: 28px;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 19px;
        margin-right: 18px;
    }
    
    .step-title {
        font-size: 25px;
        margin-bottom: 7px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .question-title {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .question-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    @supports (display: grid) {
        .business-grid {
            -ms-grid-columns: 1fr 14px 1fr;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 14px;
            gap: 14px;
        }
    }
    
    .business-option {
        padding: 18px;
    }
    
    .business-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .business-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .business-desc {
        font-size: 13px;
    }
    
    .textarea-input {
        font-size: 15px;
        min-height: 90px;
        padding: 14px 18px;
    }
    
    @supports (display: grid) {
        .icp-suggestions {
            -ms-grid-columns: 1fr 12px 1fr;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 12px;
            gap: 12px;
        }
    }
    
    @supports (display: grid) {
        .funnel-frameworks {
            -ms-grid-columns: 1fr 18px 1fr;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 18px;
            gap: 18px;
        }
    }
    
    @supports (display: grid) {
        .pillar-grid {
            -ms-grid-columns: 1fr 14px 1fr;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 14px;
            gap: 14px;
        }
    }
    
    .btn-primary {
        padding: 16px 32px;
        font-size: 16px;
        margin-top: 18px;
        width: auto;
        display: inline-block;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .workshop-container {
        padding: 40px 20px;
    }
    
    .workshop-header {
        margin-bottom: 60px;
    }
    
    .logo {
        font-size: 48px;
        letter-spacing: -2px;
        margin-bottom: 16px;
    }
    
    .workshop-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .workshop-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .workshop-step {
        padding: 40px;
        margin-bottom: 32px;
    }
    
    .step-header {
        margin-bottom: 32px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-right: 20px;
    }
    
    .step-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 16px;
    }
    
    .question-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .question-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    @supports (display: grid) {
        .business-grid {
            -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 16px;
            gap: 16px;
        }
    }
    
    .business-option {
        padding: 20px;
    }
    
    .business-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .business-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .business-desc {
        font-size: 13px;
    }
    
    .textarea-input {
        font-size: 16px;
        min-height: 100px;
        padding: 12px 16px;
        margin-bottom: 20px;
    }
    
    @supports (display: grid) {
        .pillar-grid {
            -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 16px;
            gap: 16px;
        }
    }
    
    .btn-primary {
        padding: 16px 32px;
        font-size: 16px;
        margin-top: 20px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    @supports (display: grid) {
        .icp-suggestions {
            -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
            grid-template-columns: repeat(4, 1fr);
        }
        
        .funnel-frameworks {
            -ms-grid-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
            grid-template-columns: repeat(4, 1fr);
        }
    }
}

/* Print Styles */
@media print {
    .workshop-container {
        background: white;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    
    .btn-primary {
        display: none;
    }
    
    .workshop-step {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
