/* ============================================================
   GameOK Sports Live - style.css
   Target: Bangladesh | Language: bn-BD
   Design: Aggregation-dispatch + content-flow + heavy footer
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary:       #00C853;
  --primary-dark:  #009624;
  --primary-light: #69F0AE;
  --accent:        #FF6D00;
  --accent-light:  #FF9100;
  --bg-deep:       #0A1628;
  --bg-dark:       #0D1F38;
  --bg-mid:        #112240;
  --bg-card:       #152A4A;
  --bg-card-hover: #1A3358;
  --bg-section:    #0F1E35;
  --text-primary:  #E8F0FE;
  --text-secondary:#A0B4C8;
  --text-muted:    #607D8B;
  --border:        #1E3A5F;
  --border-light:  #243B55;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.45);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.55);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-pill:   999px;
  --font-main:     system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --transition:    0.22s ease;
  --container:     1240px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-weight: 700; color: var(--text-primary); }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Topbar ---- */
.topbar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-badge {
  background: var(--primary);
  color: var(--bg-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}
.topbar-live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #F44336;
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ---- Header ---- */
.site-header {
  background: var(--bg-dark);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-wrap img {
  height: 44px;
  width: auto;
  max-width: 180px;
}
@media (max-width: 768px) {
  .logo-wrap img { height: 36px; max-width: 140px; }
}

/* ---- Main Nav ---- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: rgba(0,200,83,0.1);
}

/* ---- Header CTA Buttons ---- */
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 0 16px rgba(0,200,83,0.35);
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  box-shadow: 0 0 24px rgba(0,200,83,0.5);
  transform: translateY(-1px);
}
.btn-login {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-login:hover {
  background: rgba(0,200,83,0.12);
  color: var(--primary-light);
  border-color: var(--primary-light);
}

/* ---- Mobile Menu Toggle ---- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-primary);
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

/* ---- Mobile Nav Drawer ---- */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px; height: 100vh;
  background: var(--bg-dark);
  z-index: 2000;
  padding: 24px 20px;
  overflow-y: auto;
  box-shadow: -4px 0 30px rgba(0,0,0,0.6);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-nav-drawer .close-btn {
  background: none; border: none; color: var(--text-secondary);
  font-size: 24px; cursor: pointer; margin-bottom: 20px; display: block;
}
.mobile-nav-drawer a {
  display: block;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-drawer a:hover { color: var(--primary); }
.mobile-nav-drawer .mobile-cta-wrap {
  display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.overlay.active { display: block; }

/* ---- Hero Banner ---- */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-banner img { max-height: 220px; }
}

/* ---- Section Base ---- */
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.section-dark { background: var(--bg-dark); }
.section-mid { background: var(--bg-mid); }
.section-deep { background: var(--bg-deep); }

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.section-header { margin-bottom: 32px; }
.section-header .divider {
  width: 48px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 10px 0 16px;
}

/* ---- Shortcut Icon Grid ---- */
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .shortcut-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .shortcut-grid { grid-template-columns: repeat(3, 1fr); } }

.shortcut-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.shortcut-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,200,83,0.2);
}
.shortcut-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: rgba(0,200,83,0.12);
}
.shortcut-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.shortcut-card:hover span { color: var(--primary); }

/* ---- Feature Cards (2-col) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.feature-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.feature-card-tag {
  display: inline-block;
  background: rgba(0,200,83,0.15);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}
.feature-card-title { font-size: 18px; font-weight: 700; }
.feature-card-desc { font-size: 14px; color: var(--text-secondary); flex: 1; }
.feature-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 14px; font-weight: 600;
  margin-top: 8px;
}
.feature-card-link:hover { color: var(--primary-light); }

/* ---- Content Feed (4-col article cards) ---- */
.content-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .content-feed { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .content-feed { grid-template-columns: 1fr; } }

.feed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.feed-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.feed-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.feed-card-body { padding: 14px; }
.feed-card-cat {
  font-size: 11px; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.8px; margin-bottom: 6px;
}
.feed-card-title {
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feed-card-meta {
  font-size: 12px; color: var(--text-muted);
  margin-top: 8px;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 24px 20px; } }
@media (max-width: 480px) { .stats-bar { grid-template-columns: 1fr 1fr; } }

.stat-item {}
.stat-number {
  font-size: 36px; font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 13px; color: var(--text-secondary);
  margin-top: 6px;
}

/* ---- Advantage List ---- */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .advantage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .advantage-grid { grid-template-columns: 1fr; } }

.advantage-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.advantage-item:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}
.advantage-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(0,200,83,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.advantage-text h4 { font-size: 15px; margin-bottom: 6px; }
.advantage-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ---- Long-form Content Area ---- */
.longform {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .longform { padding: 24px 20px; } }

.longform h2 {
  font-size: 22px; color: var(--primary);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.longform h2:first-child { margin-top: 0; }
.longform h3 { font-size: 18px; margin: 20px 0 10px; color: var(--text-primary); }
.longform p { font-size: 15px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.8; }
.longform ul, .longform ol {
  margin: 12px 0 16px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}
.longform ul { list-style: disc; }
.longform ol { list-style: decimal; }
.longform li { margin-bottom: 6px; }
.longform strong { color: var(--text-primary); }
.longform a { color: var(--primary); }
.longform a:hover { color: var(--primary-light); }
.longform blockquote {
  border-left: 3px solid var(--primary);
  padding: 12px 20px;
  background: rgba(0,200,83,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ---- FAQ Accordion ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  gap: 12px;
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,200,83,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--primary);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ---- YouTube Video Module ---- */
.video-section { background: var(--bg-dark); }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ---- CTA Block ---- */
.cta-block {
  background: linear-gradient(135deg, var(--bg-mid) 0%, rgba(0,200,83,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}
@media (max-width: 640px) { .cta-block { padding: 36px 20px; } }
.cta-block h2 { font-size: 28px; margin-bottom: 12px; }
.cta-block p { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0,200,83,0.4);
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0,200,83,0.55);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  transition: all var(--transition);
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(0,200,83,0.1);
  color: var(--primary-light);
  border-color: var(--primary-light);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border-light); }
.breadcrumb .current { color: var(--text-secondary); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 36px;
}
.page-hero h1 { font-size: 32px; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: var(--text-secondary); max-width: 600px; }
@media (max-width: 640px) { .page-hero h1 { font-size: 24px; } }

/* ---- Archive / Listing Grid ---- */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .archive-grid { grid-template-columns: 1fr; } }

.archive-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.archive-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.archive-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.archive-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.archive-card-tag {
  font-size: 11px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.8px;
}
.archive-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; }
.archive-card-desc { font-size: 13px; color: var(--text-secondary); flex: 1; }
.archive-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--primary); font-size: 13px; font-weight: 600;
  margin-top: 8px;
}

/* ---- Sidebar Layout ---- */
.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .content-sidebar-layout { grid-template-columns: 1fr; } }

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-widget h4 {
  font-size: 14px; font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-link-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list a { font-size: 14px; color: var(--text-secondary); }
.sidebar-link-list a:hover { color: var(--primary); }

/* ---- Related Pages Block ---- */
.related-pages {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
}
.related-pages h4 {
  font-size: 15px; font-weight: 700;
  color: var(--primary); margin-bottom: 16px;
}
.related-pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 640px) { .related-pages-grid { grid-template-columns: 1fr 1fr; } }
.related-page-item {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.related-page-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,200,83,0.08);
}

/* ---- Policy / About Page ---- */
.policy-content { max-width: 860px; }
.policy-content h2 {
  font-size: 20px; color: var(--primary);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin: 10px 0 16px 20px; list-style: disc; color: var(--text-secondary); font-size: 15px; line-height: 1.8; }
.policy-content li { margin-bottom: 6px; }
.policy-content strong { color: var(--text-primary); }

/* ---- About Page Story ---- */
.story-timeline { position: relative; padding-left: 32px; }
.story-timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}
.story-event { position: relative; margin-bottom: 32px; }
.story-event::before {
  content: '';
  position: absolute;
  left: -26px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg-deep);
}
.story-year {
  font-size: 12px; font-weight: 700;
  color: var(--primary); letter-spacing: 1px;
  margin-bottom: 4px;
}
.story-event h4 { font-size: 16px; margin-bottom: 6px; }
.story-event p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-dark);
  border-top: 2px solid var(--border);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand {}
.footer-logo { height: 40px; width: auto; max-width: 160px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; }
.footer-contact-list li strong { color: var(--text-secondary); min-width: 60px; }
.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--primary); }

.footer-col h5 {
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---- 404 Page ---- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.3;
}
.error-page h1 { font-size: 28px; margin: 16px 0 12px; }
.error-page p { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; }
.error-nav { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}
.badge-green { background: rgba(0,200,83,0.15); color: var(--primary); }
.badge-orange { background: rgba(255,109,0,0.15); color: var(--accent); }
.badge-red { background: rgba(244,67,54,0.15); color: #F44336; }

/* ---- Responsive Header ---- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; flex-direction: column; }
  .mobile-nav-drawer { display: block; }
}
@media (max-width: 640px) {
  .header-cta .btn-login { display: none; }
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(0,200,83,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-light); color: var(--bg-deep); transform: translateY(-2px); }

/* ---- Highlight box ---- */
.highlight-box {
  background: rgba(0,200,83,0.07);
  border: 1px solid rgba(0,200,83,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
}
.highlight-box p { color: var(--text-secondary); font-size: 15px; margin: 0; }

/* ---- Steps / Process ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900;
  margin: 0 auto 14px;
}
.step-item h4 { font-size: 15px; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-secondary); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
