:root {
    --bg-dark: #080b0e;
    --bg-panel: rgba(15, 21, 28, 0.85);
    --bg-panel-hover: rgba(22, 31, 42, 0.95);
    --bg-card: rgba(18, 25, 34, 0.7);
    --border-color: rgba(243, 156, 18, 0.2);
    --border-glow: rgba(243, 156, 18, 0.45);
    --primary: #f39c12;
    --primary-hover: #e67e22;
    --accent-gold: #ffb703;
    --accent-ukr-blue: #0057b7;
    --accent-ukr-yellow: #ffd700;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 87, 183, 0.15), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(243, 156, 18, 0.1), transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

.app-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 14px 40px 14px;
}

/* Glass panel utility */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-panel:hover {
    border-color: var(--border-glow);
}

/* Security Disclaimer Banner */
.security-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    margin-bottom: 18px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.sec-icon {
    color: var(--success);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sec-text {
    font-size: 12px;
    color: var(--text-muted);
}

.sec-text strong {
    color: var(--success);
    margin-right: 4px;
}

/* Ticker Bar */
.ticker-wrap {
    display: flex;
    align-items: center;
    background: rgba(10, 15, 20, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 6px 12px;
    font-size: 11px;
    overflow: hidden;
    margin-bottom: 12px;
}

.ticker-label {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    margin-right: 12px;
    font-size: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.ticker-content {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 32s linear infinite;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 11px;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Header */
.glass-header {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    margin-bottom: 14px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 87, 183, 0.4), rgba(243, 156, 18, 0.4));
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(243, 156, 18, 0.3);
}

.logo-text h1 {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1.2;
}

.logo-text .subtitle {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-tg-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 119, 182, 0.15);
    border: 1px solid rgba(0, 119, 182, 0.5);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    transition: all 0.2s ease;
}

.nav-tg-link:hover {
    background: rgba(0, 119, 182, 0.3);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(0, 119, 182, 0.4);
}

.nav-tg-icon {
    color: #38bdf8;
    display: flex;
    align-items: center;
}

.tg-handle {
    color: var(--accent-gold);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: var(--primary);
    color: #000000;
    box-shadow: 0 0 8px rgba(243, 156, 18, 0.5);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Fast Telegram Banner */
.telegram-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    margin-bottom: 14px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 87, 183, 0.25), rgba(15, 21, 28, 0.9));
    border: 1px solid rgba(0, 87, 183, 0.5);
}

.telegram-link:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 87, 183, 0.3);
}

.tg-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0088cc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.5);
}

.tg-text-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 14px;
}

.tg-title {
    font-size: 12px;
    color: var(--text-muted);
}

.tg-handle-large {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.tg-handle-large strong {
    color: var(--accent-gold);
}

.tg-arrow {
    font-size: 18px;
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 87, 183, 0.2);
    border: 1px solid var(--accent-ukr-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.flag-icon-svg {
    display: flex;
    align-items: center;
    color: var(--accent-gold);
}

.hero-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 720px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 10px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: #ffffff;
}

.stat-value.highlight {
    color: var(--success);
}

.stat-value.gold {
    color: var(--accent-gold);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #000000;
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.2s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
}

/* Section Header */
.section-header {
    margin-bottom: 16px;
}

.section-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Military Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.role-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.role-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.role-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.risk-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.risk-badge.high {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.risk-badge.combat {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

.risk-badge.std {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.risk-badge.frontline {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.5);
    color: #ef4444;
}

.risk-badge.rescue {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.risk-badge.tech {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.4);
    color: #22d3ee;
}

.role-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.salary-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px border var(--border-color);
    border-left: 3px solid var(--accent-gold);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.salary-label {
    font-size: 11px;
    color: var(--text-muted);
}

.salary-amount {
    font-size: 14px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--accent-gold);
}

.role-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-grow: 1;
}

.role-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.role-tag {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 4px;
}

.apply-role-btn {
    width: 100%;
    background: rgba(243, 156, 18, 0.12);
    border: 1px solid var(--border-color);
    color: var(--accent-gold);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.apply-role-btn:hover {
    background: var(--primary);
    color: #000000;
    border-color: var(--primary);
}

/* Documents Section */
.docs-section {
    padding: 22px;
    margin-bottom: 24px;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.doc-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.doc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(243, 156, 18, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.doc-info h5 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.doc-info span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

/* Steps Section */
.howto-section {
    padding: 22px;
    margin-bottom: 24px;
}

.howto-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.howto-step {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: var(--radius-md);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #000000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.4);
}

.step-info {
    display: flex;
    flex-direction: column;
}

.step-info strong {
    font-size: 13px;
    color: #ffffff;
}

.step-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 22px;
    margin-bottom: 24px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 16px;
}

.faq-item summary {
    cursor: pointer;
    font-size: 13px;
    color: #ffffff;
    outline: none;
}

.faq-item p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* Contact Card */
.contact-card {
    padding: 24px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(0, 87, 183, 0.2), rgba(15, 21, 28, 0.95));
    border: 1px solid rgba(0, 87, 183, 0.5);
    text-align: center;
}

.contact-badge {
    display: inline-block;
    background: rgba(243, 156, 18, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.contact-tg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0088cc;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    transition: all 0.2s ease;
}

.contact-tg-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6);
}

.tg-icon {
    display: flex;
    align-items: center;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
}

.modal-overlay.hidden {
    display: none;
}

.modal {
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 22px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.panel-header h3 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
}

.modal-intro-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.form-input, .form-select {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 13px;
    outline: none;
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent-gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
}

.selected-role-badge {
    background: rgba(243, 156, 18, 0.15);
    border: 1px solid var(--primary);
    color: var(--accent-gold);
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.action-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #000000;
    border: none;
    padding: 13px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Modal Confirmation Step */
.success-box {
    text-align: center;
    padding: 14px;
    margin-bottom: 14px;
}

.success-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
}

.success-box h4 {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
}

.success-box p {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.ref-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 14px;
}

.ref-label {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.ref-code {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--accent-gold);
}

.modal-tg-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0088cc;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wallet-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.wallet-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.wallet-address-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 10px;
    border-radius: 4px;
}

.wallet-address-box code {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-gold);
    word-break: break-all;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
}

.wallet-hint {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Footer */
.glass-footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Utility */
.hidden {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .roles-grid {
        grid-template-columns: 1fr;
    }
    .docs-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 20px;
    }
    .header-main {
        flex-direction: column;
        align-items: flex-start;
    }
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
}
