/* ============================================================
   ok777.me — Emerald Trust Gaming UI Design System
   Original design system for Bangladesh market
   ============================================================ */

:root {
  /* Color Tokens */
  --color-primary: #0d6e3f;
  --color-primary-dark: #094d2c;
  --color-primary-soft: #e8f5ee;
  --color-secondary: #1a2744;
  --color-accent: #f0a500;
  --color-bg: #f5f7fa;
  --color-bg-soft: #eef1f6;
  --color-surface: #ffffff;
  --color-surface-strong: #f8f9fb;
  --color-card: #ffffff;
  --color-card-alt: #f0f4f8;
  --color-border: #dfe4ea;
  --color-border-strong: #c8ced6;
  --color-text: #1c2331;
  --color-text-soft: #4a5568;
  --color-text-muted: #8492a6;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-footer-bg: #111827;
  --color-footer-text: #c9d1d9;

  /* Gradient Tokens */
  --gradient-hero: linear-gradient(135deg, #0d3b26 0%, #1a2744 50%, #0d6e3f 100%);
  --gradient-hero-soft: linear-gradient(135deg, #e8f5ee 0%, #f0f4f8 100%);
  --gradient-button: linear-gradient(135deg, #0d6e3f 0%, #22c55e 100%);
  --gradient-button-hover: linear-gradient(135deg, #094d2c 0%, #16a34a 100%);
  --gradient-card-border: linear-gradient(135deg, #0d6e3f30, #f0a50030);
  --gradient-cta: linear-gradient(135deg, #1a2744 0%, #0d3b26 100%);
  --gradient-footer: linear-gradient(180deg, #111827 0%, #0a0f1a 100%);

  /* Shadow Tokens */
  --shadow-header: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 32px rgba(13,110,63,0.12);
  --shadow-button: 0 4px 14px rgba(13,110,63,0.25);
  --shadow-cta: 0 4px 20px rgba(26,39,68,0.15);
  --shadow-soft: 0 1px 6px rgba(0,0,0,0.04);

  /* Radius Tokens */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --radius-card: 14px;

  /* Typography */
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --fs-h1: clamp(1.75rem, 4vw, 2.75rem);
  --fs-h2: clamp(1.35rem, 3vw, 2rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.45rem);
  --fs-body: 1.05rem;
  --fs-small: 0.88rem;
  --fs-nav: clamp(13px, .84vw, 15px);
  --lh-heading: 1.3;
  --lh-body: 1.85;

  /* Spacing */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 820px;
  --section-y: clamp(48px, 6vw, 80px);
  --section-y-sm: clamp(32px, 4vw, 56px);
  --gap-xs: 6px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --header-h: 72px;
  --mobile-header-h: 64px;
  --card-padding: clamp(1.2rem, 2vw, 1.8rem);

  /* Motion */
  --motion-fast: 150ms;
  --motion-normal: 250ms;
  --motion-slow: 400ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  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-primary); text-decoration: none; transition: color var(--motion-fast); }
a:hover { color: var(--color-primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: var(--lh-heading); margin: 0 0 0.75em; color: var(--color-text); font-weight: 700; }
h1 { font-size: var(--fs-h1); color: #fff; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.5em; }
button { cursor: pointer; font-family: inherit; }

/* Focus */
:focus-visible { outline: 3px 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; scroll-behavior: auto !important; } }

/* ============================================================
   CONTAINER
   ============================================================ */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: var(--container-narrow); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--color-secondary);
  box-shadow: var(--shadow-header);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.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);
  line-height: 1;
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: background var(--motion-fast), color var(--motion-fast);
  text-decoration: none;
  font-weight: 500;
}
.primary-nav a:hover,
.primary-nav a.active {
  background: var(--color-primary);
  color: #fff;
}
.header-actions {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, .6vw, 10px);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.4rem;
  padding: 0;
  cursor: pointer;
  transition: background var(--motion-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.5rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--motion-fast) var(--ease-out);
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--gradient-button);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.btn-primary:hover {
  background: var(--gradient-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,110,63,0.35);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-secondary);
  box-shadow: 0 4px 14px rgba(240,165,0,0.3);
}
.btn-accent:hover {
  background: #e09600;
  transform: translateY(-2px);
  color: var(--color-secondary);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-login {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  min-height: 38px;
}
.btn-login:hover { background: rgba(255,255,255,0.22); color: #fff; }
.btn-register {
  background: var(--gradient-button);
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  min-height: 38px;
  box-shadow: 0 2px 8px rgba(13,110,63,0.25);
}
.btn-register:hover { background: var(--gradient-button-hover); color: #fff; transform: translateY(-1px); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--mobile-header-h);
  left: 0;
  right: 0;
  background: var(--color-secondary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  max-height: calc(100vh - var(--mobile-header-h));
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
#mobile-menu.is-open { display: flex; flex-direction: column; gap: 4px; }
#mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--motion-fast);
}
#mobile-menu a:hover,
#mobile-menu a.active { background: var(--color-primary); color: #fff; }

/* ============================================================
   HERO VARIANTS
   ============================================================ */
.hero-home {
  background: var(--gradient-hero);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(13,110,63,0.2) 0%, transparent 60%);
}
.hero-home .container { position: relative; z-index: 1; }
.hero-home h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); max-width: 600px; }
.hero-home .hero-lead { font-size: 1.1rem; opacity: 0.9; max-width: 540px; margin-bottom: 1.5rem; }
.hero-home .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-lg); align-items: center; }
.hero-home .hero-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.3); }
.hero-home .hero-visual img { width: 100%; height: auto; display: block; }

.hero-inner {
  background: var(--gradient-cta);
  color: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
}
.hero-inner .breadcrumb { display: flex; gap: 8px; font-size: var(--fs-small); margin-bottom: 1rem; opacity: 0.7; flex-wrap: wrap; }
.hero-inner .breadcrumb a { color: rgba(255,255,255,0.8); }
.hero-inner .breadcrumb span { color: rgba(255,255,255,0.5); }
.hero-inner h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.hero-inner .hero-desc { opacity: 0.85; max-width: 900px; }
.hero-inner .hero-updated { opacity: 0.75; margin-top: 0.75rem; font-size: 0.95rem; }

.hero-auth {
  background: linear-gradient(135deg, #0d3b26 0%, #1a2744 100%);
  color: #fff;
  padding: clamp(40px, 5vw, 60px) 0;
}
.hero-auth .auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl); align-items: start; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--color-bg-soft); }
.section-dark { background: var(--color-secondary); color: #fff; }
.section-primary-soft { background: var(--color-primary-soft); }
.section-title { text-align: center; margin-bottom: var(--gap-lg); }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title .accent { color: var(--color-primary); }
.section-title p { color: var(--color-text-soft); max-width: 560px; margin: 0 auto; }
.divider { width: 56px; height: 4px; background: var(--color-primary); border-radius: 2px; margin: 0.5rem auto 1.2rem; }

/* ============================================================
   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); }

.feature-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  transition: transform var(--motion-normal) var(--ease-out), box-shadow var(--motion-normal);
  border: 1px solid var(--color-border);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.feature-card .card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: #fff; font-size: 1.4rem;
}
.feature-card h3, .feature-card h5 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--color-text-soft); font-size: 0.95rem; margin: 0; }

.trust-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.step-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.game-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--motion-normal), box-shadow var(--motion-normal);
  border: 1px solid var(--color-border);
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.game-card .card-img { aspect-ratio: 16/10; overflow: hidden; }
.game-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-slow); }
.game-card:hover .card-img img { transform: scale(1.05); }
.game-card .card-body { padding: 1rem 1.2rem; }
.game-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.game-card p { font-size: 0.9rem; color: var(--color-text-soft); margin: 0 0 0.8rem; }

/* ============================================================
   CONTENT / PROSE
   ============================================================ */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl); align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-img { border-radius: var(--radius-lg); box-shadow: 0 4px 24px rgba(0,0,0,0.1); width: 100%; }

.prose { max-width: var(--container-narrow); }
.prose p { font-size: 1.05rem; line-height: 1.9; margin: 0 0 1.1em; color: var(--color-text-soft); }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose li { margin-bottom: 0.4em; color: var(--color-text-soft); }

[data-seo-body="true"] { position: relative; }
[data-seo-body="true"] h2 { color: var(--color-text); }
[data-seo-body="true"] p { color: var(--color-text-soft); line-height: 1.9; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.compare-table th { background: var(--color-secondary); color: #fff; padding: 12px 16px; text-align: center; font-weight: 600; }
.compare-table th.highlight { background: var(--color-primary); }
.compare-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid var(--color-border); }
.compare-table tr:nth-child(even) { background: var(--color-primary-soft); }
.compare-table .yes { color: var(--color-success); font-weight: 600; }
.compare-table .no { color: var(--color-danger); }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-band {
  background: var(--gradient-cta);
  color: #fff;
  padding: var(--section-y-sm) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { opacity: 0.85; max-width: 560px; margin: 0 auto 1.5rem; }

.cta-inline {
  background: var(--color-primary-soft);
  border: 1px solid rgba(13,110,63,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   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: var(--gap-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: background var(--motion-fast);
}
.faq-question:hover { background: var(--color-bg-soft); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--motion-normal);
  font-size: 1.2rem;
  color: var(--color-primary);
}
.faq-item.is-open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.2rem 1rem;
  color: var(--color-text-soft);
  line-height: 1.8;
}
.faq-item.is-open .faq-answer { display: block; }

/* ============================================================
   FORMS
   ============================================================ */
.auth-form-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--color-text);
}
.form-group input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
  background: var(--color-surface);
  color: var(--color-text);
}
.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13,110,63,0.12);
}
.form-submit {
  width: 100%;
  min-height: 48px;
  background: var(--gradient-button);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--motion-fast);
  box-shadow: var(--shadow-button);
}
.form-submit:hover {
  background: var(--gradient-button-hover);
  transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
}
.testi-stars { color: var(--color-accent); font-size: 1rem; margin-bottom: 0.5rem; }
.testi-name { font-weight: 700; color: var(--color-text); }
.testi-city { font-size: var(--fs-small); color: var(--color-text-muted); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar { background: var(--color-bg-soft); padding: 0.8rem 0; border-bottom: 1px solid var(--color-border); }
.breadcrumb-list { display: flex; gap: 8px; font-size: var(--fs-small); color: var(--color-text-muted); flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.breadcrumb-list a { color: var(--color-primary); }
.breadcrumb-list .sep { color: var(--color-text-muted); }

/* ============================================================
   PRIVACY / POLICY
   ============================================================ */
.policy-notice {
  background: var(--color-primary-soft);
  border: 1.5px solid rgba(13,110,63,0.2);
  border-radius: var(--radius-card);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.policy-notice .notice-icon { font-size: 2rem; color: var(--color-primary); flex-shrink: 0; }

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
.rg-panel {
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.rg-panel h3 { color: var(--color-accent); }
.rg-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.rg-item .rg-icon { font-size: 1.5rem; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   ARTICLE / READING LAYOUT
   ============================================================ */
.article-shell { max-width: var(--container-narrow); margin: 0 auto; }
.article-meta { display: flex; gap: 1rem; font-size: var(--fs-small); color: var(--color-text-muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
.article-cover { border-radius: var(--radius-lg); margin-bottom: 2rem; overflow: hidden; }
.article-body { line-height: 1.95; }
.article-body h2 { margin-top: 2.5rem; }
.article-body p { margin-bottom: 1.2em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gradient-footer);
  color: var(--color-footer-text);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
}
.footer-brand { max-width: 300px; }
.footer-brand .footer-logo { height: 36px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.93rem; opacity: 0.75; line-height: 1.7; }
.site-footer h6 {
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}
.site-footer a {
  color: var(--color-footer-text);
  font-size: 0.93rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color var(--motion-fast);
}
.site-footer a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.4);
}
.payment-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 0.8rem; }
.payment-badge {
  background: rgba(255,255,255,0.06);
  color: var(--color-footer-text);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   VIP PLANS
   ============================================================ */
.plan-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  background: var(--color-card);
  transition: transform var(--motion-normal);
  border: 1px solid var(--color-border);
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured {
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  box-shadow: 0 8px 40px rgba(26,39,68,0.3);
}
.plan-card.featured h4, .plan-card.featured p, .plan-card.featured li { color: rgba(255,255,255,0.9); }
.plan-price { font-size: 2rem; font-weight: 700; color: var(--color-primary); margin: 0.5rem 0; }
.plan-card.featured .plan-price { color: var(--color-accent); }
.plan-badge { background: var(--color-accent); color: var(--color-secondary); font-size: 0.75rem; padding: 3px 12px; border-radius: var(--radius-pill); font-weight: 700; }
.plan-features { list-style: none; padding: 0; margin: 1.2rem 0; text-align: left; }
.plan-features li { padding: 0.35rem 0; font-size: 0.95rem; }
.plan-features li::before { content: '\2713 '; color: var(--color-primary); font-weight: 700; }
.plan-card.featured .plan-features li::before { color: var(--color-accent); }

/* ============================================================
   SWIPER DEGRADATION
   ============================================================ */
.swiper:not(.swiper-initialized) { overflow-x: auto; display: flex; gap: var(--gap-md); scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.swiper:not(.swiper-initialized) .swiper-slide { flex: 0 0 280px; scroll-snap-align: start; }

/* ============================================================
   AOS DEGRADATION
   ============================================================ */
[data-aos] { opacity: 1 !important; transform: none !important; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-start { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.gap-2 { gap: 0.75rem; }
.gap-3 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1180px) {
  .site-header .header-inner {
    width: 100%;
    max-width: none;
    padding-left: clamp(8px, 2.4vw, 14px);
    padding-right: clamp(8px, 2.4vw, 14px);
    min-height: var(--mobile-header-h);
    justify-content: flex-start;
    gap: clamp(6px, 1.8vw, 10px);
  }
  .brand-wrap { flex: 0 1 auto; margin-right: 0; }
  .site-logo { height: clamp(30px, 8vw, 40px); max-width: clamp(104px, 27vw, 138px); }
  .primary-nav { display: none; }
  .header-actions { margin-left: auto; flex: 0 0 auto; gap: clamp(5px, 1.6vw, 8px); }
  .header-actions .btn { min-height: 40px; padding-inline: clamp(10px, 2.6vw, 14px); font-size: clamp(12px, 3.2vw, 14px); }
  .nav-toggle { display: inline-flex; flex: 0 0 40px; width: 40px; height: 40px; margin-left: 2px; }

  .hero-home .hero-grid { grid-template-columns: 1fr; }
  .hero-home .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-auth .auth-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inline { flex-direction: column; text-align: center; }
  .plan-card { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 414px) {
  :root { --section-y: 40px; --section-y-sm: 28px; }
  .hero-home { padding: 48px 0 40px; }
  .hero-inner { padding: 32px 0; }
  .card-grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  .site-header .header-inner { padding-left: 8px; padding-right: 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .header-actions .btn { min-height: 38px; padding-inline: 9px; font-size: 12px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
  body { font-size: 0.98rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .nav-toggle, #mobile-menu, .cta-band, #br-stick { display: none !important; }
  body { font-size: 12pt; background: #fff; color: #000; }
}
