/* CSS Design System for Examonit - Smart Online Assessment & Proctoring System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-blue: #0084FF;
  --primary-blue-hover: #0066CC;
  --nav-dark: #0F172A;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  
  /* Vibrant Accent Colors */
  --accent-cyan: #06B6D4;
  --accent-yellow: #FFB800;
  --accent-orange: #FF6B00;
  --accent-green: #10B981;
  --accent-pink: #EC4899;
  
  /* Soft Pastel Backdrops */
  --bg-cyan-light: #E0F2FE;
  --bg-yellow-light: #FEF3C7;
  --bg-orange-light: #FFEDD5;
  --bg-green-light: #D1FAE5;
  --bg-pink-light: #FCE7F3;
  --bg-blue-light: #E0E7FF;

  --border-color: #E2E8F0;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ----------------------------------------------------
   1. TOP UTILITY BAR
---------------------------------------------------- */
.top-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.top-bar-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-selector {
  cursor: pointer;
  font-weight: 500;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.support-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-right-socials {
  display: flex;
  gap: 16px;
}

.top-right-socials a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.top-right-socials a:hover {
  color: var(--primary-blue);
}

/* ----------------------------------------------------
   2. MAIN HEADER & NAVIGATION
---------------------------------------------------- */
.main-header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  padding: 16px 0;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-blue);
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.logo-icon.light {
  background: rgba(255,255,255,0.15);
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--nav-dark);
  letter-spacing: -0.5px;
}

.brand-name.light {
  color: #FFFFFF;
}

.brand-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login-header {
  background: var(--primary-blue);
  color: #FFFFFF;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 132, 255, 0.25);
  transition: all 0.2s ease;
}

.btn-login-header:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-1px);
}

.btn-dash {
  background: #EFF6FF;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
}

.btn-logout-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 8px;
  transition: color 0.2s ease;
}

.btn-logout-icon:hover {
  color: #EF4444;
}

/* ----------------------------------------------------
   3. HERO SECTION ("Upgrade Your Skills With Learngo")
---------------------------------------------------- */
.hero-section {
  background: radial-gradient(circle at 80% 20%, #EBF5FF 0%, #F8FAFC 60%);
  padding: 64px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

.hero-badge {
  background: #FFF7ED;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  border: 1px solid #FFEDD5;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.highlight-text {
  color: var(--primary-blue);
  position: relative;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 36px;
}

/* Search Box Pill Bar */
.search-box-wrapper {
  background: #FFFFFF;
  padding: 8px 10px 8px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 580px;
  border: 1px solid var(--border-color);
}

.search-field, .select-field {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  flex: 1;
}

.search-input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  width: 100%;
  color: var(--text-dark);
}

.category-select {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  width: 100%;
}

.btn-find-course {
  background: var(--primary-blue);
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 132, 255, 0.3);
  transition: all 0.2s ease;
}

.btn-find-course:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
}

.hero-quick-login {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.btn-link-login {
  background: transparent;
  border: none;
  color: var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: underline;
}

/* Right Hero Visual Student Grid */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.student-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 480px;
  width: 100%;
}

.student-arch {
  overflow: hidden;
  border-radius: 120px 120px 24px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.3s ease;
}

.student-arch:hover {
  transform: translateY(-6px);
}

.student-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arch-cyan {
  background: var(--accent-cyan);
  height: 240px;
  grid-row: span 2;
}

.arch-yellow {
  background: var(--accent-yellow);
  height: 200px;
  border-radius: 100px 100px 24px 24px;
}

.arch-orange {
  background: var(--accent-orange);
  height: 220px;
  grid-column: 2;
  border-radius: 24px 24px 100px 100px;
}

/* ----------------------------------------------------
   4. CATEGORY GRID SECTION
---------------------------------------------------- */
.section-categories {
  padding: 80px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.text-highlight {
  color: var(--primary-blue);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.category-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.cat-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.5rem;
}

.cat-blue { background: var(--bg-blue-light); color: var(--primary-blue); }
.cat-yellow { background: var(--bg-yellow-light); color: #D97706; }
.cat-orange { background: var(--bg-orange-light); color: var(--accent-orange); }
.cat-cyan { background: var(--bg-cyan-light); color: var(--accent-cyan); }
.cat-green { background: var(--bg-green-light); color: var(--accent-green); }
.cat-pink { background: var(--bg-pink-light); color: var(--accent-pink); }

.cat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cat-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------
   5. TRANSFORM YOUR LEARNING SECTION
---------------------------------------------------- */
.section-transform {
  background: #FFFFFF;
  padding: 80px 24px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.transform-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .transform-container {
    grid-template-columns: 1fr;
  }
}

.transform-image-wrapper {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.transform-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 200px 200px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.floating-badge-card {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-color);
}

.floating-badge-card i {
  font-size: 1.8rem;
  color: var(--accent-yellow);
}

.floating-badge-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.floating-badge-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.transform-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 16px 0 32px 0;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.f-cyan { background: var(--bg-cyan-light); color: var(--accent-cyan); }
.f-yellow { background: var(--bg-yellow-light); color: #D97706; }
.f-orange { background: var(--bg-orange-light); color: var(--accent-orange); }

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------
   6. COURSES & CBT EXAMS GRID
---------------------------------------------------- */
.section-courses {
  padding: 80px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.courses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-pills {
  display: flex;
  gap: 10px;
}

.pill-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-btn.active, .pill-btn:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.course-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.course-thumb {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.course-body {
  padding: 20px;
  flex: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.text-yellow { color: var(--accent-yellow); }

.course-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 16px;
}

.instructor-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inst-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.inst-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.course-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAFAFA;
}

.course-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-blue);
}

.btn-enroll {
  background: var(--primary-blue);
  color: #FFFFFF;
  border: none;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

/* ----------------------------------------------------
   7. VIBRANT STATS BANNER
---------------------------------------------------- */
.section-stats-banner {
  background: linear-gradient(135deg, #0284C7 0%, #0084FF 100%);
  color: #FFFFFF;
  padding: 48px 24px;
}

.stats-banner-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ----------------------------------------------------
   8. MEET OUR EXPERT INSTRUCTORS
---------------------------------------------------- */
.section-instructors {
  padding: 80px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.instructor-card {
  text-align: center;
}

.inst-photo-box {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.inst-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inst-cyan { background: var(--accent-cyan); }
.inst-yellow { background: var(--accent-yellow); }
.inst-orange { background: var(--accent-orange); }

.inst-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.inst-card-role {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------
   9. LOGIN MODAL
---------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 36px;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.login-badge {
  background: #EFF6FF;
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.login-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.login-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--primary-blue);
}

.btn-login-submit {
  width: 100%;
  background: var(--primary-blue);
  color: #FFFFFF;
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.demo-credentials {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.demo-credentials code {
  background: #E2E8F0;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--primary-blue);
}

/* Global Alerts */
.alerts-container {
  max-width: 1240px;
  margin: 20px auto 0 auto;
  padding: 0 24px;
}

.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

/* ----------------------------------------------------
   10. MAIN FOOTER
---------------------------------------------------- */
.main-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 64px 24px 24px 24px;
  margin-top: auto;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #1E293B;
  text-align: center;
  font-size: 0.82rem;
}

