/* ===========================
   EXTRA BUTTON VARIANTS
=========================== */
.btn--ghost-dark {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn--ghost-dark:hover { color: #fff; border-color: rgba(255,255,255,0.55); }

.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ===========================
   NIDEX.RUN — HERO
=========================== */
.run-hero {
  background: var(--bg-dark);
  padding: 160px 0 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.run-hero__grid {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.run-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.run-hero__glow--1 {
  width: 640px; height: 640px;
  top: -120px; left: -100px;
  background: rgba(11,100,244,0.12);
}
.run-hero__glow--2 {
  width: 480px; height: 480px;
  bottom: -80px; right: -80px;
  background: rgba(56,189,248,0.08);
}
.run-hero__inner { position: relative; }
.run-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 28px;
}
.run-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.run-hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.run-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.run-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.run-pill:hover { background: rgba(255,255,255,0.1); color: #fff; }
.run-pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.run-pill__dot--1 { background: #3B82F6; }
.run-pill__dot--2 { background: #38BDF8; }
.run-pill__dot--3 { background: #10B981; }
.run-pill__dot--4 { background: #F59E0B; }

/* ===========================
   NIDEX.RUN — STICKY NAV
=========================== */
.run-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 40;
}
.run-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.run-nav__inner::-webkit-scrollbar { display: none; }
.run-nav__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
}
.run-nav__item:hover { color: var(--primary); }
.run-nav__item.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

/* ===========================
   NIDEX.RUN — SERVICE BLOCKS
=========================== */
.run-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: #fff;
}
.run-block--alt { background: #F8FAFC; }
.run-block--dark { background: #0B1628; }
.run-block--reverse .run-block__img-col { order: 2; }
.run-block--reverse .run-block__content-col { order: 1; }

.run-block__img-col {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.run-block__img-wrap {
  position: absolute;
  inset: 0;
}
.run-block__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}
.run-block:hover .run-block__img-wrap img { transform: scale(1.03); }

.run-block__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, rgba(255,255,255,0.7) 80%, #fff 100%);
}
.run-block--alt .run-block__img-overlay {
  background: linear-gradient(to right, transparent 40%, rgba(248,250,252,0.7) 80%, #F8FAFC 100%);
}
.run-block--reverse .run-block__img-overlay {
  background: linear-gradient(to left, transparent 40%, rgba(255,255,255,0.7) 80%, #fff 100%);
}
.run-block__img-overlay--dark {
  background: linear-gradient(to right, transparent 20%, rgba(11,22,40,0.5) 60%, #0B1628 95%) !important;
}
.run-block--reverse.run-block--dark .run-block__img-overlay--dark {
  background: linear-gradient(to left, transparent 20%, rgba(11,22,40,0.5) 60%, #0B1628 95%) !important;
}

.run-block__content-col {
  display: flex;
  align-items: center;
  padding: 80px 64px;
}
.run-block__content { max-width: 480px; }

.run-block__index {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.run-block__index--light { color: rgba(255,255,255,0.3); }

.run-block__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11,100,244,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(11,100,244,0.14);
}
.run-block__tag--accent {
  background: rgba(56,189,248,0.1);
  color: #0284C7;
  border-color: rgba(56,189,248,0.2);
}
.run-block__tag--dark {
  background: rgba(56,189,248,0.1);
  color: var(--accent);
  border-color: rgba(56,189,248,0.2);
}
.run-block__tag--gold {
  background: rgba(245,158,11,0.1);
  color: #D97706;
  border-color: rgba(245,158,11,0.2);
}

.run-block__title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.run-block__title--light { color: #fff; }

.run-block__desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.run-block__desc--light { color: rgba(255,255,255,0.55); }

.run-block__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.run-block__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.run-block__features--light li { color: rgba(255,255,255,0.65); }

.run-feat__icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.run-feat__icon svg { width: 12px; height: 12px; stroke: #fff; }
.run-feat__icon--accent { background: #0284C7; }
.run-feat__icon--cyan   { background: rgba(56,189,248,0.15); border: 1px solid rgba(56,189,248,0.3); }
.run-feat__icon--cyan svg { stroke: #38BDF8; }
.run-feat__icon--gold   { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); }
.run-feat__icon--gold svg { stroke: #D97706; }

.run-block__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===========================
   NIDEX.RUN — PORTFOLIO
=========================== */
.run-portfolio {
  background: #0B1628;
  padding: 96px 0 112px;
}
.run-portfolio__header {
  text-align: center;
  margin-bottom: 56px;
}
.run-portfolio__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
  letter-spacing: -0.02em;
}
.run-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .run-portfolio__grid { grid-template-columns: repeat(2, 1fr); } }

.run-port-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.run-port-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border-color: rgba(56,189,248,0.15);
}
.run-port-card__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.run-port-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.run-port-card:hover .run-port-card__img img { transform: scale(1.06); }
.run-port-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(11,22,40,0.8));
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.run-port-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(11,100,244,0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 3px 10px;
  border-radius: 6px;
}
.run-port-card__body {
  padding: 20px;
}
.run-port-card__body h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.4;
}
.run-port-card__body p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* CTA card */
.run-port-card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11,100,244,0.15), rgba(56,189,248,0.08));
  border: 1px dashed rgba(56,189,248,0.25);
  min-height: 280px;
}
.run-port-card__cta-inner {
  text-align: center;
  padding: 32px 24px;
}
.run-port-card__cta-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(11,100,244,0.2);
  border: 1px solid rgba(11,100,244,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.run-port-card__cta-inner h4 {
  font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.run-port-card__cta-inner p {
  font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.6;
}

/* ===========================
   NIDEX.RUN — CTA FINAL
=========================== */
.run-cta {
  background: var(--bg-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.run-cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: rgba(11,100,244,0.12);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.run-cta__inner { position: relative; }
.run-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 16px 0 20px;
}
.run-cta__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.run-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   SERVICES PAGE — HERO
=========================== */
.services-hero {
  background: var(--bg-dark);
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.services-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.services-hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(11,100,244,0.15);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.services-hero__inner { position: relative; }
.services-hero__label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.services-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.services-hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===========================
   SERVICE BLOCKS
=========================== */
.service-block {
  padding: 100px 0;
  position: relative;
}
.service-block--alt { background: var(--bg-light); }
.service-block--dark {
  background: var(--bg-dark);
  color: #fff;
}
.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-block__inner--reverse { direction: rtl; }
.service-block__inner--reverse > * { direction: ltr; }

/* Service block image banner */
.service-block__banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.service-block__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.8s ease;
}
.service-block:hover .service-block__banner img {
  transform: scale(1.03);
}
.service-block__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,23,42,0.82) 0%,
    rgba(15,23,42,0.45) 60%,
    rgba(15,23,42,0.2) 100%
  );
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}
.service-block__banner--dark .service-block__banner-overlay {
  background: linear-gradient(
    to right,
    rgba(11,22,40,0.88) 0%,
    rgba(11,22,40,0.5) 60%,
    rgba(11,22,40,0.25) 100%
  );
}
.service-block__banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11,100,244,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  display: block;
  width: fit-content;
}
.service-block__banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.service-block__banner-title span {
  color: #29B2B0;
}

.service-block__anchor {
  position: absolute;
  top: -80px;
}

.service-block__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,100,244,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(11,100,244,0.15);
}
.service-block--dark .service-block__tag {
  background: rgba(56,189,248,0.1);
  color: var(--accent);
  border-color: rgba(56,189,248,0.2);
}

.service-block__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.service-block--dark .service-block__title { color: #fff; }

.service-block__desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.service-block--dark .service-block__desc { color: rgba(255,255,255,0.55); }

.service-block__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.service-block__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-block--dark .service-block__benefit { color: rgba(255,255,255,0.65); }
.service-block__benefit-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-block__benefit-check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 3;
}

/* ===========================
   PROCESS STEPS
=========================== */
.process {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.service-block--dark .process {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.process__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-block--dark .process__title { color: var(--accent); }
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process__step {
  display: flex;
  gap: 16px;
  position: relative;
}
.process__step:not(:last-child) { padding-bottom: 24px; }
.process__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.process__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.process__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.2;
  margin-top: 4px;
}
.process__step:last-child .process__line { display: none; }
.process__content { padding-bottom: 4px; }
.process__step-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.service-block--dark .process__step-title { color: #fff; }
.process__step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-block--dark .process__step-desc { color: rgba(255,255,255,0.45); }

/* Service block CTA */
.service-block__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===========================
   SERVICES NAV PILLS
=========================== */
.services-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 40;
}
.services-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-nav__inner::-webkit-scrollbar { display: none; }
.services-nav__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  cursor: pointer;
}
.services-nav__item:hover { color: var(--primary); }
.services-nav__item.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ===========================
   SERVICES OVERVIEW CARDS
=========================== */
.services-overview {
  background: #F8FAFC;
  padding: 80px 0 100px;
}
.services-overview__header {
  text-align: center;
  margin-bottom: 56px;
}
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.svc-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.svc-card:hover .svc-card__img img {
  transform: scale(1.04);
}
.svc-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.55));
}
.svc-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: #EFF6FF;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.svc-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 12px;
}
.svc-card__desc {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.svc-card__tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.svc-card__link:hover {
  gap: 10px;
}

/* ===========================
   BLOG PAGE
=========================== */
.blog-hero {
  background: var(--bg-dark);
  padding: 80px 0 60px;
  text-align: center;
}
.blog-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-hero__desc {
  font-size: 1rem;
  color: #94A3B8;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.cat-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.15s;
}
.cat-btn:hover { border-color: var(--primary); color: var(--primary); }
.cat-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.load-more-wrap { text-align: center; margin-top: 48px; }
#loadMoreBtn { min-width: 180px; justify-content: center; }
#loadMoreBtn:disabled { opacity: 0.5; cursor: not-allowed; }
.blog-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===========================
   SINGLE POST PAGE
=========================== */
.post-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.post-cover-wrap {
  background: var(--bg-dark);
  max-height: 480px;
  overflow: hidden;
}
.post-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.post-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-decoration: none;
}
.post-cat:hover { text-decoration: underline; }
.post-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.post-excerpt {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.post-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-meta svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }
.post-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary);
  max-width: 720px;
}
.post-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2em 0 0.75em; }
.post-content h3 { font-size: 1.25rem; font-weight: 700; margin: 1.75em 0 0.5em; }
.post-content p { margin-bottom: 1.2em; }
.post-content ul, .post-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.post-content li { margin-bottom: 0.4em; }
.post-content a { color: var(--primary); text-decoration: underline; }
.post-content img { border-radius: 12px; margin: 1.5em 0; max-width: 100%; }
.post-content blockquote {
  border-left: 4px solid var(--primary);
  margin: 1.5em 0;
  padding: 12px 20px;
  background: #EFF6FF;
  border-radius: 0 8px 8px 0;
  color: #1D4ED8;
  font-style: italic;
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.related-section {
  background: var(--bg-light);
  padding: 48px 0;
}
.related-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.related-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: rgba(37,99,235,0.2); }
.related-card__img { width: 80px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.related-card__img--empty { width: 80px; height: 64px; border-radius: 8px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); flex-shrink: 0; }
.related-card__title { font-size: 0.875rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.related-card:hover .related-card__title { color: var(--primary); }
.related-card__date { font-size: 0.75rem; color: var(--text-muted); }
.not-found {
  text-align: center;
  padding: 120px 24px;
}
.not-found__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.not-found__desc { color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ===========================
   GUIDELINE PAGE
=========================== */
.gl-header {
  background: var(--bg-dark);
  padding: 64px 0 48px;
  margin-bottom: 64px;
}
.gl-header__label {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.gl-header__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.gl-header__title span { color: var(--primary); }
.gl-header__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
}

.gl-section { margin-bottom: 80px; }
.gl-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

/* Color swatches */
.gl-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.gl-swatch { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.gl-swatch__color { height: 72px; }
.gl-swatch__info { padding: 12px; background: #fff; }
.gl-swatch__name { font-size: 0.75rem; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 3px; }
.gl-swatch__hex  { font-size: 0.75rem; font-family: monospace; color: var(--text-muted); }

/* Gradient tiles */
.gl-gradients {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gl-gradient { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.gl-gradient__preview { height: 100px; display: flex; align-items: center; justify-content: center; }
.gl-gradient__info { padding: 16px; background: #fff; }
.gl-gradient__name { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.gl-gradient__css  { font-size: 0.75rem; font-family: monospace; color: var(--text-muted); word-break: break-all; margin-bottom: 4px; }
.gl-gradient__class { font-size: 0.75rem; font-family: monospace; color: var(--primary); }

/* Typography rows */
.gl-type-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid #F1F5F9;
}
.gl-type-meta { width: 180px; flex-shrink: 0; }
.gl-type-meta__name { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.gl-type-meta__spec { font-size: 0.75rem; color: var(--text-muted); }

/* Button showcase */
.gl-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.gl-buttons--dark { background: var(--bg-dark); }
.gl-buttons--light { background: var(--bg-light); border: 1px solid var(--border); }

/* Card showcase */
.gl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Token table */
.gl-tokens { width: 100%; border-collapse: collapse; }
.gl-tokens th { text-align: left; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); padding: 8px 12px; border-bottom: 2px solid var(--border); text-transform: uppercase; letter-spacing: 0.06em; }
.gl-tokens td { font-size: 0.875rem; padding: 10px 12px; border-bottom: 1px solid #F1F5F9; vertical-align: top; }
.gl-tokens td:first-child { font-family: monospace; color: var(--primary); }
.gl-tokens td:nth-child(2) { font-family: monospace; color: var(--text-muted); }

/* ===========================
   NIDEX.RUN — SUMMARY CARDS
=========================== */
.run-summary { background: #F8FAFC; padding: 80px 0 100px; }
.run-summary__header { text-align: center; margin-bottom: 56px; }
.run-summary__title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-top: 12px; }
.run-summary__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px) { .run-summary__grid { grid-template-columns: 1fr; } }
.run-sum-card { background: #fff; border: 1px solid #E2E8F0; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; text-decoration: none; color: inherit; }
.run-sum-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
.run-sum-card__img { position: relative; height: 220px; overflow: hidden; }
.run-sum-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.run-sum-card:hover .run-sum-card__img img { transform: scale(1.04); }
.run-sum-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,22,40,0.2) 0%, rgba(11,22,40,0.75) 100%); }
.run-sum-card__num { position: absolute; top: 16px; left: 20px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.run-sum-card__badge { position: absolute; bottom: 16px; left: 20px; display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.run-sum-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.run-sum-card__title { font-size: 1.375rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 10px; }
.run-sum-card__desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.run-sum-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.run-sum-card__chips span { font-size: 0.75rem; font-weight: 500; color: #475569; background: #F1F5F9; padding: 3px 10px; border-radius: 6px; border: 1px solid #E2E8F0; }
.run-sum-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9375rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: gap 0.2s; }
.run-sum-card:hover .run-sum-card__link { gap: 10px; }

/* ===========================
   SERVICE DETAIL HERO
=========================== */
.svc-hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.svc-hero__bg { position: absolute; inset: 0; }
.svc-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.svc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,22,40,0.96) 0%, rgba(11,22,40,0.72) 50%, rgba(11,22,40,0.45) 100%); }
.svc-hero__inner { position: relative; padding: 100px 0 72px; width: 100%; }
.svc-hero__breadcrumb { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.svc-hero__breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.svc-hero__breadcrumb a:hover { color: #fff; }
.svc-hero__breadcrumb span { margin: 0 8px; }
.svc-hero__label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.2); border-radius: 999px; padding: 6px 18px; margin-bottom: 20px; }
.svc-hero__title { font-size: clamp(2.25rem,5vw,3.75rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; max-width: 700px; }
.svc-hero__desc { font-size: 1.125rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 580px; margin-bottom: 36px; }
.svc-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===========================
   SERVICE DETAIL PROBLEMA
=========================== */
.svc-problem { background: #0B1628; padding: 96px 0 100px; }
.svc-problem__header { text-align: center; margin-bottom: 56px; }
.svc-problem__title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-top: 12px; }
.svc-problem__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) { .svc-problem__grid { grid-template-columns: 1fr; } }
.svc-pain { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px; display: flex; gap: 16px; align-items: flex-start; }
.svc-pain__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #F87171; }
.svc-pain__icon svg { width: 18px; height: 18px; }
.svc-pain h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.svc-pain p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ===========================
   SERVICE DETAIL SOLUCAO
=========================== */
.svc-solution { background: #fff; padding: 100px 0; }
.svc-solution__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .svc-solution__inner { grid-template-columns: 1fr; gap: 48px; } }
.svc-solution__img { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.12); aspect-ratio: 4/3; }
.svc-solution__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===========================
   SERVICE DETAIL PROCESSO
=========================== */
.svc-process { background: #F8FAFC; padding: 100px 0; }
.svc-process__header { text-align: center; margin-bottom: 56px; }
.svc-process__title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-top: 12px; }
.svc-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .svc-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-steps-grid { grid-template-columns: 1fr; } }
.svc-step { background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; padding: 28px; display: flex; gap: 16px; align-items: flex-start; }
.svc-step__num { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #1D4ED8); color: #fff; font-size: 0.9375rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(37,99,235,0.25); }
.svc-step h3 { font-size: 0.9375rem; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.svc-step p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   SERVICE DETAIL ENTREGA
=========================== */
.svc-deliverables { background: #fff; padding: 100px 0; border-top: 1px solid #E2E8F0; }
.svc-deliverables__header { text-align: center; margin-bottom: 56px; }
.svc-deliverables__title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-top: 12px; }
.svc-deliver-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1024px) { .svc-deliver-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-deliver-grid { grid-template-columns: 1fr; } }
.svc-deliver { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 16px; padding: 28px; }
.svc-deliver__icon { width: 48px; height: 48px; border-radius: 12px; background: #EFF6FF; border: 1px solid #DBEAFE; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--primary); }
.svc-deliver__icon svg { width: 22px; height: 22px; }
.svc-deliver h3 { font-size: 0.9375rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.svc-deliver p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }


/* ===========================
   SUITE PAGE — HERO
=========================== */
.suite-hero {
  background: var(--bg-dark);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.suite-hero__grid {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.suite-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.suite-hero__glow--1 { width: 600px; height: 600px; top: -150px; left: -100px; background: rgba(37,99,235,0.12); }
.suite-hero__glow--2 { width: 400px; height: 400px; bottom: -80px; right: -60px; background: rgba(56,189,248,0.08); }
.suite-hero__inner { position: relative; }
.suite-hero__label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.2);
  border-radius: 999px; padding: 6px 18px; margin-bottom: 28px;
}
.suite-hero__title {
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.suite-hero__desc {
  font-size: 1.125rem; color: rgba(255,255,255,0.5); max-width: 580px;
  margin: 0 auto 40px; line-height: 1.75;
}
.suite-hero__pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.suite-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.suite-pill:hover { background: rgba(255,255,255,0.1); color: #fff; }
.suite-pill__dot { width: 7px; height: 7px; border-radius: 50%; }

/* ===========================
   SUITE PAGE — MODULE BLOCKS
=========================== */
.suite-block {
  background: #fff;
  padding: 96px 0;
}
.suite-block--alt  { background: #F8FAFC; }
.suite-block--dark { background: #0B1628; }

/* Container 1200px dentro do bloco full-width */
.suite-block__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Reverse: troca screenshot para a direita */
.suite-block--reverse .suite-block__screenshot-col { order: 2; }
.suite-block--reverse .suite-block__content-col    { order: 1; }

/* Screenshot col */
.suite-block__screenshot-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.suite-block__screenshot-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.07);
  background: #E2E8F0;
  aspect-ratio: 16 / 10;
  transition: box-shadow 0.3s, transform 0.3s;
}
.suite-block:hover .suite-block__screenshot-frame {
  box-shadow: 0 32px 96px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.suite-block__screenshot-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block;
}
.suite-block__screenshot-frame--dark {
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 24px 72px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.3);
  background: #0F1A2E;
}
.suite-block--dark:hover .suite-block__screenshot-frame {
  box-shadow: 0 32px 96px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.35);
}

/* ===========================
   MOCK SCREEN PLACEHOLDER
=========================== */
.mock-screen {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 72px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.07);
  font-family: inherit;
  transition: box-shadow 0.3s, transform 0.3s;
}
.suite-block:hover .mock-screen {
  box-shadow: 0 32px 96px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
/* Chrome bar */
.mock-screen__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
}
.mock-screen__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.mock-screen__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
}
.mock-screen__dots span:nth-child(1) { background: #FC5F5A; }
.mock-screen__dots span:nth-child(2) { background: #FDBC40; }
.mock-screen__dots span:nth-child(3) { background: #34C749; }
.mock-screen__urlbar {
  flex: 1;
  height: 20px;
  background: #E2E8F0;
  border-radius: 4px;
}
/* App body */
.mock-screen__body {
  display: flex;
  height: 260px;
}
/* Sidebar */
.mock-screen__sidebar {
  width: 52px;
  background: #0F172A;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 14px;
  flex-shrink: 0;
}
.mock-screen__sidebar-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--mock-color, #2563EB);
  margin-bottom: 8px;
}
.mock-screen__sidebar-item {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
}
.mock-screen__sidebar-item--active {
  background: var(--mock-color, #2563EB);
  opacity: 0.9;
}
/* Main content */
.mock-screen__main {
  flex: 1;
  padding: 16px;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.mock-screen__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.mock-screen__topbar-title {
  height: 10px;
  width: 100px;
  background: #CBD5E1;
  border-radius: 4px;
}
.mock-screen__topbar-btn {
  height: 22px;
  width: 70px;
  border-radius: 5px;
  background: var(--mock-color, #2563EB);
  opacity: 0.85;
}
/* Cards row */
.mock-screen__cards {
  display: flex;
  gap: 10px;
}
.mock-screen__card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-screen__card-label {
  height: 7px;
  border-radius: 3px;
  background: #E2E8F0;
  width: 60%;
}
.mock-screen__card-value {
  height: 14px;
  border-radius: 3px;
  width: 75%;
  background: var(--mock-color, #2563EB);
  opacity: 0.18;
}
.mock-screen__card-value--accent {
  background: var(--mock-color, #2563EB);
  opacity: 0.7;
}
/* Content rows */
.mock-screen__rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.mock-screen__row {
  height: 32px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
}
.mock-screen__row-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mock-color, #2563EB);
  opacity: 0.7;
  flex-shrink: 0;
}
.mock-screen__row-line {
  height: 6px;
  border-radius: 3px;
  background: #E2E8F0;
  flex: 1;
}
.mock-screen__row-line--short { flex: 0.4; }
.mock-screen__row-tag {
  height: 18px;
  width: 40px;
  border-radius: 4px;
  background: var(--mock-color, #2563EB);
  opacity: 0.15;
  flex-shrink: 0;
}
/* Dark variant */
.mock-screen--dark {
  background: #0F172A;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 24px 72px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.3);
}
.mock-screen--dark .mock-screen__chrome { background: #1E293B; border-color: rgba(255,255,255,0.06); }
.mock-screen--dark .mock-screen__urlbar { background: #334155; }
.mock-screen--dark .mock-screen__main   { background: #0B1628; }
.mock-screen--dark .mock-screen__card  { background: #1E293B; border-color: rgba(255,255,255,0.06); }
.mock-screen--dark .mock-screen__row   { background: #1E293B; border-color: rgba(255,255,255,0.06); }
.mock-screen--dark .mock-screen__card-label  { background: rgba(255,255,255,0.1); }
.mock-screen--dark .mock-screen__row-line    { background: rgba(255,255,255,0.08); }
.suite-block--dark:hover .mock-screen {
  box-shadow: 0 32px 96px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.35);
}

/* Content col */
.suite-block__content-col {
  display: flex;
  align-items: center;
}
.suite-block__content { width: 100%; }

.suite-block__num {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 12px;
}
.suite-block--dark .suite-block__num { color: rgba(255,255,255,0.3); }

.suite-block__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 20px;
}
.suite-block__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text-primary); margin-bottom: 16px;
}
.suite-block--dark .suite-block__title { color: #fff; }
.suite-block__desc {
  font-size: 1.0625rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 28px;
}
.suite-block--dark .suite-block__desc { color: rgba(255,255,255,0.55); }
.suite-block__features {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px;
}
.suite-block__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9375rem; color: var(--text-muted); line-height: 1.5;
}
.suite-block--dark .suite-block__features li { color: rgba(255,255,255,0.65); }
.suite-block__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .suite-block { padding: 64px 0; }
  .suite-block__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .suite-block--reverse .suite-block__screenshot-col { order: unset; }
  .suite-block--reverse .suite-block__content-col    { order: unset; }
}
@media (max-width: 480px) {
  .suite-block { padding: 48px 0; }
  .suite-block__container { padding: 0 16px; }
}
