/* ============================================================
   Design System: Emerald Trust Bangladesh UI
   Visual Style: Dark emerald gradient + gold accents
   Project: tk-pk.im | Core Keyword: tkpk
   ============================================================ */

/* === CSS Variables / Design Tokens === */
:root {
  --color-primary: #22c55e;
  --color-primary-dark: #16a34a;
  --color-primary-soft: rgba(34,197,94,.12);
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-accent-soft: rgba(245,158,11,.15);
  --color-bg: #020617;
  --color-bg-soft: #0a1628;
  --color-bg-green: #022c22;
  --color-surface: #052e2b;
  --color-surface-strong: #0b3b34;
  --color-card: linear-gradient(180deg,rgba(5,46,43,.98),rgba(3,27,24,.98));
  --color-card-alt: linear-gradient(135deg,rgba(10,52,48,.95),rgba(2,44,34,.95));
  --color-border: rgba(34,197,94,.22);
  --color-border-strong: rgba(34,197,94,.35);
  --color-text: #ecfdf5;
  --color-text-soft: #bbf7d0;
  --color-text-muted: #86efac;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-footer-bg: rgba(2,12,27,.96);
  --color-footer-text: #bbf7d0;
  --gradient-hero: radial-gradient(ellipse at 20% 0%, rgba(16,185,129,.2), transparent 50%), radial-gradient(ellipse at 80% 100%, rgba(34,197,94,.12), transparent 40%);
  --gradient-hero-soft: radial-gradient(circle at top right, rgba(16,185,129,.14), transparent 30%);
  --gradient-button: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-button-hover: linear-gradient(135deg, var(--color-primary-dark), #059669);
  --gradient-cta: linear-gradient(135deg, rgba(34,197,94,.15), rgba(16,185,129,.08));
  --gradient-footer: linear-gradient(180deg, var(--color-bg) 0%, rgba(2,12,27,.98) 100%);
  --shadow-header: 0 2px 20px rgba(0,0,0,.35);
  --shadow-card: 0 8px 32px rgba(0,0,0,.25);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(34,197,94,.15);
  --shadow-button: 0 4px 14px rgba(34,197,94,.25);
  --shadow-cta: 0 8px 24px rgba(0,0,0,.3);
  --shadow-soft: 0 2px 8px rgba(0,0,0,.15);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-card: 16px;
  --radius-image: 12px;
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --fs-h1: clamp(1.75rem, 4vw, 2.75rem);
  --fs-h2: clamp(1.35rem, 3vw, 2rem);
  --fs-h3: clamp(1.1rem, 2.2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.05rem);
  --fs-small: 0.875rem;
  --fs-nav: clamp(13px, .84vw, 15px);
  --fs-button: 0.9375rem;
  --lh-heading: 1.3;
  --lh-body: 1.85;
  --lh-readable: 1.95;
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 820px;
  --section-y: clamp(48px, 6vw, 80px);
  --section-y-sm: clamp(32px, 4vw, 56px);
  --gap-xs: 6px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --header-h: 72px;
  --mobile-header-h: 64px;
  --card-padding: clamp(16px, 2vw, 28px);
  --motion-fast: 150ms;
  --motion-normal: 250ms;
  --motion-slow: 400ms;
  --ease-out: cubic-bezier(.25,.46,.45,.94);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-base);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-green) 100%);
  color: var(--color-text);
  line-height: var(--lh-body);
  font-size: var(--fs-body);
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--color-primary); transition: color var(--motion-fast) var(--ease-out); }
a:hover { color: var(--color-text-muted); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: var(--lh-heading); font-weight: 700; color: var(--color-text); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
ul, ol { padding-left: 1.5em; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-xs); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* === Container === */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: var(--container-narrow); }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 1000; width: 100%;
  background: rgba(2,12,27,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--motion-normal) var(--ease-out);
}
.site-header.scrolled { box-shadow: var(--shadow-header); }
.header-inner {
  width: 100%; max-width: none;
  padding-left: clamp(10px, 1.2vw, 20px);
  padding-right: clamp(10px, 1.2vw, 20px);
  min-height: var(--header-h);
  display: flex; align-items: center;
  gap: clamp(10px, 1vw, 18px);
}
.brand-wrap {
  flex: 0 0 auto;
  margin-right: clamp(4px, .8vw, 14px);
  display: flex; align-items: center;
}
.brand-wrap:hover { opacity: .85; }
.site-logo {
  display: block; width: auto;
  height: clamp(32px, 3vw, 42px);
  max-width: clamp(118px, 10vw, 168px);
  object-fit: contain;
}
.primary-nav {
  flex: 1 1 auto; min-width: 0;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(4px, .6vw, 12px);
  white-space: nowrap; overflow: visible;
}
.primary-nav a {
  flex: 0 1 auto; min-width: 0;
  padding: 8px clamp(5px, .55vw, 10px);
  font-size: var(--fs-nav); line-height: 1;
  white-space: nowrap;
  color: var(--color-text); font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color var(--motion-fast), background var(--motion-fast);
}
.primary-nav a:hover, .primary-nav a.active {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}
.header-actions {
  flex: 0 0 auto; margin-left: auto;
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(6px, .6vw, 10px); white-space: nowrap;
}
.nav-toggle { display: none; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: var(--fs-button);
  line-height: 1.2; white-space: nowrap; cursor: pointer;
  border: none; text-decoration: none;
  transition: all var(--motion-normal) var(--ease-out);
  min-height: 42px;
}
.btn-primary {
  background: var(--gradient-button); color: #03210f;
  box-shadow: var(--shadow-button);
}
.btn-primary:hover {
  background: var(--gradient-button-hover); color: #03210f;
  transform: translateY(-1px); box-shadow: var(--shadow-card);
}
.btn-outline {
  border: 1.5px solid var(--color-primary); color: var(--color-text);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-primary-soft); color: var(--color-primary);
}
.btn-sm { padding: 7px 14px; font-size: var(--fs-small); min-height: 36px; }
.btn-lg { padding: 14px 28px; font-size: 1rem; min-height: 48px; }

/* === Section Spacing === */
.section { padding: var(--section-y) 0; }
.section-sm { padding: var(--section-y-sm) 0; }
.section-alt { background: rgba(5,46,43,.3); }
.section-title { font-weight: 800; margin-bottom: 1rem; }

/* === Cards === */
.card-brand {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: var(--card-padding); height: 100%;
  transition: transform var(--motion-normal) var(--ease-out), box-shadow var(--motion-normal);
}
.card-brand:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-card-hover);
}
.card-feature { text-align: center; }
.card-feature .icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gradient-button); color: #03210f;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; margin: 0 auto 1rem;
}
.card-trust { border-left: 4px solid var(--color-primary); }
.card-guide { background: var(--color-card-alt); }
.card-step { position: relative; padding-left: 60px; }
.card-step .step-num {
  position: absolute; left: 16px; top: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-button); color: #03210f;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}

/* === Badge === */
.badge-brand {
  display: inline-block;
  background: var(--color-primary-soft);
  color: var(--color-text-muted);
  border: 1px solid rgba(134,239,172,.2);
  padding: .4rem .8rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: var(--fs-small);
}

/* === Image Frame === */
.img-frame {
  background: rgba(255,255,255,.03); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 10px;
  box-shadow: var(--shadow-card);
}
.img-frame img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

/* === Grid Layouts === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.grid-content { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--gap-xl); align-items: center; }
.grid-content-rev { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--gap-xl); align-items: center; }
.grid-sidebar { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap-lg); align-items: start; }

/* === Hero Sections === */
.hero-home {
  padding: 110px 0 60px; background: var(--gradient-hero);
  position: relative;
}
.hero-inner {
  padding: 90px 0 50px; background: var(--gradient-hero-soft);
}
.hero-article { padding: 90px 0 40px; }
.hero-auth {
  padding: 100px 0 50px;
  background: radial-gradient(ellipse at 30% 20%, rgba(245,158,11,.08), transparent 40%), var(--gradient-hero-soft);
}

/* === Breadcrumb === */
.breadcrumb-wrap { margin-bottom: 1.5rem; }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; font-size: var(--fs-small); }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "›"; color: var(--color-text-muted); }
.breadcrumb a { color: var(--color-text-soft); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .active { color: var(--color-text-muted); }

/* === Prose / Article Body === */
.prose { max-width: var(--container-narrow); }
.prose p { margin: 0 0 1.1rem; line-height: var(--lh-readable); }
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.5rem 0 .8rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem; }
.prose li { margin-bottom: .5rem; line-height: 1.7; }

/* === SEO Body Container === */
[data-seo-body="true"] { }
[data-seo-body="true"] h2 { margin-top: 2rem; margin-bottom: .8rem; }
[data-seo-body="true"] p { margin-bottom: 1rem; line-height: var(--lh-readable); }

/* === Privacy / Policy Note === */
.privacy-note {
  border-left: 5px solid var(--color-primary);
  background: rgba(16,185,129,.08);
  border-radius: var(--radius-md); padding: 1.2rem 1.3rem;
}
.policy-warning {
  border-left: 5px solid var(--color-warning);
  background: var(--color-accent-soft);
  border-radius: var(--radius-md); padding: 1rem 1.2rem;
}

/* === Comparison Table === */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-brand {
  width: 100%; border-collapse: collapse;
}
.table-brand th, .table-brand td {
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: left; color: var(--color-text); vertical-align: middle;
}
.table-brand th { font-weight: 700; color: var(--color-text-muted); font-size: var(--fs-small); }

/* === Testimonial === */
.testimonial .stars { color: #facc15; letter-spacing: 2px; font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }

/* === Pricing / Tier Cards === */
.pricing-card { text-align: center; }
.pricing-card .price { font-size: 1.8rem; font-weight: 800; color: var(--color-primary); margin-bottom: .5rem; }
.pricing-card.popular { border: 2px solid var(--color-primary); position: relative; }
.pricing-card.popular::before {
  content: "জনপ্রিয়"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-button); color: #03210f; padding: 4px 16px;
  border-radius: var(--radius-pill); font-size: .75rem; font-weight: 700;
}

/* === FAQ === */
.faq-group { margin-bottom: var(--gap-lg); }
.faq-item {
  background: rgba(255,255,255,.03); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); margin-bottom: var(--gap-sm);
  overflow: hidden;
}
.faq-btn {
  width: 100%; padding: 16px 20px; background: transparent; border: none;
  color: var(--color-text); font-weight: 700; font-size: 1rem;
  text-align: left; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  transition: background var(--motion-fast);
}
.faq-btn:hover { background: rgba(34,197,94,.06); }
.faq-btn::after {
  content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--color-primary);
  transition: transform var(--motion-normal);
  flex-shrink: 0;
}
.faq-btn[aria-expanded="true"]::after { content: "−"; transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 20px;
  transition: max-height var(--motion-slow) var(--ease-soft), padding var(--motion-slow);
}
.faq-answer.open { max-height: 600px; padding: 0 20px 16px; }
.faq-answer p { color: var(--color-text-soft); line-height: 1.8; }

/* === Form === */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; margin-bottom: .4rem; font-weight: 600; color: var(--color-text-soft); font-size: var(--fs-small); }
.form-input {
  width: 100%; padding: 12px 16px; background: rgba(255,255,255,.06);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  color: var(--color-text); font-size: 1rem; font-family: inherit;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.form-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.form-input::placeholder { color: rgba(187,247,208,.4); }
.form-help { font-size: var(--fs-small); color: var(--color-text-muted); margin-top: .3rem; }
.form-error { font-size: var(--fs-small); color: var(--color-danger); margin-top: .3rem; display: none; }

/* === Auth Layout === */
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl); align-items: start; }
.auth-form-card {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card);
}
.auth-trust-card { padding: var(--card-padding); }

/* === CTA Sections === */
.cta-section {
  padding: var(--section-y) 0;
  background: var(--gradient-cta);
  text-align: center;
}
.cta-inline {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px);
  text-align: center; box-shadow: var(--shadow-cta);
}

/* === Footer === */
.site-footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--section-y) 0 var(--gap-lg);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--gap-lg); margin-bottom: var(--gap-xl);
}
.footer-brand p { color: var(--color-footer-text); line-height: 1.7; margin-bottom: .8rem; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-text); }
.footer-col a {
  display: block; color: var(--color-footer-text); padding: 4px 0;
  font-size: var(--fs-small); transition: color var(--motion-fast);
}
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom {
  border-top: 1px solid rgba(34,197,94,.12);
  padding-top: var(--gap-md);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--gap-sm);
  font-size: var(--fs-small); color: var(--color-text-soft);
}

/* === Mobile Menu === */
#mobile-menu {
  display: none; position: fixed;
  left: 12px; right: 12px; top: calc(var(--mobile-header-h) + 8px);
  background: rgba(3,27,24,.98); backdrop-filter: blur(16px);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 16px; max-height: calc(100vh - var(--mobile-header-h) - 24px);
  overflow-y: auto; z-index: 999; box-shadow: var(--shadow-card);
}
#mobile-menu.is-open { display: flex; flex-direction: column; gap: 4px; }
#mobile-menu a {
  display: block; padding: 12px 16px; color: var(--color-text);
  font-weight: 600; border-radius: var(--radius-sm);
  transition: background var(--motion-fast);
}
#mobile-menu a:hover, #mobile-menu a.active { background: var(--color-primary-soft); color: var(--color-primary); }
.mobile-menu-actions { display: flex; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--color-border); }
.mobile-menu-actions .btn { flex: 1; text-align: center; }

/* === Utility === */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-soft { color: var(--color-text-soft); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .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; }
.gap-actions { display: flex; flex-wrap: wrap; gap: var(--gap-sm); }

/* === Responsive === */
@media (max-width: 1180px) {
  .site-header .header-inner {
    width: 100%; max-width: none;
    padding-left: clamp(8px, 2.4vw, 14px);
    padding-right: clamp(8px, 2.4vw, 14px);
    min-height: var(--mobile-header-h);
    justify-content: flex-start;
    gap: clamp(6px, 1.8vw, 10px);
  }
  .brand-wrap { flex: 0 1 auto; margin-right: 0; }
  .site-logo { height: clamp(30px, 8vw, 40px); max-width: clamp(104px, 27vw, 138px); }
  .primary-nav { display: none; }
  .header-actions {
    margin-left: auto; flex: 0 0 auto;
    display: flex; align-items: center; justify-content: flex-end;
    gap: clamp(5px, 1.6vw, 8px); white-space: nowrap;
  }
  .header-actions .btn {
    min-height: 40px; padding-inline: clamp(10px, 2.6vw, 14px);
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .nav-toggle {
    display: inline-flex; flex: 0 0 40px; width: 40px; height: 40px;
    align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--color-border);
    border-radius: var(--radius-sm); color: var(--color-text);
    font-size: 1.2rem; cursor: pointer; margin-left: 2px;
    transition: background var(--motion-fast);
  }
  .nav-toggle:hover { background: var(--color-primary-soft); }
  .grid-2, .grid-content, .grid-content-rev { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-sidebar { grid-template-columns: 1fr; }
  .auth-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-home, .hero-inner, .hero-auth { padding-top: 80px; }
}

@media (max-width: 768px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 414px) {
  .container { padding: 0 12px; }
  .hero-home { padding: 76px 0 36px; }
  .hero-inner { padding: 76px 0 32px; }
}

@media (max-width: 375px) {
  .site-header .header-inner { padding-left: 8px; padding-right: 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .header-actions .btn { min-height: 38px; padding-inline: 9px; font-size: 12px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
  .container { padding: 0 10px; }
}

/* === Page-specific classes === */
.page-home .home-trust-strip {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: var(--gap-lg); padding: var(--gap-md) 0;
  border-bottom: 1px solid var(--color-border);
}
.page-home .home-trust-strip .trust-item {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--color-text-muted); font-size: var(--fs-small);
}

/* Policy pages */
.page-policy .policy-toc {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.2rem 1.5rem; margin-bottom: 2rem;
}
.page-policy .policy-toc a { display: block; padding: 6px 0; color: var(--color-text-soft); }
.page-policy .policy-toc a:hover { color: var(--color-primary); }
.page-policy .policy-updated {
  background: var(--color-primary-soft); border-radius: var(--radius-sm);
  padding: .6rem 1rem; font-size: var(--fs-small); color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* About page */
.page-about .about-data-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); text-align: center;
}
.page-about .about-data-grid .data-item { padding: var(--gap-md); }
.page-about .about-data-grid .data-num { font-size: 2rem; font-weight: 800; color: var(--color-primary); }

/* FAQ page */
.page-faq .faq-category-nav {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--gap-lg);
}
.page-faq .faq-cat-btn {
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: var(--color-surface); border: 1px solid var(--color-border);
  color: var(--color-text-soft); font-weight: 600; font-size: var(--fs-small);
  cursor: pointer; transition: all var(--motion-fast);
}
.page-faq .faq-cat-btn:hover, .page-faq .faq-cat-btn.active {
  background: var(--color-primary-soft); border-color: var(--color-primary); color: var(--color-primary);
}

/* Register page */
.page-register .register-benefit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md);
}

/* === AOS Fallback === */
[data-aos] { opacity: 1 !important; transform: none !important; }

/* === Swiper Fallback === */
.swiper:not(.swiper-initialized) { overflow-x: auto; display: flex; gap: var(--gap-md); scroll-snap-type: x mandatory; }
.swiper:not(.swiper-initialized) .swiper-slide { flex: 0 0 auto; scroll-snap-align: start; }
