/* ============================================================
   BD678 Design System - Emerald Trust Gaming UI
   ============================================================ */
:root {
  /* Color Tokens */
  --color-primary: #7c3aed;
  --color-primary-dark: #5b21b6;
  --color-primary-soft: rgba(124,58,237,0.12);
  --color-secondary: #6366f1;
  --color-accent: #a78bfa;
  --color-bg: #030712;
  --color-bg-soft: #0f172a;
  --color-surface: #111827;
  --color-surface-strong: #1e293b;
  --color-card: #1a1f35;
  --color-card-alt: #0f172a;
  --color-border: rgba(124,58,237,0.25);
  --color-border-strong: rgba(124,58,237,0.5);
  --color-text: #e2e8f0;
  --color-text-soft: #94a3b8;
  --color-text-muted: #64748b;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-footer-bg: #020617;
  --color-footer-text: #94a3b8;
  /* Gradient Tokens */
  --gradient-hero: linear-gradient(135deg, #030712 0%, #1a0533 50%, #030712 100%);
  --gradient-hero-soft: linear-gradient(180deg, rgba(124,58,237,0.06) 0%, transparent 60%);
  --gradient-button: linear-gradient(135deg, #7c3aed, #6366f1);
  --gradient-button-hover: linear-gradient(135deg, #6d28d9, #4f46e5);
  --gradient-card-border: linear-gradient(135deg, rgba(124,58,237,0.4), rgba(99,102,241,0.2));
  --gradient-cta: linear-gradient(135deg, #0d0620 0%, #1a0533 50%, #0d0620 100%);
  --gradient-footer: linear-gradient(180deg, #020617, #010410);
  /* Shadow Tokens */
  --shadow-header: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(124,58,237,0.1);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-card-hover: 0 8px 32px rgba(124,58,237,0.2);
  --shadow-button: 0 0 16px rgba(124,58,237,0.4);
  --shadow-soft: 0 1px 4px rgba(0,0,0,0.15);
  /* Radius Tokens */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 50px;
  --radius-card: 14px;
  --radius-image: 12px;
  --radius-form: 8px;
  /* Typography */
  --font-base: 'Hind Siliguri', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Hind Siliguri', sans-serif;
  --fs-h1: clamp(1.75rem, 4vw, 2.6rem);
  --fs-h2: clamp(1.35rem, 3vw, 1.85rem);
  --fs-h3: clamp(1.1rem, 2.2vw, 1.35rem);
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-nav: clamp(13px, .84vw, 15px);
  --fs-button: 15px;
  --lh-heading: 1.35;
  --lh-body: 1.8;
  --lh-readable: 1.9;
  /* Spacing */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 780px;
  --section-y: clamp(48px, 6vw, 80px);
  --section-y-sm: clamp(36px, 4vw, 56px);
  --gap-xs: 6px;
  --gap-sm: 10px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 40px;
  --header-h: 64px;
  --mobile-header-h: 56px;
  --card-padding: clamp(20px, 3vw, 28px);
  /* Motion */
  --motion-fast: 0.15s;
  --motion-normal: 0.25s;
  --motion-slow: 0.4s;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-accent); text-decoration: none; transition: color var(--motion-fast); }
a:hover { color: #c4b5fd; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: var(--lh-heading); color: #fff; font-weight: 700; }

/* 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;
  background: rgba(3,7,18,0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  width: 100%; max-width: none;
  padding: 0 clamp(10px, 1.2vw, 20px);
  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; }
.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); font-weight: 500; line-height: 1;
  color: var(--color-text); white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: all var(--motion-fast);
}
.primary-nav a:hover, .primary-nav a.active { color: #fff; 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;
}
.btn-outline-header, .btn-primary-header {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 7px clamp(10px, 1vw, 16px);
  font-size: 13px; font-weight: 600; border-radius: var(--radius-sm);
  line-height: 1; transition: all var(--motion-fast);
  font-family: var(--font-base); cursor: pointer; border: none;
}
.btn-outline-header { background: transparent; border: 1px solid var(--color-primary); color: var(--color-accent); }
.btn-outline-header:hover { background: var(--color-primary-soft); color: #fff; }
.btn-primary-header { background: var(--gradient-button); color: #fff; box-shadow: var(--shadow-button); }
.btn-primary-header:hover { background: var(--gradient-button-hover); transform: translateY(-1px); }
.nav-toggle {
  display: none; 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); cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--color-accent); border-radius: 2px; transition: all var(--motion-normal); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-bg); border-bottom: 1px solid var(--color-border);
  padding: 16px; max-height: 80vh; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a { display: block; padding: 12px 16px; font-size: 15px; color: var(--color-text); border-radius: var(--radius-sm); }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--color-primary-soft); color: #fff; }
.mobile-auth { display: flex; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.btn-outline-mobile, .btn-primary-mobile {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 12px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm); font-family: var(--font-base);
}
.btn-outline-mobile { background: transparent; border: 1px solid var(--color-primary); color: var(--color-accent); }
.btn-primary-mobile { background: var(--gradient-button); color: #fff; border: none; }

@media (max-width: 1180px) {
  .header-inner { height: var(--mobile-header-h); padding: 0 clamp(8px, 2.4vw, 14px); 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; }
  .btn-outline-header, .btn-primary-header { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 375px) {
  .header-inner { padding: 0 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
}

/* ============================================================
   COMMON SECTIONS
   ============================================================ */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--color-surface); }
.section-dark { background: var(--color-card); }
.text-center { text-align: center; }
.section-title { font-size: var(--fs-h2); margin-bottom: 8px; }
.section-title span { background: var(--gradient-button); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { color: var(--color-text-soft); font-size: var(--fs-body); margin-bottom: var(--gap-xl); max-width: 600px; }
.divider-glow { width: 56px; height: 3px; background: var(--gradient-button); border-radius: 2px; margin: 10px 0 var(--gap-lg); }
.text-center .divider-glow { margin-left: auto; margin-right: auto; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
.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-lg); }
@media (max-width: 992px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* Cards */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  transition: transform var(--motion-normal) var(--ease-out), box-shadow var(--motion-normal);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--color-primary-soft); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--color-primary); margin-bottom: var(--gap-md);
}
.card h5 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--color-text-soft); font-size: var(--fs-small); line-height: 1.7; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; font-size: var(--fs-button); font-weight: 600;
  border-radius: var(--radius-form); font-family: var(--font-base);
  cursor: pointer; border: none; transition: all var(--motion-fast); text-decoration: none;
}
.btn-primary { background: var(--gradient-button); color: #fff; box-shadow: var(--shadow-button); }
.btn-primary:hover { background: var(--gradient-button-hover); transform: translateY(-2px); color: #fff; box-shadow: 0 0 28px rgba(124,58,237,0.6); }
.btn-outline { background: transparent; border: 1px solid var(--color-primary); color: var(--color-accent); }
.btn-outline:hover { background: var(--color-primary-soft); color: #fff; }
.btn-lg { padding: 14px 36px; font-size: 16px; }

/* Content images */
.content-img { width: 100%; border-radius: var(--radius-image); border: 1px solid var(--color-border); box-shadow: 0 4px 20px rgba(124,58,237,0.15); }

/* Breadcrumb */
.breadcrumb-bar { background: rgba(15,23,42,0.7); border-bottom: 1px solid rgba(124,58,237,0.1); padding: 10px 0; }
.bc-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bc-link { color: var(--color-accent); font-size: 13px; }
.bc-link:hover { color: #c4b5fd; }
.bc-sep { color: var(--color-text-muted); font-size: 10px; }
.bc-current { color: var(--color-text-muted); font-size: 13px; }

/* Info box */
.info-box {
  background: var(--color-primary-soft); border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary); border-radius: var(--radius-md);
  padding: 20px 24px; margin: 24px 0;
}
.info-box h6 { color: #fff; font-weight: 600; margin-bottom: 6px; font-size: 15px; }
.info-box p { color: var(--color-text-soft); font-size: 14px; margin: 0; line-height: 1.7; }
.info-box.green { border-left-color: var(--color-success); background: rgba(16,185,129,0.08); }
.info-box.amber { border-left-color: var(--color-warning); background: rgba(245,158,11,0.08); }
.info-box.danger { border-left-color: var(--color-danger); background: rgba(239,68,68,0.08); }

/* Stats */
.stats-bar { background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(99,102,241,0.06)); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 40px 0; }
.stat-item { text-align: center; }
.stat-num { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; background: var(--gradient-button); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--color-text-soft); font-size: 13px; margin-top: 4px; }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; background: var(--color-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); }
.data-table th { background: var(--color-primary-soft); color: #fff; padding: 14px 18px; font-size: 14px; font-weight: 600; text-align: center; }
.data-table th:first-child { text-align: left; }
.data-table td { padding: 12px 18px; border-top: 1px solid rgba(124,58,237,0.08); color: var(--color-text-soft); font-size: 14px; text-align: center; }
.data-table td:first-child { text-align: left; color: var(--color-text); }
.data-table tr:hover td { background: rgba(124,58,237,0.04); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: transparent; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--color-text);
  font-family: var(--font-base); text-align: left; gap: 12px;
  transition: background var(--motion-fast);
}
.faq-q:hover { background: rgba(124,58,237,0.04); }
.faq-q .faq-icon { color: var(--color-primary); font-size: 12px; transition: transform var(--motion-normal); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] { color: var(--color-accent); background: rgba(124,58,237,0.06); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--color-text-soft); line-height: 1.8; border-top: 1px solid rgba(124,58,237,0.08); }
.faq-a.open { display: block; padding-top: 14px; }

/* Content section */
.content-prose { max-width: var(--container-narrow); margin: 0 auto; }
.content-prose h2 { font-size: var(--fs-h2); margin: 36px 0 14px; }
.content-prose h3 { font-size: var(--fs-h3); color: var(--color-accent); margin: 28px 0 10px; }
.content-prose p { color: var(--color-text-soft); font-size: 15px; line-height: var(--lh-readable); margin-bottom: 16px; }

/* CTA Section */
.cta-section { background: var(--gradient-cta); padding: var(--section-y) 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(124,58,237,0.08) 0%, transparent 70%); pointer-events: none;
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-primary-soft); border: 1px solid var(--color-border);
  color: var(--color-accent); font-size: 13px; padding: 5px 16px;
  border-radius: var(--radius-pill); margin-bottom: var(--gap-md); letter-spacing: 0.5px;
}

/* Steps */
.step-list { display: flex; flex-direction: column; gap: 28px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  min-width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-button); display: flex; align-items: center;
  justify-content: center; font-size: 16px; font-weight: 700; color: #fff;
  box-shadow: 0 0 12px rgba(124,58,237,0.4); flex-shrink: 0;
}
.step-body h5 { font-size: 1rem; margin-bottom: 4px; }
.step-body p { color: var(--color-text-soft); font-size: 14px; }

/* Form */
.form-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px); }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 11px 14px; font-size: 14px; font-family: var(--font-base);
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-form); color: var(--color-text);
  transition: border-color var(--motion-fast);
}
.form-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-soft); }
.form-group { margin-bottom: 18px; }
.btn-submit {
  width: 100%; padding: 13px; font-size: 15px; font-weight: 600;
  background: var(--gradient-button); color: #fff; border: none;
  border-radius: var(--radius-form); cursor: pointer; font-family: var(--font-base);
  box-shadow: var(--shadow-button); transition: all var(--motion-fast);
}
.btn-submit:hover { background: var(--gradient-button-hover); transform: translateY(-1px); }

/* Pricing */
.pricing-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; position: relative; }
.pricing-card.featured { border-color: var(--color-primary); box-shadow: 0 0 32px rgba(124,58,237,0.2); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-button); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 16px; border-radius: var(--radius-pill); white-space: nowrap; }
.pricing-price { font-size: 2.2rem; font-weight: 700; color: var(--color-primary); margin: 14px 0 4px; }
.pricing-price span { font-size: 0.9rem; color: var(--color-text-soft); font-weight: 400; }
.pricing-list { text-align: left; margin: 18px 0 24px; }
.pricing-list li { padding: 7px 0; border-bottom: 1px solid rgba(124,58,237,0.06); color: var(--color-text-soft); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.pricing-list li i { color: var(--color-primary); font-size: 12px; }

/* Testimonials */
.testimonial-card { background: var(--color-card-alt); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: var(--card-padding); }
.testimonial-card .stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; display: flex; gap: 2px; }
.testimonial-card blockquote { color: var(--color-text-soft); font-size: 14px; font-style: italic; margin-bottom: 18px; line-height: 1.75; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-button); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #fff; font-weight: 700; flex-shrink: 0; }
.author-info strong { color: #fff; font-size: 14px; display: block; }
.author-info span { color: var(--color-text-muted); font-size: 12px; }

/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--color-border); }
.tl-item { position: relative; margin-bottom: 28px; }
.tl-dot { position: absolute; left: -24px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-bg); }
.tl-year { font-size: 12px; color: var(--color-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.tl-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.tl-desc { font-size: 13px; color: var(--color-text-soft); line-height: 1.6; }

/* Two-col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl); align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--gradient-footer); border-top: 1px solid var(--color-border); padding: 56px 0 0; }
.footer-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--gap-xl); }
.footer-brand-col p { color: var(--color-footer-text); font-size: 14px; margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-auth-btns { display: flex; gap: 8px; margin-top: 16px; }
.btn-primary-footer, .btn-outline-footer { padding: 9px 18px; font-size: 13px; font-weight: 600; border-radius: var(--radius-sm); font-family: var(--font-base); }
.btn-primary-footer { background: var(--gradient-button); color: #fff; border: none; }
.btn-outline-footer { background: transparent; border: 1px solid var(--color-primary); color: var(--color-accent); }
.footer-links-col h4 { font-size: 13px; font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--color-border); }
.footer-links-col li { margin-bottom: 9px; }
.footer-links-col a { color: var(--color-footer-text); font-size: 14px; transition: color var(--motion-fast); }
.footer-links-col a:hover { color: var(--color-accent); }
.footer-contact-col h4 { font-size: 13px; font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--color-border); }
.footer-contact-col p { color: var(--color-footer-text); font-size: 14px; line-height: 1.7; }
.footer-support { margin-top: 12px; display: flex; align-items: center; gap: 8px; color: var(--color-text); font-size: 14px; }
.footer-support i { color: var(--color-success); }
.footer-bottom { max-width: var(--container-max); margin: 40px auto 0; padding: 20px clamp(16px, 3vw, 24px); border-top: 1px solid var(--color-border); }
.footer-bottom p { color: var(--color-text-muted); font-size: 13px; text-align: center; }

@media (max-width: 992px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } .footer-bottom { text-align: center; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
