/* ============================================================
 * home-workbench.css
 * Otomatik olarak home-platform.css dosyasından ayrıştırıldı.
 * Kaynak satırlar: L5657 – L6843
 * ============================================================ */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ACTIVITY BRANCHES â€” ab-* yeni sistem
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.platform-solutions {
  background: #fafbfc;
  border-top: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
}

.ab-head {
  max-width: 640px;
  margin: 0 auto clamp(44px, 6vw, 68px);
  text-align: center;
  display: grid;
  gap: 16px;
}

.ab-head__kicker {
  color: var(--color-brand);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ab-head__title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: #0a2540;
}

.ab-head__lead {
  max-width: 54ch;
  margin-inline: auto;
  color: #566478;
  font-size: .97rem;
  line-height: 1.7;
}

/* Workbench container */
.ab-workbench {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 0;
  border: 1px solid #e4ebf3;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(10, 37, 64, .06);
}

/* Tabs sidebar */
.ab-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  background: #f6f9fc;
  border-right: 1px solid #e4ebf3;
  min-width: 0;
}

.ab-tab {
  --ab-accent: #0e9faa;
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  align-items: center;
  gap: 11px;
  min-height: 72px;
  padding: 13px 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background-color var(--transition-ui),
    border-color var(--transition-ui),
    box-shadow var(--transition-ui);
}

.ab-tab:hover {
  background: rgba(255, 255, 255, .8);
  border-color: #e4ebf3;
}

.ab-tab.is-active {
  background: #fff;
  border-color: color-mix(in srgb, var(--ab-accent) 28%, #dce5ee);
  box-shadow: 0 2px 12px rgba(10, 37, 64, .07);
}

.ab-tab__num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #edf2f7;
  color: #6b7f92;
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .04em;
  transition: background-color var(--transition-ui), color var(--transition-ui);
  flex-shrink: 0;
}

.ab-tab.is-active .ab-tab__num {
  background: color-mix(in srgb, var(--ab-accent) 12%, #eef6fb);
  color: var(--ab-accent);
}

.ab-tab__label {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #4a6278;
  min-width: 0;
}

.ab-tab.is-active .ab-tab__label {
  color: #0a2540;
  font-weight: 700;
}

.ab-tab__chevron {
  color: #c8d5e0;
  transition: color var(--transition-ui), transform var(--transition-ui);
  display: flex;
  align-items: center;
}

.ab-tab__chevron svg {
  width: 14px;
  height: 14px;
}

.ab-tab.is-active .ab-tab__chevron {
  color: var(--ab-accent);
  transform: none;
}

/* Color variants */
.ab-tab--teal {
  --ab-accent: #0e9faa;
}

.ab-tab--orange {
  --ab-accent: #f28b3c;
}

.ab-tab--purple {
  --ab-accent: #635bff;
}

.ab-tab--rose {
  --ab-accent: #df4b88;
}

/* Panels */
.ab-panels {
  min-height: 480px;
  position: relative;
}

.ab-panel {
  --ab-panel-accent: #0e9faa;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  padding: 40px;
  height: 100%;
  align-items: start;
}

.ab-panel.is-active {
  display: grid;
  animation: ab-panel-in 360ms cubic-bezier(.2, .7, .2, 1) both;
}

@keyframes ab-panel-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ab-panel--teal {
  --ab-panel-accent: #0e9faa;
}

.ab-panel--orange {
  --ab-panel-accent: #f28b3c;
}

.ab-panel--purple {
  --ab-panel-accent: #635bff;
}

.ab-panel--rose {
  --ab-panel-accent: #df4b88;
}

/* Panel copy */
.ab-panel__copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.ab-panel__eyebrow {
  color: var(--ab-panel-accent);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ab-panel__title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #0a2540;
  max-width: 16ch;
}

.ab-panel__desc {
  font-size: .9rem;
  line-height: 1.7;
  color: #566478;
  max-width: 44ch;
}

.ab-panel__highlights {
  display: grid;
  gap: 8px;
}

.ab-highlight {
  padding: 14px 16px;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  background: #f8fafc;
  display: grid;
  gap: 8px;
}

.ab-highlight small {
  color: #8fa3b5;
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ab-highlight p {
  color: #3a5168;
  font-size: .83rem;
  line-height: 1.6;
}

.ab-highlight ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ab-highlight li {
  position: relative;
  padding-left: 14px;
  color: #3a5168;
  font-size: .81rem;
  line-height: 1.5;
}

.ab-highlight li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ab-panel-accent);
  opacity: .6;
}

.ab-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ab-panel-accent);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  padding-top: 4px;
  transition: gap var(--transition-ui);
}

.ab-panel__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-ui);
}

.ab-panel__cta:hover svg {
  transform: translateX(4px);
}

/* Panel visual â€” mock */
.ab-panel__visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ab-mock {
  --mock-accent: #0e9faa;
  width: 100%;
  max-width: 360px;
  border: 1px solid #e4ebf3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 48px rgba(10, 37, 64, .1), 0 2px 8px rgba(10, 37, 64, .04);
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
  transition: transform var(--transition-slow);
}

.ab-panel:hover .ab-mock {
  transform: perspective(1000px) rotateY(-1deg) rotateX(0deg);
}

.ab-mock--teal {
  --mock-accent: #0e9faa;
}

.ab-mock--orange {
  --mock-accent: #f28b3c;
}

.ab-mock--purple {
  --mock-accent: #635bff;
}

.ab-mock--rose {
  --mock-accent: #df4b88;
}

.ab-mock__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid #edf2f7;
  background: #fafbfc;
}

.ab-mock__dots {
  display: flex;
  gap: 4px;
}

.ab-mock__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
}

.ab-mock__dots i:nth-child(1) {
  background: #fca5a5;
}

.ab-mock__dots i:nth-child(2) {
  background: #fcd34d;
}

.ab-mock__dots i:nth-child(3) {
  background: #6ee7b7;
}

.ab-mock__name {
  text-align: center;
  color: #8898aa;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ab-mock__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #22c55e;
  font-size: .58rem;
  font-weight: 700;
  white-space: nowrap;
}

.ab-mock__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.ab-mock__steps {
  display: grid;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f7;
}

.ab-mock__step {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  transition: background-color .18s;
}

.ab-mock__step.is-active {
  background: color-mix(in srgb, var(--mock-accent) 6%, #f8fafc);
}

.ab-mock__step-num {
  color: #a0b0c0;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.ab-mock__step.is-active .ab-mock__step-num {
  color: var(--mock-accent);
}

.ab-mock__step-label {
  color: #3a5168;
  font-size: .76rem;
  font-weight: 600;
}

.ab-mock__step.is-active .ab-mock__step-label {
  color: #0a2540;
  font-weight: 700;
}

.ab-mock__step-bar {
  display: none;
}

.ab-mock__outputs {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.ab-mock__outputs small {
  color: #94a3b8;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 0 4px;
  border-bottom: 1px solid #f0f4f8;
}

.ab-mock__outputs ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ab-mock__outputs li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: #4a6278;
  font-size: .72rem;
  border-bottom: 1px solid #f5f7fa;
}

.ab-mock__outputs li:last-child {
  border-bottom: none;
}

.ab-mock__outputs li.is-done {
  color: #3a5168;
}

.ab-mock__check {
  color: #c8d5e0;
  font-size: .68rem;
  text-align: center;
}

.ab-mock__outputs li.is-done .ab-mock__check {
  color: var(--mock-accent);
}

/* â”€â”€ Responsive ab-workbench â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 1100px) {
  .ab-workbench {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .ab-panel {
    gap: 24px;
    padding: 32px;
  }
}

@media (max-width: 820px) {
  .ab-workbench {
    grid-template-columns: 1fr;
  }

  .ab-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #e4ebf3;
    padding: 10px;
    gap: 6px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .ab-tabs::-webkit-scrollbar {
    display: none;
  }

  .ab-tab {
    flex: 0 0 auto;
    min-width: 160px;
    min-height: 56px;
    grid-template-columns: 26px 1fr;
    scroll-snap-align: start;
  }

  .ab-tab__chevron {
    display: none;
  }

  .ab-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }

  .ab-mock {
    max-width: 100%;
    transform: none;
  }

  .ab-panel:hover .ab-mock {
    transform: none;
  }
}

@media (max-width: 640px) {
  .ab-tab {
    min-width: 140px;
    padding: 10px 10px;
  }

  .ab-tab__num {
    width: 26px;
    height: 26px;
  }

  .ab-panel {
    padding: 22px 18px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OPERATING MODEL â€” om-* dark section
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.om-head {
  max-width: 680px;
  margin: 0 auto clamp(44px, 6vw, 68px);
  text-align: center;
  display: grid;
  gap: 16px;
}

.om-head__kicker {
  color: #73dce2;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.om-head__title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: #fff;
}

.om-head__lead {
  max-width: 54ch;
  margin-inline: auto;
  color: #94afc4;
  font-size: .97rem;
  line-height: 1.7;
}

.om-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 40px;
}

.om-metric {
  padding: 32px 28px;
  border: 1px solid #e3ebf3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 37, 64, .05);
  display: grid;
  gap: 9px;
  transition: background-color var(--transition-ui), border-color var(--transition-ui), box-shadow var(--transition-ui);
}

.om-metric:hover {
  background: #fff;
  border-color: rgba(14, 159, 170, .22);
  box-shadow: 0 18px 42px rgba(10, 37, 64, .08);
}

.om-overview {
  display: grid;
  gap: 18px;
}

.om-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #e3ebf3;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.om-metric {
  padding: 26px 24px 24px;
  background: #fff;
  display: grid;
  gap: 10px;
  min-height: 0;
}

.om-metric+.om-metric {
  border-left: 1px solid #e9eff5;
}

.om-metric__eyebrow {
  display: block;
  font-size: .69rem;
  font-weight: 780;
  letter-spacing: .14em;
  color: #73dce2;
  text-transform: uppercase;
}

.om-metric strong {
  display: block;
  font-size: clamp(1.6rem, 2.3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.02;
  color: #0a2540;
}

.om-metric p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.62;
  color: #607286;
}

.om-process-panel {
  border: 1px solid #e3ebf3;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.om-process-intro {
  display: grid;
  gap: 8px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #e9eff5;
}

.om-process-intro__kicker {
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #73dce2;
}

.om-process-intro__lead {
  margin: 0;
  max-width: 68ch;
  font-size: .92rem;
  line-height: 1.5;
  color: #5f7286;
}

.om-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.om-step {
  position: relative;
  padding: 26px 24px 24px;
  background: #fff;
  display: grid;
  gap: 12px;
  min-height: 100%;
  transition: background-color var(--transition-ui), border-color var(--transition-ui);
}

.om-step+.om-step {
  border-left: 1px solid #e9eff5;
}

.om-step:hover {
  background: #fcfeff;
}

.om-step__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(115, 220, 226, .22);
  border-radius: 11px;
  color: #73dce2;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .04em;
}

.om-step h3 {
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.018em;
  color: #17344f;
  line-height: 1.3;
}

.om-step p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.65;
  color: #607286;
}

@media (max-width: 1100px) {
  .om-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .om-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .om-metric:nth-child(3),
  .om-metric:nth-child(4),
  .om-step:nth-child(3),
  .om-step:nth-child(4) {
    border-top: 1px solid #e9eff5;
  }

  .om-metric:nth-child(3),
  .om-step:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .om-overview {
    gap: 14px;
  }

  .om-metrics {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .om-metric {
    padding: 20px 18px;
  }

  .om-metric+.om-metric {
    border-left: 0;
    border-top: 1px solid #e9eff5;
  }

  .om-process-panel {
    border-radius: 18px;
  }

  .om-process-intro {
    padding: 18px 18px 16px;
  }

  .om-process {
    grid-template-columns: 1fr;
  }

  .om-step {
    padding: 22px 18px;
  }

  .om-step+.om-step {
    border-left: 0;
    border-top: 1px solid #e9eff5;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   GLOBAL COMPACT — az boşluk, sıfır açıklama, küçük başlıklar
════════════════════════════════════════════════════════════════════ */

/* Section padding sıkıştır */
.page-home .content-section {
  padding-block: clamp(44px, 5.5vw, 72px);
}

/* Tüm section başlıkları — açıklama kaldır, boyut küçült */
.page-home .content-section .section-heading {
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.page-home .content-section .section-heading__summary,
.ab-head__lead,
.uc-head__lead,
.om-head__lead,
.pillars-header__lead {
  display: none;
}

.page-home .content-section .section-heading h2,
.ab-head__title,
.uc-head__title,
.om-head__title {
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.22;
}

.page-home .content-section .section-heading__kicker,
.ab-head__kicker,
.uc-head__kicker,
.om-head__kicker {
  font-size: .65rem;
  letter-spacing: .14em;
}

/* Section head spacing compact */
.ab-head,
.uc-head,
.om-head {
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.hero-stage__actions {
  gap: 10px;
}

.hero-stage__actions .platform-btn {
  min-height: 44px;
  padding-inline: 20px;
  font-size: .86rem;
}

/* References marquee compact */
.ref-marquee {
  padding: 18px 0 22px;
}

.ref-marquee__head {
  margin-bottom: 14px;
}

/* Infrastructure compact */
.infrastructure-section.content-section {
  padding-block: clamp(40px, 5vw, 64px);
}

/* Platform solutions compact */
.platform-solutions.content-section {
  padding-block: clamp(44px, 5.5vw, 72px);
}

/* Use case compact */
.platform-use-cases.content-section {
  padding-block: clamp(40px, 5vw, 64px);
}

.page-home .content-section .section-head {
  width: 100%;
  max-width: none;
  text-align: center;
  margin: 0 0 clamp(22px, 3vw, 34px);
}

.page-home .content-section .section-head--split {
  display: grid;
  grid-template-columns: 1fr minmax(0, 760px) 1fr;
  align-items: center;
  gap: 14px;
}

.page-home .content-section .section-head__main {
  max-width: 760px;
}

.page-home .content-section .section-head--split .section-head__main {
  grid-column: 2;
}

.page-home .content-section .section-head__actions {
  justify-self: center;
}

.page-home .content-section .section-head--split .section-head__actions {
  grid-column: 3;
  justify-self: end;
  align-self: center;
}

.page-home .content-section .section-head__actions:empty {
  display: none;
}

.page-home .content-section .section-head__actions>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d6e1ea;
  border-radius: 10px;
  background: #fff;
  color: #0a2540;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, background-color .18s ease;
}

.page-home .content-section .section-head__actions>a:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 159, 170, .34);
  box-shadow: 0 12px 24px rgba(10, 37, 64, .06);
  color: #087f8a;
  background: #fff;
}

.page-home .content-section .section-head__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
  color: #0e9faa;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  font-weight: 680;
  line-height: 1.24;
  letter-spacing: -.01em;
  text-wrap: balance;
}

.page-home .content-section .section-head__title::after,
.page-home .content-section .section-head__title::before {
  content: '';
  width: 72px;
  height: 1px;
  flex: 0 0 72px;
  border-radius: 999px;
}

.page-home .content-section .section-head__title::before {
  background: linear-gradient(90deg, transparent 0%, rgba(14, 159, 170, .18) 18%, rgba(14, 159, 170, .95) 100%);
}

.page-home .content-section .section-head__title::after {
  background: linear-gradient(90deg, rgba(14, 159, 170, .95) 0%, rgba(14, 159, 170, .18) 82%, transparent 100%);
}

.page-home .content-section .section-head__lead {
  max-width: 64ch;
  margin-inline: auto;
  color: #74879b;
  font-size: clamp(.8rem, .88vw, .9rem);
  line-height: 1.42;
}

@media (max-width: 767px) {
  .page-home .content-section .section-head--split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-home .content-section .section-head__main {
    max-width: none;
  }

  .page-home .content-section .section-head--split .section-head__main,
  .page-home .content-section .section-head--split .section-head__actions {
    grid-column: auto;
  }

  .page-home .content-section .section-head__actions {
    justify-self: center;
  }

  .page-home .content-section .section-head__title::before,
  .page-home .content-section .section-head__title::after {
    width: 44px;
    flex-basis: 44px;
  }
}

/* Anasayfa modülleri arasında ince premium gradyan çizgi */
.page-home .site-main>section+section {
  position: relative;
}

.page-home .site-main>section+section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--home-module-divider-width);
  height: 1px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(14, 159, 170, 0.18) 12%,
      rgba(99, 91, 255, 0.22) 34%,
      rgba(245, 155, 69, 0.22) 66%,
      rgba(14, 159, 170, 0.18) 88%,
      transparent 100%);
  pointer-events: none;
}

/* Hero compact */
.hero-stage__content {
  padding: clamp(28px, 4vh, 44px) 0 clamp(16px, 2.5vh, 24px);
}

.hero-stage__footer {
  padding-bottom: clamp(14px, 2vh, 20px);
}

/* Activity branches compact */
.ab-workbench {
  min-height: 0;
}

.ab-panel {
  padding: 28px 32px;
}

.ab-panel__title {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem) !important;
}

.ab-panel__desc {
  font-size: .86rem;
}

/* OM compact */
.om-metric p {
  display: none;
}

/* metric açıklama kaldır */
.om-metric strong {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.om-step p {
  font-size: .8rem;
}

/* Process card compact */
.om-step {
  padding: 20px 18px;
}

/* Final CTA compact */
.final-cta-section.content-section {
  padding-block: clamp(44px, 5.5vw, 72px);
}

/* Use case card compact */
.uc-card__inner {
  padding: 24px 24px 16px;
}

.uc-card__footer {
  padding: 12px 24px 18px;
}

.uc-card__title {
  font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
}

/* AB tabs compact */
.ab-tab {
  min-height: 60px;
  padding: 11px 12px;
}

.ab-mock {
  transform: perspective(1000px) rotateY(-2deg);
}

@media (max-width: 640px) {
  .page-home .content-section {
    padding-block: clamp(36px, 6vw, 52px);
  }
}

