/* ============================================================
   SEO TOOLS PAGE — seo-tools.css
   Scoped to body.is-seo-tools-page  |  prefix: .st-
   Design tokens: --ink, --fire, --fire2, --chalk, --mist,
                  --mid, --border, --green, --w
   ============================================================ */

/* ── Tokens ────────────────────────────────────────────────── */
body.is-seo-tools-page {
  --ink:    #0d1117;
  --fire:   #ff4d00;
  --fire2:  #ff7a3d;
  --chalk:  #fff;
  --mist:   #f5f7fa;
  --mid:    #6b7280;
  --border: #e5e7eb;
  --green:  #10b981;
  --w:      min(1200px, 100% - 48px);
  --ff-head: var(--font-heading, 'Inter', sans-serif);
  --ff-body: var(--font-body,    'Inter', sans-serif);
}

/* reset margins on typographic elements only */
body.is-seo-tools-page h1, body.is-seo-tools-page h2, body.is-seo-tools-page h3,
body.is-seo-tools-page h4, body.is-seo-tools-page h5, body.is-seo-tools-page h6,
body.is-seo-tools-page p, body.is-seo-tools-page ul, body.is-seo-tools-page ol,
body.is-seo-tools-page li, body.is-seo-tools-page figure, body.is-seo-tools-page blockquote { margin: 0; padding: 0; }


/* ── Reset & scope ────────────────────────────────────────── */
body.is-seo-tools-page *,
body.is-seo-tools-page *::before,
body.is-seo-tools-page *::after {
  box-sizing: border-box;
}

body.is-seo-tools-page {
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--ff-body);
}

/* ── Shared layout helpers ───────────────────────────────── */
.st-container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}

.st-section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.st-section-alt {
  background: var(--mist);
}

/* ── Section header ──────────────────────────────────────── */
.st-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}

.st-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 10px;
}

.st-h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}

.st-section-desc {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Inline link ─────────────────────────────────────────── */
.st-inline-link {
  color: var(--fire);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s;
}
.st-inline-link:hover { color: var(--fire2); }

/* ── Buttons ─────────────────────────────────────────────── */
.st-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fire);
  color: var(--chalk);
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.st-btn-primary:hover {
  background: var(--fire2);
  transform: translateY(-1px);
}

.st-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--chalk);
  border: 2px solid rgba(255,255,255,0.35);
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.st-btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.st-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--chalk);
  border: 2px solid rgba(255,255,255,0.5);
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.st-btn-outline-light:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
}

/* ── Price badge shared ──────────────────────────────────── */
.st-price-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.st-price-free     { background: rgba(16,185,129,0.12);  color: #059669; }
.st-price-freemium { background: rgba(16,185,129,0.08);  color: #0d9488; }
.st-price-budget   { background: rgba(99,102,241,0.10);  color: #4f46e5; }
.st-price-paid     { background: rgba(255,77,0,0.10);    color: var(--fire); }

/* ── Category badge ──────────────────────────────────────── */
.st-tc-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(255,77,0,0.08);
  color: var(--fire);
  margin-bottom: 4px;
}

/* ── Reveal animation ────────────────────────────────────── */
.st-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.st-reveal.st-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Star ratings ────────────────────────────────────────── */
.st-tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.st-star {
  font-size: 1.125rem;
  line-height: 1;
}
.st-star.full  { color: #f59e0b; }
.st-star.empty { color: #d1d5db; }
.st-star.half  {
  position: relative;
  color: #d1d5db;
}
.st-star.half::after {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #f59e0b;
}

/* ================================================================
   HERO
   ================================================================ */
.st-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 120px) 0 clamp(60px, 8vw, 96px);
}

.st-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 80% 50%, rgba(255,77,0,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(99,102,241,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.st-hero-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}

/* ── Hero pill ───────────────────────────────────────────── */
.st-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,0.12);
  border: 1px solid rgba(255,77,0,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fire2);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.st-hero-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fire);
  animation: st-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes st-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

/* ── Hero heading ────────────────────────────────────────── */
.st-hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--chalk);
  margin-bottom: 20px;
}
.st-hero-h1 em {
  font-style: normal;
  color: var(--fire);
}

.st-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 32px;
}

/* ── Hero CTAs ───────────────────────────────────────────── */
.st-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ── Hero proof strip ────────────────────────────────────── */
.st-hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.st-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.st-proof-item .n {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--chalk);
  line-height: 1;
}
.st-proof-item .l {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Hero right: tool stack dashboard ───────────────────── */
.st-hero-right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.st-stack-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.st-stack-icon { font-size: 1.25rem; }

.st-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.st-stack-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.st-stack-card:hover {
  background: rgba(255,77,0,0.1);
  border-color: rgba(255,77,0,0.3);
}

.st-sc-icon {
  font-size: 1.375rem;
  line-height: 1;
}
.st-sc-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--chalk);
  line-height: 1.3;
}
.st-sc-cat {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.st-stack-note {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-style: italic;
}

/* ================================================================
   KEYWORD RESEARCH — Tool cards (full detail)
   ================================================================ */
.st-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.st-tool-card {
  background: var(--chalk);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.st-tool-card:hover {
  border-color: var(--fire);
  box-shadow: 0 8px 32px rgba(255,77,0,0.1);
}

.st-tc-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.st-tc-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  background: var(--mist);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.st-tc-meta {
  flex: 1;
  min-width: 0;
}
.st-tc-name {
  font-family: var(--ff-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.st-tc-price {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}
.st-tc-price.st-price-free     { background: rgba(16,185,129,0.12);  color: #059669; }
.st-tc-price.st-price-freemium { background: rgba(16,185,129,0.08);  color: #0d9488; }
.st-tc-price.st-price-budget   { background: rgba(99,102,241,0.10);  color: #4f46e5; }
.st-tc-price.st-price-paid     { background: rgba(255,77,0,0.10);    color: var(--fire); }

.st-tc-summary {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ── Use cases list ──────────────────────────────────────── */
.st-tc-uses {
  background: var(--mist);
  border-radius: 10px;
  padding: 14px 16px;
}
.st-uses-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fire);
  margin-bottom: 8px;
}
.st-tc-uses ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.st-tc-uses ul li {
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.st-tc-uses ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--fire);
  font-weight: 700;
  font-size: 0.8125rem;
}

/* ── Pros / Cons ─────────────────────────────────────────── */
.st-tc-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.st-tc-pros,
.st-tc-cons {
  border-radius: 8px;
  padding: 12px 14px;
}
.st-tc-pros { background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); }
.st-tc-cons { background: rgba(239,68,68,0.05);  border: 1px solid rgba(239,68,68,0.15); }

.st-pc-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.st-tc-pros .st-pc-label { color: #059669; }
.st-tc-cons .st-pc-label { color: #dc2626; }

.st-tc-pros ul,
.st-tc-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.st-tc-pros ul li,
.st-tc-cons ul li {
  font-size: 0.8125rem;
  color: var(--ink);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.st-tc-pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 0.75rem;
}
.st-tc-cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 0.75rem;
}

/* ── Tool card button ────────────────────────────────────── */
.st-tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: var(--chalk);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.2s, transform 0.15s;
}
.st-tc-btn:hover {
  background: var(--fire);
  transform: translateY(-1px);
}

/* ================================================================
   TECHNICAL SEO TOOLS — Simpler card layout
   ================================================================ */
.st-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.st-tech-card {
  background: var(--chalk);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.st-tech-card:hover {
  border-color: var(--fire);
  box-shadow: 0 6px 24px rgba(255,77,0,0.09);
}

.st-tech-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.st-tech-icon {
  font-size: 1.75rem;
  width: 42px;
  height: 42px;
  background: var(--mist);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.st-tech-name {
  font-family: var(--ff-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.st-tech-summary {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 14px;
}

.st-tech-uses {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.st-tech-uses li {
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.st-tech-uses li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--fire);
  font-weight: 700;
  font-size: 0.8125rem;
}

/* ================================================================
   LINK BUILDING TOOLS
   ================================================================ */
.st-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.st-link-card {
  background: var(--chalk);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.st-link-card:hover {
  border-color: var(--fire);
  box-shadow: 0 6px 24px rgba(255,77,0,0.09);
}

.st-lc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.st-lc-icon {
  font-size: 1.75rem;
  width: 42px;
  height: 42px;
  background: var(--mist);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.st-lc-name {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.st-lc-summary {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 14px;
}

.st-lc-uses {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.st-lc-uses li {
  font-size: 0.8125rem;
  color: var(--ink);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.st-lc-uses li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--fire);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ================================================================
   FREE TOOLS GRID
   ================================================================ */
.st-free-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.st-free-card {
  background: var(--chalk);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.st-free-card:hover {
  border-color: var(--fire);
  box-shadow: 0 6px 24px rgba(255,77,0,0.1);
  transform: translateY(-2px);
}

.st-fc-icon {
  font-size: 2rem;
  line-height: 1;
}

.st-fc-name {
  font-family: var(--ff-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.st-fc-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
}

.st-fc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--fire);
  margin-top: auto;
}
.st-free-card:hover .st-fc-link { text-decoration: underline; }

/* ================================================================
   NEPAL SEO SECTION
   ================================================================ */
.st-nepal-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.st-nepal-content h2 {
  margin-bottom: 16px;
}

.st-nepal-content > p {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.st-nepal-tip {
  background: var(--mist);
  border-left: 4px solid var(--fire);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin-bottom: 18px;
}
.st-nepal-tip h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.st-nepal-tip ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-nepal-tip ul li {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.st-nepal-tip ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8125rem;
}
.st-nepal-tip ul li strong {
  font-weight: 700;
  color: var(--fire);
}

.st-nepal-cta-text {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.65;
  margin-top: 10px;
}

/* ── Nepal sidebar stat card ─────────────────────────────── */
.st-nepal-stat-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 28px;
  color: var(--chalk);
  position: sticky;
  top: 100px;
}

.st-ns-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 12px;
}

.st-nepal-stat-card h3 {
  font-family: var(--ff-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--chalk);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.st-ns-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.st-ns-stat:last-child { border-bottom: none; }

.st-ns-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fire);
  line-height: 1;
}

.st-ns-stat span:not(.st-ns-num) {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ================================================================
   ADSENSE
   ================================================================ */
.st-adsense-wrap {
  padding: 32px 0;
  background: var(--chalk);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ================================================================
   STARTER STACKS
   ================================================================ */
.st-stacks-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.st-stacks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,77,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(99,102,241,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.st-stacks-section .st-section-head { position: relative; z-index: 1; }
.st-stacks-section .st-eyebrow      { color: var(--fire2); }
.st-stacks-section .st-h2           { color: var(--chalk); }
.st-stacks-section .st-section-desc { color: rgba(255,255,255,0.6); }

.st-stacks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.st-stack-bundle {
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.st-stack-bundle:hover {
  border-color: rgba(255,77,0,0.4);
  transform: translateY(-3px);
}

.st-sb-free { background: rgba(255,255,255,0.04); }
.st-sb-mid  { background: rgba(99,102,241,0.07);  border-color: rgba(99,102,241,0.2); }
.st-sb-pro  { background: rgba(255,77,0,0.07);    border-color: rgba(255,77,0,0.25); }

.st-sb-header { display: flex; flex-direction: column; gap: 6px; }

.st-sb-tag {
  display: inline-flex;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.st-sb-free .st-sb-tag { background: rgba(16,185,129,0.2);  color: #6ee7b7; }
.st-sb-mid  .st-sb-tag { background: rgba(99,102,241,0.25); color: #a5b4fc; }
.st-sb-pro  .st-sb-tag { background: rgba(255,77,0,0.25);   color: var(--fire2); }

.st-sb-label {
  font-family: var(--ff-head);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--chalk);
  line-height: 1.2;
}

.st-sb-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.st-sb-tools {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.st-sb-tools li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.st-sb-tools li svg {
  flex-shrink: 0;
  color: var(--green);
}

.st-sb-cta {
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  line-height: 1.5;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.st-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.st-faq-item {
  border-bottom: 1px solid var(--border);
}
.st-faq-item:first-child { border-top: 1px solid var(--border); }

.st-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  transition: color 0.2s;
}
.st-faq-q:hover  { color: var(--fire); }
.open .st-faq-q  { color: var(--fire); }

.st-faq-icon {
  flex-shrink: 0;
  color: var(--mid);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
}
.open .st-faq-icon { transform: rotate(180deg); color: var(--fire); }

.st-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.st-faq-a-inner {
  padding: 0 4px 20px;
}
.st-faq-a-inner p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.72;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.st-cta-section {
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire2) 100%);
  position: relative;
  overflow: hidden;
}
.st-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0,0,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.st-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.st-cta-text { max-width: 560px; }
.st-cta-h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--chalk);
  margin-bottom: 10px;
  line-height: 1.2;
}
.st-cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}
.st-cta-text .st-inline-link {
  color: var(--chalk);
  text-decoration: underline;
}
.st-cta-text .st-inline-link:hover { text-decoration: none; color: var(--chalk); }

.st-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.st-cta-section .st-btn-primary {
  background: var(--ink);
  color: var(--chalk);
}
.st-cta-section .st-btn-primary:hover {
  background: #1a2230;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── 1024px ──────────────────────────────────────────────── */
@media (max-width: 1024px) {

  .st-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .st-hero-right {
    max-width: 480px;
  }

  .st-tools-grid {
    grid-template-columns: 1fr;
  }

  .st-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .st-stacks-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .st-nepal-wrap {
    grid-template-columns: 1fr;
  }

  .st-nepal-stat-card {
    position: static;
  }

}

/* ── 768px ───────────────────────────────────────────────── */
@media (max-width: 768px) {

  .st-hero-h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); }

  .st-hero-ctas { flex-direction: column; align-items: flex-start; }

  .st-stack-grid { grid-template-columns: repeat(3, 1fr); }

  .st-tech-grid {
    grid-template-columns: 1fr;
  }

  .st-link-grid {
    grid-template-columns: 1fr;
  }

  .st-free-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .st-tc-pros-cons {
    grid-template-columns: 1fr;
  }

  .st-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .st-cta-actions {
    justify-content: center;
  }

}

/* ── 480px ───────────────────────────────────────────────── */
@media (max-width: 480px) {

  .st-hero-proof { gap: 18px; }

  .st-stack-grid { grid-template-columns: 1fr 1fr; }

  .st-free-grid { grid-template-columns: 1fr; }

  .st-cta-actions { flex-direction: column; }

  .st-btn-primary,
  .st-btn-outline,
  .st-btn-outline-light { width: 100%; justify-content: center; }

}
