/* Mostbet UZ - Main Stylesheet (Modern Uzbek Information Portal Theme) */
:root {
  --primary-navy: #0D1730;
  --primary-blue: #1769E0;
  --secondary-blue: #2F80ED;
  --accent-orange: #FF6B00;
  --accent-orange-hover: #E05D00;
  --bg-page: #F3F6FA;
  --bg-card: #FFFFFF;
  --bg-light-blue: #EAF2FF;
  --bg-alt: #F3F6FA;
  --text-dark: #0D1730;
  --text-body: #45546B;
  --text-muted: #45546B;
  --text-light: #64748B;
  --border-color: #D9E2EE;
  --border-focus: #1769E0;
  --shadow-sm: 0 1px 3px 0 rgba(13, 23, 48, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(13, 23, 48, 0.08);
  --shadow-lg: 0 12px 24px -4px rgba(13, 23, 48, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --max-width: 1200px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Global Reset & Box-Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, text-decoration 0.2s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}

a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
}

img, svg, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Hierarchy & Word Wrapping */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary-navy);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  margin-top: 1.5rem;
  font-weight: 900;
}

p, li, span, div, td, th {
  overflow-wrap: break-word;
  word-break: break-word;
}

p {
  margin-bottom: 1.15rem;
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

ul, ol {
  margin-bottom: 1.15rem;
  padding-left: 1.35rem;
}

li {
  margin-bottom: 0.45rem;
  color: var(--text-body);
  font-weight: 500;
}

code {
  font-family: monospace;
  background: var(--bg-light-blue);
  color: var(--primary-navy);
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  font-weight: 700;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

.main-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .main-layout {
    grid-template-columns: 2.8fr 1.2fr;
    gap: 2rem;
  }
}

.content-block {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .content-block {
    padding: 1.25rem 1rem;
    margin-bottom: 1.25rem;
  }
}

/* Header & Navigation */
.site-header {
  background-color: #ffffff;
  color: var(--text-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

.top-bar {
  background-color: var(--primary-navy);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

@media (max-width: 480px) {
  .top-bar .container {
    font-size: 0.7rem;
    justify-content: center;
    text-align: center;
  }
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 900;
  color: var(--text-dark);
  text-decoration: none !important;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.logo-badge {
  background: var(--primary-blue);
  color: #ffffff;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-body);
  font-size: 0.825rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue);
  background-color: var(--bg-light-blue);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: var(--bg-light-blue);
  border: 1.5px solid var(--border-color);
  color: var(--primary-navy);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 0.35rem 0.7rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.mobile-toggle:hover {
  background: #dbeafe;
}

@media (max-width: 991px) {
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1rem;
    gap: 0.4rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
    border-bottom: 3px solid var(--primary-blue);
    z-index: 1000;
    box-sizing: border-box;
  }
  .nav-menu.show {
    display: flex;
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
    white-space: normal;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  line-height: 1.2;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

.btn-orange {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(23, 105, 224, 0.22);
}

.btn-orange:hover {
  background-color: var(--secondary-blue);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(23, 105, 224, 0.32);
}

.btn-blue {
  background-color: var(--primary-navy);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(13, 23, 48, 0.2);
}

.btn-blue:hover {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(23, 105, 224, 0.3);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--primary-navy) !important;
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--bg-light-blue);
  border-color: var(--primary-blue);
  color: var(--primary-blue) !important;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.825rem;
  border-radius: var(--radius-pill);
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: var(--bg-card);
  color: var(--text-dark);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .hero-section {
    padding: 1.5rem 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.25fr 0.95fr;
    gap: 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light-blue);
  border: 1px solid #bfdbfe;
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  max-width: 100%;
}

.hero-title {
  color: var(--text-dark);
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  line-height: 1.05;
}

.hero-title span {
  color: var(--primary-blue);
}

.hero-subtitle {
  color: var(--text-body);
  font-size: clamp(0.95rem, 2.8vw, 1.125rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
}

@media (max-width: 575px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

.hero-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

.hero-card-header {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 360px) {
  .quick-stats {
    grid-template-columns: 1fr;
  }
}

.stat-box {
  background: #ffffff;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.stat-value {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

/* 4 Quick Info Cards Grid */
.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-color);
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .hero-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .hero-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-info-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

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

.hero-info-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.hero-info-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-light-blue);
  color: var(--primary-blue);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-info-card-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-info-card-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.45;
}

/* Breadcrumbs */
.breadcrumb-nav {
  background-color: #ffffff;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 100%;
  box-sizing: border-box;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.breadcrumb-item a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 800;
}

.breadcrumb-item a:hover {
  color: var(--primary-blue);
}

.breadcrumb-separator {
  margin-left: 0.4rem;
  color: var(--text-light);
}

.breadcrumb-item.active {
  color: var(--text-dark);
  font-weight: 900;
}

/* Table of Contents / Quick Jump */
.toc-box {
  background-color: var(--bg-light-blue);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

.toc-title {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
}

.toc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

@media (min-width: 640px) {
  .toc-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.toc-list a {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.toc-list a:hover {
  background: #ffffff;
  color: var(--primary-blue);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.widget-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

.widget-title {
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-item {
  margin-bottom: 0.5rem;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background-color: var(--bg-page);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none !important;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.sidebar-nav-link:hover {
  background-color: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #ffffff;
}

/* Download Cards Grid */
.download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .download-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.download-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

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

.download-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light-blue);
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  color: var(--primary-blue);
  font-weight: 900;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

.feature-icon-badge {
  background: var(--bg-light-blue);
  color: var(--primary-blue);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Tables */
.info-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #ffffff;
  box-sizing: border-box;
}

.info-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.info-table th {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 0.85rem 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.info-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-color);
  background-color: #ffffff;
  font-weight: 500;
  color: var(--text-body);
}

.info-table tr:nth-child(even) td {
  background-color: var(--bg-page);
}

.info-table tr:last-child td {
  border-bottom: none;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-card);
  overflow: hidden;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .faq-question {
    padding: 0.85rem 1rem;
    font-size: 0.925rem;
  }
}

.faq-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--primary-blue);
  font-weight: 900;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.25rem;
  background-color: var(--bg-page);
  color: var(--text-body);
  font-weight: 500;
  box-sizing: border-box;
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
}

/* Step Guides */
.step-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

.step-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 380px) {
  .step-item {
    flex-direction: column;
    gap: 0.6rem;
  }
}

.step-number {
  background: var(--primary-navy);
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

/* Callout Boxes */
.callout {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  border-left: 4px solid;
  width: 100%;
  box-sizing: border-box;
}

.callout-info {
  background-color: var(--bg-light-blue);
  border-color: var(--primary-blue);
  color: #1e3a8a;
  font-weight: 600;
}

.callout-warning {
  background-color: #fffbeb;
  border-color: #d97706;
  color: #78350f;
  font-weight: 600;
}

.callout-success {
  background-color: #ecfdf5;
  border-color: #059669;
  color: #064e3b;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: var(--primary-navy);
  color: #94a3b8;
  margin-top: auto;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-heading {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #cbd5e1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.25);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-sizing: border-box;
}

/* Sticky Mobile Bottom Navigation Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background-color: var(--primary-navy);
  padding: 0.6rem 0.85rem;
  box-shadow: 0 -4px 16px rgba(13, 23, 48, 0.25);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    gap: 0.5rem;
  }
  
  .mobile-sticky-bar .btn {
    flex: 1;
    min-width: 0;
    padding: 0.7rem 0.4rem;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body {
    padding-bottom: 62px;
  }
}
