/* ============================================================
   Global Smart Tech — Master Stylesheet
   Poppins Typography | Navy / Blue Brand Theme
   ============================================================ */

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

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:        #0a2540;
  --blue:        #0052cc;
  --blue-light:  #1a6be8;
  --ice:         #f4f7fc;
  --green:       #10b981;
  --amber:       #f97316;
  --red:         #ef4444;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 24px rgba(0,0,0,.12);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-full: 9999px;
  --transition:  all .3s ease;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--ice);
  color: var(--gray-800);
  line-height: 1.6;
  font-size: 15px;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ─── Utility ───────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.d-flex      { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.hidden { display: none !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.text-navy  { color: var(--navy); }
.text-blue  { color: var(--blue); }
.text-green { color: var(--green); }
.text-amber { color: var(--amber); }
.text-red   { color: var(--red); }
.text-muted { color: var(--gray-400); font-size: 0.875rem; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); text-align: center;
  white-space: nowrap;
}
.btn-primary   { background: var(--blue);  color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: #004ab5; border-color: #004ab5; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,82,204,.3); }
.btn-navy      { background: var(--navy);  color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: #071d30; color: #fff; transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-success   { background: var(--green); color: #fff; border-color: var(--green); }
.btn-success:hover { background: #0ea374; color: #fff; }
.btn-danger    { background: var(--red);   color: #fff; border-color: var(--red); }
.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-warning   { background: var(--amber); color: #fff; border-color: var(--amber); }
.btn-sm  { padding: 6px 14px; font-size: 0.82rem; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); }

/* ─── Alerts ────────────────────────────────────────────────── */
.alert {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 0.9rem; margin-bottom: 16px;
}
.alert-success { background: #ecfdf5; color: #065f46; border-left: 4px solid var(--green); }
.alert-danger  { background: #fef2f2; color: #991b1b; border-left: 4px solid var(--red); }
.alert-warning { background: #fffbeb; color: #92400e; border-left: 4px solid var(--amber); }
.alert-info    { background: #eff6ff; color: #1e40af; border-left: 4px solid var(--blue); }
.alert-icon    { font-size: 1rem; flex-shrink: 0; }

/* ─── Form Elements ──────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--gray-800);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,82,204,.12); }
.form-control::placeholder { color: var(--gray-400); }
.form-text { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600;
}
.badge-blue    { background: #dbeafe; color: #1d4ed8; }
.badge-green   { background: #d1fae5; color: #065f46; }
.badge-amber   { background: #fef3c7; color: #92400e; }
.badge-red     { background: #fee2e2; color: #991b1b; }
.badge-navy    { background: var(--navy); color: #fff; }
.badge-gray    { background: var(--gray-200); color: var(--gray-600); }

/* ─── Tables ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; background: #fff; }
thead th { background: var(--navy); color: #fff; padding: 13px 16px; text-align: left; font-weight: 600; font-size: 0.85rem; white-space: nowrap; }
tbody td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--gray-50); }

/* ─── Progress Bar ───────────────────────────────────────────── */
.progress { background: var(--gray-200); border-radius: var(--radius-full); height: 8px; overflow: hidden; }
.progress-bar { height: 100%; border-radius: var(--radius-full); background: linear-gradient(90deg, var(--blue), var(--blue-light)); transition: width .6s ease; }
.progress-bar.success { background: linear-gradient(90deg, var(--green), #34d399); }
.progress-bar.warning { background: linear-gradient(90deg, var(--amber), #fb923c); }

/* ─── Spinner ────────────────────────────────────────────────── */
.spinner {
  display: inline-block; width: 20px; height: 20px;
  border: 3px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Avatar ─────────────────────────────────────────────────── */
.avatar {
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--blue); flex-shrink: 0;
}
.avatar-sm  { width: 40px;  height: 40px; }
.avatar-md  { width: 80px;  height: 80px; }
.avatar-lg  { width: 120px; height: 120px; }
.avatar-xl  { width: 150px; height: 150px; }
.avatar-xxl { width: 180px; height: 180px; border: 4px solid var(--blue); box-shadow: 0 4px 10px rgba(0,0,0,.1); }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,.2);
  padding: 0 30px;
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-brand img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.3); }
.navbar-brand-text { color: #fff; font-weight: 700; font-size: 1.1rem; line-height: 1.2; }
.navbar-brand-text span { color: #a8c4e5; font-size: 0.75rem; font-weight: 400; display: block; }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a { color: rgba(255,255,255,.8); font-weight: 500; font-size: 0.9rem; padding: 8px 14px; border-radius: 6px; transition: var(--transition); }
.navbar-nav a:hover, .navbar-nav a.active { color: #fff; background: rgba(255,255,255,.1); }
.navbar-actions { display: flex; gap: 10px; }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
@media(max-width: 768px) {
  .navbar-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 16px; }
  .navbar-nav.open { display: flex; }
  .hamburger { display: block; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3461 50%, #0a2540 100%);
  color: #fff; padding: 100px 30px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); padding: 6px 18px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 24px; backdrop-filter: blur(10px); }
.hero h1 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: #60a5fa; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 60px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,.65); }

/* ─── Section ────────────────────────────────────────────────── */
.section { padding: 80px 30px; }
.section-alt { background: #fff; }
.section-title { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-subtitle { color: var(--gray-600); font-size: 1rem; max-width: 560px; }
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: var(--radius-full); margin: 14px 0 0; }
.section-header.center .divider { margin: 14px auto 0; }

/* ─── Course Cards ───────────────────────────────────────────── */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.course-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-card-img { height: 180px; background: linear-gradient(135deg, var(--navy), var(--blue)); display: flex; align-items: center; justify-content: center; position: relative; }
.course-card-img .course-icon { font-size: 3rem; opacity: .8; }
.course-badge { position: absolute; top: 12px; right: 12px; background: var(--amber); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); }
.course-body { padding: 20px; }
.course-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.course-desc  { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 14px; line-height: 1.5; }
.course-fee   { font-size: 1.2rem; font-weight: 700; color: var(--blue); }
.course-fee span { font-size: 0.8rem; color: var(--gray-400); font-weight: 400; }
.curriculum-list { margin: 10px 0; }
.curriculum-list li { font-size: 0.82rem; color: var(--gray-600); padding: 3px 0; padding-left: 16px; position: relative; }
.curriculum-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ─── Team Grid ──────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.team-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 32px 20px; text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--blue); margin: 0 auto 16px; }
.team-name  { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-title { font-size: 0.82rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.team-bio   { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }

/* ─── Hall of Fame ───────────────────────────────────────────── */
.hof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.hof-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 24px; text-align: center; transition: transform .3s ease; }
.hof-card:hover { transform: translateY(-4px); }
.hof-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--blue); margin: 0 auto 14px; }
.hof-marks   { font-size: 1.4rem; font-weight: 800; color: var(--green); }
.hof-job     { font-size: 0.8rem; color: var(--blue); font-weight: 600; }
.hof-badge   { margin: 10px auto 6px; }

/* ─── Owner Card ─────────────────────────────────────────────── */
.owner-card {
  background: linear-gradient(135deg, var(--navy), #0d3461);
  color: #fff; border-radius: var(--radius); padding: 40px 48px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.owner-card img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 4px solid var(--blue); box-shadow: 0 4px 10px rgba(0,0,0,.3); flex-shrink: 0; }
.owner-info .label { font-size: 0.8rem; letter-spacing: .08em; color: rgba(255,255,255,.55); font-weight: 600; text-transform: uppercase; }
.owner-info h2  { font-size: 1.8rem; font-weight: 800; margin: 6px 0 2px; }
.owner-info .position { color: #60a5fa; font-weight: 600; margin-bottom: 18px; }
.owner-info .quote-mark { font-size: 3rem; line-height: 1; color: rgba(255,255,255,.2); font-family: Georgia, serif; margin-bottom: -10px; }
.owner-info blockquote { font-size: 0.97rem; color: rgba(255,255,255,.85); line-height: 1.8; font-style: italic; }
.owner-sig { margin-top: 16px; font-weight: 700; font-style: normal; font-size: 1.1rem; }

/* ─── Contact ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 48px; height: 48px; background: var(--blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }

/* ─── Dashboard Layout ───────────────────────────────────────── */
.dashboard-wrapper { display: flex; min-height: 100vh; }
.sidebar {
  width: 260px; background: var(--navy); color: #fff;
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0; z-index: 900;
  overflow-y: auto; transition: transform .3s ease;
}
.sidebar-brand { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 12px; }
.sidebar-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.3); }
.sidebar-brand-text { font-size: 0.95rem; font-weight: 700; line-height: 1.3; }
.sidebar-brand-text span { color: rgba(255,255,255,.5); font-size: 0.75rem; font-weight: 400; display: block; }
.sidebar-section { padding: 8px 12px; margin-top: 8px; }
.sidebar-section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); padding: 0 8px; margin-bottom: 6px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  color: rgba(255,255,255,.75); font-size: 0.88rem; font-weight: 500;
  margin-bottom: 2px; transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.sidebar-nav a .nav-icon { font-size: 1.1rem; width: 22px; text-align: center; flex-shrink: 0; }
.sidebar-user { margin-top: auto; padding: 16px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 10px; }
.sidebar-user img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.3); }
.sidebar-user-info { flex: 1; overflow: hidden; }
.sidebar-user-info strong { display: block; font-size: 0.82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-info span  { font-size: 0.72rem; color: rgba(255,255,255,.5); }
.sidebar-logout { color: rgba(255,255,255,.5) !important; font-size: 1rem !important; padding: 6px !important; }
.sidebar-logout:hover { color: var(--red) !important; background: transparent !important; }
.dashboard-main { margin-left: 260px; flex: 1; min-height: 100vh; display: flex; flex-direction: column; }
.topbar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 0 28px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 800; box-shadow: var(--shadow-sm); }
.topbar-title { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.dashboard-content { padding: 28px; flex: 1; }
.page-header { margin-bottom: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.page-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
@media(max-width: 900px) { .sidebar { transform: translateX(-100%); } .sidebar.open { transform: none; } .dashboard-main { margin-left: 0; } }

/* ─── Stat Cards ─────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 28px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--blue); transition: var(--transition); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.stat-card.green { border-color: var(--green); } .stat-card.green .stat-value { color: var(--green); }
.stat-card.amber { border-color: var(--amber); } .stat-card.amber .stat-value { color: var(--amber); }
.stat-card.red   { border-color: var(--red);   } .stat-card.red   .stat-value { color: var(--red);   }

/* ─── Auth Pages ─────────────────────────────────────────────── */
.auth-page { min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, #0d3461 100%); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: #fff; border-radius: var(--radius); padding: 44px 40px; width: 100%; max-width: 460px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 3px solid var(--blue); }
.auth-logo h1 { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.auth-logo p  { font-size: 0.85rem; color: var(--gray-400); }
.auth-divider { text-align: center; position: relative; margin: 20px 0; color: var(--gray-400); font-size: 0.85rem; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--gray-200); }
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

/* ─── Payment Proof ──────────────────────────────────────────── */
.payment-account { background: var(--ice); border-radius: var(--radius-sm); padding: 16px 20px; border-left: 4px solid var(--blue); margin-bottom: 12px; }
.payment-account strong { display: block; color: var(--navy); font-weight: 700; }
.payment-account span   { font-size: 1.1rem; font-weight: 700; color: var(--blue); }

/* ─── Footer ─────────────────────────────────────────────────── */
footer.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 60px 30px 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media(max-width:768px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand img { height: 48px; width: 48px; border-radius: 50%; margin-bottom: 14px; border: 2px solid rgba(255,255,255,.3); }
.footer-brand h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a  { display: block; margin-bottom: 8px; font-size: 0.875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; text-align: center; font-size: 0.82rem; }
