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

:root {
  --teal-light: #2ec4b6;
  --teal: #1a9e9e;
  --teal-dark: #0d7377;
  --purple: #6b5ce7;
  --bg-dark: #0a1628;
  --bg-alt: #071020;
  --bg-card: #0f1f38;
  --bg-card-hover: #142845;
  --text-primary: #e8f4f8;
  --text-secondary: #8fa8b8;
  --gradient-main: linear-gradient(135deg, #2ec4b6, #1a9e9e, #6b5ce7);
  --gradient-btn: linear-gradient(135deg, #2ec4b6, #1a9e9e);
  --gradient-accent: linear-gradient(135deg, #1a9e9e, #6b5ce7);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(46,196,182,0.25);
}
.btn-ghost:hover {
  border-color: var(--teal-light);
  background: rgba(46,196,182,0.08);
}
.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26,158,158,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(26,158,158,0.5);
}
.btn-lg { padding: 16px 40px; font-size: 16px; border-radius: 12px; }

/* ===== BLOCK SYSTEM ===== */
.block-video {
  position: relative;
  overflow: hidden;
}
.block-video .vid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.block-video .vid-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.block-video .vid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,22,40,0.80) 0%, rgba(7,16,32,0.92) 60%, rgba(10,22,40,0.96) 100%);
}
.block-video > *:not(.vid-bg):not(.vid-overlay) {
  position: relative; z-index: 2;
}

/* Dividers */
.edge {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(46,196,182,0.18) 25%, rgba(107,92,231,0.12) 75%, transparent 100%);
  position: relative;
}
.edge::before {
  content: '';
  position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 4px;
  background: var(--gradient-btn);
  border-radius: 2px;
}

/* Decorative glows */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

/* Section title */
.stitle {
  text-align: center;
  margin-bottom: 56px;
}
.stitle .badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(46,196,182,0.08);
  border: 1px solid rgba(46,196,182,0.12);
  margin-bottom: 18px;
  font-size: 22px;
  color: var(--teal-light);
}
.stitle h2 {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700;
  margin-bottom: 12px;
}
.stitle p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(10,22,40,0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(46,196,182,0.06);
}
header .container {
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 44px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
}
.logo-text span {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s; position: relative;
  padding: 8px 0;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-btn);
  transition: width 0.3s; border-radius: 1px;
}
nav a:hover { color: var(--text-primary); }
nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.mob-btn {
  display: none; background: none; border: none;
  color: var(--text-primary); font-size: 24px; cursor: pointer;
  z-index: 1100;
  position: relative;
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(46,196,182,0.08);
  border: 1px solid rgba(46,196,182,0.15);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-btn:hover {
  background: rgba(46,196,182,0.12);
  border-color: rgba(46,196,182,0.25);
}
.lang-btn i {
  color: var(--teal-light);
  font-size: 14px;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid rgba(46,196,182,0.1);
  border-radius: 10px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(46,196,182,0.06);
}
.lang-item:last-child {
  border-bottom: none;
}
.lang-item:hover {
  background: rgba(46,196,182,0.06);
  color: var(--text-primary);
}
.lang-item.active {
  background: rgba(46,196,182,0.08);
  color: var(--teal-light);
  font-weight: 600;
}
.lang-flag {
  font-size: 18px;
}

/* ========== MOBILE MENU ========== */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}
.mob-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mob-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #050c18 100%);
  border-left: 1px solid rgba(46,196,182,0.15);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 70px 20px 60px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  -webkit-overflow-scrolling: touch;
}
.mob-menu.active {
  transform: translateX(0);
}
.mob-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(46,196,182,0.08);
  border: 1px solid rgba(46,196,182,0.1);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
.mob-menu-close:hover {
  background: rgba(46,196,182,0.15);
  border-color: rgba(46,196,182,0.25);
  transform: rotate(90deg);
}
.mob-menu-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(46,196,182,0.15);
}
.mob-nav {
  display: flex;
  flex-direction: column;
}
.mob-nav a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(46,196,182,0.06);
  transition: all 0.3s;
  text-align: left;
}
.mob-nav a:hover {
  color: var(--teal-light);
  padding-left: 8px;
}
.mob-menu-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(46,196,182,0.06);
}
.mob-menu-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 10px 24px;
}

/* Mobile Language Switcher */
.mob-lang-list {
  margin-top: 18px;
  padding-bottom: 30px;
}
.mob-lang-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.mob-lang-title i {
  color: var(--teal-light);
}
.mob-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(46,196,182,0.04);
  border: 1px solid rgba(46,196,182,0.08);
  border-radius: 8px;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  transition: all 0.3s;
  position: relative;
}
.mob-lang-item:hover {
  background: rgba(46,196,182,0.08);
  border-color: rgba(46,196,182,0.15);
  color: var(--text-primary);
}
.mob-lang-item.active {
  background: rgba(46,196,182,0.1);
  border-color: rgba(46,196,182,0.25);
  color: var(--teal-light);
  font-weight: 600;
}
.mob-lang-item .fa-check {
  margin-left: auto;
  color: var(--teal-light);
  font-size: 12px;
}

/* ========== BLOCK 1 — HERO ========== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-content { max-width: 720px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(46,196,182,0.08);
  border: 1px solid rgba(46,196,182,0.15);
  font-size: 13px; font-weight: 500;
  color: var(--teal-light);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 58px; font-weight: 800;
  line-height: 1.1; margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero h1 .hl {
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero > .container > p,
.hero-content > p {
  font-size: 17px; color: var(--text-secondary);
  max-width: 540px; margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 56px;
}
.h-stat-num {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-stat-lbl { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* ========== BLOCK 2 — ABOUT ========== */
.about { padding: 110px 0; position: relative; overflow: hidden; background: var(--bg-alt); }
.about .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-content h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin-bottom: 18px; }
.about-content > p { color: var(--text-secondary); font-size: 15px; line-height: 1.85; margin-bottom: 24px; }
.about-feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about-feat {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--text-secondary);
}
.about-feat i {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(46,196,182,0.08); border: 1px solid rgba(46,196,182,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); font-size: 15px; flex-shrink: 0;
}
.about-img {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  background: transparent;
  border: none;
  box-shadow: none;
}
.ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 14px; gap: 10px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(46,196,182,0.04) 100%);
}
.ph i { font-size: 28px; opacity: 0.25; }

/* ========== BLOCK 3 — STEPS ========== */
.steps { padding: 100px 0 110px; position: relative; overflow: hidden; background: var(--bg-dark); }
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.scard {
  background: var(--bg-card);
  border: 1px solid rgba(46,196,182,0.07);
  border-radius: 18px; padding: 36px 32px;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.scard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-main);
  opacity: 0; transition: opacity 0.4s;
}
.scard:hover {
  background: var(--bg-card-hover);
  border-color: rgba(46,196,182,0.18);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 0 40px rgba(46,196,182,0.06);
}
.scard:hover::before { opacity: 1; }
.scard-num {
  position: absolute; top: 18px; right: 24px;
  font-family: var(--font-display);
  font-size: 52px; font-weight: 800;
  color: rgba(46,196,182,0.05); line-height: 1;
}
.scard-ico {
  width: 58px; height: 58px; border-radius: 16px;
  background: rgba(46,196,182,0.08);
  border: 1px solid rgba(46,196,182,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px; color: var(--teal-light);
}
.scard h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.scard p { color: var(--text-secondary); font-size: 14px; line-height: 1.75; }

/* ========== BLOCK 4 — PLATFORM ========== */
.platform { padding: 110px 0; text-align: center; }
.platform-txt {
  max-width: 620px; margin: 0 auto 40px;
  position: relative; z-index: 2;
}
.platform-txt p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }
.pf-feats {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 20px; flex-wrap: wrap;
}
.pf-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-secondary);
}
.pf-feat i { color: var(--teal-light); font-size: 14px; }
.platform-img {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto 44px;
  border-radius: 18px; overflow: hidden;
  background: transparent;
  border: none;
  aspect-ratio: 16/9;
  box-shadow: none;
}

/* ========== BLOCK 5 — SUPPORT ========== */
.support { padding: 110px 0; position: relative; overflow: hidden; background: var(--bg-alt); }
.support .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.support-content h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.support-content > p { color: var(--text-secondary); font-size: 15px; line-height: 1.85; margin-bottom: 24px; }
.sup-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.sup-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-secondary);
}
.sup-item i { color: var(--teal-light); font-size: 14px; width: 20px; text-align: center; }
.sup-img {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid rgba(46,196,182,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 60px rgba(107,92,231,0.05);
}

/* ========== BLOCK 6 — INFO GRID ========== */
.info { padding: 100px 0; position: relative; overflow: hidden; background: var(--bg-dark); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.icard {
  background: var(--bg-card);
  border: 1px solid rgba(46,196,182,0.06);
  border-radius: 18px; padding: 36px 32px;
  transition: all 0.35s;
}
.icard:hover {
  border-color: rgba(46,196,182,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.icard-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.icard-ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(46,196,182,0.08);
  border: 1px solid rgba(46,196,182,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--teal-light); flex-shrink: 0;
}
.icard h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.icard p { color: var(--text-secondary); font-size: 14px; line-height: 1.85; }

/* ========== BLOCK 7 — TRADINGVIEW WIDGETS ========== */
.news { padding: 100px 0 110px; background: var(--bg-alt); position: relative; overflow: hidden; }
.wg-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.wcard {
  background: var(--bg-card);
  border: 1px solid rgba(46,196,182,0.08);
  border-radius: 16px; overflow: hidden;
  min-height: 440px;
}
.wcard-head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(46,196,182,0.06);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
}
.wcard-head i { color: var(--teal-light); font-size: 16px; }
.wcard-body { height: 400px; overflow: hidden; }

/* ========== FOOTER ========== */
footer {
  padding: 64px 0 36px;
  border-top: 1px solid rgba(46,196,182,0.08);
  background: linear-gradient(180deg, var(--bg-alt) 0%, #050c18 100%);
}
.ft-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 40px;
}
.ft-brand .logo { margin-bottom: 14px; }
.ft-brand > p { color: var(--text-secondary); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.ft-ci {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; color: var(--text-secondary); font-size: 13px;
}
.ft-ci i { color: var(--teal-light); font-size: 14px; margin-top: 2px; width: 16px; text-align: center; }
.ft-col h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 9px; }
.ft-col ul li a {
  color: var(--text-secondary); font-size: 13px;
  transition: color 0.3s; display: flex; align-items: center; gap: 8px;
}
.ft-col ul li a i { font-size: 9px; color: var(--teal-light); opacity: 0; transition: opacity 0.3s; }
.ft-col ul li a:hover { color: var(--teal-light); }
.ft-col ul li a:hover i { opacity: 1; }
.ft-bottom {
  border-top: 1px solid rgba(46,196,182,0.06);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text-secondary); font-size: 12px;
}
.ft-links { display: flex; gap: 20px; }
.ft-links a { color: var(--text-secondary); font-size: 12px; transition: color 0.3s; }
.ft-links a:hover { color: var(--teal-light); }

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.legal-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.legal-header .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(46,196,182,0.08);
  border: 1px solid rgba(46,196,182,0.12);
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--teal-light);
}
.legal-header h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.legal-intro {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.legal-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 8px;
  background: rgba(46,196,182,0.06);
  border: 1px solid rgba(46,196,182,0.1);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}
.legal-date i {
  color: var(--teal-light);
  font-size: 14px;
}
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(46,196,182,0.08);
  border-radius: 20px;
  padding: 48px;
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(46,196,182,0.06);
}
.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-section h2 i {
  color: var(--teal-light);
  font-size: 20px;
}
.legal-section p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
}
.legal-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(46,196,182,0.1);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-page ul, .legal-page ol {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-page li {
  margin-bottom: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .about .container, .support .container { grid-template-columns: 1fr; }
  .steps-grid, .info-grid { grid-template-columns: 1fr; }
  .wg-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  nav { display: none; }
  .mob-btn { display: block; }
  .header-actions .btn { display: none; }
  .lang-switcher { display: none; }
}
@media (max-width: 600px) {
  .ft-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .pf-feats { flex-direction: column; align-items: center; }
  .legal-page h1 { font-size: 28px; }
}

/* ===== SCROLL REVEAL ===== */
.rv {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.vis { opacity: 1; transform: translateY(0); }
