/* ============================================================
   DESIGN SYSTEM: Emerald Trust Gaming UI
   Visual Style: Premium, trust-focused, Bangladesh market
   ============================================================ */

:root {
  /* Color Tokens */
  --color-primary: #6d28d9;
  --color-primary-dark: #5b21b6;
  --color-primary-soft: rgba(109, 40, 217, 0.12);
  --color-secondary: #4f46e5;
  --color-accent: #8b5cf6;
  --color-bg: #020617;
  --color-bg-soft: #0f172a;
  --color-surface: #1e293b;
  --color-surface-strong: #334155;
  --color-card: rgba(15, 23, 42, 0.85);
  --color-card-alt: rgba(30, 41, 59, 0.7);
  --color-border: rgba(139, 92, 246, 0.25);
  --color-border-strong: rgba(139, 92, 246, 0.45);
  --color-text: #e2e8f0;
  --color-text-soft: #cbd5e1;
  --color-text-muted: #94a3b8;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-footer-bg: #030712;
  --color-footer-text: #94a3b8;

  /* Gradient Tokens */
  --gradient-hero: linear-gradient(135deg, rgba(109, 40, 217, 0.18) 0%, rgba(79, 70, 229, 0.08) 50%, transparent 100%);
  --gradient-button: linear-gradient(135deg, #6d28d9, #4f46e5);
  --gradient-button-hover: linear-gradient(135deg, #7c3aed, #6366f1);
  --gradient-card-border: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.15));
  --gradient-cta: linear-gradient(135deg, rgba(109, 40, 217, 0.15), rgba(79, 70, 229, 0.08));
  --gradient-footer: linear-gradient(180deg, #0a0f1a 0%, #030712 100%);

  /* Shadow Tokens */
  --shadow-header: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 20px rgba(109, 40, 217, 0.08);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(139, 92, 246, 0.12);
  --shadow-card-hover: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.3), 0 0 20px rgba(109, 40, 217, 0.1);
  --shadow-button: 0 2px 8px rgba(109, 40, 217, 0.3);
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.2);

  /* Radius Tokens */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --radius-card: 16px;

  /* Typography */
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-h1: clamp(1.75rem, 3.5vw, 2.75rem);
  --fs-h2: clamp(1.35rem, 2.5vw, 2rem);
  --fs-h3: clamp(1.1rem, 1.8vw, 1.35rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-nav: clamp(13px, 0.84vw, 15px);
  --lh-heading: 1.3;
  --lh-body: 1.75;

  /* Spacing */
  --container-max: 1200px;
  --section-y: clamp(48px, 6vw, 80px);
  --section-y-sm: clamp(32px, 4vw, 56px);
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --header-h: 72px;
  --mobile-header-h: 64px;

  /* Motion */
  --motion-fast: 150ms;
  --motion-normal: 250ms;
  --motion-slow: 400ms;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(109, 40, 217, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 5%, rgba(79, 70, 229, 0.08) 0%, transparent 40%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--motion-fast) var(--ease-out); }
a:hover { color: #c4b5fd; }
h1, h2, h3, h4, h5, h6 { color: #fff; line-height: var(--lh-heading); margin: 0 0 1rem; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1rem; color: var(--color-text-soft); }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@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);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  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, 0.8vw, 14px);
  display: flex;
  align-items: center;
}

.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, 0.6vw, 12px);
  white-space: nowrap;
  overflow: visible;
}

.primary-nav a {
  flex: 0 1 auto;
  min-width: 0;
  padding: 8px clamp(5px, 0.55vw, 10px);
  font-size: var(--fs-nav);
  line-height: 1;
  white-space: nowrap;
  color: var(--color-text-soft);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--motion-fast), background var(--motion-fast);
}

.primary-nav a:hover {
  color: #fff;
  background: rgba(139, 92, 246, 0.1);
}

.primary-nav a.active {
  color: #fff;
  background: rgba(139, 92, 246, 0.15);
  font-weight: 600;
}

.header-actions {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, 0.6vw, 10px);
  white-space: nowrap;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--motion-fast) var(--ease-out);
  white-space: nowrap;
}

.btn-register {
  background: var(--gradient-button);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.btn-register:hover {
  background: var(--gradient-button-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-login {
  color: #ddd6fe;
  border: 1px solid rgba(139, 92, 246, 0.5);
  background: transparent;
}
.btn-login:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--motion-normal);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--mobile-header-h);
  left: 12px;
  right: 12px;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  padding: 16px;
}

.mobile-menu.is-open { display: block; }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu-inner a {
  display: block;
  padding: 14px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 15px;
  border-radius: var(--radius-md);
  transition: background var(--motion-fast);
}

.mobile-menu-inner a:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #fff;
}

/* ============================================================
   RESPONSIVE HEADER
   ============================================================ */
@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; }
  .btn-header { display: none; }
  .header-actions { margin-left: auto; }
  .nav-toggle {
    display: inline-flex;
    margin-left: 2px;
  }
}

@media (max-width: 375px) {
  .site-header .header-inner { padding-left: 8px; padding-right: 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--motion-fast) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-button);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.btn-primary:hover {
  background: var(--gradient-button-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.4);
}

.btn-secondary {
  color: #ddd6fe;
  border: 1px solid rgba(139, 92, 246, 0.5);
  background: transparent;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.08) inset;
}
.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.12);
  color: #fff;
  border-color: rgba(139, 92, 246, 0.7);
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: var(--section-y) 0; }
.alt-bg { background: var(--color-bg-soft); }

.section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.section-header p { color: var(--color-text-muted); }

.content-narrow { max-width: 820px; margin: 0 auto; }

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; }
  .content-split.reverse { direction: ltr; }
}

/* ============================================================
   HERO - HOME
   ============================================================ */
.hero-home {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 70px);
  background: var(--gradient-hero);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--gap-xl);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.14);
  color: #ddd6fe;
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-img, .section-img, .guide-hero-img, .highlight-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 20px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.trust-item i { color: var(--color-accent); font-size: 1.1rem; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: all var(--motion-normal) var(--ease-out);
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--color-border-strong);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(99, 102, 241, 0.12));
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ============================================================
   HIGHLIGHT CARD
   ============================================================ */
.highlight-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--gap-lg);
  align-items: center;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
}

@media (max-width: 900px) {
  .highlight-card { grid-template-columns: 1fr; }
}

/* ============================================================
   SCENARIO CARDS
   ============================================================ */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-md);
}

.scenario-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
}

.scenario-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.scenario-card h3 i { color: var(--color-accent); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-scroll { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  color: var(--color-text-soft);
  vertical-align: top;
}

.comparison-table th {
  color: #fff;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.08);
}

/* ============================================================
   STEP CARDS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-md);
}

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gradient-button);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.steps-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta, .section-final-cta { padding: var(--section-y-sm) 0; }

.cta-card, .final-cta-card {
  background: var(--gradient-cta);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-trigger i {
  font-size: 1rem;
  color: var(--color-accent);
  transition: transform var(--motion-normal);
  flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--motion-slow) var(--ease-out), padding var(--motion-slow);
  padding: 0 20px;
}

.faq-answer.is-open {
  max-height: 500px;
  padding: 0 20px 18px;
}

.faq-answer p { color: var(--color-text-soft); margin: 0; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar { padding: 16px 0; }

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.breadcrumb li + li::before { content: "/"; margin-right: 6px; opacity: 0.5; }
.breadcrumb a { color: var(--color-accent); }

/* ============================================================
   GUIDE HERO (Inner pages)
   ============================================================ */
.guide-hero {
  padding: clamp(40px, 5vw, 60px) 0;
  background: var(--gradient-hero);
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--gap-xl);
  align-items: center;
}

@media (max-width: 900px) {
  .guide-hero-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURE LIST
   ============================================================ */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.feature-list li::before {
  content: "\F272";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* ============================================================
   AUTH PAGES (Login/Register)
   ============================================================ */
.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-xl);
  padding: clamp(24px, 3vw, 40px);
}

.auth-form-card label {
  display: block;
  margin-bottom: 6px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
}

.auth-form-card input[type="text"],
.auth-form-card input[type="email"],
.auth-form-card input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.6);
  color: var(--color-text);
  margin-bottom: 16px;
  font-family: inherit;
  transition: border-color var(--motion-fast);
}

.auth-form-card input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

@media (max-width: 900px) {
  .auth-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-layout { max-width: 860px; margin: 0 auto; }

.policy-toc {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.policy-toc h3 { font-size: 1rem; margin-bottom: 12px; }
.policy-toc ul { margin: 0; }
.policy-toc a { color: var(--color-accent); }

.policy-note {
  background: rgba(139, 92, 246, 0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
}

.policy-note p { margin: 0; font-size: var(--fs-small); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-md);
}

.about-stat {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  text-align: center;
}

.about-stat .stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gradient-footer);
  border-top: 1px solid var(--color-border);
  margin-top: 40px;
  padding: clamp(40px, 5vw, 60px) 0 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 24px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { }

.footer-logo {
  margin-bottom: 16px;
  max-height: 40px;
  width: auto;
}

.footer-desc {
  font-size: var(--fs-small);
  color: var(--color-footer-text);
  line-height: 1.6;
}

.footer-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 12px;
}

.footer-email {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.footer-col h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--color-footer-text);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: color var(--motion-fast);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  margin-top: 40px;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}

/* ============================================================
   AOS FALLBACK
   ============================================================ */
[data-aos] { opacity: 1 !important; transform: none !important; }
.aos-init[data-aos] { opacity: 0; }
.aos-animate[data-aos] { opacity: 1; }

/* ============================================================
   SWIPER FALLBACK
   ============================================================ */
.swiper:not(.swiper-initialized) {
  display: flex;
  overflow-x: auto;
  gap: var(--gap-md);
  scroll-snap-type: x mandatory;
}

.swiper:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* ============================================================
   MOBILE SMALL SCREEN
   ============================================================ */
@media (max-width: 414px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .steps-cta { flex-direction: column; align-items: center; }
  .steps-cta .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 375px) {
  body { font-size: 15px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .feature-card, .step-card, .scenario-card { padding: 18px; }
  .faq-trigger { padding: 14px 16px; font-size: 0.9rem; }
}
