/* =========================================
   FUSION MARKETS INDIA — WHITE + PURPLE #6b2aca
   ========================================= */

:root {
  --color-bg: #FFFFFF;
  --color-bg-2: #F7F4FC;
  --color-bg-3: #EFE9F9;
  --color-card: #FFFFFF;
  --color-text: #1A1130;
  --color-text-muted: #5C5470;
  --color-text-soft: #8B84A0;
  --color-accent: #6b2aca;
  --color-accent-2: #8341e0;
  --color-accent-dark: #531ea3;
  --color-accent-light: #F2ECFB;
  --color-green: #16A34A;
  --color-red: #DC2626;
  --color-border: rgba(107, 42, 202, 0.12);
  --color-border-strong: rgba(107, 42, 202, 0.35);
  --shadow-card: 0 8px 28px rgba(107, 42, 202, 0.1);
  --shadow-card-hover: 0 18px 44px rgba(107, 42, 202, 0.18);
  --shadow-cta: 0 12px 30px rgba(107, 42, 202, 0.3);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --font-display: 'Poppins', 'Hind', system-ui, sans-serif;
  --font-body: 'Noto Sans Devanagari', 'Hind', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-text); text-decoration: none; transition: color .2s ease; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.logo svg { flex-shrink: 0; }

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

.main-nav a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 15.5px;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover { color: var(--color-accent); }
.main-nav a.active { color: var(--color-accent); font-weight: 600; }

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 3px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}

.btn-accent {
  background: var(--color-accent);
  color: #FFFFFF;
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-border-strong);
  color: var(--color-accent);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg-2) 0%, var(--color-bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 42, 202, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(131, 65, 224, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--color-accent-light);
  border: 1px solid var(--color-border-strong);
  border-radius: 100px;
  color: var(--color-accent);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-accent); animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107, 42, 202, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(107, 42, 202, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--color-text);
}

.hero h1 .highlight {
  background: linear-gradient(120deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 17.5px;
  color: var(--color-text-muted);
  margin-bottom: 34px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.hero-visual { position: relative; }

.hero-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -16px; right: 30px;
  width: 100px; height: 100px;
  background: var(--color-accent);
  border-radius: 50%;
  z-index: -1;
  filter: blur(50px);
  opacity: 0.3;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.chart-asset { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--color-text); }
.chart-asset-sub { font-size: 12.5px; color: var(--color-text-muted); margin-top: 2px; }
.chart-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--color-text); }
.chart-price-change { font-size: 13px; color: var(--color-green); font-weight: 600; text-align: right; margin-top: 2px; }

.chart-svg { width: 100%; height: 200px; }

.chart-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.chart-btn-up, .chart-btn-down {
  padding: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 10px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease, background .25s ease;
}
.chart-btn-up { background: var(--color-accent); color: #fff; }
.chart-btn-down { background: var(--color-accent-light); color: var(--color-accent); border: 1px solid var(--color-border-strong); }

.chart-btn-up:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 24px rgba(107, 42, 202, 0.35);
  animation: fm-btn-wiggle 0.6s ease-in-out infinite;
}
.chart-btn-down:hover {
  background: var(--color-bg-3);
  color: var(--color-accent-dark);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 24px rgba(107, 42, 202, 0.18);
  animation: fm-btn-wiggle 0.6s ease-in-out infinite;
}
.chart-btn-up:active, .chart-btn-down:active {
  transform: translateY(-1px) scale(0.98);
  animation: none;
}

@keyframes fm-btn-wiggle {
  0%, 100% { transform: translateY(-4px) scale(1.04) rotate(0deg); }
  25%      { transform: translateY(-4px) scale(1.04) rotate(-1.5deg); }
  75%      { transform: translateY(-4px) scale(1.04) rotate(1.5deg); }
}

/* =========================================
   ARTICLE TYPOGRAPHY
   ========================================= */
.article-content { font-size: 16.5px; line-height: 1.85; }

.article-content h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.25;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 56px 0 20px;
  line-height: 1.3;
  position: relative;
  padding-left: 22px;
}

.article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 6px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-2));
  border-radius: 6px;
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 34px 0 14px;
  color: var(--color-text);
}

.article-content p { margin-bottom: 16px; color: var(--color-text-muted); }
.article-content strong { color: var(--color-text); font-weight: 700; }
.article-content em {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 600;
}

.article-content ul, .article-content ol { margin: 18px 0 26px; padding-left: 0; }

.article-content ul li, .article-content ol li {
  position: relative;
  padding: 7px 0 7px 36px;
  list-style: none;
  color: var(--color-text-muted);
}

.article-content ul li::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(107, 42, 202, 0.13);
}

.article-content ol { counter-reset: list-counter; }
.article-content ol li { counter-increment: list-counter; }
.article-content ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 7px;
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-display);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  font-size: 15px;
  box-shadow: var(--shadow-card);
}

.article-content table thead {
  background: var(--color-accent);
}

.article-content table th {
  padding: 15px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.article-content table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.article-content table tr:last-child td { border-bottom: none; }
.article-content table tbody tr:hover { background: var(--color-bg-2); }

.article-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 16px 22px;
  margin: 26px 0;
  background: var(--color-bg-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-text);
  font-size: 16px;
}

.article-content blockquote strong { color: var(--color-accent); }

.article-content a:not(.btn) {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(107, 42, 202, 0.4);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 500;
}

.article-content a:not(.btn):hover {
  text-decoration-color: var(--color-accent);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
  padding: 60px 0;
}

.article-main { min-width: 0; }

.sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-text);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border: none;
}

.sidebar-cta h4 { color: #fff; }
.sidebar-cta p { color: rgba(255, 255, 255, 0.9); font-size: 14px; margin-bottom: 18px; line-height: 1.65; }
.sidebar-cta .btn { background: #fff; color: var(--color-accent); }
.sidebar-cta .btn:hover { background: var(--color-bg-3); color: var(--color-accent-dark); }

.sidebar-toc ul { list-style: none; }
.sidebar-toc ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14.5px;
}
.sidebar-toc ul li:last-child { border-bottom: none; }
.sidebar-toc a { color: var(--color-text-muted); }
.sidebar-toc a:hover { color: var(--color-accent); }

/* =========================================
   FAQ
   ========================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .2s;
  box-shadow: var(--shadow-card);
}

.faq-item:hover { border-color: var(--color-border-strong); }
.faq-item.open { border-color: var(--color-accent); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 19px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  transition: all .25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer-inner {
  padding: 0 22px 22px;
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.faq-answer-inner p { margin-bottom: 10px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-item.open .faq-answer { max-height: 900px; }

/* =========================================
   AUTHOR BOX
   ========================================= */
.author-box {
  margin: 56px 0 0;
  padding: 32px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  align-items: start;
}

.author-avatar {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.02em;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--color-accent);
  box-shadow: 0 4px 14px rgba(107, 42, 202, 0.3);
  position: relative;
  aspect-ratio: 1 / 1;
}

.author-avatar img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  border-radius: 50%;
}

.author-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.author-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  background: var(--color-accent);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
}

.author-bio {
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.author-credential {
  font-size: 12.5px;
  padding: 5px 12px;
  background: var(--color-accent-light);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-accent);
  font-weight: 600;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  text-align: center;
  margin: 44px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-section h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  letter-spacing: -0.015em;
  color: #fff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16.5px;
}

.cta-section .btn { position: relative; background: #fff; color: var(--color-accent); }
.cta-section .btn:hover { background: var(--color-bg-3); color: var(--color-accent-dark); }

/* =========================================
   BONUS CARDS
   ========================================= */
.bonus-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 18px 0;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 26px;
  align-items: center;
  transition: all .25s ease;
  box-shadow: var(--shadow-card);
}

.bonus-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.bonus-badge {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: #fff;
}

.bonus-badge .badge-val { font-size: 22px; font-weight: 800; line-height: 1; letter-spacing: -0.025em; }
.bonus-badge .badge-label { font-size: 10px; font-weight: 700; text-transform: uppercase; margin-top: 4px; letter-spacing: 0.05em; }

.bonus-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.bonus-info p { color: var(--color-text-muted); font-size: 14.5px; margin: 0; }

@media (max-width: 600px) {
  .bonus-card { grid-template-columns: 64px 1fr; padding: 20px; gap: 18px; }
  .bonus-card .btn { grid-column: 1 / -1; }
  .bonus-badge { width: 64px; height: 64px; }
  .bonus-badge .badge-val { font-size: 17px; }
}

/* =========================================
   APP DOWNLOAD CARDS
   ========================================= */
.app-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.app-platform {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .25s;
  color: var(--color-text);
  box-shadow: var(--shadow-card);
}

.app-platform:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.app-platform-icon {
  width: 46px;
  height: 46px;
  background: var(--color-accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.app-platform-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
  color: var(--color-text);
}

.app-platform-desc { font-size: 12.5px; color: var(--color-text-muted); }

/* =========================================
   REGISTRATION STEPS
   ========================================= */
.steps-grid { display: grid; gap: 16px; margin: 28px 0; }

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  transition: all .25s;
  box-shadow: var(--shadow-card);
}

.step-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-card-hover);
}

.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.step-card p { color: var(--color-text-muted); font-size: 15.5px; line-height: 1.75; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: 56px 0 24px;
  margin-top: 60px;
}

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

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 14.5px;
}
.footer-col ul li a:hover { color: var(--color-accent); }

.footer-about {
  color: var(--color-text-muted);
  font-size: 14.5px;
  margin-top: 14px;
  max-width: 360px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-text-muted);
}

.risk-warning {
  font-size: 12.5px;
  color: var(--color-text-muted);
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.risk-warning strong { color: var(--color-text); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .article-layout { grid-template-columns: 1fr; gap: 36px; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    gap: 0;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: 99;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a.active::after { display: none; }

  .mobile-menu-toggle { display: flex; }

  .header-cta .btn-outline { display: none; }
  .header-cta .btn { padding: 9px 16px; font-size: 14px; }

  .hero { padding: 54px 0 44px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .hero-stat-value { font-size: 22px; }
  .hero-stat-label { font-size: 12px; }

  .author-box { grid-template-columns: 1fr; text-align: center; padding: 26px; }
  .author-avatar { margin: 0 auto; }
  .author-credentials { justify-content: center; }

  .cta-section { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-card { grid-template-columns: 1fr; }

  .article-content table { font-size: 13.5px; display: block; overflow-x: auto; }
  .article-content table th, .article-content table td { padding: 11px 14px; }
  .article-content h2 { padding-left: 16px; }
  .article-content h2::before { width: 5px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
  .logo { font-size: 19px; }
  .logo svg { width: 30px; height: 30px; }
  .btn { font-size: 14px; padding: 10px 18px; }
  .btn-lg { padding: 13px 24px; font-size: 15px; }
  .hero h1 { font-size: 27px; }
  .hero-subtitle { font-size: 15.5px; }
  .article-content { font-size: 15.5px; }
  .faq-question { font-size: 15px; padding: 16px 18px; }
  .faq-answer-inner { padding: 0 18px 18px; font-size: 14.5px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero-subtitle, .hero-cta-group, .hero-stats {
  animation: fadeUp .8s ease backwards;
}
.hero-subtitle { animation-delay: .1s; }
.hero-cta-group { animation-delay: .2s; }
.hero-stats { animation-delay: .3s; }
