/* ============================================================
   KNU Admission Form – Modern Stylesheet
   ============================================================ */

:root {
    /* KNU brand palette (from color-reference.png) */
    --navy: #1a3258;
    --navy-dark: #132844;
    --navy-light: #2a4a72;
    --gold: #c49a47;
    --gold-dark: #a8823a;
    --gold-light: #d4ad5a;

    --primary: var(--navy);
    --primary-dark: var(--navy-dark);
    --primary-light: #e8eef5;
    --accent: var(--gold);
    --success: #059669;
    --error: #dc2626;
    --warning: var(--gold);
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --surface: #f5f6f8;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: 0.2s ease;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--surface);
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================================
   Header – KNU three-tier layout
   ============================================================ */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Top bar */
.header-top-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 0.82rem;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    flex-wrap: wrap;
}

.header-tagline {
    color: var(--gold);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-link:hover { color: var(--gold-light); }

.contact-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.85;
}

/* Brand row */
.header-brand {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.brand-name {
    color: var(--navy);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.brand-name-hindi {
    font-size: 1.15rem;
    max-width: 220px;
}

.brand-name-english {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    max-width: 240px;
}

.brand-logo-wrap { flex-shrink: 0; }

.brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.brand-logo-placeholder {
    width: 72px;
    height: 72px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid var(--gold);
}

/* Nav strip */
.header-nav {
    background: var(--white);
    border-bottom: 3px solid var(--gold);
}

.header-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    gap: 1rem;
}

.header-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.nav-link:hover { color: var(--navy); }

.nav-link-active {
    color: var(--gold-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.15rem;
}

.header-nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.user-badge {
    font-size: 0.75rem;
    color: var(--navy);
    background: var(--primary-light);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-logout {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
}

.nav-logout:hover { color: var(--error); }

.session-badge {
    background: var(--navy);
    color: var(--gold-light);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(196, 154, 71, 0.35);
}

/* Main */
.main-content {
    padding: 2rem 0 3rem;
}

/* Form wrapper */
.admission-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.form-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.form-hero h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.form-subtitle {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Sections */
.form-section {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid var(--border);
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.subsection-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 1rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: -0.5rem 0 1rem;
}

/* Grid */
.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.form-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.form-group.full-width { grid-column: 1 / -1; }

.form-group.required > label::after {
    content: ' *';
    color: var(--error);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 71, 0.2);
}

.form-control.error { border-color: var(--error); }

textarea.form-control { resize: vertical; min-height: 72px; }

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.file-input { padding: 0.45rem; font-size: 0.85rem; }

.field-error {
    display: block;
    color: var(--error);
    font-size: 0.78rem;
    margin-top: 0.25rem;
}

/* Checkbox */
.checkbox-group { margin: 1rem 0; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold-dark);
}

.hidden { display: none !important; }

/* Weightage grid */
.weightage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Academic table */
.academic-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.academic-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.academic-table th {
    background: var(--surface);
    padding: 0.6rem 0.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.academic-table td {
    padding: 0.5rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.academic-table tr:last-child td { border-bottom: none; }

.academic-table .form-control {
    padding: 0.4rem 0.5rem;
    font-size: 0.82rem;
    min-width: 70px;
}

/* Declaration */
.declaration-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.declaration-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Instructions */
.instructions-section {
    background: #faf6ee;
}

.instructions-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--warning);
}

.instructions-list {
    padding-left: 1.25rem;
    font-size: 0.88rem;
    color: var(--text);
}

.instructions-list li { margin-bottom: 0.4rem; }

.disclaimer-notice {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: var(--white);
    border-left: 4px solid var(--warning);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Alerts */
.alert {
    padding: 0.85rem 1.25rem;
    margin: 1rem 2rem 0;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.alert-error {
    background: #fef2f2;
    color: var(--error);
    border: 1px solid #fecaca;
}

.alert-success {
    background: #ecfdf5;
    color: var(--success);
    border: 1px solid #a7f3d0;
}

.alert-info {
    background: #eff6ff;
    color: var(--navy);
    border: 1px solid #bfdbfe;
}

.alert-dev {
    background: #fefce8;
    color: #854d0e;
    border: 1px dashed var(--gold);
    font-family: monospace;
}

.alert-dev code {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

/* Buttons */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover { background: var(--gold-dark); color: var(--white); }

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover { background: var(--surface); }

.btn:active { transform: scale(0.98); }

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success page */
.success-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #d1fae5;
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
}

.success-card h2 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.success-message {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.success-details {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.detail-row:last-child { border-bottom: none; }

.detail-label { color: var(--text-muted); }

.detail-value { font-weight: 600; }

.reg-number {
    color: var(--gold-dark);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

.success-instructions { text-align: left; margin-bottom: 1.5rem; }

.success-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.88);
    padding: 0 0 1.5rem;
    margin-top: auto;
    font-size: 0.85rem;
}

.footer-accent-line {
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    margin-bottom: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-name-hindi {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.footer-name-english {
    font-family: var(--font-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--gold);
    font-size: 0.78rem;
    line-height: 1.5;
}

.footer-contact-block h3,
.footer-links-block h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-contact-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.footer-contact-list a,
.footer-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact-list a:hover,
.footer-links a:hover { color: var(--gold-light); }

.footer-links li { margin-bottom: 0.45rem; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.75;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid.cols-2,
    .form-grid.cols-3,
    .weightage-grid {
        grid-template-columns: 1fr;
    }

    .form-section { padding: 1.25rem 1rem; }
    .form-actions { padding: 1.25rem 1rem; flex-direction: column; }
    .form-actions .btn { width: 100%; }
    .header-top-inner { flex-direction: column; align-items: flex-start; }
    .brand-row { gap: 0.75rem; }
    .brand-name-hindi,
    .brand-name-english { font-size: 0.95rem; max-width: none; }
    .header-nav-inner { flex-direction: column; align-items: flex-start; }
    .footer-main { grid-template-columns: 1fr; }
}

@media print {
    .site-header, .site-footer, .form-actions, .success-actions { display: none; }
    .admission-form-wrapper, .success-card { box-shadow: none; }
}

/* ============================================================
   Landing Page
   ============================================================ */
.landing-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.landing-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    color: var(--white);
    border-bottom: 4px solid var(--gold);
}

.landing-session {
    display: inline-block;
    background: rgba(196, 154, 71, 0.25);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 154, 71, 0.4);
    margin-bottom: 1rem;
}

.landing-headline {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.landing-subheadline {
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.landing-intro {
    font-size: 0.92rem;
    opacity: 0.92;
    max-width: 720px;
    line-height: 1.7;
}

.landing-page > .alert {
    margin: 0;
}

.landing-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.action-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.action-card:hover {
    box-shadow: var(--shadow-md);
}

.action-card-apply {
    border-top: 4px solid var(--gold);
}

.action-card-login {
    border-top: 4px solid var(--navy);
}

.action-card-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--navy);
}

.action-card-icon svg {
    width: 22px;
    height: 22px;
}

.action-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.action-card > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.btn-block {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
}

.btn-arrow {
    width: 18px;
    height: 18px;
}

.action-note {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.65rem;
}

.login-form { margin-top: 0.25rem; }

.login-form .form-group { margin-bottom: 1rem; }

.field-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.otp-input {
    font-size: 1.25rem;
    letter-spacing: 0.35em;
    text-align: center;
    font-weight: 600;
}

.resend-form {
    text-align: center;
    margin-top: 0.75rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--navy);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    padding: 0;
}

.btn-link:hover { color: var(--gold-dark); }

.logged-in-banner {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.logged-in-banner p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.logged-in-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.info-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.info-panel h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.process-steps {
    list-style: none;
    padding: 0;
    counter-reset: step;
}

.process-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.process-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps li strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy-dark);
    margin-bottom: 0.15rem;
}

.process-steps li span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.doc-list {
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: var(--text);
}

.doc-list li { margin-bottom: 0.45rem; line-height: 1.5; }

.info-panel-contact p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.help-contact {
    list-style: none;
    padding: 0;
}

.help-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.help-contact svg {
    width: 16px;
    height: 16px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.help-contact a {
    color: var(--navy);
    text-decoration: none;
}

.help-contact a:hover { text-decoration: underline; }

/* Dashboard */
.dashboard-page {
    max-width: 560px;
    margin: 0 auto;
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border-top: 4px solid var(--gold);
}

.dashboard-welcome h2 {
    font-family: var(--font-serif);
    color: var(--navy-dark);
    margin-bottom: 0.35rem;
}

.dashboard-welcome p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.dashboard-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.dashboard-action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), background var(--transition);
}

.dashboard-action-item:hover {
    border-color: var(--gold);
    background: #faf6ee;
}

.dashboard-action-icon {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.dashboard-action-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy-dark);
}

.dashboard-action-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dashboard-footer-actions {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .landing-actions,
    .landing-info-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero { padding: 1.75rem 1.25rem; }
    .landing-headline { font-size: 1.4rem; }
    .header-nav-right { width: 100%; justify-content: flex-start; }
}
