/* ── Reset & Variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+Bengali:wght@400;500;600;700&display=swap');

:root {
  --accent:      #f59e0b;
  --accent-dark: #d97706;
  --gold:        #fbbf24;
  --green:       #10b981;

  /* Gray scale palette */
  --gray-50:  #f5f5f5;   /* lightest cards/steps */
  --gray-100: #e6e6e6;   /* page body */
  --gray-200: #cccccc;   /* features section */
  --gray-300: #b3b3b3;   /* alt sections */
  --gray-400: #999999;   /* muted text, borders */
  --gray-500: #7f7f7f;   /* placeholder text */
  --gray-600: #666666;   /* secondary text */
  --gray-700: #4c4c4c;   /* body text, ticker */
  --gray-800: #333333;   /* nav, step nums, headings */
  --gray-900: #1a1a1a;   /* footer, hero, darkest */

  --bg:       var(--gray-100);
  --bg-alt:   var(--gray-300);
  --bg-card:  #ffffff;
  --text:     var(--gray-800);
  --text-sub: var(--gray-700);
  --text-muted: var(--gray-500);
  --border:   rgba(0,0,0,0.09);

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 10px 36px rgba(0,0,0,0.18);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: 'Inter', 'Noto Sans Bengali', 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; letter-spacing: -0.01em; }

/* Force Noto Sans Bengali for Bengali Unicode range */
@font-face {
  unicode-range: U+0980-09FF;
}
:lang(bn), [lang="bn"] * {
  font-family: 'Noto Sans Bengali', sans-serif;
}

/* ── Animations ── */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(30px); }  to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft  { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); }  to { opacity:1; transform:translateX(0); } }
@keyframes float       { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse       { 0%,100% { opacity:1; } 50% { opacity:0.6; } }
@keyframes gradientShift { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
@keyframes countUp     { from { opacity:0; transform:scale(0.8); } to { opacity:1; transform:scale(1); } }
@keyframes slideDown   { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
@keyframes marquee     { from { transform:translateX(0); } to { transform:translateX(-50%); } }

.animate-fade-up   { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.6s ease forwards; }
.animate-fade-right{ animation: fadeInRight 0.6s ease forwards; }
.animate-float     { animation: float 3s ease-in-out infinite; }

.reveal       { opacity:0; transform:translateY(40px);  transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px);  transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── Navbar ── */
.navbar {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15,15,15,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  border-bottom-color: rgba(255,255,255,0.04);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-brand {
  color: #fff; font-size: 1.2rem; font-weight: 800;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.3px;
}
.nav-brand img {
  width: 34px; height: 34px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-brand span {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.nav-links { list-style: none; display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500; transition: var(--transition);
  position: relative; letter-spacing: 0.1px;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 3px; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--accent); border-radius: 2px; transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 50%; }
.btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #1a1a1a !important; font-weight: 700 !important;
  border-radius: 9px !important; padding: 9px 18px !important;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
  font-size: 0.88rem !important;
}
.btn-nav:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(245,158,11,0.5) !important;
}
.btn-nav::after { display: none !important; }

/* ── Mobile toggle (hamburger → ✕) ── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; transition: var(--transition);
  z-index: 1100;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Side Drawer (mobile) ── */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 1050;
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s ease;
}
.nav-overlay.open { display: block; opacity: 1; }

.nav-drawer {
  position: fixed; top: 0; right: -320px; bottom: 0;
  width: 300px; background: #1a1a1a;
  z-index: 1060; padding: 0;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.nav-drawer.open { right: 0; }

.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #111;
}
.nav-drawer-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; font-size: 1rem; text-decoration: none;
}
.nav-drawer-brand img { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; }
.nav-drawer-brand span {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  font-weight: 800;
}
.nav-drawer-close {
  background: rgba(255,255,255,0.08); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.15); }

.nav-drawer-links {
  list-style: none; padding: 16px 14px; flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-drawer-links a {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.72); text-decoration: none;
  padding: 13px 16px; border-radius: 12px;
  font-size: 0.95rem; font-weight: 500;
  transition: all 0.2s; border: 1px solid transparent;
}
.nav-drawer-links a:hover {
  color: #fff; background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.06);
}
.nav-drawer-links a.active {
  color: #fff; background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
}
.nav-drawer-links .drawer-dl {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #1a1a1a !important; font-weight: 700 !important;
  border-color: transparent !important; margin-top: 8px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.nav-drawer-links .drawer-dl:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.45) !important;
}
.nav-drawer-footer {
  padding: 16px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
}

/* ── Ticker ── */
.ticker { background:var(--gray-800); border-bottom:1px solid rgba(0,0,0,0.15); padding:10px 0; overflow:hidden; width:100%; max-width:100%; }
.ticker-inner { display:flex; gap:48px; animation:marquee 20s linear infinite; white-space:nowrap; }
.ticker-item { color:rgba(255,255,255,0.8); font-size:0.85rem; font-weight:500; display:flex; align-items:center; gap:8px; }
.ticker-item .dot { width:6px; height:6px; background:var(--gold); border-radius:50%; }

/* ── Hero ── */
.hero { background:linear-gradient(-45deg,var(--gray-900),var(--gray-800),var(--gray-700),var(--gray-800)); background-size:400% 400%; animation:gradientShift 12s ease infinite; color:#fff; padding:100px 24px 80px; text-align:center; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 20% 50%,rgba(255,255,255,0.04) 0%,transparent 60%); pointer-events:none; }
.hero-content { max-width:760px; margin:0 auto 60px; position:relative; z-index:1; animation:fadeInUp 0.8s ease; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.18); padding:8px 18px; border-radius:30px; font-size:0.85rem; margin-bottom:24px; }
.hero-badge::before { content:''; width:8px; height:8px; background:var(--green); border-radius:50%; animation:pulse 2s infinite; }
.hero h1 { font-size:clamp(2rem,6vw,3.5rem); font-weight:900; line-height:1.15; margin-bottom:20px; letter-spacing:-1px; }
.highlight { background:linear-gradient(135deg,var(--gold),var(--accent)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero p { font-size:clamp(1rem,2vw,1.2rem); color:rgba(255,255,255,0.72); margin-bottom:40px; line-height:1.8; max-width:600px; margin-left:auto; margin-right:auto; }
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.hero-stats { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; max-width:800px; margin:0 auto; position:relative; z-index:1; animation:fadeInUp 0.8s 0.3s ease both; }
.stat-card { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius); padding:24px 32px; text-align:center; min-width:130px; transition:var(--transition); }
.stat-card:hover { background:rgba(255,255,255,0.14); transform:translateY(-4px); border-color:rgba(245,158,11,0.4); }
.stat-num { font-size:2rem; font-weight:900; background:linear-gradient(135deg,var(--gold),#fff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; animation:countUp 0.6s ease; }
.stat-label { font-size:0.8rem; color:rgba(255,255,255,0.6); margin-top:6px; font-weight:500; }

/* ── Buttons ── */
.btn-primary { background:linear-gradient(135deg,var(--accent),var(--accent-dark)); color:var(--gray-900); padding:14px 32px; border-radius:var(--radius-sm); font-weight:700; text-decoration:none; display:inline-flex; align-items:center; gap:8px; transition:var(--transition); font-size:1rem; box-shadow:0 4px 20px rgba(245,158,11,0.35); border:none; cursor:pointer; }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(245,158,11,0.5); }
.btn-secondary { background:rgba(255,255,255,0.1); color:#fff; padding:14px 32px; border-radius:var(--radius-sm); font-weight:600; text-decoration:none; display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(255,255,255,0.25); transition:var(--transition); font-size:1rem; }
.btn-secondary:hover { background:rgba(255,255,255,0.18); transform:translateY(-3px); }
.btn-large { padding:18px 44px; font-size:1.1rem; border-radius:var(--radius); }
.btn-outline { background:transparent; color:var(--gray-800); border:2px solid var(--gray-800); padding:12px 28px; border-radius:var(--radius-sm); font-weight:600; text-decoration:none; display:inline-flex; align-items:center; gap:8px; transition:var(--transition); }
.btn-outline:hover { background:var(--gray-800); color:#fff; transform:translateY(-2px); }

/* ── Layout ── */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section-title { text-align:center; font-size:clamp(1.5rem,3vw,2.2rem); font-weight:900; color:var(--gray-900); margin-bottom:16px; letter-spacing:-0.5px; }
.section-subtitle { text-align:center; color:var(--gray-700); font-size:1.05rem; margin-bottom:48px; max-width:600px; margin-left:auto; margin-right:auto; }
.section-title .accent { color:var(--gray-900); text-decoration:underline; text-decoration-color:var(--accent); text-underline-offset:5px; }

/* ── Features ── */
.features { padding:100px 24px; background:var(--gray-200); }
.features-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
.feature-card { background:var(--bg-card); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow-md); transition:var(--transition); border:1px solid var(--border); position:relative; overflow:hidden; }
.feature-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gray-800),var(--gray-500)); transform:scaleX(0); transform-origin:left; transition:transform 0.4s ease; }
.feature-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.feature-card:hover::before { transform:scaleX(1); }
.feature-icon { width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin-bottom:20px; background:var(--gray-100); }
.feature-card h3 { font-size:1.15rem; font-weight:700; color:var(--gray-900); margin-bottom:12px; }
.feature-card p { color:var(--gray-700); line-height:1.75; font-size:0.95rem; }

/* ── Page Hero (inner pages) ── */
.page-hero { background:linear-gradient(135deg,var(--gray-900) 0%,var(--gray-800) 50%,var(--gray-700) 100%); color:#fff; padding:80px 24px 60px; text-align:center; position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:60px; background:var(--bg); clip-path:ellipse(55% 100% at 50% 100%); }
.page-hero h1 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:900; margin-bottom:14px; letter-spacing:-0.5px; animation:fadeInUp 0.6s ease; }
.page-hero p { color:rgba(255,255,255,0.75); font-size:1.1rem; max-width:600px; margin:0 auto; animation:fadeInUp 0.6s 0.15s ease both; }
.page-hero-icon { font-size:3.5rem; margin-bottom:20px; display:flex; align-items:center; justify-content:center; width:80px; height:80px; border-radius:20px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); margin-left:auto; margin-right:auto; }

/* ── Content sections ── */
.content-section { padding:80px 24px; background:var(--bg); }
.content-section.alt { background:var(--gray-300); }
.content-section.dark { background:var(--gray-900); color:#fff; }
.content-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; align-items:start; }
.content-card { background:var(--bg-card); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow-md); transition:var(--transition); border:1px solid var(--border); }
.content-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.content-card h3 { font-size:1.1rem; font-weight:700; color:var(--gray-900); margin-bottom:14px; display:flex; align-items:center; gap:10px; }
.content-card p, .content-card li { color:var(--gray-700); line-height:1.8; font-size:0.95rem; }
.content-card ul { padding-left:20px; }
.content-card li { margin-bottom:8px; }
.content-card li::marker { color:var(--gray-600); }

/* ── Steps ── */
.steps { display:flex; flex-direction:column; gap:14px; }
.step { display:flex; gap:16px; align-items:flex-start; background:var(--gray-50); border-radius:var(--radius); padding:18px 20px; box-shadow:var(--shadow-sm); transition:var(--transition); border:1px solid var(--border); }
.step:hover { transform:translateX(6px); border-color:rgba(0,0,0,0.16); box-shadow:var(--shadow-md); }
.step-num { background:var(--gray-900); color:#fff; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; flex-shrink:0; font-size:0.88rem; box-shadow:0 3px 10px rgba(0,0,0,0.2); }
.step-content h4 { font-weight:700; color:var(--gray-900); margin-bottom:4px; font-size:0.97rem; }
.step-content p { color:var(--gray-600); font-size:0.88rem; line-height:1.6; }

/* ── CTA ── */
.cta-section { background:linear-gradient(135deg,var(--gray-900),var(--gray-700)); color:#fff; padding:100px 24px; text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(255,255,255,0.04) 0%,transparent 70%); }
.cta-section h2 { font-size:clamp(1.6rem,3.5vw,2.5rem); font-weight:900; margin-bottom:14px; letter-spacing:-0.5px; position:relative; }
.cta-section p { color:rgba(255,255,255,0.78); margin-bottom:36px; font-size:1.1rem; position:relative; }
.cta-section .btn-primary { font-size:1.1rem; padding:18px 44px; }

/* ── Profit calculator ── */
.calc-card { background:var(--gray-900); border-radius:var(--radius-lg); padding:32px; color:#fff; box-shadow:var(--shadow-lg); border:1px solid rgba(255,255,255,0.06); }
.calc-card h3 { color:#fff; margin-bottom:20px; font-size:1.05rem; }
.calc-row { display:flex; justify-content:space-between; align-items:center; padding:13px 0; border-bottom:1px solid rgba(255,255,255,0.08); }
.calc-row:last-child { border-bottom:none; }
.calc-label { color:rgba(255,255,255,0.6); font-size:0.9rem; }
.calc-value { font-weight:800; color:var(--gold); font-size:1rem; }

/* ── Referral highlight ── */
.referral-highlight { background:linear-gradient(135deg,var(--gray-900),var(--gray-700)); color:#fff; border-radius:var(--radius-lg); padding:40px; text-align:center; margin-bottom:40px; position:relative; overflow:hidden; box-shadow:var(--shadow-lg); }
.referral-highlight::before { content:''; position:absolute; top:-50%; right:-20%; width:200px; height:200px; background:rgba(255,255,255,0.04); border-radius:50%; }
.referral-highlight .big-num { font-size:4rem; font-weight:900; color:var(--gold); line-height:1; margin-bottom:8px; }
.referral-highlight p { color:rgba(255,255,255,0.82); font-size:1.05rem; }

/* ── Info boxes ── */
.info-box { background:#e8f0fe; border-left:4px solid #4a90d9; border-radius:var(--radius-sm); padding:16px 20px; margin:16px 0; }
.info-box p { color:#1a3a5c; font-size:0.9rem; line-height:1.65; font-weight:500; }
.warning-box { background:#fef9e7; border-left:4px solid var(--accent); border-radius:var(--radius-sm); padding:16px 20px; margin:16px 0; }
.warning-box p { color:#7a4a00; font-size:0.9rem; line-height:1.65; font-weight:500; }
.success-box { background:#e8f8f0; border-left:4px solid var(--green); border-radius:var(--radius-sm); padding:16px 20px; margin:16px 0; }
.success-box p { color:#0a4a2a; font-size:0.9rem; line-height:1.65; font-weight:500; }

/* ── Footer ── */
.footer {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  color: rgba(255,255,255,0.5);
  padding: 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-sizing: border-box;
  width: 100%;
}
.footer-top-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-top-text { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-top-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25);
  padding: 7px 16px; border-radius: 30px;
  font-size: .82rem; font-weight: 600; color: #f59e0b;
}
.footer-top-badge::before { content:''; width:7px; height:7px; background:#10b981; border-radius:50%; animation: pulse 2s infinite; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding: 56px 24px 48px;
  box-sizing: border-box;
}
.footer-about { overflow: hidden; }
.footer-brand {
  font-size: 1.2rem; font-weight: 800; color: #fff;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.footer-brand img { width: 36px !important; height: 36px !important; border-radius: 10px; object-fit: cover; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,.4); max-width: 36px !important; max-height: 36px !important; display: block; }
.footer-brand span { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.footer-desc { font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.42); margin-bottom: 20px; max-width: 280px; }
.footer-stats-row {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px;
}
.footer-stat { text-align: center; }
.footer-stat-num { font-size: 1.1rem; font-weight: 900; color: #f59e0b; line-height: 1; }
.footer-stat-lbl { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem;
  transition: all .2s;
}
.footer-social a:hover { background: rgba(245,158,11,.2); border-color: rgba(245,158,11,.4); color: #f59e0b; transform: translateY(-2px); }
.footer-col h4 {
  color: #fff; font-size: .82rem; font-weight: 700;
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px;
  position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; background: #f59e0b; border-radius: 2px;
}
.footer-col a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.42); text-decoration: none;
  font-size: .88rem; margin-bottom: 10px; transition: all .2s;
  padding: 2px 0;
}
.footer-col a::before { content: '›'; color: rgba(245,158,11,.5); font-size: 1rem; line-height: 1; }
.footer-col a:hover { color: #f59e0b; padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.07); display: flex; align-items: center;
  justify-content: center; font-size: .85rem; flex-shrink: 0;
}
.footer-contact-text { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-contact-text a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-contact-text a:hover { color: #f59e0b; }
.footer-divider {
  max-width: 1200px; margin: 0 auto;
  border: none; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}
.footer-bottom-left { color: rgba(255,255,255,.3); }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-bottom-right a:hover { color: #f59e0b; }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-right { justify-content: center; }
}

/* ── Download page ── */
.download-hero { background:linear-gradient(-45deg,var(--gray-900),var(--gray-800),var(--gray-700),var(--gray-800)); background-size:400% 400%; animation:gradientShift 12s ease infinite; color:#fff; padding:100px 24px 80px; text-align:center; position:relative; overflow:hidden; }
.download-hero h1 { font-size:clamp(2rem,5vw,3rem); font-weight:900; margin-bottom:16px; position:relative; letter-spacing:-0.5px; animation:fadeInUp 0.7s ease; }
.download-hero > p { color:rgba(255,255,255,0.72); font-size:1.1rem; margin-bottom:48px; position:relative; animation:fadeInUp 0.7s 0.15s ease both; }
.download-box { background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.14); border-radius:28px; padding:48px 40px; max-width:480px; margin:0 auto; backdrop-filter:blur(20px); position:relative; animation:fadeInUp 0.7s 0.3s ease both; box-shadow:0 20px 60px rgba(0,0,0,0.3); }
.app-icon-big { font-size:5rem; margin-bottom:16px; display:block; animation:float 3s ease-in-out infinite; }
.download-box h2 { font-size:1.6rem; font-weight:800; margin-bottom:8px; }
.version-badge { background:rgba(255,255,255,0.12); padding:5px 14px; border-radius:20px; font-size:0.8rem; display:inline-block; margin-bottom:28px; border:1px solid rgba(255,255,255,0.15); }
.download-btn { background:linear-gradient(135deg,var(--accent),var(--accent-dark)); color:var(--gray-900); padding:18px 44px; border-radius:var(--radius); font-weight:800; text-decoration:none; font-size:1.1rem; display:inline-flex; align-items:center; gap:10px; transition:var(--transition); box-shadow:0 8px 30px rgba(245,158,11,0.4); }
.download-btn:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(245,158,11,0.6); }
.download-note { color:rgba(255,255,255,0.5); font-size:0.82rem; margin-top:16px; }
.download-features { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:20px; }
.download-feature-tag { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); padding:6px 14px; border-radius:20px; font-size:0.8rem; color:rgba(255,255,255,0.7); }

/* ── Responsive ── */
@media (max-width:768px) {
  .hero { padding:80px 20px 60px; }
  .hero-stats { gap:12px; }
  .stat-card { padding:16px 20px; min-width:100px; }
  .stat-num { font-size:1.5rem; }
  .features { padding:60px 20px; }
  .content-section { padding:60px 20px; }
  .cta-section { padding:70px 20px; }
  .download-box { padding:32px 24px; }
  .footer-inner { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .hero-btns { flex-direction:column; align-items:center; }
  .btn-primary, .btn-secondary { width:100%; max-width:300px; justify-content:center; }
  .footer-inner { grid-template-columns:1fr; }
  .stat-card { min-width:80px; padding:14px 16px; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--gray-200); }
::-webkit-scrollbar-thumb { background:var(--gray-500); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--gray-700); }

/* ── Selection ── */
::selection { background:rgba(0,0,0,0.12); color:var(--gray-900); }
