/* GLOSSARY SOFTTECH — LMS Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --gs-primary: #10B981;
  --gs-primary-dark: #059669;
  --gs-primary-darker: #047857;
  --gs-primary-light: #d1fae5;
  --gs-primary-50: #ecfdf5;
  --gs-secondary: #2C4A7C;
  --gs-secondary-dark: #1E3A5F;
  --gs-accent: #F59E0B;
  --gs-success: #22c55e;
  --gs-danger: #ef4444;
  --gs-warning: #f59e0b;
  --gs-info: #3b82f6;
  --gs-bg: #f8fafc;
  --gs-surface: #ffffff;
  --gs-border: #e2e8f0;
  --gs-text: #0f172a;
  --gs-text-muted: #64748b;
  --sidebar-width: 265px;
  --topbar-height: 64px;
  --navbar-height: 72px;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--gs-bg); color: var(--gs-text); }
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; }
a { text-decoration: none; }

/* ===== BOOTSTRAP OVERRIDES ===== */
.btn-primary { background: var(--gs-primary); border-color: var(--gs-primary); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background: var(--gs-primary-dark); border-color: var(--gs-primary-dark); }
.btn-outline-primary { color: var(--gs-primary); border-color: var(--gs-primary); }
.btn-outline-primary:hover { background: var(--gs-primary); border-color: var(--gs-primary); color: #fff; }
.btn-success { background: var(--gs-success); border-color: var(--gs-success); }
.btn-danger { background: var(--gs-danger); border-color: var(--gs-danger); }
.form-control:focus, .form-select:focus { border-color: var(--gs-primary); box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }

/* ===== NAVBAR ===== */
.gs-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gs-border);
  height: var(--navbar-height);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.gs-navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.gs-navbar .nav-link { color: #475569 !important; font-weight: 500; font-size: 0.9rem; padding: 0.4rem 0.75rem !important; border-radius: 6px; transition: color 0.2s; position: relative; background: transparent !important; }
.gs-navbar .nav-link:hover { color: var(--gs-primary) !important; }
.gs-navbar .nav-link.active { color: var(--gs-primary) !important; font-weight: 600; }
.gs-navbar .nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 0.75rem; right: 0.75rem; height: 2px; background: var(--gs-primary); border-radius: 2px; }
.gs-nav-brand img { height: 38px; }
.gs-nav-brand span { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; color: var(--gs-secondary); }

/* ===== PAGE HERO ===== */
.gs-page-hero {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #1E3A5F 100%);
  padding: 5.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.gs-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(16,185,129,0.15), transparent 60%);
}

/* ===== HERO SECTION ===== */
.gs-hero {
  background: linear-gradient(135deg, #064e3b 0%, #047857 40%, #1E3A5F 100%);
  padding: 6.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}
.gs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 45%, rgba(16,185,129,0.18), transparent 55%);
}
.gs-hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.15; color: #fff; }
.gs-hero-title .highlight { color: #34d399; }
.gs-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.82); line-height: 1.75; }
.gs-hero-stat-val { font-size: 1.625rem; font-weight: 700; color: #fff; }
.gs-hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.gs-hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
}
.gs-float-badge {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  margin: 0.25rem;
}

/* ===== SECTIONS ===== */
.gs-section { padding: 5rem 0; }
.gs-section-sm { padding: 3rem 0; }
.gs-section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 0.75rem; color: #0f172a; }
.gs-section-subtitle { text-align: center; color: var(--gs-text-muted); font-size: 1.05rem; margin-bottom: 3rem; }

/* ===== FEATURE CARDS ===== */
.gs-feature-card {
  background: #fff;
  border: 1px solid var(--gs-border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: all 0.25s;
}
.gs-feature-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.09); transform: translateY(-3px); }
.gs-feature-icon {
  width: 56px; height: 56px;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ===== COURSE CARDS ===== */
.gs-course-card {
  background: #fff;
  border: 1px solid var(--gs-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gs-course-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.12); transform: translateY(-3px); }
.gs-course-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
}
.gs-course-body { padding: 1.25rem; flex: 1; }
.gs-course-footer {
  padding: 0.875rem 1.25rem;
  border-top: 1px solid var(--gs-border);
  display: flex; align-items: center; justify-content: space-between;
}
.gs-course-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--gs-text-muted); margin-top: 0.75rem; }

/* ===== TESTIMONIALS ===== */
.gs-testimonial { background: #fff; border: 1px solid var(--gs-border); border-radius: 1rem; padding: 1.75rem; height: 100%; }
.gs-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 1px; }

/* ===== CTA BANNER ===== */
.gs-cta {
  background: linear-gradient(135deg, var(--gs-primary-dark), var(--gs-secondary));
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gs-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06), transparent 55%);
}
.gs-cta h2 { font-size: 2rem; font-weight: 700; position: relative; }
.gs-cta p { font-size: 1rem; opacity: 0.85; position: relative; }
.gs-cta .btn-white { background: #fff; color: var(--gs-primary); font-weight: 600; border: none; }
.gs-cta .btn-white:hover { background: #f0fdf4; }
.gs-cta .btn-outline-white { border: 2px solid rgba(255,255,255,0.45); color: #fff; background: transparent; }
.gs-cta .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
.gs-footer {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 1.5rem;
}
.gs-footer-heading {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.gs-footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.gs-footer-link:hover { color: #fff; }
.gs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== AUTH ===== */
.gs-auth { min-height: 100vh; display: flex; }
.gs-auth-brand {
  width: 440px;
  background: linear-gradient(135deg, #064e3b, #047857 50%, #1E3A5F);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.gs-auth-form {
  flex: 1;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  overflow-y: auto;
}
.gs-auth-wrapper { width: 100%; max-width: 480px; }
.gs-role-btn {
  border: 1.5px solid var(--gs-border);
  border-radius: 0.625rem;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
  background: #fff;
  user-select: none;
}
.gs-role-btn.active {
  border-color: var(--gs-primary);
  background: var(--gs-primary-50);
  color: var(--gs-primary-dark);
  font-weight: 600;
}

/* ===== DASHBOARD SIDEBAR ===== */
.gs-sidebar {
  width: var(--sidebar-width);
  background: linear-gradient(180deg, #0C2420 0%, #0F172A 100%);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.gs-sidebar-header {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.gs-sidebar-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.2;
}
.gs-sidebar-nav { padding: 0.75rem; flex: 1; }
.gs-sidebar-section-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  padding: 0.875rem 0.625rem 0.375rem;
  font-weight: 700;
}
.gs-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2px;
  transition: all 0.2s;
}
.gs-sidebar-link:hover { background: rgba(16,185,129,0.12); color: #6ee7b7 !important; }
.gs-sidebar-link.active { background: rgba(16,185,129,0.18); color: #34d399 !important; }
.gs-sidebar-link .icon { font-size: 1.1rem; width: 22px; text-align: center; flex-shrink: 0; }
.gs-sidebar-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.gs-sidebar-user { display: flex; align-items: center; gap: 0.75rem; }
.gs-sidebar-user-name { font-size: 0.875rem; font-weight: 600; color: #fff; }
.gs-sidebar-user-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ===== DASHBOARD LAYOUT ===== */
.gs-dashboard { display: flex; min-height: 100vh; }
.gs-main { margin-left: var(--sidebar-width); flex: 1; display: flex; flex-direction: column; }
.gs-topbar {
  height: var(--topbar-height);
  background: #fff;
  border-bottom: 1px solid var(--gs-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.gs-topbar-title { font-weight: 700; font-size: 1rem; color: #0f172a; font-family: 'Plus Jakarta Sans', sans-serif; }
.gs-content { padding: 2rem 1.5rem; flex: 1; }
.gs-page-header { margin-bottom: 1.75rem; }
.gs-page-header h1 { font-size: 1.625rem; font-weight: 700; color: #0f172a; margin-bottom: 0.25rem; }
.gs-page-header p { color: var(--gs-text-muted); font-size: 0.9rem; margin: 0; }

/* ===== STAT CARDS ===== */
.gs-stat-card {
  background: #fff;
  border: 1px solid var(--gs-border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gs-stat-icon {
  width: 52px; height: 52px;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.gs-stat-label { font-size: 0.8rem; color: var(--gs-text-muted); font-weight: 500; margin-bottom: 2px; }
.gs-stat-value { font-size: 1.75rem; font-weight: 700; color: #0f172a; line-height: 1; }
.gs-stat-change { font-size: 0.75rem; font-weight: 500; margin-top: 2px; }

/* ===== WELCOME BANNER ===== */
.gs-welcome {
  background: linear-gradient(135deg, var(--gs-primary-dark), var(--gs-secondary-dark));
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.gs-welcome::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05), transparent 50%);
}
.gs-welcome h2 { font-size: 1.375rem; margin-bottom: 0.25rem; position: relative; }
.gs-welcome p { font-size: 0.9rem; opacity: 0.85; margin: 0; position: relative; }

/* ===== TABLES ===== */
.gs-table-wrapper { background: #fff; border-radius: 1rem; border: 1px solid var(--gs-border); overflow: hidden; }
.gs-table-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gs-border);
  display: flex; align-items: center; justify-content: space-between;
}
.gs-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.gs-table thead th {
  background: #f8fafc;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #475569;
  text-align: left;
  border-bottom: 1px solid var(--gs-border);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gs-table tbody td { padding: 0.875rem 1rem; border-bottom: 1px solid #f1f5f9; }
.gs-table tbody tr:hover td { background: #f8fafc; }
.gs-table tbody tr:last-child td { border-bottom: none; }

/* ===== AVATAR ===== */
.gs-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gs-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.gs-avatar-lg { width: 52px; height: 52px; font-size: 1.1rem; }
.gs-avatar-xl { width: 72px; height: 72px; font-size: 1.5rem; }

/* ===== BADGES ===== */
.gs-badge {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}
.gs-badge-success { background: #dcfce7; color: #16a34a; }
.gs-badge-warning { background: #fef3c7; color: #d97706; }
.gs-badge-danger { background: #fee2e2; color: #dc2626; }
.gs-badge-info { background: #dbeafe; color: #2563eb; }
.gs-badge-primary { background: var(--gs-primary-light); color: var(--gs-primary-dark); }
.gs-badge-neutral { background: #f1f5f9; color: #475569; }
.gs-badge-secondary { background: #eff6ff; color: var(--gs-secondary); }

/* ===== CHART BARS ===== */
.gs-chart { display: flex; align-items: flex-end; gap: 8px; height: 180px; padding: 0 0.5rem; }
.gs-bar-wrap { display: flex; flex-direction: column; align-items: center; flex: 1; gap: 6px; height: 100%; justify-content: flex-end; }
.gs-bar { border-radius: 4px 4px 0 0; width: 100%; transition: height 0.5s ease; min-height: 8px; }
.gs-bar-label { font-size: 0.72rem; color: var(--gs-text-muted); font-weight: 500; }

/* ===== PROGRESS ===== */
.gs-progress { height: 8px; background: #e2e8f0; border-radius: 50px; overflow: hidden; }
.gs-progress-bar { height: 100%; background: var(--gs-primary); border-radius: 50px; transition: width 0.6s ease; }

/* ===== NOTIFICATIONS ===== */
.gs-notif { display: flex; gap: 0.75rem; padding: 0.875rem 1rem; border-bottom: 1px solid #f1f5f9; }
.gs-notif.unread { background: #f0fdf4; }
.gs-notif-icon { width: 36px; height: 36px; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.gs-notif-text { font-size: 0.85rem; font-weight: 500; }
.gs-notif-time { font-size: 0.75rem; color: var(--gs-text-muted); }

/* ===== CARD COMPONENT ===== */
.gs-card { background: #fff; border: 1px solid var(--gs-border); border-radius: 1rem; overflow: hidden; }
.gs-card-header { padding: 1rem 1.5rem; border-bottom: 1px solid var(--gs-border); display: flex; align-items: center; justify-content: space-between; }
.gs-card-body { padding: 1.5rem; }
.gs-card-hover { transition: all 0.25s; }
.gs-card-hover:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.09); transform: translateY(-2px); }

/* ===== FILTER (Courses page) ===== */
.gs-filter-section { margin-bottom: 1.5rem; }
.gs-filter-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gs-text-muted); margin-bottom: 0.625rem; }
.gs-filter-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0; font-size: 0.875rem; cursor: pointer; }
.gs-filter-option input { accent-color: var(--gs-primary); }

/* ===== SEARCH ===== */
.gs-search-wrap { position: relative; }
.gs-search-wrap .search-icon { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); z-index: 2; }
.gs-search-wrap input { padding-left: 2.5rem; }

/* ===== UPLOAD ZONE ===== */
.gs-upload-zone {
  border: 2px dashed var(--gs-border);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  background: #f8fafc;
  transition: all 0.2s;
  cursor: pointer;
}
.gs-upload-zone:hover { border-color: var(--gs-primary); background: var(--gs-primary-50); }

/* ===== ATTENDANCE ===== */
.gs-att-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(38px, 1fr)); gap: 4px; }
.gs-att-cell { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; }
.gs-att-present { background: #dcfce7; color: #16a34a; }
.gs-att-absent { background: #fee2e2; color: #dc2626; }
.gs-att-late { background: #fef3c7; color: #d97706; }

/* ===== STEP ITEMS ===== */
.gs-step-wrap { width: 72px; height: 72px; border-radius: 50%; background: var(--gs-primary-50); display: flex; align-items: center; justify-content: center; font-size: 2rem; position: relative; margin: 0 auto 1rem; }
.gs-step-num { position: absolute; top: -4px; right: -4px; width: 24px; height: 24px; border-radius: 50%; background: var(--gs-primary); color: #fff; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* ===== SIDEBAR OVERLAY ===== */
.gs-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 99; }
.gs-overlay.show { display: block; }

/* ===== MODAL ===== */
.gs-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.gs-modal { background: #fff; border-radius: 1rem; width: 100%; max-width: 580px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.gs-modal-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gs-border); display: flex; align-items: center; justify-content: space-between; }
.gs-modal-body { padding: 1.5rem; }
.gs-modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--gs-border); display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; }

/* ===== PROFILE PAGE ===== */
.gs-profile-cover { height: 180px; background: linear-gradient(135deg, var(--gs-primary-dark), var(--gs-secondary)); border-radius: 1rem 1rem 0 0; }
.gs-profile-card { border-radius: 1rem; border: 1px solid var(--gs-border); background: #fff; overflow: hidden; }
.gs-profile-avatar { width: 96px; height: 96px; border-radius: 50%; background: var(--gs-primary); color: #fff; font-size: 2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 4px solid #fff; margin-top: -48px; margin-left: 1.5rem; }
.gs-profile-completion { background: rgba(255,255,255,0.15); border-radius: 50px; height: 6px; flex: 1; overflow: hidden; }
.gs-profile-completion-fill { background: #fff; height: 100%; border-radius: 50px; }

/* ===== PROGRAM HEADER ===== */
.gs-program-hdr { padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid var(--gs-border); }

/* ===== TABS ===== */
.gs-tabs { display: flex; border-bottom: 2px solid var(--gs-border); gap: 0; }
.gs-tab { padding: 0.75rem 1.25rem; font-size: 0.875rem; font-weight: 500; color: var(--gs-text-muted); border: none; background: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.gs-tab:hover { color: var(--gs-primary); }
.gs-tab.active { color: var(--gs-primary); border-bottom-color: var(--gs-primary); font-weight: 600; }

/* ===== UTILS ===== */
.text-gs-primary { color: var(--gs-primary) !important; }
.text-gs-secondary { color: var(--gs-secondary) !important; }
.text-muted-gs { color: var(--gs-text-muted) !important; }
.bg-surface { background: #f8fafc !important; }
.bg-gs-primary-light { background: var(--gs-primary-50) !important; }
.rounded-xl { border-radius: 1rem !important; }
.shadow-card { box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important; }

/* ===== FAQ ===== */
.gs-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.gs-faq-answer.open { max-height: 200px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .gs-sidebar { transform: translateX(-100%); }
  .gs-sidebar.open { transform: translateX(0); }
  .gs-main { margin-left: 0 !important; }
  .gs-hero-title { font-size: 2.25rem; }
  .gs-auth-brand { display: none; }
}
@media (max-width: 767px) {
  .gs-section { padding: 3.5rem 0; }
  .gs-hero-title { font-size: 1.875rem; }
  .gs-content { padding: 1.25rem 1rem; }
  .gs-hero { min-height: auto; padding: 5rem 0 3rem; }
}
