/* Credentials Mode Styles */

/* Navigation */
.credentials-nav {
    background: linear-gradient(135deg, var(--gop-navy) 0%, var(--gop-navy-dark) 100%);
    border-bottom: 3px solid var(--gold);
}

.credentials-nav .nav-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-mode-switch {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 1rem;
}

.nav-mode-switch:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mode tabs */
.mode-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.mode-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    transition: all 0.2s;
}

.mode-tab:hover {
    background: var(--gray-50);
}

.mode-tab.active {
    background: var(--gop-navy);
    color: white;
}

.mode-content {
    padding: 1rem 0;
}

/* Instructions */
.instructions {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Form row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Card/unified input */
#card-input {
    width: 100%;
    font-family: monospace;
    font-size: var(--font-size-base);
    padding: 16px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    margin-bottom: 1rem;
    resize: vertical;
    min-height: 80px;
}

#card-input:focus {
    border-color: var(--gop-navy);
    box-shadow: var(--focus-ring);
}

/* CD select / form inputs */
.cd-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    font-size: var(--font-size-base);
    background: white;
    min-height: 48px;
}

.cd-select:focus {
    border-color: var(--gop-navy);
    box-shadow: var(--focus-ring);
}

/* Button group */
.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Result cards */
.result-card {
    border-left: 4px solid;
}

.success-card {
    border-left-color: var(--success);
}

.error-card {
    border-left-color: var(--danger);
}

.warning-card {
    border-left-color: var(--warning);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.result-icon {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Person name in result cards — large and unmissable */
#person-name,
#checked-in-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.success-card .result-icon {
    background: var(--success-light);
    color: var(--success);
}

.error-card .result-icon {
    background: var(--danger-light);
    color: var(--danger);
}

.warning-card .result-icon {
    background: var(--warning-light);
    color: var(--warning);
}

.person-details p {
    margin: 0.5rem 0;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.badge-primary {
    background: var(--gop-blue-tint);
    color: var(--gop-navy);
}

.badge-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.badge-warning {
    background: #FEF3C7;
    color: #92400E;
}

/* Dashboard styles */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.grand-total-card {
    background: linear-gradient(135deg, var(--gop-navy) 0%, var(--gop-navy-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
}

.total-display {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.total-divider {
    opacity: 0.5;
    margin: 0 0.5rem;
}

.total-max {
    opacity: 0.7;
}

.total-percentage {
    font-size: 1.25rem;
    opacity: 0.8;
}

.progress-bar-container {
    max-width: 400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 3px solid var(--gop-red);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
    user-select: none;
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
    border-top-color: var(--gop-navy);
}

.stat-card.expanded {
    border-top-color: var(--gop-navy);
    box-shadow: var(--shadow-lg);
    background: var(--gop-blue-tint);
}

.stat-card h3 {
    margin: 0 0 0.25rem 0;
    color: var(--gray-800);
    font-size: var(--font-size-sm);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.25rem 0;
}

.stat-number .checked {
    color: var(--gop-navy);
}

.stat-number .total {
    color: var(--gray-600);
}

.percentage {
    color: var(--gray-600);
    margin-top: 0.25rem;
    font-size: var(--font-size-sm);
}

/* Tile detail panel */
.tile-detail-panel {
    grid-column: 1 / -1;
    background: white;
    border: 2px solid var(--gop-navy);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.2s ease-out;
    max-height: 400px;
    overflow-y: auto;
}

@keyframes slideDown {
    from { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; }
    to { opacity: 1; max-height: 400px; }
}

.tile-detail-panel h4 {
    margin: 0 0 0.5rem 0;
    font-size: var(--font-size-base);
    color: var(--gop-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tile-detail-panel .detail-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0.25rem 0.5rem;
    min-height: 44px;
    min-width: 44px;
}

.tile-detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .tile-detail-columns {
        grid-template-columns: 1fr;
    }
}

.tile-detail-columns .detail-col h5 {
    margin: 0 0 0.5rem 0;
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    padding-bottom: 0.25rem;
    border-bottom: 2px solid var(--gray-200);
}

.tile-detail-columns .detail-col-checked h5 {
    color: var(--success);
    border-bottom-color: var(--success);
}

.tile-detail-columns .detail-col-not-checked h5 {
    color: var(--gop-red);
    border-bottom-color: var(--gop-red);
}

.tile-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tile-detail-list li {
    padding: 0.3rem 0;
    font-size: var(--font-size-sm);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tile-detail-list li:last-child {
    border-bottom: none;
}

.tile-detail-list .person-name {
    font-weight: 500;
}

.tile-detail-list .person-meta {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Progress bar */
.progress-bar {
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gop-navy);
    transition: width 0.3s ease;
}

/* Auto refresh indicator */
.auto-refresh-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    margin-top: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Filter row */
.filter-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-row label {
    font-weight: 500;
}

.filter-row select {
    padding: 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
}

/* Check-ins table */
.checkins-table {
    width: 100%;
    border-collapse: collapse;
}

.checkins-table th,
.checkins-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    font-size: var(--font-size-sm);
}

.checkins-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

.checkins-table tr:hover {
    background: var(--gop-blue-tint);
}

.empty-message {
    text-align: center;
    color: var(--gray-600);
    padding: 2rem;
}

/* Danger zone */
.danger-zone {
    border-color: var(--danger-light);
    background: var(--gop-red-light);
}

.danger-zone h3 {
    color: var(--gop-red);
    margin-bottom: 0.5rem;
}

/* Login card */
.login-card {
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.login-card h1 {
    margin-bottom: 0.5rem;
}

.login-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.login-card .form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.error-message {
    background: var(--danger-light);
    color: var(--gop-red);
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Duplicate list */
.duplicate-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.duplicate-option {
    padding: 1.25rem;
    border: 3px solid var(--gray-200);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 60px;
}

.duplicate-option:hover,
.duplicate-option:focus-visible {
    border-color: var(--gop-navy);
    background: var(--gop-blue-tint);
}

.duplicate-option .name {
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.duplicate-option .details {
    color: var(--gray-600);
    font-size: var(--font-size-base);
    margin-top: 0.25rem;
}

/* Archives table */
.archives-table {
    width: 100%;
    border-collapse: collapse;
}

.archives-table th,
.archives-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.archives-table th {
    background: var(--gray-50);
    font-weight: 600;
}

/* Small buttons */
.btn-small {
    padding: 8px 16px;
    font-size: var(--font-size-sm);
    min-height: 44px;
}

/* Large buttons */
.btn-large {
    padding: 18px 40px;
    font-size: var(--font-size-lg);
}

/* Button variants */
.btn-success {
    background: var(--success);
    color: white;
}

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

.btn-danger {
    background: var(--danger);
    color: white;
}

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

/* Loading */
.loading {
    color: var(--gray-600);
    text-align: center;
    padding: 2rem;
}

/* Error */
.error {
    color: var(--gop-red);
    text-align: center;
    padding: 2rem;
}

/* =============================================================================
   Setup Wizard
   ============================================================================= */

/* Wizard step containers */
.wizard-step {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step indicator dots */
.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: var(--gray-200);
    color: var(--gray-600);
    transition: all 0.3s;
    cursor: default;
}

.step-dot.active {
    background: var(--gop-red);
    color: white;
    box-shadow: 0 0 0 3px rgba(232, 27, 35, 0.3);
}

.step-dot.completed {
    background: var(--gop-navy);
    color: white;
}

/* Clickable scope/option cards */
.scope-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.scope-card:hover {
    border-color: var(--gop-navy);
    box-shadow: 0 4px 12px rgba(0, 40, 104, 0.15);
    transform: translateY(-2px);
}

.scope-card.selected {
    border-color: var(--gop-navy);
    background: var(--gop-blue-tint);
}

.scope-card h2,
.scope-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--gray-800);
}

.scope-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* CSV dropzone */
.csv-dropzone-active {
    border-color: var(--gop-navy) !important;
    background: var(--gop-blue-tint) !important;
}

/* Quorum indicator on grand total card */
.quorum-reached {
    color: var(--success-light);
}

.quorum-below {
    color: var(--danger-light);
}

/* Demo test cards panel */
.demo-cards-panel {
    background: var(--warning-light);
    border-bottom: 1px solid var(--warning);
    max-width: 100%;
}

.demo-cards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    color: var(--warning-dark);
    font-weight: 600;
    font-size: var(--font-size-sm);
    user-select: none;
    min-height: 48px;
}

.demo-cards-header:hover {
    background: rgba(217, 119, 6, 0.1);
}

.demo-cards-toggle {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.demo-cards-body {
    padding: 0 1.5rem 1rem;
}

.demo-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

.demo-card-item:last-child {
    border-bottom: none;
}

.demo-card-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.demo-card-name {
    font-weight: 500;
    color: var(--gray-800);
}

.badge-danger {
    background: var(--danger-light);
    color: var(--gop-red);
}

/* =============================================================================
   Session Manage — Action Buttons (absorbed from inline styles)
   ============================================================================= */

.add-person-toggle {
    cursor: pointer;
    color: var(--gop-navy);
    font-weight: 600;
}
.add-person-toggle:hover {
    text-decoration: underline;
}

.add-person-form {
    display: none;
    margin-top: 1rem;
}
.add-person-form.open {
    display: block;
}

.btn-promote {
    background: var(--success);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    min-height: 44px;
    font-weight: 600;
}
.btn-promote:hover {
    background: var(--success-dark);
}

.btn-demote {
    background: var(--warning);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    min-height: 44px;
    font-weight: 600;
}
.btn-demote:hover {
    background: var(--warning-dark);
}

.btn-edit {
    background: var(--gop-navy-light);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    min-height: 44px;
    font-weight: 600;
}
.btn-edit:hover {
    background: var(--gop-navy);
}

.btn-save {
    background: var(--success);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    min-height: 44px;
    font-weight: 600;
}

.btn-cancel {
    background: var(--gray-400);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    min-height: 44px;
    font-weight: 600;
}

.actions-cell {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.edit-input {
    padding: 8px 12px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    font-size: var(--font-size-sm);
    width: 100%;
}

.edit-input:focus {
    border-color: var(--gop-navy);
    box-shadow: var(--focus-ring);
}

.proxy-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.proxy-row label {
    font-size: var(--font-size-sm);
    white-space: nowrap;
}

/* Sessions action bar */
.sessions-action-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.join-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =============================================================================
   Add Person Form — reusable classes (replaces inline styles in check-in)
   ============================================================================= */

.add-person-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.add-person-row > div {
    flex: 1;
    min-width: 140px;
}

.add-person-label {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 6px;
}

.add-person-field {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    font-size: var(--font-size-base);
    min-height: 48px;
}

.add-person-field:focus {
    border-color: var(--gop-navy);
    box-shadow: var(--focus-ring);
}

/* =============================================================================
   Check-in button — full-width, biggest on page
   ============================================================================= */

.btn-checkin {
    width: 100%;
    padding: 20px;
    font-size: var(--font-size-xl);
    font-weight: 700;
    background: var(--success-dark);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    min-height: 64px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkin:hover {
    background: var(--success);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
}

/* =============================================================================
   Auto-reset countdown
   ============================================================================= */

.countdown-text {
    color: var(--gray-600);
    font-size: var(--font-size-base);
    margin-top: 0.75rem;
}

/* =============================================================================
   Unified input label
   ============================================================================= */

.unified-input-label {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--gop-navy);
    margin-bottom: 0.5rem;
}

.unified-input-hint {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
}

/* Mobile navbar responsiveness */
@media (max-width: 768px) {
    .credentials-nav .nav-links {
        gap: 0.25rem;
    }
    .credentials-nav .nav-links a {
        padding: 0.5rem 0.75rem;
        font-size: var(--font-size-sm);
    }
    .sessions-action-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .join-inline {
        justify-content: center;
    }
}


/* =============================================================================
   Guide Page
   ============================================================================= */

.guide-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--gray-50) 0%, #fff 50%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
    border-left: 5px solid var(--gop-red);
    border-right: 5px solid var(--gop-navy);
    border-radius: 8px;
}

.guide-hero h1 {
    font-size: var(--font-size-2xl);
    color: var(--gop-navy);
    margin-bottom: 0.5rem;
}

.guide-hero p {
    color: var(--gray-600);
    font-size: var(--font-size-lg);
    margin-bottom: 1.5rem;
}

.guide-hero .guide-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guide-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.guide-toc a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gop-blue-tint);
    color: var(--gop-navy);
    text-decoration: none;
    border-radius: 9999px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all 0.2s;
}

.guide-toc a:hover {
    background: var(--gop-navy);
    color: white;
}

.guide-section {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.guide-section:last-of-type {
    border-bottom: none;
}

.guide-section h2 {
    font-size: var(--font-size-xl);
    color: var(--gop-navy);
    font-weight: 700;
    border-bottom: 3px solid var(--gop-red);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.guide-section h3 {
    color: var(--gray-800);
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
}

.guide-section p,
.guide-section li {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.guide-section ul,
.guide-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.guide-section li {
    margin-bottom: 0.5rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.guide-step-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.25rem;
    border-top: 3px solid var(--gop-red);
}

.guide-step-card .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gop-navy);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: var(--font-size-sm);
    margin-bottom: 0.5rem;
}

.guide-step-card h4 {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.guide-step-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin: 0;
}

.guide-checklist {
    list-style: none;
    padding-left: 0 !important;
}

.guide-checklist li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.guide-checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
}

.guide-tip {
    background: var(--gop-blue-tint);
    border-left: 4px solid var(--gop-navy);
    padding: 1rem 1.25rem;
    border-radius: 0 6px 6px 0;
    margin: 1rem 0;
    font-size: var(--font-size-sm);
}

.guide-tip strong {
    color: var(--gop-navy);
}

.guide-faq dt {
    font-weight: 700;
    color: var(--gop-navy);
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.guide-faq dd {
    color: var(--gray-700);
    margin-left: 0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .guide-section {
        padding: 1.5rem 1.25rem;
    }
    .guide-hero {
        padding: 1.5rem 1rem;
    }
    .guide-steps {
        grid-template-columns: 1fr;
    }
}
