/* ================================================================
   HYPERBOLA HOME TUTORIALS — DESIGN SYSTEM
   Theme: Precision Academic System (Teal #00A9B7 + Charcoal #4A4A4A)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --primary:        #00A9B7;
  --primary-dark:   #006972;
  --primary-light:  #8BF2ff;
  --primary-xlight: #E0F7FA;
  --secondary:      #4A4A4A;
  --dark:           #1A1C1D;
  --text:           #4A4A4A;
  --text-muted:     #6D797B;
  --bg:             #F9F9FA;
  --surface-dim:    #dadadb;
  --surface-tertiary:#F4F7F8;
  --white:          #FFFFFF;
  --border:         #BCC9CB;
  --success:        #00897B;
  --warning:        #F57C00;
  --danger:         #BA1A1A;
  --info:           #1E88E5;
  --shadow-sm:      0 2px 8px rgba(0,169,183,0.06);
  --shadow:         0 4px 20px rgba(0,169,183,0.08);
  --shadow-lg:      0 8px 40px rgba(0,169,183,0.12);
  --shadow-card:    0 2px 16px rgba(26,28,29,0.04);
  --radius-sm:      2px;
  --radius:         4px;
  --radius-lg:      8px;
  --radius-xl:      12px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sidebar-w:      260px;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--dark); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p { font-family: 'Inter', sans-serif; margin-bottom: 1rem; }
.text-primary   { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-muted     { color: var(--text-muted) !important; }
.text-white     { color: var(--white) !important; }
.text-center    { text-align: center; }
.fw-600  { font-weight: 600; }
.fw-700  { font-weight: 700; }
.fw-800  { font-weight: 800; }

/* ─── PUBLIC NAVBAR ──────────────────────────────────────────── */
.pub-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  padding: 0;
}
.pub-navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
}
.pub-navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.pub-navbar .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.pub-navbar .logo-text span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.pub-navbar .logo-text span:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pub-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pub-navbar .nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.pub-navbar .nav-links a:hover,
.pub-navbar .nav-links a.active {
  background: var(--primary-xlight);
  color: var(--primary-dark);
}
.pub-navbar .nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(0,169,183,0.30);
}
.pub-navbar .nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,169,183,0.40);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .pub-navbar .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .pub-navbar .nav-links.open { display: flex; }
  .pub-navbar .nav-links a { width: 100%; }
}

/* ─── HERO SECTION ───────────────────────────────────────────── */
.hero {
  padding: 130px 24px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
/* Interactive particle canvas sits behind hero content */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,169,183,0.10) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,105,114,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  z-index: 0;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.hero h1 {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-weight: 900;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.hero-stat-item {
  background: var(--primary-xlight);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.hero-stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.hero-stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}

/* ─── SECTION WRAPPER ────────────────────────────────────────── */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-alt { background: var(--white); }

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 40px 24px;
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-block .number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
}
.stat-block .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 600px) { .stats-bar-inner { grid-template-columns: repeat(2,1fr); } }

/* ─── FEATURE CARDS ──────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-xlight), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 58px; height: 58px;
  background: var(--primary-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1);
}
.feature-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ─── COURSE CARDS ───────────────────────────────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.course-card-top {
  padding: 32px 24px 20px;
  position: relative;
}
.course-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary-xlight);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.course-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,169,183,0.30);
}
.course-card h4 { margin-bottom: 6px; }
.course-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.course-card-bottom {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
}
.course-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 12px; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 14px rgba(0,169,183,0.30);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,169,183,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-xlight);
}
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-danger {
  background: #FEE2E2;
  color: var(--danger);
  border: 1px solid #FECACA;
}
.btn-danger:hover { background: var(--danger); color: var(--white); }
.btn-success {
  background: #D1FAE5;
  color: var(--success);
  border: 1px solid #A7F3D0;
}
.btn-success:hover { background: var(--success); color: var(--white); }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; justify-content: center; }

/* ─── FORM STYLES ────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,169,183,0.10);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

/* ─── CARDS & PANELS ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.card-body { padding: 24px; }

/* ─── TABLE STYLES ───────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.data-table th {
  background: var(--bg);
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--primary-xlight); }

/* ─── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-primary   { background: var(--primary-xlight); color: var(--primary-dark); }
.badge-success   { background: #D1FAE5; color: var(--success); }
.badge-warning   { background: #FEF3C7; color: var(--warning); }
.badge-danger    { background: #FEE2E2; color: var(--danger); }
.badge-secondary { background: #ECEFF1; color: var(--secondary); }

/* ─── ALERTS ─────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.alert-success { background: #D1FAE5; color: #065F46; border-left: 4px solid var(--success); }
.alert-error   { background: #FEE2E2; color: #991B1B; border-left: 4px solid var(--danger); }
.alert-info    { background: #DBEAFE; color: #1E40AF; border-left: 4px solid var(--info); }
.alert-warning { background: #FEF3C7; color: #92400E; border-left: 4px solid var(--warning); }

/* ─── GALLERY GRID ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,28,29,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: white; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; }

/* ─── ACHIEVEMENT CARDS ──────────────────────────────────────── */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.achievement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.achievement-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-xlight), var(--primary-light));
}
.achievement-body { padding: 20px; }
.achievement-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.achievement-body h4 { margin-bottom: 8px; font-size: 1rem; }
.achievement-body p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ─── EXAM TABLE ─────────────────────────────────────────────── */
.exam-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--primary-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h5 { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.contact-info-item p { color: var(--secondary); font-weight: 600; margin: 0; font-size: 0.95rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-text-footer span:first-child {
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  display: block;
}
.footer-brand .logo-text-footer span:last-child {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
  max-width: 260px;
}
.footer-col h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  padding: 80px 24px 40px;
  text-align: center;
}
.page-header h1 { color: white; margin-bottom: 8px; }
.page-header p  { color: rgba(255,255,255,0.7); margin: 0; }
.page-header-content { max-width: 600px; margin: 0 auto; }

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-section h2 { color: white; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }

/* ─── UTILITY ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mt-1 { margin-top: 4px; }   .mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }  .mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 40px; }
.mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px;} .mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 40px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 16px; }
.w-100 { width: 100%; }
.text-right { text-align: right; }
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state p { font-size: 0.95rem; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ─── LOGO SVG ───────────────────────────────────────────────── */
.logo-shield {
  width: 40px;
  height: 44px;
  flex-shrink: 0;
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ─── TEXT STATUS UTILITY CLASSES ────────────────────────────── */
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger  { color: var(--danger) !important; }

/* ─── LABEL UTILITY (JetBrains Mono) ─────────────────────────── */
.label-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}