/* ============================================
   GDS-15 Geriatric Depression Scale Calculator
   Warm Amber/Brown Theme
   Primary: #b45309  Gradient to: #92400e
   Light: #fffbeb    Border: #fde68a
   ============================================ */

/* Container */
.gds-calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.7;
}

.gds-calculator-container *,
.gds-calculator-container *::before,
.gds-calculator-container *::after {
    box-sizing: border-box;
}

/* ============================================
   HERO SECTION
   ============================================ */
.gds-hero {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    color: white;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(180, 83, 9, 0.3);
}

.gds-hero h1 {
    font-size: 2.4em;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.gds-hero .hero-subtitle {
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0.95;
}

.gds-hero .hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.gds-hero .badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.gds-hero .badge-icon {
    margin-right: 4px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.gds-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gds-stats .stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #b45309;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gds-stats .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gds-stats .stat-number {
    display: block;
    font-size: 2em;
    font-weight: 800;
    color: #b45309;
    margin-bottom: 5px;
}

.gds-stats .stat-label {
    display: block;
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}

/* ============================================
   PRIVACY NOTICE
   ============================================ */
.gds-privacy-notice {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #b45309;
    padding: 16px 22px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.95em;
    color: #92400e;
}

/* ============================================
   FORM SECTION
   ============================================ */
.gds-form-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.gds-form-section h2 {
    text-align: center;
    color: #92400e;
    margin: 0 0 10px 0;
    font-size: 1.6em;
}

.gds-form-section .form-instruction {
    text-align: center;
    font-size: 1.05em;
    color: #555;
    margin-bottom: 30px;
}

/* Progress Bar (injected by JS via shared) */
.gds-form-section .mdcv2-progress-wrapper {
    background: #fffbeb;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: 1px solid #fde68a;
}

.gds-form-section .mdcv2-progress-text {
    font-size: 0.9em;
    color: #92400e;
    font-weight: 600;
    margin-bottom: 8px;
}

.gds-form-section .mdcv2-progress-bar {
    height: 8px;
    background: #fef3c7;
    border-radius: 4px;
    overflow: hidden;
}

.gds-form-section .mdcv2-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #b45309, #d97706);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Questions */
.gds-question {
    background: #fffbeb;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gds-question:hover {
    border-color: #fde68a;
}

.gds-question.answered {
    border-color: #fbbf24;
    background: #fef9e7;
}

.gds-question.unanswered {
    border-color: #ef4444;
    background: #fef2f2;
}

.gds-question .question-text {
    font-weight: 600;
    margin: 0 0 15px 0;
    font-size: 1.05em;
    color: #333;
    line-height: 1.5;
}

.gds-question .q-number {
    color: #b45309;
    margin-right: 8px;
    font-weight: 700;
}

/* ============================================
   YES/NO TOGGLE BUTTONS
   ============================================ */
.yn-toggle {
    display: flex;
    gap: 12px;
}

.yn-btn {
    flex: 1;
    max-width: 140px;
    cursor: pointer;
    margin: 0;
}

.yn-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.yn-btn span {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    color: #64748b;
    background: white;
    transition: all 0.2s ease;
    user-select: none;
}

.yn-btn:hover span {
    border-color: #d97706;
    color: #b45309;
    background: #fffbeb;
}

.yn-btn input[type="radio"]:checked + span {
    background: #b45309;
    color: white;
    border-color: #b45309;
    box-shadow: 0 3px 10px rgba(180, 83, 9, 0.3);
}

/* Focus state for accessibility */
.yn-btn input[type="radio"]:focus + span {
    outline: 3px solid rgba(180, 83, 9, 0.4);
    outline-offset: 2px;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */
.gds-submit-btn {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 30px auto 0;
    padding: 18px 35px;
    font-size: 1.2em;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.3);
}

.gds-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 83, 9, 0.4);
}

.gds-submit-btn:active {
    transform: translateY(-1px);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.gds-results-section {
    background: linear-gradient(135deg, #fffdf7 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid #fde68a;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.gds-results-section h3 {
    text-align: center;
    color: #92400e;
    margin-bottom: 25px;
    font-size: 1.4em;
}

/* Score Display */
.gds-score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.gds-score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(180, 83, 9, 0.3);
}

#gds-score-value {
    font-size: 3em;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.gds-score-max {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.9);
}

.gds-severity-badge {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    max-width: 400px;
}

/* Severity Classes */
.gds-severity-badge.severity-green {
    background: #d1fae5;
    color: #065f46;
}

.gds-severity-badge.severity-yellow {
    background: #fef3c7;
    color: #92400e;
}

.gds-severity-badge.severity-orange {
    background: #ffedd5;
    color: #9a3412;
}

.gds-severity-badge.severity-red {
    background: #fee2e2;
    color: #991b1b;
}

/* ============================================
   SCORE GAUGE BAR
   ============================================ */
.gds-score-bar {
    position: relative;
    display: flex;
    height: 30px;
    border-radius: 15px;
    overflow: visible;
    margin: 25px 0 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gds-score-bar .bar-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 700;
    color: white;
}

.gds-score-bar .bar-segment:first-child {
    border-radius: 15px 0 0 15px;
}

.gds-score-bar .bar-segment:last-child {
    border-radius: 0 15px 15px 0;
}

.gds-score-bar .bar-segment span {
    opacity: 0.9;
}

.gds-score-bar .bar-green {
    background: #10b981;
}

.gds-score-bar .bar-yellow {
    background: #f59e0b;
}

.gds-score-bar .bar-orange {
    background: #f97316;
}

.gds-score-bar .bar-red {
    background: #ef4444;
}

.gds-score-bar .score-marker {
    position: absolute;
    top: -8px;
    width: 4px;
    height: 46px;
    background: #1e293b;
    border-radius: 2px;
    transition: left 0.6s ease;
    z-index: 2;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.gds-score-bar .score-marker::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -4px;
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-radius: 50%;
}

.gds-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75em;
    color: #666;
    margin-bottom: 25px;
    padding: 0 5px;
}

/* ============================================
   INTERPRETATION
   ============================================ */
.gds-interpretation {
    padding: 25px;
    background: white;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #b45309;
}

.gds-interpretation h4 {
    margin: 0 0 12px 0;
    color: #92400e;
}

.gds-interpretation p {
    margin: 0 0 10px 0;
}

.gds-interpretation p:last-child {
    margin-bottom: 0;
}

/* ============================================
   RECOMMENDATIONS
   ============================================ */
.gds-recommendations {
    padding: 25px;
    background: #fffbeb;
    border-radius: 12px;
    margin: 25px 0;
    border: 1px solid #fde68a;
}

.gds-recommendations h4 {
    margin: 0 0 12px 0;
    color: #92400e;
}

.gds-recommendations ul {
    margin: 0;
    padding-left: 22px;
}

.gds-recommendations li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ============================================
   ACTION BUTTONS
   ============================================ */
.gds-action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.gds-btn-secondary {
    padding: 12px 25px;
    background: white;
    color: #b45309;
    border: 2px solid #b45309;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gds-btn-secondary:hover {
    background: #b45309;
    color: white;
}

.gds-btn-text {
    background: none;
    border: none;
    color: #666;
    font-size: 0.85em;
    cursor: pointer;
    text-decoration: underline;
    padding: 5px;
}

.gds-btn-text:hover {
    color: #b45309;
}

/* ============================================
   CRISIS BOX
   ============================================ */
.gds-crisis-box {
    background: #fef2f2;
    border: 3px solid #ef4444;
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

.gds-crisis-box h4 {
    color: #991b1b;
    margin: 0 0 12px 0;
    font-size: 1.15em;
}

.gds-crisis-box p {
    color: #7f1d1d;
    margin: 0 0 15px 0;
}

.gds-crisis-box .crisis-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.gds-crisis-box .crisis-contact {
    display: block;
    background: white;
    padding: 18px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    border: 2px solid #fecaca;
    transition: all 0.3s ease;
    text-align: center;
}

.gds-crisis-box .crisis-contact:hover {
    border-color: #ef4444;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
    transform: translateY(-2px);
}

.gds-crisis-box .crisis-contact.primary {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.gds-crisis-box .crisis-contact.primary:hover {
    background: #dc2626;
}

.gds-crisis-box .crisis-contact strong {
    display: block;
    font-size: 1.1em;
    margin-bottom: 4px;
}

.gds-crisis-box .crisis-contact small {
    font-size: 0.85em;
    opacity: 0.85;
}

/* ============================================
   HISTORY SECTION
   ============================================ */
.gds-calculator-container .mdcv2-history-section {
    margin-top: 25px;
    padding: 20px;
    background: #fffbeb;
    border-radius: 10px;
    border: 1px solid #fde68a;
}

.gds-calculator-container .mdcv2-history-section h4 {
    margin: 0 0 15px 0;
    color: #92400e;
}

.gds-calculator-container .history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #fde68a;
}

.gds-calculator-container .history-date {
    font-size: 0.85em;
    color: #666;
}

.gds-calculator-container .history-result {
    font-weight: 600;
    color: #92400e;
}

/* ============================================
   RETAKE BUTTON
   ============================================ */
.gds-retake-wrapper {
    text-align: center;
    margin-top: 25px;
}

.gds-retake-btn {
    padding: 14px 35px;
    background: white;
    color: #b45309;
    border: 2px solid #b45309;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gds-retake-btn:hover {
    background: #b45309;
    color: white;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   EDUCATION TABS
   ============================================ */
.gds-education {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 30px;
}

.gds-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 15px;
}

.gds-tab-btn {
    padding: 12px 20px;
    background: #fffbeb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.gds-tab-btn:hover {
    background: #fef3c7;
    border-color: #b45309;
    color: #92400e;
}

.gds-tab-btn.active {
    background: #b45309;
    color: white;
    border-color: #b45309;
}

.gds-tab-content {
    display: none;
}

.gds-tab-content.active {
    display: block;
}

.gds-tab-content h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 20px;
}

.gds-tab-content h4 {
    color: #78350f;
    margin-top: 25px;
    margin-bottom: 12px;
}

.gds-tab-content p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.7;
}

.gds-tab-content ul {
    padding-left: 22px;
    margin: 0 0 14px;
}

.gds-tab-content li {
    margin-bottom: 8px;
    color: #475569;
    line-height: 1.6;
}

/* Treatment Grid */
.gds-treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.gds-treatment-grid .treatment-card {
    background: #fffbeb;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #fde68a;
}

.gds-treatment-grid .treatment-card h4 {
    margin: 0 0 12px 0;
    color: #92400e;
    font-size: 1.05em;
}

.gds-treatment-grid .treatment-card p {
    margin: 0 0 10px 0;
    font-size: 0.95em;
}

.gds-treatment-grid .treatment-card p:last-child {
    margin-bottom: 0;
}

.gds-treatment-grid .treatment-card ul {
    margin: 0;
    padding-left: 20px;
}

.gds-treatment-grid .treatment-card li {
    margin-bottom: 5px;
    font-size: 0.93em;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.gds-faq-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 30px;
}

.gds-faq-section h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.3em;
}

.gds-faq-section .faq-item {
    margin-bottom: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.gds-faq-section .faq-question {
    width: 100%;
    padding: 18px 22px;
    background: #fffbeb;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    color: #333;
}

.gds-faq-section .faq-question:hover {
    background: #fef3c7;
}

.gds-faq-section .faq-question.active {
    background: #b45309;
    color: white;
}

.gds-faq-section .faq-icon {
    font-size: 1.5em;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.gds-faq-section .faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.gds-faq-section .faq-answer {
    display: none;
    padding: 20px 22px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.gds-faq-section .faq-answer.active {
    display: block;
}

.gds-faq-section .faq-answer p {
    margin: 0 0 10px 0;
    color: #475569;
    line-height: 1.7;
}

.gds-faq-section .faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   MEDICAL DISCLAIMER
   ============================================ */
.gds-disclaimer {
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
}

.gds-disclaimer h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 12px;
}

.gds-disclaimer p {
    color: #78350f;
    margin: 0 0 12px;
    line-height: 1.6;
}

.gds-disclaimer p:last-child {
    margin-bottom: 0;
}

.gds-disclaimer ul {
    padding-left: 25px;
    margin: 0 0 12px;
}

.gds-disclaimer li {
    margin-bottom: 8px;
    color: #78350f;
    line-height: 1.6;
}

/* ============================================
   RELATED CALCULATORS
   ============================================ */
.gds-related {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 30px;
}

.gds-related h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 20px;
}

.gds-related .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
}

.gds-related .related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px;
    background: #fffbeb;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gds-related .related-card:hover {
    border-color: #b45309;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gds-related .related-icon {
    font-size: 2.5em;
    margin-bottom: 12px;
}

.gds-related .related-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: #92400e;
    font-size: 0.95em;
}

.gds-related .related-desc {
    font-size: 0.82em;
    color: #666;
    line-height: 1.5;
}

/* ============================================
   REFERENCES
   ============================================ */
.gds-references {
    background: #fffbeb;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid #fde68a;
}

.gds-references h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 16px;
}

.gds-references ol {
    padding-left: 25px;
    margin: 0;
}

.gds-references li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #64748b;
    font-size: 0.9em;
}

.gds-references a {
    color: #b45309;
    text-decoration: none;
}

.gds-references a:hover {
    text-decoration: underline;
}

/* ============================================
   ATTRIBUTION
   ============================================ */
.gds-attribution {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #e5e7eb;
}

.gds-attribution p {
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .gds-hero h1 {
        font-size: 1.8em;
    }

    .gds-hero {
        padding: 35px 20px;
    }

    .gds-hero .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .gds-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gds-form-section,
    .gds-results-section,
    .gds-education,
    .gds-faq-section,
    .gds-related,
    .gds-references,
    .gds-disclaimer {
        padding: 25px 18px;
    }

    .gds-question {
        padding: 20px 16px;
    }

    .yn-toggle {
        gap: 10px;
    }

    .yn-btn {
        max-width: 50%;
    }

    .yn-btn span {
        padding: 10px 16px;
        font-size: 0.95em;
    }

    .gds-submit-btn {
        max-width: 100%;
        padding: 16px 30px;
        font-size: 1.1em;
    }

    .gds-score-display {
        flex-direction: column;
        gap: 20px;
    }

    .gds-crisis-box .crisis-contacts {
        grid-template-columns: 1fr;
    }

    .gds-tab-nav {
        flex-direction: column;
    }

    .gds-tab-btn {
        width: 100%;
        text-align: center;
    }

    .gds-treatment-grid {
        grid-template-columns: 1fr;
    }

    .gds-related .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gds-action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gds-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .gds-bar-labels {
        font-size: 0.65em;
    }

    .gds-score-bar .bar-segment span {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .gds-calculator-container {
        padding: 10px;
    }

    .gds-hero h1 {
        font-size: 1.5em;
    }

    .gds-hero {
        padding: 28px 16px;
        border-radius: 12px;
    }

    .gds-stats .stat-number {
        font-size: 1.6em;
    }

    .gds-related .related-grid {
        grid-template-columns: 1fr;
    }

    .gds-question {
        padding: 16px 14px;
        margin-bottom: 12px;
    }

    .gds-question .question-text {
        font-size: 0.95em;
    }

    .yn-btn span {
        padding: 10px 12px;
        font-size: 0.9em;
    }

    .gds-score-circle {
        width: 120px;
        height: 120px;
    }

    #gds-score-value {
        font-size: 2.5em;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .gds-hero {
        background: #b45309 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .gds-submit-btn,
    .gds-retake-btn,
    .gds-action-buttons,
    .gds-tab-nav,
    .gds-faq-section .faq-question,
    .mdcv2-progress-wrapper {
        display: none !important;
    }

    .gds-calculator-container {
        max-width: 100%;
        padding: 0;
    }

    .gds-results-section {
        border: 1px solid #ccc;
        box-shadow: none;
    }

    .mdcv2-print-header,
    .mdcv2-print-disclaimer {
        display: block !important;
    }
}
