/* Barosanul - Style principal
   Design: negru/gri inchis, text crem, accente galben-auriu
   Mobile-first, responsive */

:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-card: #222222;
    --bg-input: #2a2a2a;
    --text-primary: #f5f0e8;
    --text-secondary: #b8b0a0;
    --text-muted: #888880;
    --accent: #d4a017;
    --accent-hover: #e8b830;
    --accent-dark: #a07812;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --info: #2196f3;
    --border: #333333;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --header-height: 64px;
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container-narrow { max-width: 640px; }

/* Typography */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: 0.02em; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: 1.25rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border: 2px solid transparent; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all var(--transition); text-align: center;
    min-height: 48px; line-height: 1.2;
}
.btn-primary { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg-primary); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--bg-primary); }
.btn-ghost { background: transparent; color: var(--text-secondary); border-color: transparent; }
.btn-ghost:hover { color: var(--text-primary); }
.btn-danger { color: var(--danger); border-color: var(--danger); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; min-height: 36px; }
.btn-lg { padding: 16px 32px; font-size: 1.125rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(13,13,13,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border); height: var(--header-height);
}
.header-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    height: var(--header-height);
    gap: 8px;
    position: relative;
}
.logo {
    grid-column: 2;
    justify-self: center;
    display: flex; align-items: center; gap: 8px;
    color: var(--text-primary); font-family: var(--font-display); font-size: 1.5rem;
}
.logo:hover { color: var(--accent); }
.logo-icon { font-size: 1.25rem; }
.main-nav { display: none; }
.nav-list { display: flex; gap: 24px; list-style: none; }
.nav-link { color: var(--text-secondary); font-weight: 500; font-size: 0.9375rem; }
.nav-link:hover { color: var(--accent); }
.header-actions { display: none; gap: 8px; }
.mobile-menu-toggle {
    grid-column: 1;
    justify-self: start;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-header-user {
    grid-column: 3;
    justify-self: end;
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; color: var(--text-primary);
    border-radius: 50%; transition: color var(--transition), background var(--transition);
}
.mobile-header-user:hover { color: var(--accent); background: rgba(212,160,23,0.1); }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition);
}
.hamburger::before, .hamburger::after { content: ''; }
.hamburger::before { transform: translateY(-7px); }
.hamburger::after { transform: translateY(5px); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg) translateY(-1px); }

/* Mobile Nav */
.mobile-nav { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.mobile-nav[aria-hidden="false"] { pointer-events: auto; }
.mobile-nav-inner {
    position: absolute; top: 0; left: 0; width: min(320px, 85vw); height: 100%;
    background: var(--bg-secondary); transform: translateX(-100%); transition: transform 0.3s ease;
    padding: calc(var(--header-height) + 16px) 24px 24px; overflow-y: auto; z-index: 2;
}
.mobile-nav[aria-hidden="false"] .mobile-nav-inner { transform: translateX(0); }
.mobile-nav-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; transition: opacity 0.3s;
}
.mobile-nav[aria-hidden="false"] .mobile-nav-overlay { opacity: 1; }
.mobile-nav-list { list-style: none; }
.mobile-nav-link {
    display: block; padding: 14px 0; color: var(--text-primary); font-weight: 500;
    border-bottom: 1px solid var(--border); font-size: 1.0625rem;
}
.mobile-nav-link:hover { color: var(--accent); }

/* Home Hero */
.page-home .site-header { background: transparent; border: none; position: absolute; width: 100%; }
.home-main { flex: 1; display: flex; flex-direction: column; }
.hero-search {
    flex: 1; display: flex; align-items: center; justify-content: center;
    min-height: calc(100vh - 60px); padding: 80px 16px 40px; text-align: center;
}
.hero-content { width: 100%; max-width: 680px; }
.hero-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 8px; }
.hero-logo-icon { font-size: 2.5rem; }
.hero-title { font-size: clamp(3rem, 10vw, 5rem); color: var(--text-primary); letter-spacing: 0.05em; }
.hero-tagline { font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.75rem); color: var(--accent); margin-bottom: 4px; letter-spacing: 0.03em; }
.hero-slogan { color: var(--text-secondary); font-size: 1rem; margin-bottom: 40px; }

/* Search */
.search-container { text-align: left; }
.search-label { display: block; font-size: 1.125rem; font-weight: 500; margin-bottom: 12px; text-align: center; color: var(--text-secondary); }
.search-box { position: relative; display: flex; background: var(--bg-input); border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition); }
.search-box:focus-within { border-color: var(--accent); }
.search-input {
    flex: 1; padding: 16px 20px; background: none; border: none; color: var(--text-primary);
    font-size: 1rem; font-family: var(--font-body); outline: none; min-height: 56px;
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
    padding: 0 20px; background: var(--accent); border: none; cursor: pointer;
    font-size: 1.25rem; transition: background var(--transition); min-width: 56px;
}
.search-btn:hover { background: var(--accent-hover); }
.search-results {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius); margin-top: 4px;
    list-style: none; max-height: 360px; overflow-y: auto; z-index: 50; box-shadow: var(--shadow);
}
.search-results:not([hidden]) { display: block; }
.search-result-item {
    display: block; padding: 12px 16px; color: var(--text-primary); border-bottom: 1px solid var(--border);
    cursor: pointer; transition: background var(--transition);
}
.search-result-item:hover, .search-result-item.active { background: var(--bg-input); }
.search-result-item:last-child { border-bottom: none; }
.search-result-name { font-weight: 600; display: block; }
.search-result-cat { font-size: 0.8125rem; color: var(--text-muted); }
.search-examples { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; }
.search-examples-label { font-size: 0.8125rem; color: var(--text-muted); }
.search-example {
    padding: 6px 12px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; color: var(--text-secondary); font-size: 0.8125rem; cursor: pointer;
    transition: all var(--transition); font-family: var(--font-body);
}
.search-example:hover { border-color: var(--accent); color: var(--accent); }

/* Services Grid */
.section-title { text-align: center; margin-bottom: 32px; color: var(--text-primary); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.service-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px 12px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); color: var(--text-primary); text-align: center;
    transition: all var(--transition); min-height: 120px; justify-content: center;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text-primary); }
.service-card-icon { font-size: 1.75rem; }
.service-card-name { font-weight: 600; font-size: 0.875rem; line-height: 1.3; }
.service-card-price { font-size: 0.75rem; color: var(--accent); }
.service-card-all { border-style: dashed; border-color: var(--accent); color: var(--accent); }

.popular-services { padding: 60px 0; background: var(--bg-secondary); }
.how-it-works-preview { padding: 60px 0; }
.steps-grid { display: grid; gap: 24px; margin-bottom: 32px; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--accent); color: var(--bg-primary); border-radius: 50%; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 12px; }
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--text-secondary); font-size: 0.9375rem; }
.text-center { text-align: center; }

/* Page Content */
.page-content { flex: 1; padding: calc(var(--header-height) + 24px) 0 60px; }
.page-header { margin-bottom: 32px; }
.page-subtitle { color: var(--text-secondary); margin-top: 8px; }
.breadcrumb { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-secondary); }

.category-title a { color: inherit; }
.category-title a:hover { color: var(--accent); }

/* Notificari */
.notif-link { position: relative; }
.notif-badge {
    position: absolute; top: -6px; right: -8px;
    background: var(--danger); color: #fff; font-size: 0.6875rem;
    min-width: 18px; height: 18px; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 4px; font-weight: 600;
}
.notifications-list { display: flex; flex-direction: column; gap: 8px; }
.notification-item {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
    padding: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.notification-item.unread { border-left: 3px solid var(--accent); }
.notification-content p { margin: 4px 0 0; color: var(--text-secondary); font-size: 0.875rem; }
.notification-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Category tabs */
.category-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 16px; margin-bottom: 32px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab {
    flex-shrink: 0; padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 20px; color: var(--text-secondary); font-size: 0.875rem; white-space: nowrap;
    transition: all var(--transition);
}
.category-tab.active, .category-tab:hover { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }

.category-section { margin-bottom: 48px; }
.category-title { font-size: 1.5rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.services-list { display: flex; flex-direction: column; gap: 8px; }
.service-row {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text-primary); transition: all var(--transition);
}
.service-row:hover { border-color: var(--accent); color: var(--text-primary); }
.service-row h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.service-row p { font-size: 0.875rem; color: var(--text-secondary); }
.service-row-meta { text-align: right; flex-shrink: 0; }
.service-duration { display: block; font-size: 0.8125rem; color: var(--text-muted); }
.service-price { display: block; font-weight: 600; color: var(--accent); font-size: 0.9375rem; }

/* Service Detail */
.service-detail { margin-bottom: 48px; }
.service-header { margin-bottom: 32px; }
.service-category-badge { display: inline-block; padding: 4px 12px; background: var(--bg-card); border-radius: 20px; font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 12px; }
.service-lead { font-size: 1.125rem; color: var(--text-secondary); margin-top: 8px; }
.service-body { display: grid; gap: 32px; }
.service-section { margin-bottom: 32px; }
.service-section h2 { margin-bottom: 16px; font-size: 1.25rem; }
.service-info-grid { display: grid; gap: 16px; margin-bottom: 32px; }
.info-box { padding: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.info-box h3 { font-size: 1rem; margin-bottom: 8px; color: var(--accent); }
.info-excludes h3 { color: var(--text-muted); }
.service-sidebar { position: sticky; top: calc(var(--header-height) + 16px); }
.service-card-sidebar { padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.sidebar-price { text-align: center; margin-bottom: 16px; }
.price-label { display: block; font-size: 0.8125rem; color: var(--text-muted); }
.price-value { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--accent); }
.sidebar-meta { list-style: none; margin-bottom: 20px; }
.sidebar-meta li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
.similar-services { margin-top: 48px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { padding: 16px 20px; cursor: pointer; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--accent); }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 20px 16px; color: var(--text-secondary); font-size: 0.9375rem; }

/* Forms */
.form-section { border: none; margin-bottom: 24px; padding: 0; }
.form-section legend { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 16px; color: var(--accent); }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; gap: 16px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9375rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; background: var(--bg-input); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text-primary); font-family: var(--font-body); font-size: 1rem;
    transition: border-color var(--transition); min-height: 48px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group small { display: block; margin-top: 4px; font-size: 0.8125rem; color: var(--text-muted); }
.form-check label { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; cursor: pointer; }
.form-check input { width: auto; min-height: auto; margin-top: 4px; }
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; }

/* Auth */
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; }
.auth-card h1 { margin-bottom: 24px; text-align: center; }
.auth-link { text-align: center; margin-top: 16px; color: var(--text-secondary); font-size: 0.9375rem; }

/* Alerts */
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; }
.alert-success { background: rgba(76,175,80,0.15); border: 1px solid var(--success); color: var(--success); }
.alert-error { background: rgba(244,67,54,0.15); border: 1px solid var(--danger); color: var(--danger); }
.alert-warning { background: rgba(255,152,0,0.15); border: 1px solid var(--warning); color: var(--warning); }
.alert-info { background: rgba(33,150,243,0.15); border: 1px solid var(--info); color: var(--info); }
.alert ul { list-style: none; }
.notice { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.9375rem; }
.notice-warning { background: rgba(255,152,0,0.1); border-left: 3px solid var(--warning); color: var(--text-secondary); }

/* Badges */
.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-info { background: rgba(33,150,243,0.2); color: var(--info); }
.badge-success { background: rgba(76,175,80,0.2); color: var(--success); }
.badge-warning { background: rgba(255,152,0,0.2); color: var(--warning); }
.badge-danger { background: rgba(244,67,54,0.2); color: var(--danger); }
.badge-primary { background: rgba(212,160,23,0.2); color: var(--accent); }

/* Account */
.account-grid { display: grid; gap: 32px; }
.account-sidebar { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.account-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.account-nav a { padding: 10px 12px; border-radius: var(--radius); color: var(--text-secondary); font-weight: 500; }
.account-nav a.active, .account-nav a:hover { background: var(--bg-input); color: var(--accent); }
.requests-list { display: grid; gap: 16px; }
.request-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.request-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.request-number { font-family: monospace; font-size: 0.875rem; color: var(--accent); }
.request-date { font-size: 0.8125rem; color: var(--text-muted); margin: 4px 0 12px; }

/* Detail list */
.detail-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.detail-list dt { font-weight: 600; color: var(--text-muted); font-size: 0.875rem; }
.detail-list dd { margin: 0; }

/* Footer */
.site-footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 48px 0 24px; margin-top: auto; }
.footer-grid { display: grid; gap: 32px; margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.footer-slogan { color: var(--text-secondary); font-size: 0.9375rem; margin-bottom: 16px; }
.footer-title { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 12px; color: var(--accent); }
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 6px; }
.footer-links a, .footer-contact a { color: var(--text-secondary); font-size: 0.875rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { font-size: 0.875rem; color: var(--text-secondary); }

/* Contact page */
.contact-form { max-width: 600px; margin-bottom: 48px; }
.partner-form { max-width: 700px; margin-top: 24px; }
.contact-details {
    max-width: 600px; padding: 24px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.contact-details-title { font-size: 1.25rem; margin-bottom: 16px; color: var(--text-primary); }
.contact-details-list { list-style: none; }
.contact-details-list li { margin-bottom: 8px; font-size: 0.9375rem; color: var(--text-secondary); }
.contact-details-list a { color: var(--text-secondary); }
.contact-details-list a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 4px; }

/* Social Links - 6 slots */
.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text-primary); font-size: 1.125rem;
    transition: all var(--transition);
}
.social-btn:hover { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }
.social-btn-empty { opacity: 0.3; pointer-events: none; }

/* Floating Contact Widget */
.floating-contact { position: fixed; bottom: 24px; right: 24px; z-index: 150; }
.floating-contact-toggle {
    width: 56px; height: 56px; border-radius: 50%; background: var(--accent); border: none;
    cursor: pointer; box-shadow: var(--shadow); font-size: 1.5rem; transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.floating-contact-toggle:hover { background: var(--accent-hover); transform: scale(1.05); }
.floating-contact-menu {
    position: absolute; bottom: 68px; right: 0; display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateY(10px); transition: all 0.3s ease; pointer-events: none;
}
.floating-contact-menu[aria-hidden="false"] { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-contact-btn {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%; color: white; font-size: 1.25rem;
    box-shadow: var(--shadow); transition: transform var(--transition);
}
.floating-contact-btn:hover { transform: scale(1.1); color: white; }
.floating-whatsapp { background: #25d366; }
.floating-phone { background: var(--accent); color: var(--bg-primary); }
.floating-email { background: var(--info); }

/* PWA Install */
.pwa-install-btn {
    position: fixed; bottom: 24px; left: 24px; z-index: 150;
    padding: 12px 20px; background: var(--accent); color: var(--bg-primary);
    border: none; border-radius: var(--radius); font-weight: 600; cursor: pointer;
    box-shadow: var(--shadow); font-family: var(--font-body); transition: all var(--transition);
}
.pwa-install-btn:hover { background: var(--accent-hover); }

/* Offline banner */
.offline-banner {
    position: fixed; top: 0; left: 0; right: 0; z-index: 300;
    background: var(--warning); color: var(--bg-primary); text-align: center;
    padding: 8px 16px; font-weight: 600; font-size: 0.875rem;
}

/* Static content pages */
.content-page { max-width: 800px; margin: 0 auto; }
.content-page h2 { margin: 32px 0 16px; font-size: 1.25rem; }
.content-page p, .content-page li { color: var(--text-secondary); margin-bottom: 12px; }
.content-page ul, .content-page ol { padding-left: 24px; margin-bottom: 16px; }

/* Responsive */
@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
    .service-info-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 16px;
    }
    .mobile-menu-toggle { display: none; }
    .mobile-header-user { display: none; }
    .main-nav { display: block; grid-column: 1; justify-self: start; }
    .logo { grid-column: 2; justify-self: center; }
    .header-actions { display: flex; grid-column: 3; justify-self: end; }
    .service-body { grid-template-columns: 1fr 320px; }
    .account-grid { grid-template-columns: 260px 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
