/* ============================================================
   fd77.me - Emerald Trust Gaming UI - Design System
   ============================================================ */
:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-soft: rgba(37,99,235,.12);
  --color-secondary: #0ea5e9;
  --color-accent: #10b981;
  --color-bg: #070d1a;
  --color-bg-soft: #0c1526;
  --color-surface: #111c32;
  --color-surface-strong: #162240;
  --color-card: #131f38;
  --color-card-alt: #0f1a2e;
  --color-border: #1e3252;
  --color-border-strong: #2a4470;
  --color-text: #e2e8f0;
  --color-text-soft: #94a3b8;
  --color-text-muted: #64748b;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-footer-bg: #050a14;
  --color-footer-text: #94a3b8;
  --gradient-hero: linear-gradient(135deg, #070d1a 0%, #0c1a30 50%, #112240 100%);
  --gradient-button: linear-gradient(135deg, #2563eb, #0ea5e9);
  --gradient-button-hover: linear-gradient(135deg, #1d4ed8, #0284c7);
  --gradient-cta: linear-gradient(135deg, #112240, #0c1526);
  --gradient-footer: linear-gradient(180deg, #070d1a, #050a14);
  --shadow-header: 0 2px 16px rgba(0,0,0,.35);
  --shadow-card: 0 4px 24px rgba(0,0,0,.2);
  --shadow-card-hover: 0 8px 32px rgba(37,99,235,.15);
  --shadow-button: 0 4px 12px rgba(37,99,235,.25);
  --shadow-soft: 0 2px 8px rgba(0,0,0,.12);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  --radius-card: 14px;
  --fs-h1: clamp(1.8rem, 4.5vw, 3rem);
  --fs-h2: clamp(1.4rem, 3vw, 2.1rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-nav: clamp(13px, .84vw, 15px);
  --lh-heading: 1.25;
  --lh-body: 1.75;
  --container-max: 1200px;
  --container-narrow: 820px;
  --section-y: clamp(48px, 6vw, 80px);
  --section-y-sm: clamp(32px, 4vw, 56px);
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --header-h: 72px;
  --mobile-header-h: 64px;
  --motion-fast: .15s;
  --motion-normal: .25s;
  --motion-slow: .4s;
  --ease-out: cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; transition: color var(--motion-fast); }
a:hover { color: #fff; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: var(--radius-xs); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* Container */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000; width: 100%;
  background: rgba(7,13,26,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--motion-normal);
}
.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; }
.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; white-space: nowrap;
  color: var(--color-text-soft); transition: color var(--motion-fast);
  border-radius: var(--radius-sm); position: relative;
}
.primary-nav a:hover { color: #fff; }
.primary-nav a.active { color: var(--color-secondary); font-weight: 600; }
.primary-nav a.active::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--color-secondary); border-radius: 1px;
}
.header-actions { flex: 0 0 auto; margin-left: auto; display: flex; align-items: center; gap: clamp(6px, .6vw, 10px); }
.nav-toggle { display: none; flex: 0 0 40px; width: 40px; height: 40px; border: none; background: none; cursor: pointer; padding: 8px; border-radius: var(--radius-sm); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.hamburger-line { width: 22px; height: 2px; background: var(--color-text); border-radius: 1px; transition: transform var(--motion-normal), opacity var(--motion-normal); }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; top: var(--mobile-header-h); left: 12px; right: 12px; z-index: 999; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 16px; max-height: calc(100vh - 80px); overflow-y: auto; box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.mobile-menu.is-open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a { display: block; padding: 14px 16px; color: var(--color-text); font-size: 1rem; font-weight: 500; 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-secondary); }

@media (max-width: 1180px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { min-height: var(--mobile-header-h); padding-left: clamp(8px, 2.4vw, 14px); padding-right: clamp(8px, 2.4vw, 14px); 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); }
  .header-actions { margin-left: auto; flex: 0 0 auto; justify-content: flex-end; }
}
@media (max-width: 375px) {
  .header-inner { padding-left: 8px; padding-right: 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
}

/* ============================================================
   SECTIONS & TYPOGRAPHY
   ============================================================ */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--color-surface); }
.section-dark { background: var(--color-bg-soft); }
h1 { font-size: var(--fs-h1); font-weight: 800; line-height: var(--lh-heading); color: #fff; }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: var(--lh-heading); color: #fff; margin-bottom: 16px; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.35; color: #fff; margin-bottom: 12px; }
.section-label { font-size: var(--fs-small); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--color-primary); margin-bottom: 8px; }
.section-subtitle { color: var(--color-text-soft); font-size: 1rem; margin-bottom: 2rem; }
.text-muted { color: var(--color-text-soft); }
.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.prose { max-width: var(--container-narrow); }
.prose p { margin-bottom: 18px; color: var(--color-text-soft); line-height: 1.85; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; cursor: pointer; transition: all var(--motion-fast); border: none; white-space: nowrap; min-height: 44px; text-decoration: none; }
.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 6px 20px rgba(37,99,235,.3); }
.btn-outline { border: 2px solid var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-ghost { color: var(--color-text-soft); background: var(--color-primary-soft); }
.btn-ghost:hover { color: #fff; background: rgba(37,99,235,.2); }

/* ============================================================
   HERO VARIANTS
   ============================================================ */
.hero-home { background: var(--gradient-hero); padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 80px); position: relative; overflow: hidden; }
.hero-home::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%); pointer-events: none; }
.hero-home::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(14,165,233,.08) 0%, transparent 70%); pointer-events: none; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content p { color: var(--color-text-soft); font-size: 1.1rem; max-width: 520px; margin: 16px 0 24px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.hero-badge { display: flex; align-items: center; gap: 6px; font-size: var(--fs-small); color: var(--color-text-soft); }
.hero-badge i { color: var(--color-accent); }
.hero-img { border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(37,99,235,.15); }

.hero-page { background: var(--gradient-hero); padding: clamp(36px, 5vw, 56px) 0; border-bottom: 1px solid var(--color-border); }
.hero-page h1 { margin-bottom: 12px; }
.hero-page p { color: var(--color-text-soft); max-width: 640px; }

.hero-article { background: var(--color-bg-soft); padding: clamp(28px, 4vw, 44px) 0; border-bottom: 1px solid var(--color-border); }
.hero-policy { background: var(--color-surface); padding: clamp(28px, 4vw, 44px) 0; border-bottom: 1px solid var(--color-border); }
.hero-auth { background: var(--gradient-hero); padding: clamp(40px, 5vw, 64px) 0; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 28px; }
  .hero-home { padding: 48px 0 36px; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid { display: grid; gap: var(--gap-md); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; } }

.feature-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 28px 24px; transition: border-color var(--motion-normal), transform var(--motion-normal), box-shadow var(--motion-normal); }
.feature-card:hover { border-color: var(--color-primary); transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.feature-icon { width: 52px; height: 52px; background: var(--color-primary-soft); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--color-secondary); margin-bottom: 16px; }
.feature-card h5 { color: #fff; font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { color: var(--color-text-soft); font-size: var(--fs-small); margin: 0; }

.game-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); overflow: hidden; transition: transform var(--motion-normal), border-color var(--motion-normal); display: block; text-decoration: none; }
.game-card:hover { transform: translateY(-5px); border-color: var(--color-secondary); }
.game-card img { width: 100%; height: 200px; object-fit: cover; }
.game-card-body { padding: 16px; }
.game-card-body h6 { color: #fff; font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.game-card-body span { color: var(--color-text-muted); font-size: .8rem; }

.trust-card { background: rgba(14,165,233,.06); border: 1px solid rgba(14,165,233,.18); border-radius: var(--radius-card); padding: 24px; }
.trust-card i { font-size: 2rem; color: var(--color-secondary); margin-bottom: 12px; display: block; }
.trust-card h6 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.trust-card p { color: var(--color-text-soft); font-size: var(--fs-small); margin: 0; }

.step-card { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.step-num { min-width: 48px; height: 48px; background: var(--gradient-button); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.step-content h5 { color: #fff; font-weight: 700; margin-bottom: 4px; }
.step-content p { color: var(--color-text-soft); margin: 0; font-size: var(--fs-small); }

.info-card { background: rgba(37,99,235,.06); border: 1px solid rgba(37,99,235,.2); border-left: 4px solid var(--color-primary); border-radius: var(--radius-md); padding: 20px 24px; }
.info-card h6 { color: var(--color-secondary); font-weight: 700; margin-bottom: 8px; }
.info-card p { color: var(--color-text-soft); font-size: var(--fs-small); margin: 0; }

.stat-bar { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 28px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat-num { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--color-secondary); display: block; }
.stat-label { color: var(--color-text-soft); font-size: var(--fs-small); }
@media (max-width: 600px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section { background: var(--gradient-cta); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: var(--section-y) 0; text-align: center; }
.cta-section p { color: var(--color-text-soft); max-width: 520px; margin: 0 auto 24px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: none; border: none; color: #fff; font-weight: 600; font-size: 1rem; cursor: pointer; text-align: left; transition: color var(--motion-fast); }
.faq-question:hover { color: var(--color-secondary); }
.faq-question .faq-icon { font-size: 1.2rem; transition: transform var(--motion-normal); flex-shrink: 0; color: var(--color-text-soft); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 18px; color: var(--color-text-soft); font-size: .95rem; line-height: 1.7; }
.faq-item.is-open .faq-answer { display: block; }

/* ============================================================
   FORMS (Auth pages)
   ============================================================ */
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.auth-form-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 36px 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--color-text); font-weight: 600; font-size: var(--fs-small); margin-bottom: 8px; }
.form-group input { width: 100%; padding: 12px 16px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-sm); color: var(--color-text); font-size: 1rem; transition: border-color var(--motion-fast); }
.form-group input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.form-note { font-size: var(--fs-small); color: var(--color-text-muted); margin-top: 12px; }
@media (max-width: 900px) { .auth-layout { grid-template-columns: 1fr; } }

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll { overflow-x: auto; border-radius: var(--radius-md); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--color-surface); color: var(--color-secondary); font-weight: 700; padding: 14px 16px; border: 1px solid var(--color-border); text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table td { background: var(--color-bg); color: var(--color-text); padding: 12px 16px; border: 1px solid var(--color-border); text-align: center; vertical-align: middle; }
.compare-table td:first-child { text-align: left; }
.compare-table tr:hover td { background: var(--color-bg-soft); }
.check-yes { color: var(--color-success); }
.check-no { color: var(--color-danger); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-wrap { background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: 12px 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: var(--fs-small); }
.breadcrumb a { color: var(--color-secondary); }
.breadcrumb span { color: var(--color-text-muted); }
.breadcrumb .sep { color: var(--color-text-muted); }

/* ============================================================
   POLICY / ARTICLE LAYOUT
   ============================================================ */
.policy-layout { max-width: var(--container-narrow); margin: 0 auto; }
.policy-toc { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 32px; }
.policy-toc h4 { color: #fff; font-weight: 700; margin-bottom: 12px; }
.policy-toc ul { padding-left: 20px; }
.policy-toc li { margin-bottom: 6px; }
.policy-toc a { color: var(--color-secondary); font-size: var(--fs-small); }
.policy-note { background: rgba(245,158,11,.06); border: 1px solid rgba(245,158,11,.2); border-left: 4px solid var(--color-warning); border-radius: var(--radius-md); padding: 16px 20px; margin: 24px 0; }
.policy-note p { color: var(--color-text-soft); font-size: var(--fs-small); margin: 0; }

.article-layout { max-width: var(--container-narrow); margin: 0 auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: var(--fs-small); color: var(--color-text-muted); margin-bottom: 24px; }
.article-cover { border-radius: var(--radius-lg); margin-bottom: 32px; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); align-items: start; }
.pricing-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; position: relative; transition: border-color var(--motion-normal), transform var(--motion-normal); }
.pricing-card.featured { border-color: var(--color-primary); transform: scale(1.03); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-button); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 16px; border-radius: var(--radius-pill); white-space: nowrap; }
.pricing-card h4 { color: var(--color-secondary); font-weight: 800; margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: #fff; }
.pricing-price span { font-size: 1rem; color: var(--color-text-soft); font-weight: 400; }
.pricing-card ul { text-align: left; margin: 24px 0; }
.pricing-card li { color: var(--color-text); font-size: var(--fs-small); padding: 8px 0; border-bottom: 1px solid var(--color-border); display: flex; gap: 8px; align-items: center; }
.pricing-card li i { color: var(--color-secondary); flex-shrink: 0; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } .pricing-card.featured { transform: none; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 28px; }
.stars { color: var(--color-warning); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card blockquote { color: var(--color-text); font-size: .95rem; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-button); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1rem; }
.author-info strong { color: #fff; display: block; font-size: var(--fs-small); }
.author-info span { color: var(--color-text-muted); font-size: .8rem; }

/* ============================================================
   BADGES
   ============================================================ */
.badge-live { background: rgba(239,68,68,.12); color: var(--color-danger); border: 1px solid rgba(239,68,68,.25); font-size: .7rem; padding: 2px 8px; border-radius: var(--radius-pill); font-weight: 600; }
.badge-new { background: rgba(34,197,94,.12); color: var(--color-success); border: 1px solid rgba(34,197,94,.25); font-size: .7rem; padding: 2px 8px; border-radius: var(--radius-pill); font-weight: 600; }
.badge-hot { background: rgba(245,158,11,.12); color: var(--color-warning); border: 1px solid rgba(245,158,11,.25); font-size: .7rem; padding: 2px 8px; border-radius: var(--radius-pill); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--gradient-footer); border-top: 1px solid var(--color-border); padding: 48px 0 24px; }
.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 1.2fr; gap: 32px; }
.footer-brand-name { color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.footer-desc { color: var(--color-footer-text); font-size: var(--fs-small); max-width: 280px; line-height: 1.6; }
.footer-contact { color: var(--color-footer-text); font-size: .8rem; margin-top: 12px; }
.footer-contact i { color: var(--color-secondary); margin-right: 4px; }
.footer-age { color: var(--color-text-muted); font-size: .75rem; margin-top: 8px; }
.footer-heading { color: var(--color-secondary); font-weight: 700; font-size: var(--fs-small); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--color-footer-text); font-size: var(--fs-small); transition: color var(--motion-fast); }
.footer-links a:hover { color: var(--color-secondary); }
.footer-bottom { border-top: 1px solid var(--color-border); margin-top: 32px; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; }
.footer-bottom p { color: var(--color-text-muted); font-size: .8rem; margin: 0; }
.footer-bottom a { color: var(--color-text-muted); }
.footer-bottom a:hover { color: var(--color-secondary); }
.footer-responsible { color: var(--color-text-muted); font-size: .75rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   AOS FALLBACK
   ============================================================ */
[data-aos] { opacity: 1 !important; transform: none !important; }
.aos-init[data-aos] { opacity: 1; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .gap-2 { gap: 12px; } .gap-3 { gap: 16px; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .grid-2-col { grid-template-columns: 1fr; } }
.img-rounded { border-radius: var(--radius-lg); }
.content-img { border-radius: var(--radius-md); margin: 24px 0; }

/* Swiper fallback */
.swiper:not(.swiper-initialized) .swiper-wrapper { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; }
.swiper:not(.swiper-initialized) .swiper-slide { flex: 0 0 280px; scroll-snap-align: start; }
