/* ─── SERVICES PAGE ─── */

/* Hero overrides */
.hero--services {
  min-height: 88vh;
  padding: 6rem 4rem 8rem;
}
.hero--services .hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-skyline.png') center bottom / cover no-repeat;
  opacity: 0.18;
}
.hero--services .hero-glow {
  top: 20%;
  right: 8%;
}
.hero--services .hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 184, 162, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero--services .hero-content {
  max-width: 820px;
}
.hero--services h1 {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
}
.hero--services .hero-sub {
  max-width: 500px;
  margin-bottom: 3.2rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2));
}

/* ─── NALSC CREDENTIAL BAR ─── */
.intro-band {
  background: var(--accent);
  padding: 1.6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.band-nalsc-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.band-nalsc-img {
  width: 72px;
  height: auto;
  display: block;
}
.band-nalsc-text {
  display: flex;
  flex-direction: column;
}
.band-nalsc-text strong {
  font-size: var(--text-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.3;
}
.band-divider {
  width: 1px;
  height: 32px;
  background: rgba(14, 14, 14, 0.2);
  flex-shrink: 0;
}
.band-quote {
  font-family: var(--serif);
  font-size: var(--text-body-lg);
  font-style: italic;
  color: var(--ink);
  text-align: center;
  max-width: 360px;
}
.band-nalsc-right {
  font-size: var(--text-ui);
  font-weight: 400;
  color: rgba(14, 14, 14, 0.6);
  max-width: 300px;
  line-height: 1.55;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  background: var(--white);
  padding: 7rem 4rem;
  border-bottom: 1px solid var(--border-lt);
  position: relative;
  overflow: hidden;
}
.dot-grid-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-left h2 {
  font-family: var(--serif);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.about-left h2 em {
  font-style: italic;
  color: var(--accent-dk);
}
.about-left p {
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

/* NALSC badge — inline (About section) */
.nalsc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--border);
  background: var(--mist);
}
.nalsc-badge-img {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}
.nalsc-badge p {
  font-size: var(--text-ui);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}
.nalsc-badge p strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-card {
  padding: 1.8rem 0 1.8rem 1.6rem;
  border-left: 2px solid var(--border-lt);
  margin-bottom: 1.4rem;
  transition: border-color 0.3s;
}
.about-card:last-child {
  margin-bottom: 0;
}
.about-card:hover {
  border-color: var(--accent);
}
.about-card-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 184, 162, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  transition: background 0.3s;
}
.about-card:hover .about-card-icon {
  background: var(--accent-glow);
}
.about-card h4 {
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.about-card p {
  font-size: var(--text-body-sm);
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-secondary);
  margin: 0;
}

/* ─── TRANSPARENCY SECTION ─── */
.transparency-section {
  background: var(--ink);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.transparency-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
}
.transparency-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.transparency-left .section-label {
  color: var(--accent);
}
.transparency-left .section-label::before {
  background: var(--accent);
}
.transparency-left h2 {
  font-family: var(--serif);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.transparency-left h2 em {
  font-style: italic;
  color: var(--accent);
}
.transparency-left p {
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}
.transparency-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.t-pillar {
  padding: 1.8rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 2px solid var(--accent);
  transition: background 0.3s;
}
.t-pillar:hover {
  background: rgba(0, 184, 162, 0.06);
}
.t-pillar h4 {
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.45rem;
}
.t-pillar p {
  font-size: var(--text-body-sm);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ─── SERVICE BLOCKS ─── */
.services-wrapper {
  background: var(--surface);
}

.candidates-heading {
  padding: 6rem 4rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-lt);
}
.candidates-heading h2 {
  font-family: var(--serif);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.candidates-heading p {
  font-size: var(--text-body);
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}
.service-block.reverse {
  direction: rtl;
}
.service-block.reverse > * {
  direction: ltr;
}

.service-visual {
  position: relative;
  overflow: hidden;
}
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(14, 14, 14, 0.35) 0%, transparent 55%);
}
.service-number {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}
.service-icon-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 1px solid rgba(0, 184, 162, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.service-visual:hover .service-icon-wrap {
  border-color: rgba(0, 184, 162, 0.6);
  background: rgba(0, 184, 162, 0.06);
}
.service-icon-wrap svg {
  opacity: 0.65;
  transition: opacity 0.3s;
}
.service-visual:hover .service-icon-wrap svg {
  opacity: 0.95;
}

.visual-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.service-copy {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border-lt);
  background: var(--white);
}
.service-copy h3 {
  font-family: var(--serif);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
.service-copy h3 em {
  font-style: italic;
  color: var(--accent-dk);
}
.service-copy p {
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}
.service-copy p:last-of-type {
  margin-bottom: 2.2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.6rem;
}
.pill {
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--surface);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.service-copy:hover .pill {
  border-color: rgba(0, 184, 162, 0.35);
  color: var(--accent-dk);
}

.service-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dk);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(0, 143, 126, 0.3);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.service-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.service-link .arrow {
  transition: transform 0.25s;
}
.service-link:hover .arrow {
  transform: translateX(5px);
}

/* Visual bg colors */
.visual-associates {
  background: linear-gradient(150deg, #0e0e0e 0%, #141414 60%, #0e1a18 100%);
}
.visual-counsel {
  background: linear-gradient(150deg, #0e0e0e 0%, #131212 60%, #141008 100%);
}
.visual-partners {
  background: var(--ink);
}
.visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-coaching {
  background: linear-gradient(150deg, #080a14 0%, #0d1020 60%, #0a0f1a 100%);
}

/* Coaching feature checklist */
.coaching-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.4rem;
}
.coaching-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.coaching-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.coaching-feature span {
  font-size: var(--text-body-sm);
  font-weight: 400;
  color: var(--text-secondary);
}

/* ─── FIRMS SECTION ─── */
.firms-section {
  background: var(--ink-soft);
  padding: 7rem 4rem;
}
.firms-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.firms-left .section-label {
  color: var(--accent);
}
.firms-left .section-label::before {
  background: var(--accent);
}
.firms-left h2 {
  font-family: var(--serif);
  font-size: var(--text-h1);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.firms-left h2 em {
  font-style: italic;
  color: var(--accent);
}
.firms-left p {
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}
.firms-left p:last-of-type {
  margin-bottom: 2.8rem;
}
.firms-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: var(--ink);
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
}
.firms-cta:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
}

.firms-right {
  display: flex;
  flex-direction: column;
}
.firms-pillar {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.firms-pillar:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 2.4rem;
  padding-top: 0.15rem;
}
.pillar-text h4 {
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}
.pillar-text p {
  font-size: var(--text-body-sm);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

/* ─── COMPANIES SECTION ─── */
.companies-section {
  background: var(--surface-2);
  padding: 7rem 4rem;
}
.companies-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.companies-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: end;
}
.companies-top h2 {
  font-family: var(--serif);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.companies-top h2 em {
  font-style: italic;
  color: var(--accent-dk);
}
.companies-top p {
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-secondary);
}
.company-single-card {
  background: var(--white);
  padding: 3rem 3.5rem;
  border-top: 2px solid var(--accent);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.8rem;
  align-items: start;
}
.company-single-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 184, 162, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.company-single-body h4 {
  font-family: var(--serif);
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.company-single-body p {
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.company-single-body p:last-child {
  margin-bottom: 0;
}

/* ─── ARTICLES SECTION ─── */
.articles-section {
  background: var(--white);
  padding: 7rem 4rem;
  border-top: 1px solid var(--border-lt);
}
.articles-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.articles-header-left h2 {
  font-family: var(--serif);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.articles-header-left h2 em {
  font-style: italic;
  color: var(--accent-dk);
}
.articles-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dk);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 143, 126, 0.3);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.articles-view-all:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.articles-view-all .arrow {
  transition: transform 0.25s;
}
.articles-view-all:hover .arrow {
  transform: translateX(4px);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.article-card {
  background: var(--surface);
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.article-card:hover {
  transform: translateY(-3px);
}
.article-card-img {
  height: 200px;
  background: var(--surface-3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.article-card:hover .article-card-img img {
  transform: scale(1.04);
}
.article-card-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.article-card-img-placeholder svg {
  opacity: 0.2;
}
.article-card-img-placeholder span {
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}
.article-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: var(--text-nano);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  background: var(--accent);
  color: var(--ink);
}
.article-card-body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-meta {
  font-size: var(--text-ui-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.article-card h4 {
  font-family: var(--serif);
  font-size: var(--text-h5);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.article-card p {
  font-size: var(--text-body-sm);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
  flex: 1;
}
.article-read-more {
  font-size: var(--text-ui-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dk);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(0, 143, 126, 0.3);
  padding-bottom: 2px;
  align-self: flex-start;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.article-card:hover .article-read-more {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── PROCESS SECTION ─── */
.process-section {
  background: var(--ink);
  padding: 6rem 4rem;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.process-header .section-label {
  color: var(--accent);
  justify-content: center;
}
.process-header .section-label::before {
  background: var(--accent);
}
.process-header h2 {
  font-family: var(--serif);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 184, 162, 0.2) 20%, rgba(0, 184, 162, 0.2) 80%, transparent);
}
.process-step {
  padding: 0 1.5rem;
  text-align: center;
}
.step-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink-soft);
  border: 1px solid rgba(0, 184, 162, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: var(--text-body-lg);
  font-weight: 400;
  color: var(--accent);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.process-step:hover .step-dot {
  background: var(--accent-glow);
  border-color: var(--accent);
}
.process-step h4 {
  font-size: var(--text-ui-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.7rem;
}
.process-step p {
  font-size: var(--text-body-sm);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .intro-band .band-divider:nth-child(4) {
    display: none;
  }
  .band-nalsc-right {
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 1050px) {
  .intro-band {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .band-divider {
    display: none;
  }
  .band-quote {
    max-width: 100%;
  }
  .band-nalsc-right {
    max-width: 460px;
  }
}
@media (max-width: 960px) {
  .hero--services {
    padding: 5rem 2rem 5.5rem;
    min-height: 80vh;
  }
  .hero-scroll {
    display: none;
  }
  .intro-band {
    padding: 1.6rem 2rem;
    gap: 1.4rem;
  }
  .band-divider {
    display: none;
  }
  .band-nalsc-right {
    max-width: 100%;
    text-align: center;
  }
  .about-inner,
  .transparency-inner,
  .firms-inner,
  .companies-top,
  .articles-header {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .articles-header {
    align-items: flex-start;
    gap: 1.5rem;
  }
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-visual {
    min-height: 260px;
  }
  .service-copy {
    padding: 3rem 2rem;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-steps::before {
    display: none;
  }
  .about-section,
  .transparency-section,
  .firms-section,
  .companies-section,
  .articles-section,
  .process-section {
    padding: 5rem 2rem;
  }
  .candidates-heading {
    padding: 4rem 2rem 1.5rem;
  }
  .company-single-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
}
