/* ==========================================================================
   MR MT4 (mrmt4.site) - Premium Binary Indicators & Trading Tools
   High Performance Stylesheet - Ultra Fast & Clean Dark Mode Fintech
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #07090e;
  --bg-secondary: #0c1019;
  --bg-tertiary: #131a29;
  --bg-card: #0e1524;
  --bg-card-hover: #141e33;
  --bg-glass: rgba(14, 21, 36, 0.88);
  --bg-accent-subtle: rgba(0, 242, 166, 0.08);

  /* Brand Accents */
  --color-brand-cyan: #00f2a6;
  --color-brand-cyan-glow: rgba(0, 242, 166, 0.35);
  --color-brand-blue: #00c8ff;
  --color-brand-gold: #f59e0b;
  --color-brand-red: #ff3b5c;

  /* Telegram Brand */
  --color-telegram: #229ed9;

  /* Typography & Text */
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(0, 242, 166, 0.3);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-neon-cyan: 0 0 20px rgba(0, 242, 166, 0.2);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Outfit', var(--font-main);

  /* Layout */
  --container-max: 1240px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Fast transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.22s ease;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(0, 242, 166, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(0, 200, 255, 0.04) 0%, transparent 45%);
  background-attachment: scroll;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

/* ==========================================================================
   Typography Helpers
   ========================================================================== */
.font-mono { font-family: var(--font-mono); }
.font-display { font-family: var(--font-display); }

.text-gradient-cyan {
  background: linear-gradient(135deg, #00f2a6 0%, #00c8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan { color: var(--color-brand-cyan); }
.text-muted { color: var(--text-muted); }

/* Section Header Structure */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-accent-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00f2a6 0%, #00c8ff 100%);
  color: #050a12;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 242, 166, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 242, 166, 0.5);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-telegram {
  background: linear-gradient(135deg, #229ed9 0%, #167aa8 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(34, 158, 217, 0.4);
}

.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34, 158, 217, 0.6);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #07090e;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.0625rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(7, 9, 14, 0.94);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  transition: border-bottom-color var(--transition-fast);
}

.header.scrolled {
  border-bottom-color: rgba(0, 242, 166, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(0, 242, 166, 0.45);
  box-shadow: 0 0 12px rgba(0, 242, 166, 0.25);
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
  box-shadow: 0 0 18px rgba(0, 242, 166, 0.5);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.1;
}

.brand-title span {
  color: var(--color-brand-cyan);
}

.brand-domain-badge {
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.audio-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.audio-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.audio-toggle-btn.active {
  border-color: var(--color-brand-cyan);
  color: var(--color-brand-cyan);
  background: var(--bg-accent-subtle);
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mobile-drawer {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 70px 0 90px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 242, 166, 0.08);
  border: 1px solid rgba(0, 242, 166, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-brand-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-brand-cyan);
}

.hero-badge-pill span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-brand-cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero-description {
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item svg {
  color: var(--color-brand-cyan);
  flex-shrink: 0;
}

/* Hero Visual Showcase */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: #0f1626;
  border: 1px solid rgba(0, 242, 166, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-image-wrap {
  position: relative;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  background: #090e18;
}

.hero-main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Clean Static Badges */
.floating-stat-badge {
  position: absolute;
  background: #0d1524;
  border: 1px solid var(--border-accent);
  padding: 11px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-stat-badge.badge-top-right {
  top: -16px;
  right: -16px;
  border-color: rgba(245, 158, 11, 0.4);
}

.floating-stat-badge.badge-bottom-left {
  bottom: -18px;
  left: -16px;
  border-color: rgba(0, 242, 166, 0.4);
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon.gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-brand-gold);
}

.stat-icon.cyan {
  background: rgba(0, 242, 166, 0.15);
  color: var(--color-brand-cyan);
}

.stat-info .stat-val {
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.stat-info .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Indicators Showcase
   ========================================================================== */
.indicators-section {
  padding: 90px 0;
  position: relative;
}

.indicator-filter-bar {
  display: none;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.filter-btn.active {
  background: var(--color-brand-cyan);
  color: #07090e;
  border-color: var(--color-brand-cyan);
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.indicator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.indicator-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.indicator-card.featured {
  border-color: rgba(0, 242, 166, 0.55);
  background: linear-gradient(180deg, #0e1c2e 0%, #091322 100%);
  box-shadow: 0 12px 35px rgba(0, 242, 166, 0.12);
  transform: translateY(-8px);
}

.indicator-card.featured:hover {
  transform: translateY(-12px);
  border-color: var(--color-brand-cyan);
  box-shadow: 0 16px 40px rgba(0, 242, 166, 0.22);
}

.card-top-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00f2a6 0%, #00c8ff 100%);
  color: #050a12;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 242, 166, 0.45);
}

.indicator-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #060a12;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  position: relative;
}

.indicator-card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.indicator-card:hover .indicator-card-media-img {
  transform: scale(1.04);
}

.indicator-card.featured .indicator-card-media {
  border-color: rgba(0, 242, 166, 0.25);
  box-shadow: 0 8px 24px rgba(0, 242, 166, 0.12);
}

.indicator-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.indicator-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 166, 0.1);
  border: 1px solid rgba(0, 242, 166, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-cyan);
}

.indicator-winrate-pill {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 166, 0.12);
  color: var(--color-brand-cyan);
  border: 1px solid rgba(0, 242, 166, 0.3);
}

.indicator-card h3 {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.indicator-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.indicator-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.indicator-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.indicator-features-list li svg {
  color: var(--color-brand-cyan);
  flex-shrink: 0;
}

.card-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.card-price-wrap {
  display: flex;
  flex-direction: column;
}

.price-strike {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-family: var(--font-mono);
}

.price-current {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

/* ==========================================================================
   Telegram VIP Showcase Section
   ========================================================================== */
.telegram-showcase-section {
  padding: 90px 0;
  background: #080c14;
  position: relative;
}

.telegram-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.telegram-mockup-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(34, 158, 217, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(34, 158, 217, 0.12);
  background: #080d16;
}

.telegram-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform var(--transition-normal);
}

.telegram-mockup-wrap:hover .telegram-img {
  transform: scale(1.02);
}

.telegram-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px 0;
}

.telegram-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.telegram-benefit-card:hover {
  border-color: rgba(34, 158, 217, 0.4);
  transform: translateX(3px);
}

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(34, 158, 217, 0.15);
  color: var(--color-telegram);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.benefit-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */
.comparison-section {
  padding: 80px 0;
}

.comparison-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th, .comp-table td {
  padding: 18px 22px;
  text-align: left;
}

.comp-table th {
  background: #0f1626;
  font-weight: 700;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border-light);
}

.comp-table th.highlight-col {
  background: rgba(0, 242, 166, 0.12);
  color: var(--color-brand-cyan);
  border-bottom: 2px solid var(--color-brand-cyan);
}

.comp-table td {
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9375rem;
}

.comp-table td.highlight-col {
  background: rgba(0, 242, 166, 0.04);
  font-weight: 600;
  color: #fff;
}




/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 90px 0;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(0, 242, 166, 0.3);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question:hover {
  color: var(--color-brand-cyan);
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--color-brand-cyan);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px 22px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 25px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-bio p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links-list a:hover {
  color: var(--color-brand-cyan);
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4, 7, 12, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0d1424;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal-admin-contact-box {
  background: #090e18;
  border: 1px dashed rgba(34, 158, 217, 0.4);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  margin: 18px 0;
}

.modal-admin-contact-box .admin-handle {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-telegram);
  margin: 6px 0;
}

/* ==========================================================================
   Floating Telegram Button
   ========================================================================== */
.floating-telegram-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #229ed9 0%, #167aa8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.45);
  z-index: 98;
  transition: transform var(--transition-fast);
}

.floating-telegram-btn:hover {
  transform: scale(1.08);
}

.floating-telegram-btn svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group, .hero-trust-row {
    justify-content: center;
  }

  .floating-stat-badge.badge-top-right {
    right: 8px;
    top: -10px;
  }

  .floating-stat-badge.badge-bottom-left {
    left: 8px;
    bottom: -10px;
  }


  .telegram-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .indicators-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .indicator-card.featured {
    transform: none;
  }

  .indicator-card.featured:hover {
    transform: translateY(-4px);
  }

  .telegram-benefits-list {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Devices (Smartphones & Phablets <= 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Header Navigation */
  .header {
    height: 64px;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .brand-title {
    font-size: 1.125rem;
  }

  .brand-domain-badge {
    font-size: 0.65rem;
    padding: 1px 6px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 36px;
    height: 36px;
  }

  .header .btn-telegram {
    padding: 7px 12px;
    font-size: 0.8125rem;
    gap: 6px;
  }

  .header .btn-telegram svg {
    width: 15px;
    height: 15px;
  }

  /* Mobile Drawer Menu */
  .mobile-drawer {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #090e18;
    padding: 22px;
    flex-direction: column;
    gap: 14px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    z-index: 99;
    border-bottom: 1px solid var(--border-accent);
  }

  .mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer .nav-link {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  /* Global Section Spacings & Typography */
  .hero-section {
    padding: 30px 0 46px 0;
  }

  .indicators-section,
  .telegram-showcase-section,
  .comparison-section,
  .testimonials-section,
  .faq-section {
    padding: 46px 0;
  }

  .section-header {
    margin-bottom: 26px;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Hero Section Typography & Elements */
  .hero-badge-pill {
    font-size: 0.72rem;
    padding: 5px 12px;
    margin-bottom: 14px;
    gap: 6px;
  }

  .hero-badge-pill .pulse-dot {
    width: 6px;
    height: 6px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 6.2vw, 2.15rem);
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.9375rem;
    justify-content: center;
  }

  .btn-lg {
    padding: 13px 22px;
    font-size: 0.9375rem;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    align-items: center;
  }

  .trust-item {
    font-size: 0.78rem;
    gap: 6px;
  }

  .trust-item svg {
    width: 15px;
    height: 15px;
  }

  /* Floating Badges on Hero Image (Stay Neatly Inside Box) */
  .floating-stat-badge {
    padding: 6px 10px;
    font-size: 0.72rem;
    gap: 8px;
    border-radius: 8px;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .floating-stat-badge.badge-top-right {
    top: 8px;
    right: 8px;
  }

  .floating-stat-badge.badge-bottom-left {
    bottom: 8px;
    left: 8px;
  }

  /* Indicators Showcase */
  .filter-bar {
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 22px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    font-size: 0.8125rem;
    padding: 6px 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .indicators-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .indicator-card {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .indicator-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .indicator-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .indicator-icon {
    width: 42px;
    height: 42px;
  }

  .indicator-winrate-pill {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .indicator-features-list {
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .indicator-features-list li {
    font-size: 0.8125rem;
  }

  .card-footer-action {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .card-footer-action .btn {
    width: 100%;
    justify-content: center;
  }

  .card-price-block {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  /* Telegram VIP Showcase */
  .telegram-mockup-wrap {
    max-width: 480px;
    margin: 0 auto 24px auto;
    border-radius: 16px;
  }

  .telegram-img {
    border-radius: 16px;
  }

  .telegram-benefits-list {
    margin: 20px 0 24px 0;
    gap: 12px;
  }

  .telegram-benefit-card {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 10px;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
  }

  .benefit-text h4 {
    font-size: 0.9375rem;
  }

  .benefit-text p {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .telegram-showcase-section .btn {
    width: 100%;
    justify-content: center;
  }

  /* Comparison Section */
  .comparison-table-wrap {
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comp-table {
    min-width: 520px;
  }

  .comp-table th, .comp-table td {
    padding: 10px 12px;
    font-size: 0.78rem;
  }




  /* FAQ */
  .faq-question {
    padding: 14px 16px;
    font-size: 0.9375rem;
    line-height: 1.35;
  }

  .faq-answer {
    padding: 0 16px 14px 16px;
  }

  .faq-answer p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Footer */
  .footer {
    padding: 42px 0 20px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col h4 {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  .footer-col p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .footer-links-list a {
    font-size: 0.8125rem;
    padding: 3px 0;
  }

  .footer-disclaimer-box {
    font-size: 0.72rem;
    padding: 12px;
    line-height: 1.45;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 0.75rem;
  }

  /* Modal */
  .modal-card {
    width: 92%;
    max-width: 400px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .modal-header h3 {
    font-size: 1.25rem;
  }

  .modal-header p {
    font-size: 0.8rem;
  }

  .admin-handle {
    font-size: 1.25rem;
  }

  .modal-admin-contact-box {
    padding: 12px;
    margin-bottom: 14px;
  }

  .modal-card .btn {
    font-size: 0.875rem;
    padding: 12px 16px;
  }

  /* Floating Telegram Button */
  .floating-telegram-btn {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px;
  }

  .floating-telegram-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* Extra Small Phones (<= 480px e.g. iPhone 13 mini, SE, iPhone 16 Pro Max viewport) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.4rem;
    line-height: 1.24;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .header .btn-telegram span {
    display: inline;
  }
}
