/* ============================================
   2222bet - Global Design System
   Style DNA: Aggregation + Distribution + Heavy Footer
   Layout Bias: Mixed (Category Distribution + Long-form SEO)
   ============================================ */

:root {
  --color-primary: #0d7a3e;
  --color-primary-dark: #0a5e2f;
  --color-primary-light: #12a352;
  --color-secondary: #1a1a2e;
  --color-accent: #f0c040;
  --color-accent-hover: #e6b530;
  --color-bg-dark: #0e1117;
  --color-bg-section: #111827;
  --color-bg-card: #1c2333;
  --color-bg-card-hover: #242d40;
  --color-bg-footer: #0a0d14;
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-text-heading: #ffffff;
  --color-border: #2a3348;
  --color-border-light: #374151;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px rgba(13,122,62,0.3);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --max-width: 1200px;
  --header-height: 64px;
  --nav-height: 50px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-stack);
  background: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-heading);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.6rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }

p { margin-bottom: 1rem; }

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li { margin-bottom: 0.4rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER - Logo Left, Nav Center, CTA Right
   ============================================ */
.site-header {
  background: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo svg,
.header-logo img {
  max-width: 100%;
  height: auto;
  max-height: 44px;
  display: block;
}

.header-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-stack);
}

.btn-register {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #1a1a2e;
}

.btn-register:hover {
  background: linear-gradient(135deg, #ffd250, var(--color-accent));
  color: #1a1a2e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-login {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-login:hover {
  background: var(--color-accent);
  color: #1a1a2e;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-light);
  border: 2px solid var(--color-primary-light);
}

.btn-outline:hover {
  background: var(--color-primary-light);
  color: #fff;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ============================================
   CATEGORY NAV BAR (Competitor Pattern)
   ============================================ */
.category-nav {
  background: linear-gradient(180deg, #0f1520 0%, #141c2b 100%);
  border-bottom: 2px solid var(--color-primary-dark);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-nav::-webkit-scrollbar {
  height: 0;
}

.category-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: max-content;
  max-width: var(--max-width);
  margin: 0 auto;
}

.category-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  position: relative;
}

.category-nav a:hover,
.category-nav a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: rgba(240,192,64,0.05);
}

.category-nav a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   BANNER / HERO SLIDER
   ============================================ */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-section);
}

.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SHORTCUT CARDS (4-column, like competitor)
   ============================================ */
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 30px 0;
}

.shortcut-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.shortcut-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.shortcut-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.shortcut-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.shortcut-card-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 50px 0;
}

.section-alt {
  background: var(--color-bg-section);
}

.section-dark {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0c111a 100%);
}

.section-highlight {
  background: linear-gradient(135deg, rgba(13,122,62,0.08) 0%, rgba(26,26,46,0.95) 100%);
  border-top: 1px solid rgba(13,122,62,0.2);
  border-bottom: 1px solid rgba(13,122,62,0.2);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 12px auto 0;
}

/* ============================================
   CONTENT CARDS (Category Distribution)
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--color-bg-section), var(--color-bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image svg {
  width: 60px;
  height: 60px;
  opacity: 0.6;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card-body h3 a {
  color: var(--color-text-heading);
}

.card-body h3 a:hover {
  color: var(--color-accent);
}

.card-body p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-meta {
  padding: 12px 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(13,122,62,0.15);
  color: var(--color-primary-light);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================
   FEATURE BLOCKS
   ============================================ */
.feature-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-visual {
  flex: 1;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1px solid var(--color-border);
}

/* ============================================
   LONG-FORM CONTENT (SEO Text)
   ============================================ */
.content-block {
  max-width: 860px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  margin: 0 auto;
  padding: 0 20px;
}

.content-block h2 {
  color: var(--color-accent);
  margin-top: 2rem;
}

.content-block h3 {
  color: var(--color-primary-light);
  margin-top: 1.5rem;
}

.content-block p {
  color: var(--color-text);
  line-height: 1.85;
}

.content-block ul,
.content-block ol {
  color: var(--color-text);
  line-height: 1.8;
  margin-left: 1.2rem;
}

.content-block blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 16px 20px;
  margin: 1.5rem 0;
  background: rgba(13,122,62,0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-text);
  font-style: italic;
}

.content-block a {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-decoration-color: rgba(18,163,82,0.3);
  text-underline-offset: 3px;
}

.content-block a:hover {
  color: var(--color-accent);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--color-text-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-stack);
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--color-primary-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(13,122,62,0.15) 0%, rgba(26,26,46,0.98) 50%, rgba(240,192,64,0.08) 100%);
  border-radius: var(--radius-lg);
  margin: 40px 0;
  border: 1px solid rgba(13,122,62,0.2);
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--color-text-muted);
  max-width: 550px;
  margin: 0 auto 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}

.breadcrumb li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li::before {
  content: '/';
  color: var(--color-text-muted);
}

.breadcrumb li:first-child::before {
  display: none;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb .current {
  color: var(--color-text);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0f1520 100%);
  padding: 50px 0 40px;
  border-bottom: 2px solid var(--color-border);
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 700px;
}

/* Category page hero variant */
.page-hero-category {
  background: linear-gradient(135deg, #0a1628 0%, #0e2a1a 60%, #1a1a2e 100%);
  padding: 60px 0 45px;
  text-align: center;
}

/* Article detail hero */
.article-hero {
  background: linear-gradient(180deg, var(--color-secondary), var(--color-bg-dark));
  padding: 40px 0 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}

.article-hero h1 {
  word-break: break-all;
  overflow-wrap: break-word;
}

.breadcrumb .current {
  display: inline-block;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

.article-meta {
  display: flex;
  gap: 20px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* ============================================
   NEWS LIST
   ============================================ */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  display: flex;
  gap: 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.news-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.news-item-image {
  width: 260px;
  min-height: 180px;
  flex-shrink: 0;
  background: var(--color-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-item-content {
  padding: 20px;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}

.news-item-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.news-item-content h3 a {
  color: var(--color-text-heading);
}

.news-item-content h3 a:hover {
  color: var(--color-accent);
}

.news-item-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.news-item-excerpt {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   RELATED / SIDEBAR
   ============================================ */
.sidebar-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-box h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.related-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-links li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(42,51,72,0.5);
}

.related-links li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-links a {
  color: var(--color-text);
  font-size: 0.9rem;
}

.related-links a:hover {
  color: var(--color-accent);
}

/* ============================================
   TWO-COLUMN LAYOUT (Article + Sidebar)
   ============================================ */
.layout-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps-list {
  counter-reset: step-counter;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-number {
  counter-increment: step-counter;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.step-content h3 {
  margin-bottom: 6px;
}

.step-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ============================================
   TABLE
   ============================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.info-table th {
  background: var(--color-bg-card);
  color: var(--color-accent);
  font-weight: 700;
  white-space: nowrap;
}

.info-table td {
  background: rgba(28,35,51,0.5);
}

/* ============================================
   FOOTER (Heavy Footer - Competitor Pattern)
   ============================================ */
.site-footer {
  background: var(--color-bg-footer);
  border-top: 2px solid var(--color-primary-dark);
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-brand .footer-logo {
  max-height: 40px;
  width: auto;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-contact strong {
  color: var(--color-text);
  min-width: 60px;
}

.footer-keywords {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.footer-keywords p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.8;
  text-align: center;
}

.footer-keywords a {
  color: var(--color-text-muted);
  margin: 0 4px;
}

.footer-keywords a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--color-border);
}

.footer-bottom a {
  color: var(--color-text-muted);
  margin: 0 8px;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

.footer-policy-links {
  margin-top: 10px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .layout-two-col {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.15rem; }

  .mobile-toggle {
    display: block;
  }

  .header-logo svg,
  .header-logo img {
    max-height: 36px;
  }

  .header-cta .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .category-nav-inner {
    justify-content: flex-start;
    padding: 0 10px;
  }

  .category-nav a {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .shortcut-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 0;
  }

  .shortcut-card {
    padding: 18px 12px;
  }

  .shortcut-card svg {
    width: 36px;
    height: 36px;
  }

  .card-grid,
  .card-grid-2,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 35px 0;
  }

  .page-hero {
    padding: 35px 0 25px;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .news-item {
    flex-direction: column;
  }

  .news-item-image {
    width: 100%;
    min-height: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-section {
    padding: 40px 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .header-main {
    gap: 8px;
  }

  .header-cta {
    gap: 6px;
  }

  .header-cta .btn {
    padding: 7px 10px;
    font-size: 0.75rem;
  }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-secondary);
  z-index: 2000;
  transition: left 0.3s ease;
  overflow-y: auto;
  border-right: 1px solid var(--color-border);
}

.mobile-nav-overlay.open {
  left: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-links {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.mobile-nav-links li {
  margin: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 24px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(42,51,72,0.4);
  transition: background 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(13,122,62,0.1);
  color: var(--color-accent);
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.pt-0 { padding-top: 0; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
