/* ========================================
   8e88 app - Style System
   Bangladesh Market | bn-BD
   ======================================== */

:root {
  --primary: #1a6b3c;
  --primary-light: #2d9d5c;
  --primary-dark: #0f4d2a;
  --secondary: #d4a017;
  --secondary-light: #f0c040;
  --accent: #e8f5ee;
  --bg: #f7faf8;
  --surface: #ffffff;
  --text: #1a2e23;
  --muted: #5a7366;
  --soft: #e0f0e6;
  --line: #c8ddd0;
  --danger: #c0392b;
  --shadow-sm: 0 2px 8px rgba(26,107,60,.08);
  --shadow: 0 8px 28px rgba(26,107,60,.12);
  --shadow-lg: 0 16px 48px rgba(26,107,60,.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --max-w: 1180px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--primary-dark);
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADER - Stable Single-Line Layout
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(247,250,248,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand-wrap {
  width: 168px;
  min-width: 168px;
  max-width: 168px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
}

.brand-wrap:hover {
  color: var(--primary);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

.brand-text {
  min-width: 0;
  line-height: 1.05;
}

.brand-text strong {
  display: block;
  max-width: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
}

.brand-text span {
  display: block;
  max-width: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .02em;
}

.primary-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 18px);
  overflow: visible;
  flex-wrap: nowrap;
}

.primary-nav a {
  white-space: nowrap;
  flex: 0 1 auto;
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  padding: 10px 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: background .2s, color .2s;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: var(--accent);
  color: var(--primary);
}

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.btn-register {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-register:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-login {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary) !important;
}

.btn-login:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* More Menu */
.nav-more {
  position: relative;
  flex: 0 0 auto;
}

.more-toggle {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background: var(--soft);
  color: var(--primary);
  transition: background .2s;
}

.more-toggle:hover {
  background: var(--accent);
}

.more-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  padding: 10px;
  border-radius: 16px;
  z-index: 1200;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.more-menu[hidden] {
  display: none !important;
}

.nav-more.is-open .more-menu {
  display: grid;
  gap: 4px;
}

.more-menu a {
  display: block;
  width: 100%;
  max-width: none;
  padding: 11px 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: background .2s;
  text-decoration: none;
}

.more-menu a:hover,
.more-menu a.active {
  background: var(--accent);
  color: var(--primary);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  padding: 100px 0 60px;
  background:
    radial-gradient(circle at top right, rgba(26,107,60,.06), transparent 40%),
    radial-gradient(circle at bottom left, rgba(212,160,23,.06), transparent 40%),
    linear-gradient(180deg, #f0f8f3 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.hero-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta .btn-primary-lg {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all .2s;
  border: none;
}

.hero-cta .btn-primary-lg:hover {
  background: var(--primary-dark);
  color: #fff;
}

.hero-cta .btn-outline-lg {
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: all .2s;
}

.hero-cta .btn-outline-lg:hover {
  background: var(--accent);
}

.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ========================================
   BANNER
   ======================================== */

.banner-section {
  padding: 0;
  margin: -20px 0 0;
  position: relative;
}

.banner-section img {
  width: 100%;
  border-radius: 0;
  display: block;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */

.section-pad {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 36px;
}

.text-center {
  text-align: center;
}

/* ========================================
   CARDS
   ======================================== */

.card-soft {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}

.card-soft:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--soft));
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
  padding: 72px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 36px;
  align-items: start;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

/* ========================================
   PROSE / RICH TEXT
   ======================================== */

.prose {
  max-width: 820px;
}

.prose p {
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 18px;
  color: var(--text);
}

.prose h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  margin: 42px 0 18px;
  color: var(--primary-dark);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  margin: 28px 0 12px;
  color: var(--text);
}

.prose ul, .prose ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.prose li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.prose img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

/* ========================================
   STEPS
   ======================================== */

.steps-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.steps-band h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 28px;
}

.step-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.step-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.step-item h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-item p {
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.7;
}

.step-item a {
  color: var(--secondary-light);
  text-decoration: underline;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--line);
}

.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* ========================================
   PRIVACY / INFO NOTE
   ======================================== */

.info-note {
  background: linear-gradient(135deg, var(--surface), var(--accent));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.info-note-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  font-size: 22px;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
}

.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item.open .faq-q::after {
  content: "\2212";
}

.faq-a {
  display: none;
  padding: 0 24px 18px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.faq-item.open .faq-a {
  display: block;
}

/* ========================================
   CTA BAND
   ======================================== */

.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}

.cta-band .btn-white {
  background: #fff;
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all .2s;
  border: none;
}

.cta-band .btn-white:hover {
  background: var(--accent);
}

.cta-band .btn-ghost {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.5);
  transition: all .2s;
}

.cta-band .btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--line);
  margin: 0 2px;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--primary-dark);
  color: #d4e8dc;
  padding: 56px 0 0;
  margin-top: 72px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 36px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: #a8cdb5;
  margin-bottom: 14px;
}

.footer-brand .contact-line {
  font-size: 13px;
  color: #8bb89a;
  margin-bottom: 6px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #a8cdb5;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #8bb89a;
}

/* ========================================
   INNER PAGE HERO
   ======================================== */

.page-hero {
  padding: 100px 0 48px;
  background:
    radial-gradient(circle at top right, rgba(26,107,60,.05), transparent 40%),
    linear-gradient(180deg, #eef6f0, var(--bg));
}

.page-hero h1 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.page-hero .lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 720px;
}

/* ========================================
   RELATED LINKS
   ======================================== */

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.related-link-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-decoration: none;
  color: var(--text);
  transition: all .2s;
  display: block;
}

.related-link-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}

.related-link-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.related-link-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
    grid-template-columns: 140px 1fr auto;
    gap: 10px;
  }

  .brand-wrap {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    height: 48px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-text strong {
    max-width: 86px;
    font-size: 16px;
  }

  .brand-text span {
    max-width: 86px;
    font-size: 10px;
  }

  .primary-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    max-width: none;
    width: 100%;
    padding: 14px 12px;
    text-overflow: initial;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: none;
  }

  .header-actions {
    justify-content: flex-end;
    gap: 6px;
  }

  .header-actions .btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-more {
    display: contents !important;
  }

  .more-toggle {
    display: none !important;
  }

  .more-menu {
    display: contents !important;
  }

  .more-menu a {
    max-width: none;
    width: 100%;
    padding: 14px 12px;
    text-overflow: initial;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .hero {
    padding: 88px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-pad {
    padding: 48px 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.reverse {
    direction: ltr;
  }

  .steps-band {
    padding: 32px 20px;
  }

  .cta-band {
    padding: 36px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 88px 0 32px;
  }

  .prose p {
    font-size: 16px;
    line-height: 1.85;
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .info-note {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary-lg,
  .hero-cta .btn-outline-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   404 PAGE
   ======================================== */

.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
}

.page-404 h1 {
  font-size: 96px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.page-404 h2 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
}

/* ========================================
   REGISTER / LOGIN PAGES
   ======================================== */

.auth-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 120px 20px 60px;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.auth-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 12px;
}

.auth-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.auth-card ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.auth-card li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--muted);
}

.auth-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.auth-cta .btn-primary-lg {
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  border: none;
}

.auth-cta .btn-primary-lg:hover {
  background: var(--primary-dark);
  color: #fff;
}
