/* ===================================
   RequestQuote.online - Stylesheet
   Mobile-first responsive design
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --accent: #f59e0b;
    --danger: #ef4444;
    
    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --bg-primary: #ffffff;
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    --border-color: var(--gray-200);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-hero: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Spacing */
    --container-max: 1200px;
    --container-padding: 1rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   Header
   =================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo svg {
    color: var(--primary);
}

.logo-dot {
    color: var(--primary);
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav a:hover {
    color: var(--text-primary);
}

.nav-button {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-primary) !important;
    transition: background var(--transition-fast);
}

.nav-button:hover {
    background: var(--gray-200);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: transform var(--transition-fast);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: 3rem 0 4rem;
    background: var(--gradient-hero);
}

.hero .container {
    display: grid;
    gap: 3rem;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0 6rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 0 2rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* ===================================
   Request Input Container
   =================================== */
.request-input-container {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .request-input-container {
        margin: 0;
    }
}

.input-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.input-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.input-tab.active {
    color: var(--primary);
    background: var(--bg-secondary);
}

.input-tab svg {
    width: 20px;
    height: 20px;
}

.input-panel {
    display: none;
    padding: 2rem;
}

.input-panel.active {
    display: block;
}

/* Voice Panel */
#voice-panel {
    text-align: center;
}

.voice-button {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.voice-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.2);
}

.voice-button.listening {
    animation: pulse 1.5s infinite;
}

.voice-button.listening .voice-icon {
    display: none;
}

.voice-button.listening .voice-waves {
    display: flex;
}

.voice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-waves {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 100%;
}

.voice-waves span {
    width: 4px;
    height: 20px;
    background: white;
    border-radius: 2px;
    animation: wave 0.5s infinite ease-in-out alternate;
}

.voice-waves span:nth-child(2) { animation-delay: 0.1s; }
.voice-waves span:nth-child(3) { animation-delay: 0.2s; }
.voice-waves span:nth-child(4) { animation-delay: 0.3s; }
.voice-waves span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0% { height: 10px; }
    100% { height: 40px; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(99, 102, 241, 0); }
}

.voice-instruction {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.voice-transcript {
    min-height: 40px;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-style: italic;
    color: var(--text-primary);
    display: none;
}

.voice-transcript:not(:empty) {
    display: block;
}

.voice-status {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Text Panel */
.request-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    resize: none;
    transition: border-color var(--transition-fast);
}

.request-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.request-textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Example Chips */
.example-requests {
    margin-top: 2rem;
    text-align: center;
}

.example-requests p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.example-chip {
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.example-chip:hover {
    background: var(--primary);
    color: white;
}

@media (min-width: 768px) {
    .example-requests {
        text-align: left;
    }
    
    .examples {
        justify-content: flex-start;
    }
}

/* ===================================
   Hero Illustration (Floating Cards)
   =================================== */
.hero-illustration {
    display: none;
    position: relative;
    height: 400px;
}

@media (min-width: 768px) {
    .hero-illustration {
        display: block;
    }
}

.floating-cards {
    position: relative;
    height: 100%;
}

.quote-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.quote-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.quote-card.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
}

.quote-card.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.card-price {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.card-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.step {
    text-align: center;
    max-width: 280px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    color: var(--primary);
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.step-arrow {
    display: none;
    color: var(--gray-300);
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .step-arrow {
        display: flex;
        align-items: center;
    }
}

/* ===================================
   Categories Section
   =================================== */
.categories {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.categories h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.category-more {
    background: var(--bg-tertiary);
}

/* ===================================
   Trust Section
   =================================== */
.trust {
    padding: 3rem 0;
    background: var(--gray-900);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-fast);
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--gray-900);
    color: white;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: white;
}

.footer-platform a {
    color: var(--primary-light);
}

/* ===================================
   Modal / Wizard
   =================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
}

/* Wizard Progress */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: background var(--transition-fast);
}

.progress-step.active .step-dot,
.progress-step.completed .step-dot {
    background: var(--primary);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

/* Wizard Steps */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.optional-tag {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Urgency Options */
.urgency-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.urgency-btn {
    flex: 1;
    min-width: 100px;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.urgency-btn.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

/* Location Input */
.location-input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detect-location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.detect-location-btn:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.location-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.location-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-row {
    display: flex;
    gap: 0.75rem;
}

.location-row input {
    flex: 1;
}

/* Contact Options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-option input {
    display: none;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.contact-option input:checked + .option-card {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
}

.option-icon.whatsapp {
    background: #25D366;
    color: white;
}

.option-icon.email {
    background: var(--primary);
    color: white;
}

.option-icon.sms {
    background: var(--secondary);
    color: white;
}

.option-details {
    display: flex;
    flex-direction: column;
}

.option-name {
    font-weight: 600;
}

.option-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Photo Upload */
.upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.upload-area svg {
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.upload-area p {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.upload-area span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.photo-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.wizard-btn {
    flex: 1;
    padding: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.wizard-prev {
    background: var(--gray-100);
    color: var(--text-secondary);
}

.wizard-prev:hover {
    background: var(--gray-200);
}

.wizard-next,
.wizard-submit {
    background: var(--gradient-primary);
    color: white;
}

.wizard-next:hover,
.wizard-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.wizard-submit {
    display: none;
}

/* AI Extraction */
.ai-extraction {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.extracted-category label,
.extracted-description label,
.extracted-urgency label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.extracted-category select,
.extracted-description textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.extracted-category select:focus,
.extracted-description textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ===================================
   Utilities
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
