/* ===========================
   RHEINTAL STADTPORTAL — CSS
   =========================== */

   :root {
    --primary: #1a3557;
    --primary-light: #234a7a;
    --accent: #c8a84b;
    --accent-light: #e4c96b;
    --bg: #f4f2ee;
    --bg-white: #fafaf8;
    --text: #1c1c1c;
    --text-muted: #5a5a5a;
    --text-light: #8a8a8a;
    --border: #ddd8cc;
    --card-bg: #ffffff;
    --discord: #5865F2;
    --success: #2d7a4f;
    --danger: #b03030;
    --shadow: 0 4px 24px rgba(26,53,87,0.10);
    --shadow-lg: 0 12px 48px rgba(26,53,87,0.16);
    --radius: 8px;
    --radius-lg: 16px;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
  }
  
  a { text-decoration: none; color: inherit; }
  
  img { max-width: 100%; display: block; }
  
  .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  
  /* ===== HEADER ===== */
  .site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--primary);
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  }
  
  .header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  
  .logo-block { display: flex; align-items: center; gap: 14px; }
  
  .wappen-wrap {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
  }
  .wappen-wrap img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
  .wappen-placeholder {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent); display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 22px;
  }
  
  .city-name { display: flex; flex-direction: column; line-height: 1.1; }
  .city-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 500; }
  .city-main { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; font-weight: 700; }
  
  .main-nav { display: flex; align-items: center; gap: 4px; }
  
  .nav-link {
    color: rgba(255,255,255,0.80); font-size: 14px; font-weight: 500;
    padding: 8px 14px; border-radius: 6px; transition: all 0.2s;
    letter-spacing: 0.3px;
  }
  .nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.10); }
  
  .nav-btn-login {
    background: var(--discord); color: #fff; padding: 9px 18px;
    border-radius: 6px; font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 8px; margin-left: 12px;
    transition: background 0.2s; letter-spacing: 0.3px;
  }
  .nav-btn-login:hover { background: #4752c4; }
  
  .burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
  
  .mobile-nav {
    display: none; flex-direction: column;
    background: var(--primary-light); padding: 12px 24px;
  }
  .mobile-nav a { color: rgba(255,255,255,0.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav.open { display: flex; }
  
  /* ===== HERO ===== */
  .hero {
    position: relative; min-height: 92vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0e2340 0%, #1a3557 40%, #1f4a7d 70%, #0a1e36 100%);
  }
  
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(200,168,75,0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  }
  
  /* Decorative lines */
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    );
  }
  
  .hero-content {
    position: relative; text-align: center; padding: 60px 32px;
    max-width: 760px; animation: heroFadeUp 0.9s ease both;
  }
  
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero-wappen {
    width: 90px; height: 90px; margin: 0 auto 32px;
  }
  .hero-wappen img { width: 90px; height: 90px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(200,168,75,0.4)); }
  .hero-wappen-ph {
    width: 90px; height: 90px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 40px;
    box-shadow: 0 4px 24px rgba(200,168,75,0.4);
  }
  
  .hero-sub {
    color: var(--accent); font-size: 13px; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 12px; font-weight: 500;
  }
  
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 20px;
  }
  .hero-title em { font-style: italic; color: var(--accent); }
  
  .hero-desc {
    font-size: 18px; color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 40px;
    font-weight: 300;
  }
  
  .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  
  .btn-primary {
    background: var(--accent); color: var(--primary);
    padding: 14px 32px; border-radius: 8px; font-weight: 700;
    font-size: 15px; letter-spacing: 0.3px; transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(200,168,75,0.35);
  }
  .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,75,0.45); }
  
  .btn-secondary {
    background: rgba(255,255,255,0.10); color: #fff;
    padding: 14px 32px; border-radius: 8px; font-weight: 600;
    font-size: 15px; border: 1px solid rgba(255,255,255,0.20);
    display: flex; align-items: center; gap: 8px; transition: all 0.2s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
  
  .hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.4); font-size: 18px;
    animation: bounce 2s infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }
  
  /* ===== QUICKACCESS ===== */
  .quickaccess { padding: 96px 0; }
  
  .section-label {
    color: var(--accent); font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase; font-weight: 600; margin-bottom: 12px;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px); font-weight: 700;
    color: var(--primary); margin-bottom: 12px;
  }
  
  .section-sub { color: var(--text-muted); font-size: 17px; max-width: 560px; margin-bottom: 56px; }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
  
  .service-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    display: flex; align-items: flex-start; gap: 20px;
    transition: all 0.25s; cursor: pointer;
    box-shadow: 0 2px 8px rgba(26,53,87,0.05);
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--accent); transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.25s;
  }
  .service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
  .service-card:hover::before { transform: scaleY(1); }
  
  .service-card--highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent; color: #fff;
  }
  .service-card--highlight .service-icon { background: rgba(255,255,255,0.15); color: var(--accent-light); }
  .service-card--highlight h3 { color: #fff; }
  .service-card--highlight p { color: rgba(255,255,255,0.75); }
  .service-card--highlight .service-arrow { color: rgba(255,255,255,0.5); }
  .service-card--highlight::before { background: var(--accent-light); }
  
  .service-icon {
    width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px;
    background: #eef3fa; color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    transition: all 0.25s;
  }
  .service-card:hover .service-icon { background: var(--primary); color: var(--accent); }
  .service-card--highlight:hover .service-icon { background: rgba(255,255,255,0.25); }
  
  .service-body { flex: 1; }
  .service-body h3 { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
  .service-body p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
  
  .service-arrow { color: var(--text-light); font-size: 14px; margin-top: 4px; transition: transform 0.2s; }
  .service-card:hover .service-arrow { transform: translateX(4px); color: var(--accent); }
  
  /* ===== INFO BAND ===== */
  .info-band { background: var(--primary); padding: 48px 0; }
  
  .info-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
  
  .info-item { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.85); }
  .info-item i { font-size: 28px; color: var(--accent); }
  .info-item strong { display: block; color: #fff; font-size: 15px; font-weight: 600; }
  .info-item span { font-size: 13px; color: rgba(255,255,255,0.65); }
  
  .info-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.12); }
  
  /* ===== FOOTER ===== */
  .site-footer { background: #0e2340; color: rgba(255,255,255,0.75); padding: 64px 0 0; }
  
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
  }
  
  .footer-brand .footer-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  }
  .footer-logo img { width: 40px; height: 40px; object-fit: contain; }
  .footer-logo span { font-family: 'Playfair Display', serif; font-size: 20px; color: #fff; }
  .footer-wappen-ph {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent); display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 18px;
  }
  .footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
  
  .footer-links h4 { color: #fff; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
  .footer-links a { display: block; color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--accent); }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px;
  }
  
  /* ===== PAGE HEADER ===== */
  .page-hero {
    background: linear-gradient(135deg, #0e2340 0%, #1a3557 60%, #1f4a7d 100%);
    padding: 64px 0 56px; text-align: center;
  }
  .page-hero .page-hero-icon { font-size: 48px; color: var(--accent); margin-bottom: 16px; }
  .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 48px); color: #fff; font-weight: 700; margin-bottom: 12px; }
  .page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 600px; margin: 0 auto; }
  .breadcrumb { color: rgba(255,255,255,0.4); font-size: 13px; margin-bottom: 20px; }
  .breadcrumb a { color: var(--accent); }
  .breadcrumb a:hover { text-decoration: underline; }
  
  /* ===== PAGE CONTENT ===== */
  .page-content { padding: 72px 0; }
  
  /* ===== FORM STYLES ===== */
  .form-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 48px;
    box-shadow: var(--shadow); max-width: 760px; margin: 0 auto;
  }
  
  .form-section-title {
    font-family: 'Playfair Display', serif; font-size: 20px;
    color: var(--primary); margin-bottom: 24px; padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
  }
  
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-grid.full { grid-template-columns: 1fr; }
  
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.span-2 { grid-column: span 2; }
  
  label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.3px; text-transform: uppercase; }
  
  input, select, textarea {
    background: var(--bg); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 11px 14px;
    font-family: inherit; font-size: 15px; color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,53,87,0.08);
  }
  textarea { resize: vertical; min-height: 120px; }
  
  .form-hint { font-size: 12px; color: var(--text-light); }
  
  .form-submit {
    background: var(--primary); color: #fff; border: none;
    padding: 14px 40px; border-radius: 8px; font-size: 16px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; font-family: inherit; margin-top: 8px;
    letter-spacing: 0.3px;
  }
  .form-submit:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow); }
  
  /* ===== TABLE ===== */
  .data-table {
    width: 100%; border-collapse: collapse; background: var(--card-bg);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
  }
  .data-table thead { background: var(--primary); color: #fff; }
  .data-table th { padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
  .data-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); }
  .data-table tr:last-child td { border-bottom: none; }
  .data-table tr:hover td { background: #f9f7f3; }
  
  .badge {
    display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600;
  }
  .badge-success { background: #e3f5ec; color: var(--success); }
  .badge-pending { background: #fef5e3; color: #a06000; }
  .badge-danger { background: #fde8e8; color: var(--danger); }
  
  /* ===== SEARCH BAR ===== */
  .search-bar {
    display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap;
  }
  .search-bar input { flex: 1; min-width: 240px; }
  .search-bar select { min-width: 160px; }
  .search-btn {
    background: var(--primary); color: #fff; border: none;
    padding: 11px 24px; border-radius: var(--radius); font-size: 15px;
    font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s;
  }
  .search-btn:hover { background: var(--primary-light); }
  
  /* ===== LOGIN PAGE ===== */
  .login-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0e2340 0%, #1a3557 60%, #0a1e36 100%);
    padding: 32px;
  }
  .login-card {
    background: rgba(255,255,255,0.04); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
    padding: 56px 48px; text-align: center; max-width: 440px; width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  }
  .login-wappen { width: 80px; height: 80px; margin: 0 auto 24px; }
  .login-wappen img { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(200,168,75,0.5)); }
  .login-wappen-ph {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 36px;
  }
  .login-card h1 { font-family: 'Playfair Display', serif; font-size: 32px; color: #fff; margin-bottom: 6px; }
  .login-card .login-subtitle { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
  .discord-btn {
    background: var(--discord); color: #fff; border: none; width: 100%;
    padding: 16px; border-radius: 10px; font-size: 16px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px;
    font-family: inherit; transition: all 0.2s; letter-spacing: 0.3px;
  }
  .discord-btn:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88,101,242,0.4); }
  .discord-btn i { font-size: 22px; }
  .login-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 20px; line-height: 1.5; }
  .login-back { display: block; margin-top: 28px; color: rgba(255,255,255,0.4); font-size: 13px; transition: color 0.2s; }
  .login-back:hover { color: var(--accent); }
  
  /* ===== DASHBOARD ===== */
  .dashboard-layout { display: flex; min-height: 100vh; }
  
  .sidebar {
    width: 260px; flex-shrink: 0; background: var(--primary);
    display: flex; flex-direction: column;
    position: sticky; top: 0; height: 100vh; overflow-y: auto;
  }
  .sidebar-brand {
    padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; gap: 12px;
  }
  .sidebar-brand img { width: 36px; height: 36px; object-fit: contain; }
  .sidebar-brand-ph {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent); display: flex; align-items: center;
    justify-content: center; color: var(--primary); font-size: 16px;
  }
  .sidebar-brand span { font-family: 'Playfair Display', serif; font-size: 18px; color: #fff; }
  
  .sidebar-section { padding: 20px 12px 8px; }
  .sidebar-section-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); padding: 0 8px; margin-bottom: 6px; }
  
  .sidebar-link {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
    padding: 10px 12px; border-radius: 8px; margin-bottom: 2px; transition: all 0.2s;
  }
  .sidebar-link i { width: 20px; text-align: center; font-size: 16px; }
  .sidebar-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .sidebar-link.active { background: rgba(200,168,75,0.18); color: var(--accent); }
  
  .sidebar-footer { margin-top: auto; padding: 16px 12px; border-top: 1px solid rgba(255,255,255,0.08); }
  .sidebar-user {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7); font-size: 13px;
  }
  .sidebar-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--discord); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; font-weight: 700; flex-shrink: 0;
  }
  .sidebar-user-info strong { display: block; color: #fff; font-size: 14px; }
  .sidebar-logout { color: rgba(255,255,255,0.4); font-size: 12px; cursor: pointer; transition: color 0.2s; }
  .sidebar-logout:hover { color: #ff6b6b; }
  
  .dashboard-main { flex: 1; background: var(--bg); overflow-y: auto; }
  
  .dashboard-topbar {
    background: var(--bg-white); border-bottom: 1px solid var(--border);
    padding: 20px 40px; display: flex; align-items: center; justify-content: space-between;
  }
  .dashboard-topbar h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--primary); }
  .topbar-actions { display: flex; gap: 12px; align-items: center; }
  
  .dashboard-body { padding: 40px; }
  
  /* STATS */
  .stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
  
  .stat-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: var(--shadow);
  }
  .stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
  }
  .stat-icon.blue { background: #eef3fa; color: var(--primary); }
  .stat-icon.gold { background: #fef8e8; color: #a07800; }
  .stat-icon.green { background: #e3f5ec; color: var(--success); }
  .stat-icon.red { background: #fde8e8; color: var(--danger); }
  .stat-value { font-size: 28px; font-weight: 700; color: var(--primary); line-height: 1; }
  .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
  
  /* DASHBOARD GRID */
  .dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
  
  .dash-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
  }
  .dash-card-title {
    font-size: 16px; font-weight: 600; color: var(--primary);
    margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between;
  }
  .dash-card-title a { font-size: 13px; color: var(--accent); font-weight: 500; }
  
  /* ALERTS */
  .alert {
    border-radius: var(--radius); padding: 14px 18px; font-size: 14px; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .alert-info { background: #eef3fa; color: var(--primary); border: 1px solid #c4d5ea; }
  .alert-success { background: #e3f5ec; color: var(--success); border: 1px solid #a8dfc0; }
  .alert-warning { background: #fef5e3; color: #a06000; border: 1px solid #f0d080; }
  .alert-error { background: #fde8e8; color: var(--danger); border: 1px solid #f0b0b0; }
  
  /* STATUS CHECK */
  .role-check {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0e2340, #1a3557);
  }
  .role-check-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 48px; text-align: center; max-width: 420px;
  }
  .role-check-card .icon { font-size: 56px; margin-bottom: 20px; }
  .role-check-card h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; margin-bottom: 10px; }
  .role-check-card p { color: rgba(255,255,255,0.55); margin-bottom: 28px; }
  
  /* ===== JOBS ===== */
  .job-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 32px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; box-shadow: var(--shadow); margin-bottom: 16px;
    transition: all 0.2s;
  }
  .job-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
  .job-dept { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
  .job-title { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
  .job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .job-tag { background: #eef3fa; color: var(--primary); font-size: 12px; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
  .job-apply { background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background 0.2s; white-space: nowrap; }
  .job-apply:hover { background: var(--primary-light); }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .main-nav { display: none; }
    .burger { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .dash-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.span-2 { grid-column: span 1; }
    .dashboard-body { padding: 24px; }
    .dashboard-topbar { padding: 16px 24px; }
    .services-grid { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 640px) {
    .container { padding: 0 20px; }
    .form-card { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .info-divider { display: none; }
    .sidebar { display: none; }
    .job-card { flex-direction: column; align-items: flex-start; }
  }