/* fonts loaded via HTML link tags for better performance */

:root {
  --bg:      #07070F;
  --bg-2:    #0E0E1C;
  --bg-3:    #141428;
  --border:  rgba(255,255,255,.07);
  --border-h:rgba(255,255,255,.14);
  --purple:  #7C3AED;
  --purple-l:#A78BFA;
  --cyan:    #22D3EE;
  --green:   #34D399;
  --white:   #F8FAFC;
  --text:    rgba(248,250,252,.65);
  --text-hi: rgba(248,250,252,.9);
  --r: 18px;
  --max-w: 1160px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3 { font-family: 'Space Grotesk', sans-serif; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--purple-l); margin-bottom: 16px;
}
.section__tag::before { content: ''; width: 16px; height: 1.5px; background: var(--purple-l); display: block; }
.section__title { font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -.03em; margin-bottom: 14px; }
.section__sub { color: var(--text); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.section__head { text-align: center; margin-bottom: 64px; }
.center { text-align: center; margin-top: 48px; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; font-weight: 600; transition: all .2s; white-space: nowrap;
}
.btn--primary {
  background: var(--purple); color: var(--white);
  box-shadow: 0 0 0 1px rgba(124,58,237,.5), 0 8px 32px rgba(124,58,237,.35);
}
.btn--primary:hover {
  background: #6D28D9; transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(124,58,237,.7), 0 12px 40px rgba(124,58,237,.5);
}
.btn--ghost {
  background: rgba(255,255,255,.06); color: var(--white);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--border-h); transform: translateY(-2px); }
.btn--outline { border: 1px solid var(--border); color: var(--text-hi); }
.btn--outline:hover { border-color: var(--border-h); color: var(--white); }
.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,7,15,.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.logo span { color: var(--purple-l); }
.nav { display: flex; gap: 4px; }
.nav a { font-size: .875rem; font-weight: 500; color: var(--text); padding: 7px 13px; border-radius: 8px; transition: all .15s; }
.nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 120px 0 140px;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(124,58,237,.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at -10% 80%, rgba(34,211,238,.1) 0%, transparent 60%),
    var(--bg);
}
/* dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25);
  color: var(--purple-l); font-size: .75rem; font-weight: 600;
  padding: 6px 14px 6px 8px; border-radius: 100px; margin-bottom: 28px;
}
.hero__badge-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero h1 {
  font-size: 3.8rem; font-weight: 700; line-height: 1.05;
  color: var(--white); letter-spacing: -.04em; margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-l), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__sub { font-size: 1.1rem; color: var(--text); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
.hero__btns { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 0; }
.stat { padding: 0 32px; border-right: 1px solid var(--border); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--white); letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; }
.stat span { font-size: .78rem; color: var(--text); }

/* Hero card */
.hero__card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 24px;
  background-image: linear-gradient(135deg, rgba(124,58,237,.08) 0%, rgba(34,211,238,.04) 100%);
}
.hero__card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero__card-title { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; }
.hero__card-badge { background: rgba(52,211,153,.1); color: var(--green); font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; border: 1px solid rgba(52,211,153,.2); }
.hero__metrics { display: flex; flex-direction: column; gap: 8px; }
.metric { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.03); border: 1px solid var(--border); padding: 13px 16px; border-radius: 12px; transition: background .2s; }
.metric:hover { background: rgba(255,255,255,.06); }
.metric__label { font-size: .875rem; color: var(--text); }
.metric__val { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; }
.metric__val.green { color: var(--green); }

/* ── BENTO SERVICES ── */
.bento { display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; }
.bento__side { display: flex; flex-direction: column; gap: 16px; }
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px; position: relative;
  transition: all .25s; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r);
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(34,211,238,.04));
  opacity: 0; transition: opacity .25s;
}
.card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.card:hover::before { opacity: 1; }
.card--featured {
  border-color: rgba(124,58,237,.3);
  background: linear-gradient(135deg, rgba(124,58,237,.1) 0%, rgba(34,211,238,.04) 100%);
  box-shadow: 0 0 0 1px rgba(124,58,237,.2), inset 0 1px 0 rgba(255,255,255,.06);
}
.card--featured::before { opacity: 1; }
.card__badge {
  display: inline-block; background: var(--purple); color: var(--white);
  font-size: .65rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
}
.card__icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.card p { color: var(--text); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.card__price { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--purple-l); }
.card--featured .card__price { font-size: 1.15rem; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--r); overflow: hidden; }
.step { background: var(--bg-2); padding: 36px 28px; position: relative; overflow: hidden; }
.step__dec {
  position: absolute; top: -10px; right: 12px;
  font-family: 'Space Grotesk', sans-serif; font-size: 6rem; font-weight: 700;
  color: rgba(255,255,255,.03); line-height: 1; pointer-events: none; user-select: none;
}
.step__num {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.25);
  color: var(--purple-l); font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.step p { font-size: .85rem; color: var(--text); line-height: 1.65; }

/* ── ABOUT ── */
.about__inner { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: center; }
.about__avatar {
  width: 240px; height: 280px; border-radius: 24px; flex-shrink: 0;
  object-fit: cover; object-position: top;
  border: 2px solid rgba(124,58,237,.3);
  box-shadow: 0 0 0 8px rgba(124,58,237,.07), 0 24px 64px rgba(0,0,0,.5);
}
.about__text .section__title { margin-bottom: 16px; }
.about__desc { color: var(--text); font-size: 1rem; line-height: 1.8; margin-bottom: 24px; max-width: 580px; }
.about__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about__tags span {
  font-size: .78rem; font-weight: 600; color: var(--cyan);
  background: rgba(34,211,238,.08); border: 1px solid rgba(34,211,238,.15);
  padding: 5px 12px; border-radius: 100px;
}

/* ── CASES ── */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r); padding: 28px;
  transition: all .25s; position: relative; overflow: hidden;
}
.case::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.case:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.4); }
.case__niche { font-size: .7rem; font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.case__result { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -.02em; line-height: 1.2; }
.case p { color: var(--text); font-size: .875rem; line-height: 1.65; }

/* ── TESTIMONIAL ── */
.testimonial {
  max-width: 780px; margin: 0 auto; text-align: center;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(34,211,238,.04));
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 24px; position: relative;
}
.testimonial__quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem; line-height: .8;
  color: var(--purple); opacity: .3;
  margin-bottom: 16px; font-weight: 700;
}
.testimonial__text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--white); line-height: 1.35;
  letter-spacing: -.02em; margin-bottom: 28px;
}
.testimonial__author {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--text);
}
.testimonial__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
}

/* ── ARTICLE CARDS ── */
.article-card { display: block; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; transition: all .25s; }
.article-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.4); }
.article-card--soon { opacity: .4; pointer-events: none; }
.article-card__tag { display: inline-block; font-size: .65rem; font-weight: 700; color: var(--purple-l); background: rgba(124,58,237,.12); padding: 4px 10px; border-radius: 100px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; }
.article-card h3 { font-size: .975rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.45; }
.article-card p { color: var(--text); font-size: .875rem; margin-bottom: 18px; line-height: 1.65; }
.article-card__more { font-size: .875rem; font-weight: 600; color: var(--purple-l); }

/* ── CONTACT ── */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 900px; margin: 0 auto; align-items: start; }
.form { background: var(--bg-2); border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.form__group { margin-bottom: 16px; }
.form__group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 7px; color: rgba(255,255,255,.6); letter-spacing: .02em; }
.form__group input, .form__group textarea {
  width: 100%; padding: 11px 15px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 10px; font-size: .9rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s; color: var(--white);
}
.form__group input::placeholder, .form__group textarea::placeholder { color: rgba(255,255,255,.2); }
.form__group input:focus, .form__group textarea:focus { outline: none; border-color: rgba(124,58,237,.5); box-shadow: 0 0 0 3px rgba(124,58,237,.1); background: rgba(255,255,255,.06); }
.form__group textarea { resize: vertical; }
.form__success { display: none; margin-top: 14px; padding: 13px; background: rgba(52,211,153,.08); color: var(--green); border-radius: 10px; font-weight: 600; text-align: center; border: 1px solid rgba(52,211,153,.15); font-size: .875rem; }

.contact__info { padding-top: 4px; }
.contact__info h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -.02em; }
.contact__info > p { color: var(--text); margin-bottom: 28px; line-height: 1.7; font-size: .95rem; }
.tg-btn { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,136,204,.15); color: #38BDF8; padding: 13px 22px; border-radius: 10px; font-weight: 600; font-size: .9rem; transition: all .2s; margin-bottom: 32px; border: 1px solid rgba(0,136,204,.2); }
.tg-btn:hover { background: rgba(0,136,204,.25); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,136,204,.2); }
.guarantees { display: flex; flex-direction: column; gap: 12px; }
.guarantee { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--text); }
.guarantee::before { content: '✓'; min-width: 22px; height: 22px; background: rgba(52,211,153,.1); color: var(--green); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; border: 1px solid rgba(52,211,153,.15); }

/* ── FAQ ── */
.faq { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  list-style: none; padding: 20px 0; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s; user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; font-size: 1.3rem; color: var(--purple-l); flex-shrink: 0; transition: transform .25s; }
details[open] .faq__q::after { transform: rotate(45deg); }
details[open] .faq__q { color: var(--purple-l); }
.faq__a { padding: 0 24px 20px 0; color: var(--text); line-height: 1.75; font-size: .95rem; }

/* ── RELATED LINKS ── */
.article__related { margin: 40px 0 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.article__related-title { font-size: .75rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.related-link { display: block; color: var(--purple-l); font-weight: 500; font-size: .9rem; margin-bottom: 10px; transition: color .15s; }
.related-link:hover { color: var(--white); }

/* ── FOOTER ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__nav { display: flex; gap: 24px; }
.footer__nav a { font-size: .875rem; color: rgba(255,255,255,.3); transition: color .15s; }
.footer__nav a:hover { color: var(--white); }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.2); }

/* ── BLOG PAGE ── */
.page-hero { padding: 88px 0 96px; background: var(--bg); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 36px 36px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent); }
.page-hero::after { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(124,58,237,.2), transparent 70%); }
.page-hero h1 { font-size: 2.6rem; font-weight: 700; color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; letter-spacing: -.03em; }
.page-hero p { color: var(--text); position: relative; z-index: 1; font-size: 1rem; }
.blog-grid { padding: 72px 0; }
.blog-grid .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ── ARTICLE PAGE ── */
.article { max-width: 740px; margin: 0 auto; padding: 64px 24px 96px; }
.article__back { display: inline-flex; align-items: center; gap: 6px; color: var(--text); font-size: .875rem; margin-bottom: 32px; transition: color .15s; font-weight: 500; }
.article__back:hover { color: var(--purple-l); }
.article__meta { font-size: .825rem; color: var(--text); margin-bottom: 20px; }
.article h1 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 24px; line-height: 1.25; letter-spacing: -.02em; }
.article h2 { font-size: 1.35rem; font-weight: 700; color: var(--white); margin: 44px 0 14px; }
.article h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-hi); margin: 28px 0 10px; }
.article p { color: var(--text); margin-bottom: 18px; line-height: 1.8; }
.article ul, .article ol { padding-left: 24px; margin-bottom: 18px; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { color: var(--text); margin-bottom: 10px; line-height: 1.7; }
.highlight { background: rgba(124,58,237,.08); border-left: 3px solid var(--purple); padding: 18px 22px; border-radius: 0 12px 12px 0; margin: 28px 0; }
.highlight p { margin: 0; font-weight: 500; color: var(--text-hi); }
.article__cta { background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(34,211,238,.08)); border: 1px solid rgba(124,58,237,.25); border-radius: 20px; padding: 40px; text-align: center; margin-top: 56px; }
.article__cta h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.article__cta p { color: var(--text); margin-bottom: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 2.8rem; }
  .bento { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section__title { font-size: 1.8rem; }
  .hero { padding: 72px 0 88px; }
  .hero h1 { font-size: 2.2rem; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { justify-content: center; }
  .hero__stats { gap: 0; flex-wrap: wrap; }
  .stat { padding: 12px 20px; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__avatar { width: 100%; height: 220px; border-radius: 18px; }
  .niches-grid { grid-template-columns: repeat(2,1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .blog-grid .grid-2 { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
  .nav {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(7,7,15,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 20px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: none; }
  .burger { display: flex; }
  .article h1 { font-size: 1.6rem; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .stat { width: 100%; }
  .niches-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── MINI CHART (Hero) ── */
.mini-chart { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.mini-chart__bars { display: flex; align-items: flex-end; gap: 6px; height: 68px; margin-bottom: 6px; }
.mini-chart__bar { flex: 1; background: rgba(124,58,237,.25); border-radius: 4px 4px 0 0; transition: background .2s; }
.mini-chart__bar:hover { background: rgba(124,58,237,.5); }
.mini-chart__bar--hi { background: var(--green); box-shadow: 0 0 16px rgba(52,211,153,.4); }
.mini-chart__months { display: flex; gap: 6px; margin-bottom: 10px; }
.mini-chart__month { flex: 1; text-align: center; font-size: .55rem; color: rgba(255,255,255,.22); letter-spacing: .04em; }
.mini-chart__caption { text-align: center; font-size: .7rem; font-weight: 700; color: var(--green); letter-spacing: .04em; }

/* ── ARTICLE CARD THUMB ── */
.article-card__thumb {
  height: 130px;
  margin: -28px -28px 24px;
  border-radius: 17px 17px 0 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
}
.thumb--purple { background: linear-gradient(135deg, rgba(109,40,217,.55) 0%, rgba(124,58,237,.15) 100%); }
.thumb--cyan   { background: linear-gradient(135deg, rgba(6,182,212,.4)   0%, rgba(34,211,238,.1)  100%); }
.thumb--green  { background: linear-gradient(135deg, rgba(5,150,105,.4)   0%, rgba(52,211,153,.1)  100%); }
.thumb--orange { background: linear-gradient(135deg, rgba(217,119,6,.4)   0%, rgba(251,191,36,.1)  100%); }

/* ── NICHES ── */
.niches-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.niche-item {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 16px; text-align: center; transition: all .25s;
}
.niche-item:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.niche-item__icon {
  width: 52px; height: 52px; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 1.6rem;
}
.niche-item__name { font-size: .82rem; font-weight: 600; color: var(--text-hi); line-height: 1.35; }

/* ── CASE STATS ── */
.case__stats { display: flex; gap: 0; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.case__stat { flex: 1; text-align: center; padding: 0 8px; border-right: 1px solid var(--border); }
.case__stat:first-child { padding-left: 0; text-align: left; }
.case__stat:last-child  { border-right: none; }
.case__stat strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 2px; }
.case__stat span { font-size: .62rem; color: var(--text); text-transform: uppercase; letter-spacing: .07em; }
