/* =====================================================
   SIMUL BLOG DETAY SAYFALARI
   6 blog detay sayfasının ortak CSS dosyası
===================================================== */

:root {
  --simul-navy: #2e2e89;
  --simul-dark-navy: #1c1c66;
  --simul-gold: #b08d57;
  --simul-light-gold: #d8c39f;
  --simul-text: #363642;
  --simul-muted: #70717d;
  --simul-background: #f6f7fb;
  --simul-white: #ffffff;
  --simul-border: rgba(46, 46, 137, 0.11);
}

/* =====================================================
   BLOG DETAIL HERO
===================================================== */

.simul-article-hero {
  position: relative;
  padding: 205px 0 145px;
  background:
    linear-gradient(
      110deg,
      rgba(23, 23, 78, 0.94) 0%,
      rgba(46, 46, 137, 0.82) 52%,
      rgba(27, 27, 74, 0.68) 100%
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=85")
      center/cover no-repeat;
  overflow: hidden;
}

.simul-article-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.simul-article-hero::after {
  content: "";
  position: absolute;
  right: 105px;
  bottom: -180px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 50%;
}

.simul-article-hero .container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */

.simul-article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 28px;
}

.simul-article-breadcrumb a,
.simul-article-breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.simul-article-breadcrumb a {
  transition: color 0.3s ease;
}

.simul-article-breadcrumb a:hover {
  color: var(--simul-light-gold);
}

.simul-article-breadcrumb span:last-child {
  color: var(--simul-white);
}

/* Category */

.simul-article-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--simul-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  backdrop-filter: blur(8px);
}

.simul-article-category::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--simul-light-gold);
}

/* Hero title */

.simul-article-hero h1 {
  max-width: 900px;
  margin: 0 0 24px;
  color: var(--simul-white);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -1.7px;
}

.simul-article-lead {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.85;
}

/* =====================================================
   ARTICLE CONTENT
===================================================== */

.simul-article-content {
  position: relative;
  padding: 0 0 120px;
  background:
    radial-gradient(
      circle at 7% 20%,
      rgba(176, 141, 87, 0.07),
      transparent 25%
    ),
    radial-gradient(
      circle at 93% 80%,
      rgba(46, 46, 137, 0.055),
      transparent 28%
    ),
    var(--simul-background);
}

.simul-article-container {
  position: relative;
  z-index: 5;
  max-width: 970px;
  margin: -65px auto 0;
  padding: 70px 75px;
  border: 1px solid var(--simul-border);
  border-radius: 26px;
  background: var(--simul-white);
  box-shadow: 0 25px 70px rgba(29, 29, 101, 0.1);
}

/* =====================================================
   ARTICLE INTRO
===================================================== */

.simul-article-intro {
  position: relative;
  margin-bottom: 55px;
  padding: 33px 36px 33px 40px;
  border-left: 4px solid var(--simul-gold);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(
    100deg,
    rgba(176, 141, 87, 0.11),
    rgba(46, 46, 137, 0.035)
  );
}

.simul-article-intro::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 23px;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(176, 141, 87, 0.2);
  border-radius: 50%;
}

.simul-article-intro p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
}

/* =====================================================
   ARTICLE SECTIONS
===================================================== */

.simul-article-section {
  margin-top: 55px;
}

.simul-article-section h2 {
  position: relative;
  margin: 0 0 23px;
  padding-bottom: 16px;
  color: var(--simul-dark-navy);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.simul-article-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  border-radius: 20px;
  background: var(--simul-gold);
}

.simul-article-section > p {
  margin: 0 0 18px;
  color: var(--simul-muted);
  font-size: 16px;
  line-height: 1.95;
}

.simul-article-section > p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   STRATEGY LIST
===================================================== */

.simul-strategy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.simul-strategy-item {
  position: relative;
  min-height: 275px;
  padding: 31px 28px;
  border: 1px solid var(--simul-border);
  border-radius: 19px;
  background: var(--simul-white);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.simul-strategy-item::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(46, 46, 137, 0.035);
  transition:
    transform 0.4s ease,
    background-color 0.4s ease;
}

.simul-strategy-item:hover {
  transform: translateY(-7px);
  border-color: rgba(176, 141, 87, 0.45);
  box-shadow: 0 19px 45px rgba(29, 29, 101, 0.1);
}

.simul-strategy-item:hover::after {
  transform: scale(1.25);
  background: rgba(176, 141, 87, 0.08);
}

.simul-strategy-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  margin-bottom: 21px;
  border-radius: 14px;
  background: rgba(46, 46, 137, 0.08);
  color: var(--simul-navy);
  font-size: 14px;
  font-weight: 800;
  transition:
    color 0.35s ease,
    background-color 0.35s ease;
}

.simul-strategy-item:hover .simul-strategy-number {
  background: var(--simul-navy);
  color: var(--simul-white);
}

.simul-strategy-item h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 13px;
  color: var(--simul-text);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
}

.simul-strategy-item p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* =====================================================
   ARTICLE QUOTE
===================================================== */

.simul-article-quote {
  position: relative;
  margin: 60px 0;
  padding: 47px 49px;
  border-radius: 22px;
  background: linear-gradient(
    125deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
  overflow: hidden;
}

.simul-article-quote::before {
  content: "“";
  position: absolute;
  top: -36px;
  right: 25px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 185px;
  line-height: 1;
}

.simul-article-quote::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 49px;
  width: 60px;
  height: 3px;
  background: var(--simul-gold);
}

.simul-article-quote p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-white);
  font-family: Georgia, serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.6;
}

/* =====================================================
   SIMUL APPROACH BOX
===================================================== */

.simul-approach-box {
  position: relative;
  margin-top: 60px;
  padding: 49px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(176, 141, 87, 0.11),
    rgba(255, 255, 255, 0.98) 50%,
    rgba(46, 46, 137, 0.045)
  );
  overflow: hidden;
}

.simul-approach-box::after {
  content: "";
  position: absolute;
  top: -75px;
  right: -75px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(46, 46, 137, 0.08);
  border-radius: 50%;
}

.simul-approach-box > span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 16px;
  color: var(--simul-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

.simul-approach-box h2 {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 0 21px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
}

.simul-approach-box p {
  position: relative;
  z-index: 2;
  margin: 0 0 15px;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.9;
}

.simul-approach-box p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   BACK BUTTON
===================================================== */

.simul-back-area {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.simul-back-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border: 1px solid var(--simul-navy);
  border-radius: 50px;
  background: transparent;
  color: var(--simul-navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.simul-back-button:hover {
  transform: translateY(-3px);
  background: var(--simul-navy);
  color: var(--simul-white);
  box-shadow: 0 13px 30px rgba(46, 46, 137, 0.2);
}

.simul-back-button i {
  transition: transform 0.35s ease;
}

.simul-back-button:hover i {
  transform: translateX(-4px);
}

/* =====================================================
   TABLET
===================================================== */

@media only screen and (max-width: 991px) {
  .simul-article-hero {
    padding: 175px 0 125px;
  }

  .simul-article-container {
    padding: 58px 46px;
  }

  .simul-strategy-item {
    min-height: 295px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media only screen and (max-width: 767px) {
  .simul-article-hero {
    padding: 145px 0 105px;
  }

  .simul-article-hero h1 {
    font-size: 39px;
    letter-spacing: -1px;
  }

  .simul-article-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .simul-article-content {
    padding-bottom: 80px;
  }

  .simul-article-container {
    margin-top: -35px;
    padding: 43px 25px;
    border-radius: 19px;
  }

  .simul-article-intro {
    padding: 26px 23px;
  }

  .simul-article-intro p {
    font-size: 16px;
  }

  .simul-article-section {
    margin-top: 45px;
  }

  .simul-article-section h2 {
    font-size: 25px;
  }

  .simul-strategy-list {
    grid-template-columns: 1fr;
  }

  .simul-strategy-item {
    min-height: auto;
  }

  .simul-article-quote {
    margin: 48px 0;
    padding: 37px 28px;
  }

  .simul-article-quote::after {
    left: 28px;
  }

  .simul-article-quote p {
    font-size: 21px;
  }

  .simul-approach-box {
    padding: 36px 27px;
  }

  .simul-approach-box h2 {
    font-size: 25px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media only screen and (max-width: 480px) {
  .simul-article-hero h1 {
    font-size: 35px;
  }

  .simul-article-breadcrumb {
    gap: 8px;
  }

  .simul-article-breadcrumb a,
  .simul-article-breadcrumb span {
    font-size: 11px;
  }
}

/* =====================================================
   MARKA YÖNETİMİ DETAY SAYFASI
===================================================== */

/* Marka sayfasına özel hero görseli */

.simul-article-hero.simul-brand-hero {
  background:
    linear-gradient(
      110deg,
      rgba(23, 23, 78, 0.94) 0%,
      rgba(46, 46, 137, 0.83) 52%,
      rgba(27, 27, 74, 0.68) 100%
    ),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=85")
      center/cover no-repeat;
}

/* Marka açıklama alanı */

.simul-brand-summary {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  gap: 28px;
}

.simul-brand-summary-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.simul-brand-summary-content h2 {
  margin-top: 0;
}

/* Güçlü markanın özellikleri */

.simul-brand-feature-box {
  height: 100%;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
  box-shadow: 0 18px 40px rgba(29, 29, 102, 0.18);
}

.simul-brand-feature-label {
  display: block;
  margin-bottom: 23px;
  color: var(--simul-light-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.simul-brand-feature {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.simul-brand-feature:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.simul-brand-feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--simul-white);
  font-size: 15px;
  font-weight: 600;
}

.simul-brand-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  line-height: 1.7;
}

/* Üç temel alan */

.simul-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 31px;
}

.simul-brand-card {
  position: relative;
  min-height: 285px;
  padding: 31px 27px;
  border: 1px solid var(--simul-border);
  border-radius: 19px;
  background: var(--simul-white);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.simul-brand-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(46, 46, 137, 0.04);
  transition: transform 0.4s ease;
}

.simul-brand-card:hover {
  transform: translateY(-7px);
  border-color: rgba(176, 141, 87, 0.45);
  box-shadow: 0 18px 42px rgba(29, 29, 102, 0.1);
}

.simul-brand-card:hover::after {
  transform: scale(1.3);
}

.simul-brand-card h3 {
  position: relative;
  z-index: 2;
  margin: 20px 0 13px;
  color: var(--simul-text);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.simul-brand-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Konumlandırma alanı */

.simul-positioning-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 25px;
}

.simul-positioning-content {
  padding: 38px;
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(176, 141, 87, 0.11),
    rgba(46, 46, 137, 0.04)
  );
}

.simul-positioning-label {
  display: block;
  margin-bottom: 14px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.simul-positioning-content h2 {
  margin-bottom: 20px;
  font-size: 29px;
}

.simul-positioning-content p {
  margin-bottom: 16px;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.85;
}

.simul-positioning-content p:last-child {
  margin-bottom: 0;
}

/* Konumlandırma tablosu */

.simul-positioning-table {
  border: 1px solid var(--simul-border);
  border-radius: 20px;
  background: var(--simul-white);
  overflow: hidden;
}

.simul-positioning-table-title {
  padding: 21px 24px;
  background: var(--simul-navy);
  color: var(--simul-white);
  font-size: 14px;
  font-weight: 600;
}

.simul-positioning-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid var(--simul-border);
}

.simul-positioning-row:last-child {
  border-bottom: 0;
}

.simul-positioning-row strong,
.simul-positioning-row span {
  padding: 19px;
  font-size: 13px;
  line-height: 1.6;
}

.simul-positioning-row strong {
  display: flex;
  align-items: center;
  color: var(--simul-dark-navy);
  font-weight: 700;
}

.simul-positioning-row span {
  border-left: 1px solid var(--simul-border);
  color: var(--simul-muted);
}

/* İletişim tutarlılığı */

.simul-consistency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border: 1px solid var(--simul-border);
  border-radius: 20px;
  overflow: hidden;
}

.simul-consistency-card {
  min-height: 250px;
  padding: 32px 28px;
  border-right: 1px solid var(--simul-border);
  background: var(--simul-white);
}

.simul-consistency-card:last-child {
  border-right: 0;
}

.simul-consistency-card:first-child {
  background: linear-gradient(
    145deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
}

.simul-consistency-card:last-child {
  background: linear-gradient(
    145deg,
    rgba(176, 141, 87, 0.12),
    rgba(255, 255, 255, 0.9)
  );
}

.simul-consistency-card span {
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.simul-consistency-card h3 {
  margin: 16px 0 13px;
  color: var(--simul-dark-navy);
  font-size: 20px;
  font-weight: 600;
}

.simul-consistency-card p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.8;
}

.simul-consistency-card:first-child span {
  color: var(--simul-light-gold);
}

.simul-consistency-card:first-child h3 {
  color: var(--simul-white);
}

.simul-consistency-card:first-child p {
  color: rgba(255, 255, 255, 0.74);
}

/* Dijital marka alanı */

.simul-digital-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 30px;
}

.simul-digital-list {
  display: grid;
  gap: 14px;
}

.simul-digital-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 22px;
  border: 1px solid var(--simul-border);
  border-radius: 16px;
  background: var(--simul-white);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.simul-digital-item:hover {
  transform: translateX(5px);
  border-color: rgba(176, 141, 87, 0.42);
  box-shadow: 0 12px 28px rgba(29, 29, 102, 0.08);
}

.simul-digital-item .simul-strategy-number {
  margin: 0;
}

.simul-digital-item h3 {
  margin: 1px 0 7px;
  color: var(--simul-text);
  font-size: 17px;
  font-weight: 600;
}

.simul-digital-item p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Responsive */

@media only screen and (max-width: 991px) {
  .simul-brand-summary,
  .simul-positioning-layout,
  .simul-digital-layout {
    grid-template-columns: 1fr;
  }

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

  .simul-consistency-grid {
    grid-template-columns: 1fr;
  }

  .simul-consistency-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--simul-border);
  }

  .simul-consistency-card:last-child {
    border-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .simul-brand-grid {
    grid-template-columns: 1fr;
  }

  .simul-brand-card {
    min-height: auto;
  }

  .simul-brand-feature-box,
  .simul-positioning-content {
    padding: 29px 25px;
  }

  .simul-positioning-row {
    grid-template-columns: 1fr;
  }

  .simul-positioning-row span {
    padding-top: 0;
    border-left: 0;
  }

  .simul-consistency-card {
    padding: 28px 25px;
  }

  .simul-digital-item {
    grid-template-columns: 42px 1fr;
    padding: 19px;
  }
}

/* =====================================================
   MARKA SAYFASI HAREKETLİ TASARIM
===================================================== */

/* HERO ARKA PLAN HAREKETİ */

.simul-article-hero.simul-brand-hero {
  background-size: 110%;
  animation: simulHeroBackground 13s ease-in-out infinite alternate;
}

@keyframes simulHeroBackground {
  0% {
    background-size: 110%;
    background-position: center center;
  }

  100% {
    background-size: 122%;
    background-position: 58% center;
  }
}

/* Hero dekoratif daireler */

.simul-brand-hero::before {
  animation: simulCircleOne 8s ease-in-out infinite alternate;
}

.simul-brand-hero::after {
  animation: simulCircleTwo 10s ease-in-out infinite alternate;
}

@keyframes simulCircleOne {
  from {
    transform: translate(0, 0) rotate(0);
  }

  to {
    transform: translate(-35px, -30px) rotate(18deg);
  }
}

@keyframes simulCircleTwo {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(25px, -20px) scale(1.12);
  }
}

/* HERO İÇERİK GİRİŞ ANİMASYONLARI */

.simul-brand-hero .simul-article-breadcrumb {
  animation: simulFadeDown 0.7s ease both;
}

.simul-brand-hero .simul-article-category {
  animation:
    simulFadeUp 0.75s 0.15s ease both,
    simulCategoryFloat 3s 1s ease-in-out infinite;
}

.simul-brand-hero h1 {
  animation: simulFadeUp 0.85s 0.28s ease both;
}

.simul-brand-hero .simul-article-lead {
  animation: simulFadeUp 0.85s 0.42s ease both;
}

@keyframes simulFadeDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

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

@keyframes simulFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes simulCategoryFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ANA MAKALE KARTI GİRİŞİ */

.simul-article-container {
  animation: simulArticleEnter 0.9s 0.25s ease both;
}

@keyframes simulArticleEnter {
  from {
    opacity: 0;
    transform: translateY(45px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* GİRİŞ KUTUSU */

.simul-article-intro {
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.simul-article-intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  animation: simulIntroShine 5s ease-in-out infinite;
}

.simul-article-intro:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(46, 46, 137, 0.1);
}

@keyframes simulIntroShine {
  0%,
  45% {
    left: -130%;
  }

  75%,
  100% {
    left: 150%;
  }
}

/* BAŞLIKLARIN ALTIN ÇİZGİSİ */

.simul-article-section h2::after {
  transition: width 0.45s ease;
}

.simul-article-section:hover h2::after {
  width: 90px;
}

/* GÜÇLÜ MARKA KUTUSU */

.simul-brand-feature-box {
  position: relative;
  background-size: 200% 200%;
  overflow: hidden;
  animation: simulGradientMove 7s ease infinite;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.simul-brand-feature-box::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: simulFeatureCircle 6s ease-in-out infinite alternate;
}

.simul-brand-feature-box:hover {
  transform: translateY(-7px) rotate(0.3deg);
  box-shadow: 0 25px 55px rgba(29, 29, 102, 0.25);
}

.simul-brand-feature {
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s ease,
    padding-left 0.3s ease;
}

.simul-brand-feature:hover {
  padding-left: 9px;
  transform: translateX(3px);
}

.simul-brand-feature strong {
  transition: color 0.3s ease;
}

.simul-brand-feature:hover strong {
  color: var(--simul-light-gold);
}

@keyframes simulGradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes simulFeatureCircle {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-25px, 30px) scale(1.18);
  }
}

/* ÜÇ MARKA KARTI */

.simul-brand-card {
  opacity: 0;
  animation: simulCardEnter 0.75s ease forwards;
}

.simul-brand-card:nth-child(1) {
  animation-delay: 0.15s;
}

.simul-brand-card:nth-child(2) {
  animation-delay: 0.3s;
}

.simul-brand-card:nth-child(3) {
  animation-delay: 0.45s;
}

.simul-brand-card:hover {
  transform: translateY(-12px) rotate(-0.6deg);
  box-shadow: 0 25px 52px rgba(29, 29, 102, 0.14);
}

.simul-brand-card:nth-child(2):hover {
  transform: translateY(-12px) rotate(0.6deg);
}

.simul-brand-card .simul-strategy-number {
  transition:
    transform 0.4s ease,
    color 0.4s ease,
    background-color 0.4s ease;
}

.simul-brand-card:hover .simul-strategy-number {
  transform: rotate(-8deg) scale(1.1);
  background: var(--simul-navy);
  color: var(--simul-white);
}

@keyframes simulCardEnter {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MARKA KONUMLANDIRMA KUTUSU */

.simul-positioning-content {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.simul-positioning-content::before {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -85px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.09);
  transition: transform 0.5s ease;
}

.simul-positioning-content:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(46, 46, 137, 0.1);
}

.simul-positioning-content:hover::before {
  transform: scale(1.35) translate(-10px, -10px);
}

/* KONUMLANDIRMA TABLOSU */

.simul-positioning-table {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.simul-positioning-table:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(46, 46, 137, 0.1);
}

.simul-positioning-table-title {
  position: relative;
  overflow: hidden;
}

.simul-positioning-table-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-20deg);
  animation: simulTableShine 4.5s infinite;
}

@keyframes simulTableShine {
  0%,
  45% {
    left: -90%;
  }

  80%,
  100% {
    left: 140%;
  }
}

.simul-positioning-row {
  position: relative;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.simul-positioning-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--simul-gold);
  transition: height 0.3s ease;
}

.simul-positioning-row:hover {
  transform: translateX(5px);
  background: rgba(46, 46, 137, 0.04);
}

.simul-positioning-row:hover::before {
  height: 100%;
}

/* ÜÇ İLETİŞİM KARTI */

.simul-consistency-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.simul-consistency-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.08);
  transition: transform 0.5s ease;
}

.simul-consistency-card:hover {
  z-index: 3;
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(29, 29, 102, 0.14);
}

.simul-consistency-card:hover::after {
  transform: scale(1.45);
}

/* ALINTI HAREKETİ */

.simul-article-quote {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.simul-article-quote:hover {
  transform: scale(1.018);
  box-shadow: 0 25px 55px rgba(29, 29, 102, 0.23);
}

.simul-article-quote::before {
  animation: simulQuoteFloat 4s ease-in-out infinite;
}

@keyframes simulQuoteFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}

/* DİJİTAL MARKA KARTLARI */

.simul-digital-item {
  position: relative;
  overflow: hidden;
}

.simul-digital-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(176, 141, 87, 0.09),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.simul-digital-item:hover {
  transform: translateX(10px);
  border-color: var(--simul-gold);
  box-shadow: 0 15px 35px rgba(29, 29, 102, 0.1);
}

.simul-digital-item:hover::after {
  left: 150%;
}

.simul-digital-item:hover .simul-strategy-number {
  transform: rotate(7deg) scale(1.08);
  background: var(--simul-navy);
  color: var(--simul-white);
}

/* SIMUL YAKLAŞIM KUTUSU */

.simul-approach-box {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.simul-approach-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(46, 46, 137, 0.12);
}

.simul-approach-box::after {
  animation: simulApproachCircle 6s ease-in-out infinite alternate;
}

@keyframes simulApproachCircle {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-35px, 35px) scale(1.15);
  }
}

/* BLOGA DÖN BUTONU */

.simul-back-button {
  position: relative;
  overflow: hidden;
}

.simul-back-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--simul-navy);
  transform: translateX(-105%);
  transition: transform 0.4s ease;
}

.simul-back-button i,
.simul-back-button span {
  position: relative;
  z-index: 2;
}

.simul-back-button:hover::before {
  transform: translateX(0);
}

/* SCROLL İLE BÖLÜM GİRİŞLERİ */

@supports (animation-timeline: view()) {
  .simul-article-section,
  .simul-article-quote,
  .simul-approach-box {
    animation: simulScrollReveal linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
  }

  @keyframes simulScrollReveal {
    from {
      opacity: 0;
      transform: translateY(55px) scale(0.97);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

/* MOBİLDE ANİMASYONLARI HAFİFLET */

@media only screen and (max-width: 767px) {
  .simul-article-hero.simul-brand-hero {
    background-size: cover;
    animation: none;
  }

  .simul-brand-card:hover,
  .simul-consistency-card:hover,
  .simul-positioning-content:hover,
  .simul-positioning-table:hover {
    transform: translateY(-5px);
  }

  .simul-digital-item:hover {
    transform: translateY(-4px);
  }
}

/* HAREKET AZALTMA TERCİHİ */

@media (prefers-reduced-motion: reduce) {
  .simul-brand-hero,
  .simul-brand-hero::before,
  .simul-brand-hero::after,
  .simul-brand-hero *,
  .simul-article-container,
  .simul-article-intro::after,
  .simul-brand-feature-box,
  .simul-brand-feature-box::before,
  .simul-brand-card,
  .simul-positioning-table-title::after,
  .simul-article-quote::before,
  .simul-approach-box::after {
    animation: none !important;
  }
}

/* =====================================================
   MARKA SAYFASI GÜÇLÜ KAPANIŞ ALANI
===================================================== */

.simul-brand-closing {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 35px;
  margin-top: 65px;
  padding: 58px 55px;
  border: 1px solid rgba(216, 195, 159, 0.5);
  border-top: 5px solid #b08d57;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(176, 141, 87, 0.25),
      transparent 27%
    ),
    linear-gradient(135deg, #18185c 0%, #2e2e89 55%, #242477 100%);
  box-shadow: 0 28px 70px rgba(29, 29, 102, 0.3);
  overflow: hidden;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.simul-brand-closing::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -130px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  animation: simulClosingCircle 8s ease-in-out infinite alternate;
}

.simul-brand-closing::after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: 35%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(176, 141, 87, 0.18);
  border-radius: 50%;
}

.simul-brand-closing:hover {
  transform: translateY(-9px);
  box-shadow: 0 38px 80px rgba(29, 29, 102, 0.38);
}

/* İçerik */

.simul-brand-closing-content {
  position: relative;
  z-index: 3;
}

/* Üst etiket */

.simul-brand-closing-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  padding: 9px 16px;
  border: 1px solid rgba(216, 195, 159, 0.5);
  border-radius: 50px;
  background: rgba(176, 141, 87, 0.14);
  color: #e4c99e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.simul-brand-closing-label i {
  color: #d8c39f;
  font-size: 10px;
  animation: simulClosingStar 2.5s ease-in-out infinite;
}

/* Başlık */

.simul-brand-closing h2 {
  max-width: 650px;
  margin: 0 0 24px;
  padding: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.6px;
}

.simul-brand-closing h2::after {
  display: none;
}

/* Paragraflar */

.simul-brand-closing p {
  max-width: 720px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.simul-brand-closing p:last-child {
  margin-bottom: 0;
}

/* SIMUL dekorasyonu */

.simul-brand-closing-decoration {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(216, 195, 159, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 35px rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(15, 15, 65, 0.25);
  backdrop-filter: blur(5px);
  animation: simulClosingFloat 4s ease-in-out infinite;
}

.simul-brand-closing-decoration::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(216, 195, 159, 0.35);
  border-radius: 50%;
  animation: simulClosingRotate 15s linear infinite;
}

.simul-brand-closing-decoration span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 4px;
}

/* Animasyonlar */

@keyframes simulClosingCircle {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-35px, 40px) scale(1.12);
  }
}

@keyframes simulClosingStar {
  0%,
  100% {
    transform: scale(1) rotate(0);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3) rotate(20deg);
    opacity: 1;
  }
}

@keyframes simulClosingFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes simulClosingRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Tablet ve mobil */

@media only screen and (max-width: 991px) {
  .simul-brand-closing {
    grid-template-columns: 1fr;
  }

  .simul-brand-closing-decoration {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .simul-brand-closing {
    margin-top: 50px;
    padding: 40px 27px;
    border-radius: 20px;
  }

  .simul-brand-closing h2 {
    font-size: 27px;
  }

  .simul-brand-closing p {
    font-size: 14px;
    line-height: 1.8;
  }

  .simul-brand-closing-label {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
}

/* =====================================================
   3. BLOG — ORGANİZASYONEL DÖNÜŞÜM
===================================================== */

/* HERO */

.simul-article-hero.simul-transformation-hero {
  background:
    linear-gradient(
      110deg,
      rgba(22, 22, 76, 0.95),
      rgba(46, 46, 137, 0.83),
      rgba(27, 27, 75, 0.65)
    ),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=85")
      center/cover no-repeat;
  background-size: 110%;
  animation: transformationHeroMove 14s ease-in-out infinite alternate;
}

@keyframes transformationHeroMove {
  from {
    background-size: 110%;
    background-position: center;
  }

  to {
    background-size: 122%;
    background-position: 58% center;
  }
}

/* =====================================================
   INTRODUCTION
===================================================== */

.transformation-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  gap: 28px;
}

.transformation-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border: 1px solid var(--simul-border);
  border-radius: 21px;
  background: linear-gradient(
    135deg,
    rgba(176, 141, 87, 0.09),
    rgba(46, 46, 137, 0.035)
  );
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.transformation-intro-text:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(46, 46, 137, 0.1);
}

.transformation-intro-text > span {
  display: block;
  margin-bottom: 15px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

.transformation-intro-text h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 17px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
}

.transformation-intro-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background: var(--simul-gold);
  transition: width 0.4s ease;
}

.transformation-intro-text:hover h2::after {
  width: 90px;
}

.transformation-intro-text p {
  margin: 0 0 16px;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.9;
}

.transformation-intro-text p:last-child {
  margin-bottom: 0;
}

/* ODAK ALANLARI */

.transformation-summary {
  position: relative;
  padding: 35px;
  border-radius: 21px;
  background: linear-gradient(
    145deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
  box-shadow: 0 20px 45px rgba(29, 29, 102, 0.2);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.transformation-summary::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: transformationSummaryCircle 7s ease-in-out infinite alternate;
}

.transformation-summary:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 58px rgba(29, 29, 102, 0.28);
}

.transformation-summary > span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 21px;
  color: var(--simul-light-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.transformation-summary-item {
  position: relative;
  z-index: 2;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    transform 0.3s ease,
    padding-left 0.3s ease;
}

.transformation-summary-item:last-child {
  border-bottom: 0;
}

.transformation-summary-item:hover {
  padding-left: 9px;
  transform: translateX(3px);
}

.transformation-summary-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--simul-white);
  font-size: 15px;
  font-weight: 600;
}

.transformation-summary-item small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

@keyframes transformationSummaryCircle {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-30px, 35px) scale(1.15);
  }
}

/* =====================================================
   SECTION HEADINGS
===================================================== */

.transformation-timeline-section,
.transformation-matrix-section,
.transformation-result-section {
  margin-top: 65px;
}

.transformation-section-heading {
  max-width: 720px;
  margin-bottom: 35px;
}

.transformation-section-heading > span {
  display: block;
  margin-bottom: 12px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

.transformation-section-heading h2 {
  position: relative;
  margin: 0 0 19px;
  padding-bottom: 17px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
}

.transformation-section-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background: var(--simul-gold);
}

.transformation-section-heading p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.85;
}

/* =====================================================
   TRANSFORMATION TIMELINE
===================================================== */

.transformation-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.transformation-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 54px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--simul-gold),
    var(--simul-navy),
    rgba(46, 46, 137, 0.15)
  );
}

.transformation-step {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: stretch;
  border: 1px solid var(--simul-border);
  border-radius: 19px;
  background: var(--simul-white);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.transformation-step:hover {
  transform: translateX(10px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 18px 40px rgba(29, 29, 102, 0.1);
}

.transformation-step-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 24px 15px;
  background: rgba(46, 46, 137, 0.06);
  transition:
    color 0.35s ease,
    background-color 0.35s ease;
}

.transformation-step-label span {
  color: var(--simul-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.transformation-step-label strong {
  color: var(--simul-navy);
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.35s ease;
}

.transformation-step:hover .transformation-step-label {
  background: var(--simul-navy);
}

.transformation-step:hover .transformation-step-label strong {
  transform: scale(1.12);
  color: var(--simul-white);
}

.transformation-step:hover .transformation-step-label span {
  color: var(--simul-light-gold);
}

.transformation-step-content {
  padding: 27px 30px;
}

.transformation-step-content h3 {
  margin: 0 0 10px;
  color: var(--simul-text);
  font-size: 19px;
  font-weight: 600;
}

.transformation-step-content p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* =====================================================
   TRANSFORMATION TABLE
===================================================== */

.transformation-table-wrap {
  border: 1px solid var(--simul-border);
  border-radius: 20px;
  background: var(--simul-white);
  box-shadow: 0 16px 40px rgba(29, 29, 102, 0.07);
  overflow-x: auto;
}

.transformation-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: collapse;
}

.transformation-table thead {
  background: linear-gradient(
    120deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
}

.transformation-table th {
  padding: 21px 20px;
  color: var(--simul-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-align: left;
}

.transformation-table td {
  padding: 20px;
  border-bottom: 1px solid var(--simul-border);
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.6;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.transformation-table tbody tr:last-child td {
  border-bottom: 0;
}

.transformation-table tbody tr {
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.transformation-table tbody tr:hover {
  transform: scale(1.008);
  box-shadow: inset 4px 0 0 var(--simul-gold);
}

.transformation-table tbody tr:hover td {
  background: rgba(46, 46, 137, 0.045);
  color: var(--simul-text);
}

.transformation-table td:first-child {
  color: var(--simul-dark-navy);
  font-weight: 700;
}

.transformation-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 30px;
  background: rgba(176, 141, 87, 0.13);
  color: #8a6735;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.transformation-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--simul-gold);
}

/* =====================================================
   RESULT CARDS
===================================================== */

.transformation-result-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
}

.transformation-result-card {
  position: relative;
  min-height: 330px;
  padding: 40px 35px;
  border: 1px solid rgba(176, 141, 87, 0.32);
  border-radius: 21px;
  background: linear-gradient(
    135deg,
    rgba(176, 141, 87, 0.12),
    rgba(255, 255, 255, 0.96)
  );
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.transformation-result-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(176, 141, 87, 0.18);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.transformation-result-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 23px 50px rgba(29, 29, 102, 0.12);
}

.transformation-result-card:hover::after {
  transform: scale(1.3);
}

.transformation-result-card > span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 17px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.transformation-result-card h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 19px;
  color: var(--simul-dark-navy);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
}

.transformation-result-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.85;
}

/* Koyu sonuç kartı */

.transformation-result-card.is-primary {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    135deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
  box-shadow: 0 20px 45px rgba(29, 29, 102, 0.2);
}

.transformation-result-card.is-primary > span {
  color: var(--simul-light-gold);
}

.transformation-result-card.is-primary h2 {
  color: var(--simul-white);
}

.transformation-result-card.is-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.transformation-result-card.is-primary::after {
  border-color: rgba(255, 255, 255, 0.13);
}

/* =====================================================
   TRANSFORMATION CLOSING
===================================================== */

.simul-transformation-closing {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 175px;
  align-items: center;
  gap: 35px;
  margin-top: 65px;
  padding: 55px 52px;
  border: 1px solid rgba(216, 195, 159, 0.5);
  border-top: 5px solid var(--simul-gold);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(176, 141, 87, 0.24),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  box-shadow: 0 28px 65px rgba(29, 29, 102, 0.28);
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.simul-transformation-closing::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: transformationClosingCircle 8s ease-in-out infinite alternate;
}

.simul-transformation-closing:hover {
  transform: translateY(-9px);
  box-shadow: 0 38px 78px rgba(29, 29, 102, 0.36);
}

.simul-transformation-closing-content {
  position: relative;
  z-index: 3;
}

.simul-transformation-closing-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(216, 195, 159, 0.45);
  border-radius: 30px;
  background: rgba(176, 141, 87, 0.14);
  color: var(--simul-light-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.simul-transformation-closing-label i {
  animation: transformationIconRotate 5s linear infinite;
}

.simul-transformation-closing h2 {
  max-width: 660px;
  margin: 0 0 23px;
  color: var(--simul-white);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
}

.simul-transformation-closing p {
  max-width: 730px;
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.9;
}

.simul-transformation-closing p:last-child {
  margin-bottom: 0;
}

.simul-transformation-closing-icon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(216, 195, 159, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--simul-white);
  font-size: 42px;
  backdrop-filter: blur(5px);
  animation: transformationIconFloat 4s ease-in-out infinite;
}

.simul-transformation-closing-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(216, 195, 159, 0.4);
  border-radius: 50%;
  animation: transformationIconRotate 15s linear infinite;
}

.simul-transformation-closing-icon i {
  position: relative;
  z-index: 2;
}

@keyframes transformationClosingCircle {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-40px, 35px) scale(1.15);
  }
}

@keyframes transformationIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes transformationIconRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

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

@media only screen and (max-width: 991px) {
  .transformation-intro-grid {
    grid-template-columns: 1fr;
  }

  .transformation-result-section {
    grid-template-columns: 1fr;
  }

  .simul-transformation-closing {
    grid-template-columns: 1fr;
  }

  .simul-transformation-closing-icon {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .simul-article-hero.simul-transformation-hero {
    background-size: cover;
    animation: none;
  }

  .transformation-intro-text,
  .transformation-summary {
    padding: 30px 25px;
  }

  .transformation-intro-text h2,
  .transformation-section-heading h2 {
    font-size: 25px;
  }

  .transformation-timeline::before {
    display: none;
  }

  .transformation-step {
    grid-template-columns: 78px 1fr;
  }

  .transformation-step-content {
    padding: 23px 20px;
  }

  .transformation-step:hover {
    transform: translateY(-5px);
  }

  .transformation-result-card {
    min-height: auto;
    padding: 33px 27px;
  }

  .simul-transformation-closing {
    padding: 40px 27px;
  }

  .simul-transformation-closing h2 {
    font-size: 27px;
  }
}
/* =====================================================
   3. BLOG — FARKLI KAPANIŞ TASARIMI
   SIMUL 360 DÖNÜŞÜM MODELİ
===================================================== */

.transformation-final-panel {
  position: relative;
  margin-top: 65px;
  border: 1px solid rgba(46, 46, 137, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 25px 65px rgba(29, 29, 102, 0.13);
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.transformation-final-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 78px rgba(29, 29, 102, 0.2);
}

/* =====================================================
   ÜST LACİVERT ALAN
===================================================== */

.transformation-final-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 175px;
  align-items: center;
  gap: 35px;
  padding: 43px 48px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(176, 141, 87, 0.21),
      transparent 26%
    ),
    linear-gradient(
      120deg,
      #19195f,
      #2e2e89 58%,
      #242475
    );
  overflow: hidden;
}

.transformation-final-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.09),
    transparent
  );
  transform: skewX(-20deg);
  animation: transformationHeaderLight 6s ease-in-out infinite;
}

.transformation-final-header::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

/* Başlık */

.transformation-final-heading {
  position: relative;
  z-index: 2;
}

.transformation-final-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #d8c39f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.transformation-final-heading > span i {
  font-size: 12px;
}

.transformation-final-heading h2 {
  max-width: 650px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.transformation-final-heading h2::after {
  display: none;
}

/* 360 derece alanı */

.transformation-model-number {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(216, 195, 159, 0.5);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 35px rgba(255, 255, 255, 0.04),
    0 17px 35px rgba(15, 15, 62, 0.25);
  backdrop-filter: blur(6px);
  transition:
    transform 0.4s ease,
    background-color 0.4s ease;
}

.transformation-final-panel:hover .transformation-model-number {
  transform: rotate(3deg) scale(1.04);
  background: rgba(176, 141, 87, 0.14);
}

.transformation-model-number small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.transformation-model-number strong {
  margin: 4px 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.transformation-model-number span {
  color: #d8c39f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* =====================================================
   ALT İÇERİK ALANI
===================================================== */

.transformation-final-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 0;
}

/* Sol açıklama */

.transformation-final-text {
  padding: 45px 42px;
  border-right: 1px solid rgba(46, 46, 137, 0.12);
  background: linear-gradient(
    145deg,
    rgba(176, 141, 87, 0.09),
    rgba(255, 255, 255, 0.98)
  );
}

.transformation-final-text p {
  margin: 0 0 16px;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.9;
}

.transformation-final-text p:last-of-type {
  margin-bottom: 0;
}

/* Vurgu cümlesi */

.transformation-final-line {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 27px;
  padding-top: 23px;
  border-top: 1px solid rgba(176, 141, 87, 0.25);
}

.transformation-final-line span {
  flex: 0 0 32px;
  height: 3px;
  margin-top: 9px;
  border-radius: 20px;
  background: var(--simul-gold);
  transition: width 0.4s ease;
}

.transformation-final-line strong {
  color: var(--simul-dark-navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

/* =====================================================
   SAĞ KAZANIMLAR ALANI
===================================================== */

.transformation-impact-list {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 35px;
  background: #f7f7fb;
}

.transformation-impact-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(46, 46, 137, 0.1);
  border-radius: 15px;
  background: #ffffff;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.transformation-impact-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(176, 141, 87, 0.09),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.transformation-impact-item:hover {
  transform: translateX(8px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 13px 30px rgba(29, 29, 102, 0.09);
}

.transformation-impact-item:hover::after {
  left: 150%;
}

/* Kazanım numarası */

.transformation-impact-number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(46, 46, 137, 0.08);
  color: var(--simul-navy);
  font-size: 12px;
  font-weight: 800;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.transformation-impact-item:hover .transformation-impact-number {
  transform: rotate(-7deg) scale(1.08);
  background: var(--simul-navy);
  color: #ffffff;
}

.transformation-impact-item > div:last-child {
  position: relative;
  z-index: 2;
}

.transformation-impact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--simul-dark-navy);
  font-size: 14px;
  font-weight: 700;
}

.transformation-impact-item span {
  display: block;
  color: var(--simul-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* =====================================================
   ANİMASYON
===================================================== */

@keyframes transformationHeaderLight {
  0%,
  45% {
    left: -80%;
  }

  75%,
  100% {
    left: 140%;
  }
}

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

@media only screen and (max-width: 991px) {
  .transformation-final-header {
    grid-template-columns: 1fr;
  }

  .transformation-model-number {
    display: none;
  }

  .transformation-final-body {
    grid-template-columns: 1fr;
  }

  .transformation-final-text {
    border-right: 0;
    border-bottom: 1px solid rgba(46, 46, 137, 0.12);
  }
}

@media only screen and (max-width: 767px) {
  .transformation-final-panel {
    border-radius: 20px;
  }

  .transformation-final-header {
    padding: 35px 26px;
  }

  .transformation-final-heading h2 {
    font-size: 26px;
  }

  .transformation-final-text {
    padding: 32px 25px;
  }

  .transformation-impact-list {
    padding: 25px 20px;
  }

  .transformation-impact-item {
    grid-template-columns: 42px 1fr;
    padding: 17px;
  }
}

/* =====================================================
   4. BLOG — FİNANSAL YÖNETİM
===================================================== */

.finance-dashboard,
.finance-matrix,
.finance-decision-flow {
  margin-top: 65px;
}

/* =====================================================
   ORTAK BAŞLIKLAR
===================================================== */

.finance-heading {
  max-width: 730px;
  margin-bottom: 35px;
}

.finance-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

.finance-heading > span::before {
  content: "";
  width: 25px;
  height: 2px;
  border-radius: 20px;
  background: var(--simul-gold);
}

.finance-heading h2 {
  position: relative;
  margin: 0 0 19px;
  padding-bottom: 17px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.finance-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  border-radius: 20px;
  background: var(--simul-gold);
  transition: width 0.4s ease;
}

.finance-dashboard:hover .finance-heading h2::after,
.finance-matrix:hover .finance-heading h2::after,
.finance-decision-flow:hover .finance-heading h2::after {
  width: 95px;
}

.finance-heading p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.85;
}

/* =====================================================
   KPI CARDS
===================================================== */

.finance-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.finance-kpi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 32px 28px;
  border: 1px solid var(--simul-border);
  border-radius: 20px;
  background: var(--simul-white);
  box-shadow: 0 14px 35px rgba(29, 29, 102, 0.06);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.finance-kpi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--simul-gold);
  transition: width 0.45s ease;
}

.finance-kpi-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(46, 46, 137, 0.04);
  transition: transform 0.5s ease;
}

.finance-kpi-card:hover {
  transform: translateY(-10px);
  border-color: rgba(176, 141, 87, 0.45);
  box-shadow: 0 24px 55px rgba(29, 29, 102, 0.13);
}

.finance-kpi-card:hover::before {
  width: 100%;
}

.finance-kpi-card:hover::after {
  transform: scale(1.35);
}

.finance-kpi-number {
  position: relative;
  z-index: 2;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 12px;
  border-radius: 30px;
  background: rgba(46, 46, 137, 0.07);
  color: var(--simul-navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.finance-kpi-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: var(--simul-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.finance-kpi-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 25px;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* KPI minik grafik */

.finance-kpi-signal {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 34px;
  margin-top: auto;
}

.finance-kpi-signal span {
  width: 7px;
  border-radius: 4px 4px 1px 1px;
  background: rgba(46, 46, 137, 0.18);
  transform-origin: bottom;
  animation: financeSignal 2.8s ease-in-out infinite alternate;
}

.finance-kpi-signal span:nth-child(1) {
  height: 35%;
}

.finance-kpi-signal span:nth-child(2) {
  height: 60%;
  animation-delay: 0.2s;
}

.finance-kpi-signal span:nth-child(3) {
  height: 45%;
  animation-delay: 0.4s;
}

.finance-kpi-signal span:nth-child(4) {
  height: 82%;
  background: var(--simul-gold);
  animation-delay: 0.6s;
}

.finance-kpi-signal span:nth-child(5) {
  height: 100%;
  background: var(--simul-navy);
  animation-delay: 0.8s;
}

/* Öne çıkan KPI */

.finance-kpi-card.is-featured {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(176, 141, 87, 0.2),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  box-shadow: 0 22px 50px rgba(29, 29, 102, 0.23);
}

.finance-kpi-card.is-featured .finance-kpi-number {
  border: 1px solid rgba(216, 195, 159, 0.3);
  background: rgba(176, 141, 87, 0.13);
  color: var(--simul-light-gold);
}

.finance-kpi-card.is-featured h3 {
  color: var(--simul-white);
}

.finance-kpi-card.is-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.finance-kpi-card.is-featured::after {
  background: rgba(255, 255, 255, 0.05);
}

.finance-kpi-card.is-featured .finance-kpi-signal span {
  background: rgba(255, 255, 255, 0.28);
}

.finance-kpi-card.is-featured .finance-kpi-signal span:nth-child(4),
.finance-kpi-card.is-featured .finance-kpi-signal span:nth-child(5) {
  background: var(--simul-light-gold);
}

@keyframes financeSignal {
  from {
    transform: scaleY(0.7);
    opacity: 0.6;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* =====================================================
   FINANCE TABLE
===================================================== */

.finance-table-wrap {
  border: 1px solid var(--simul-border);
  border-radius: 20px;
  background: var(--simul-white);
  box-shadow: 0 16px 40px rgba(29, 29, 102, 0.07);
  overflow-x: auto;
}

.finance-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: collapse;
}

.finance-table thead {
  background: linear-gradient(
    120deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
}

.finance-table th {
  padding: 21px 20px;
  color: var(--simul-white);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.finance-table td {
  padding: 20px;
  border-bottom: 1px solid var(--simul-border);
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.6;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.finance-table tbody tr:last-child td {
  border-bottom: 0;
}

.finance-table tbody tr {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.finance-table tbody tr:hover {
  transform: scale(1.008);
  box-shadow: inset 4px 0 0 var(--simul-gold);
}

.finance-table tbody tr:hover td {
  background: rgba(46, 46, 137, 0.045);
  color: var(--simul-text);
}

.finance-table td:first-child {
  color: var(--simul-dark-navy);
  font-weight: 700;
}

/* Öncelik etiketleri */

.finance-level {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 30px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.finance-level::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.finance-level.is-high {
  background: rgba(176, 141, 87, 0.14);
  color: #886634;
}

.finance-level.is-high::before {
  background: var(--simul-gold);
}

.finance-level.is-medium {
  background: rgba(46, 46, 137, 0.08);
  color: var(--simul-navy);
}

.finance-level.is-medium::before {
  background: var(--simul-navy);
}

.finance-level.is-critical {
  background: rgba(174, 65, 65, 0.09);
  color: #9d4141;
}

.finance-level.is-critical::before {
  background: #b94b4b;
  box-shadow: 0 0 8px rgba(185, 75, 75, 0.45);
}

/* =====================================================
   DECISION FLOW
===================================================== */

.finance-flow-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.finance-flow-row::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--simul-gold),
    var(--simul-navy)
  );
}

.finance-flow-item {
  position: relative;
  z-index: 2;
  min-height: 240px;
  padding: 24px 21px;
  border: 1px solid var(--simul-border);
  border-radius: 18px;
  background: var(--simul-white);
  text-align: center;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.finance-flow-item:hover {
  transform: translateY(-10px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 19px 42px rgba(29, 29, 102, 0.12);
}

.finance-flow-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin: -14px auto 21px;
  border: 5px solid var(--simul-white);
  border-radius: 50%;
  background: var(--simul-navy);
  color: var(--simul-white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(46, 46, 137, 0.2);
  transition:
    transform 0.4s ease,
    background-color 0.4s ease;
}

.finance-flow-item:hover .finance-flow-index {
  transform: rotate(12deg) scale(1.1);
  background: var(--simul-gold);
}

.finance-flow-item h3 {
  margin: 0 0 12px;
  color: var(--simul-dark-navy);
  font-size: 18px;
  font-weight: 600;
}

.finance-flow-item p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* =====================================================
   FİNANS SAYFASI ÖZEL KAPANIŞI
===================================================== */

.finance-executive-panel {
  position: relative;
  margin-top: 65px;
  border: 1px solid rgba(46, 46, 137, 0.14);
  border-radius: 24px;
  background: var(--simul-white);
  box-shadow: 0 25px 65px rgba(29, 29, 102, 0.13);
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.finance-executive-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 78px rgba(29, 29, 102, 0.2);
}

/* Kapanış başlığı */

.finance-executive-header {
  position: relative;
  padding: 44px 48px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(176, 141, 87, 0.22),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  overflow: hidden;
}

.finance-executive-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.09),
    transparent
  );
  transform: skewX(-20deg);
  animation: financeHeaderSweep 6s ease-in-out infinite;
}

.finance-executive-header > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--simul-light-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.finance-executive-header h2 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0;
  color: var(--simul-white);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
}

/* Alt bölüm */

.finance-executive-body {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
}

.finance-executive-text {
  padding: 43px;
  border-right: 1px solid var(--simul-border);
  background: linear-gradient(
    140deg,
    rgba(176, 141, 87, 0.08),
    rgba(255, 255, 255, 0.98)
  );
}

.finance-executive-text p {
  margin: 0 0 16px;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.9;
}

.finance-executive-text p:last-child {
  margin-bottom: 0;
}

/* Finansal göstergeler */

.finance-executive-metrics {
  display: grid;
  align-content: center;
  gap: 19px;
  padding: 38px;
  background: #f7f7fb;
}

.finance-metric-item {
  transition: transform 0.3s ease;
}

.finance-metric-item:hover {
  transform: translateX(6px);
}

.finance-metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 8px;
}

.finance-metric-top strong {
  color: var(--simul-dark-navy);
  font-size: 13px;
  font-weight: 700;
}

.finance-metric-top span {
  color: var(--simul-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.finance-metric-bar {
  height: 7px;
  border-radius: 20px;
  background: rgba(46, 46, 137, 0.09);
  overflow: hidden;
}

.finance-metric-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    to right,
    var(--simul-navy),
    var(--simul-gold)
  );
  transform-origin: left;
  animation: financeMetricLoad 2s ease both;
}

.finance-metric-bar.is-cash i {
  width: 88%;
}

.finance-metric-bar.is-cost i {
  width: 76%;
  animation-delay: 0.2s;
}

.finance-metric-bar.is-risk i {
  width: 82%;
  animation-delay: 0.4s;
}

@keyframes financeHeaderSweep {
  0%,
  45% {
    left: -90%;
  }

  75%,
  100% {
    left: 140%;
  }
}

@keyframes financeMetricLoad {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

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

@media only screen and (max-width: 991px) {
  .finance-kpi-row {
    grid-template-columns: 1fr;
  }

  .finance-kpi-card {
    min-height: auto;
  }

  .finance-flow-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .finance-flow-row::before {
    display: none;
  }

  .finance-executive-body {
    grid-template-columns: 1fr;
  }

  .finance-executive-text {
    border-right: 0;
    border-bottom: 1px solid var(--simul-border);
  }
}

@media only screen and (max-width: 767px) {
  .finance-heading h2 {
    font-size: 25px;
  }

  .finance-flow-row {
    grid-template-columns: 1fr;
  }

  .finance-flow-item {
    min-height: auto;
  }

  .finance-executive-header {
    padding: 35px 26px;
  }

  .finance-executive-header h2 {
    font-size: 26px;
  }

  .finance-executive-text,
  .finance-executive-metrics {
    padding: 30px 25px;
  }
}

/* =====================================================
   5. BLOG — KURUMSAL YÖNETİM
===================================================== */

/* HERO */

.simul-article-hero.simul-governance-hero {
  background:
    linear-gradient(
      110deg,
      rgba(22, 22, 76, 0.95),
      rgba(46, 46, 137, 0.82),
      rgba(27, 27, 74, 0.66)
    ),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=85")
      center/cover no-repeat;
  background-size: 110%;
  animation: governanceHeroMove 14s ease-in-out infinite alternate;
}

@keyframes governanceHeroMove {
  from {
    background-size: 110%;
    background-position: center;
  }

  to {
    background-size: 122%;
    background-position: 58% center;
  }
}

/* =====================================================
   ORTAK BAŞLIKLAR
===================================================== */

.governance-model-section,
.governance-principles,
.governance-role-section,
.governance-decision-section {
  margin-top: 65px;
}

.governance-heading {
  max-width: 750px;
  margin-bottom: 35px;
}

.governance-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

.governance-heading > span::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 20px;
  background: var(--simul-gold);
}

.governance-heading h2 {
  position: relative;
  margin: 0 0 19px;
  padding-bottom: 17px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.governance-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  border-radius: 20px;
  background: var(--simul-gold);
  transition: width 0.4s ease;
}

.governance-model-section:hover .governance-heading h2::after,
.governance-principles:hover .governance-heading h2::after,
.governance-role-section:hover .governance-heading h2::after,
.governance-decision-section:hover .governance-heading h2::after {
  width: 95px;
}

.governance-heading p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.85;
}

/* =====================================================
   YÖNETİM MODELİ
===================================================== */

.governance-model {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.governance-model-card {
  position: relative;
  min-height: 285px;
  padding: 29px 23px;
  border: 1px solid var(--simul-border);
  border-radius: 19px;
  background: var(--simul-white);
  box-shadow: 0 13px 32px rgba(29, 29, 102, 0.06);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.governance-model-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(46, 46, 137, 0.04);
  transition: transform 0.5s ease;
}

.governance-model-card:hover {
  transform: translateY(-10px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 23px 48px rgba(29, 29, 102, 0.13);
}

.governance-model-card:hover::after {
  transform: scale(1.4);
}

.governance-model-index {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(46, 46, 137, 0.08);
  color: var(--simul-navy);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background-color 0.35s ease;
}

.governance-model-card:hover .governance-model-index {
  transform: rotate(-8deg) scale(1.08);
  background: var(--simul-navy);
  color: var(--simul-white);
}

.governance-model-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 13px;
  color: var(--simul-text);
  font-size: 18px;
  font-weight: 600;
}

.governance-model-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.78;
}

/* Öne çıkan organizasyon kartı */

.governance-model-card.is-featured {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(176, 141, 87, 0.2),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  box-shadow: 0 20px 45px rgba(29, 29, 102, 0.22);
}

.governance-model-card.is-featured .governance-model-index {
  border: 1px solid rgba(216, 195, 159, 0.35);
  background: rgba(176, 141, 87, 0.14);
  color: var(--simul-light-gold);
}

.governance-model-card.is-featured h3 {
  color: var(--simul-white);
}

.governance-model-card.is-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.governance-model-card.is-featured::after {
  background: rgba(255, 255, 255, 0.05);
}

/* =====================================================
   YÖNETİM PRENSİPLERİ
===================================================== */

.governance-principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.governance-principle-card {
  position: relative;
  min-height: 230px;
  padding: 31px 30px 30px 82px;
  border: 1px solid var(--simul-border);
  border-radius: 19px;
  background: linear-gradient(
    135deg,
    rgba(176, 141, 87, 0.07),
    rgba(255, 255, 255, 0.98)
  );
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.governance-principle-card:hover {
  transform: translateY(-7px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 19px 42px rgba(29, 29, 102, 0.1);
}

.governance-principle-number {
  position: absolute;
  top: 31px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--simul-navy);
  color: var(--simul-white);
  font-size: 11px;
  font-weight: 800;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

.governance-principle-card:hover .governance-principle-number {
  transform: rotate(8deg) scale(1.08);
  background: var(--simul-gold);
}

.governance-principle-card h3 {
  margin: 0 0 12px;
  color: var(--simul-dark-navy);
  font-size: 19px;
  font-weight: 600;
}

.governance-principle-card p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* =====================================================
   ROL VE SORUMLULUK TABLOSU
===================================================== */

.governance-table-wrap {
  border: 1px solid var(--simul-border);
  border-radius: 20px;
  background: var(--simul-white);
  box-shadow: 0 16px 40px rgba(29, 29, 102, 0.07);
  overflow-x: auto;
}

.governance-table {
  width: 100%;
  min-width: 770px;
  margin: 0;
  border-collapse: collapse;
}

.governance-table thead {
  background: linear-gradient(
    120deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
}

.governance-table th {
  padding: 21px 20px;
  color: var(--simul-white);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.governance-table td {
  padding: 20px;
  border-bottom: 1px solid var(--simul-border);
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.6;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.governance-table tbody tr:last-child td {
  border-bottom: 0;
}

.governance-table tbody tr {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.governance-table tbody tr:hover {
  transform: scale(1.008);
  box-shadow: inset 4px 0 0 var(--simul-gold);
}

.governance-table tbody tr:hover td {
  background: rgba(46, 46, 137, 0.045);
  color: var(--simul-text);
}

.governance-table td:first-child {
  color: var(--simul-dark-navy);
  font-weight: 700;
}

.governance-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 30px;
  background: rgba(176, 141, 87, 0.13);
  color: #866331;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.governance-role-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--simul-gold);
}

/* =====================================================
   KARAR ALMA AKIŞI
===================================================== */

.governance-decision-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.governance-decision-flow::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--simul-gold),
    var(--simul-navy)
  );
}

.governance-decision-item {
  position: relative;
  z-index: 2;
  min-height: 225px;
  padding: 23px 17px;
  border: 1px solid var(--simul-border);
  border-radius: 17px;
  background: var(--simul-white);
  text-align: center;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.governance-decision-item:hover {
  transform: translateY(-10px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 18px 40px rgba(29, 29, 102, 0.12);
}

.governance-decision-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  margin: -12px auto 20px;
  border: 5px solid var(--simul-white);
  border-radius: 50%;
  background: var(--simul-navy);
  color: var(--simul-white);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(46, 46, 137, 0.2);
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

.governance-decision-item:hover .governance-decision-index {
  transform: rotate(10deg) scale(1.1);
  background: var(--simul-gold);
}

.governance-decision-item h3 {
  margin: 0 0 11px;
  color: var(--simul-dark-navy);
  font-size: 16px;
  font-weight: 600;
}

.governance-decision-item p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 12px;
  line-height: 1.7;
}

/* =====================================================
   KURUMSAL YÖNETİM ÖZEL KAPANIŞI
===================================================== */

.governance-closing {
  position: relative;
  display: grid;
  grid-template-columns: 175px 1fr;
  margin-top: 65px;
  border: 1px solid rgba(46, 46, 137, 0.14);
  border-radius: 24px;
  background: var(--simul-white);
  box-shadow: 0 25px 65px rgba(29, 29, 102, 0.14);
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.governance-closing:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 78px rgba(29, 29, 102, 0.21);
}

/* Sol model bölümü */

.governance-closing-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 38px 20px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(176, 141, 87, 0.22),
      transparent 35%
    ),
    linear-gradient(
      150deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  overflow: hidden;
}

.governance-closing-side::before {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  border: 1px dashed rgba(216, 195, 159, 0.35);
  border-radius: 50%;
  animation: governanceClosingRotate 15s linear infinite;
}

.governance-closing-side i {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  color: var(--simul-light-gold);
  font-size: 33px;
}

.governance-closing-side small {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.governance-closing-side strong {
  position: relative;
  z-index: 2;
  margin: 5px 0;
  color: var(--simul-white);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.governance-closing-side span {
  position: relative;
  z-index: 2;
  color: var(--simul-light-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Sağ içerik */

.governance-closing-main {
  padding: 46px 45px;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(176, 141, 87, 0.09),
      transparent 30%
    ),
    var(--simul-white);
}

.governance-closing-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.governance-closing-main h2 {
  max-width: 700px;
  margin: 0 0 21px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
}

.governance-closing-main p {
  max-width: 720px;
  margin: 0 0 15px;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.85;
}

/* Yönetim çıktıları */

.governance-closing-results {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--simul-border);
}

.governance-closing-results span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 30px;
  background: rgba(46, 46, 137, 0.065);
  color: var(--simul-navy);
  font-size: 10px;
  font-weight: 700;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.governance-closing-results span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--simul-gold);
}

.governance-closing-results span:hover {
  transform: translateY(-3px);
  background: var(--simul-navy);
  color: var(--simul-white);
}

@keyframes governanceClosingRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

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

@media only screen and (max-width: 991px) {
  .governance-model {
    grid-template-columns: repeat(2, 1fr);
  }

  .governance-decision-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .governance-decision-flow::before {
    display: none;
  }

  .governance-closing {
    grid-template-columns: 1fr;
  }

  .governance-closing-side {
    min-height: 190px;
  }
}

@media only screen and (max-width: 767px) {
  .simul-article-hero.simul-governance-hero {
    background-size: cover;
    animation: none;
  }

  .governance-heading h2 {
    font-size: 25px;
  }

  .governance-model,
  .governance-principle-grid,
  .governance-decision-flow {
    grid-template-columns: 1fr;
  }

  .governance-model-card,
  .governance-principle-card,
  .governance-decision-item {
    min-height: auto;
  }

  .governance-principle-card {
    padding: 28px 24px 28px 76px;
  }

  .governance-closing-main {
    padding: 36px 26px;
  }

  .governance-closing-main h2 {
    font-size: 26px;
  }
}

/* =====================================================
   6. BLOG — PROFESYONEL DANIŞMANLIK
===================================================== */

/* HERO */

.simul-article-hero.simul-consulting-hero {
  background:
    linear-gradient(
      110deg,
      rgba(22, 22, 76, 0.95),
      rgba(46, 46, 137, 0.82),
      rgba(27, 27, 74, 0.66)
    ),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1920&q=85")
      center/cover no-repeat;
  background-size: 110%;
  animation: consultingHeroMove 14s ease-in-out infinite alternate;
}

@keyframes consultingHeroMove {
  from {
    background-size: 110%;
    background-position: center;
  }

  to {
    background-size: 122%;
    background-position: 58% center;
  }
}

/* =====================================================
   DANIŞMANLIK MANİFESTOSU
===================================================== */

.consulting-manifesto {
  position: relative;
  padding: 52px 52px 49px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-left: 5px solid var(--simul-gold);
  border-radius: 0 23px 23px 0;
  background:
    radial-gradient(
      circle at 94% 10%,
      rgba(46, 46, 137, 0.07),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      rgba(176, 141, 87, 0.12),
      rgba(255, 255, 255, 0.97)
    );
  box-shadow: 0 18px 45px rgba(29, 29, 102, 0.08);
  overflow: hidden;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.consulting-manifesto::before {
  content: "“";
  position: absolute;
  top: -45px;
  right: 25px;
  color: rgba(46, 46, 137, 0.06);
  font-family: Georgia, serif;
  font-size: 190px;
  line-height: 1;
  transition: transform 0.5s ease;
}

.consulting-manifesto::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-20deg);
  animation: consultingManifestoShine 6s ease-in-out infinite;
}

.consulting-manifesto:hover {
  transform: translateY(-7px);
  box-shadow: 0 27px 60px rgba(29, 29, 102, 0.14);
}

.consulting-manifesto:hover::before {
  transform: translateY(-10px) rotate(4deg);
}

.consulting-manifesto > span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

.consulting-manifesto > span::before {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--simul-gold);
}

.consulting-manifesto h2 {
  position: relative;
  z-index: 2;
  max-width: 790px;
  margin: 0 0 21px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.5px;
}

.consulting-manifesto p {
  position: relative;
  z-index: 2;
  max-width: 770px;
  margin: 0;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.9;
}

@keyframes consultingManifestoShine {
  0%,
  48% {
    left: -100%;
  }

  78%,
  100% {
    left: 150%;
  }
}

/* =====================================================
   ORTAK BAŞLIKLAR
===================================================== */

.consulting-impact-section,
.consulting-compare-section,
.consulting-process-section {
  margin-top: 65px;
}

.consulting-heading {
  max-width: 750px;
  margin-bottom: 35px;
}

.consulting-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

.consulting-heading > span::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 20px;
  background: var(--simul-gold);
}

.consulting-heading h2 {
  position: relative;
  margin: 0 0 19px;
  padding-bottom: 17px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.consulting-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  border-radius: 20px;
  background: var(--simul-gold);
  transition: width 0.4s ease;
}

.consulting-impact-section:hover .consulting-heading h2::after,
.consulting-compare-section:hover .consulting-heading h2::after,
.consulting-process-section:hover .consulting-heading h2::after {
  width: 95px;
}

.consulting-heading p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.85;
}

/* =====================================================
   ETKİ ALANLARI
===================================================== */

.consulting-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}

.consulting-impact-card {
  position: relative;
  min-height: 270px;
  padding: 34px 32px;
  border: 1px solid var(--simul-border);
  border-radius: 20px;
  background: var(--simul-white);
  box-shadow: 0 14px 35px rgba(29, 29, 102, 0.06);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.consulting-impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--simul-gold);
  transition: width 0.45s ease;
}

.consulting-impact-card::after {
  content: attr(data-number);
  position: absolute;
  right: 19px;
  bottom: -18px;
  color: rgba(46, 46, 137, 0.045);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.consulting-impact-card:hover {
  transform: translateY(-9px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 25px 55px rgba(29, 29, 102, 0.13);
}

.consulting-impact-card:hover::before {
  width: 100%;
}

.consulting-impact-card:hover::after {
  transform: translateY(-8px) rotate(-4deg);
  color: rgba(176, 141, 87, 0.1);
}

.consulting-impact-card > span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 17px;
  color: var(--simul-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.consulting-impact-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: var(--simul-dark-navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.consulting-impact-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* İkinci kartı öne çıkar */

.consulting-impact-card:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(176, 141, 87, 0.2),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  box-shadow: 0 21px 48px rgba(29, 29, 102, 0.21);
}

.consulting-impact-card:nth-child(2) > span {
  color: var(--simul-light-gold);
}

.consulting-impact-card:nth-child(2) h3 {
  color: var(--simul-white);
}

.consulting-impact-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.76);
}

.consulting-impact-card:nth-child(2)::after {
  color: rgba(255, 255, 255, 0.05);
}

/* =====================================================
   KARŞILAŞTIRMA TABLOSU
===================================================== */

.consulting-compare-wrap {
  border: 1px solid var(--simul-border);
  border-radius: 20px;
  background: var(--simul-white);
  box-shadow: 0 16px 40px rgba(29, 29, 102, 0.07);
  overflow-x: auto;
}

.consulting-compare-table {
  width: 100%;
  min-width: 770px;
  margin: 0;
  border-collapse: collapse;
}

.consulting-compare-table thead {
  background: linear-gradient(
    120deg,
    var(--simul-dark-navy),
    var(--simul-navy)
  );
}

.consulting-compare-table th {
  padding: 21px 20px;
  color: var(--simul-white);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.consulting-compare-table td {
  padding: 20px;
  border-bottom: 1px solid var(--simul-border);
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.6;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.consulting-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.consulting-compare-table tbody tr {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.consulting-compare-table tbody tr:hover {
  transform: scale(1.008);
  box-shadow: inset 4px 0 0 var(--simul-gold);
}

.consulting-compare-table tbody tr:hover td {
  background: rgba(46, 46, 137, 0.045);
  color: var(--simul-text);
}

.consulting-compare-table td:first-child {
  color: var(--simul-dark-navy);
  font-weight: 700;
}

.consulting-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 30px;
  background: rgba(176, 141, 87, 0.13);
  color: #866331;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.consulting-result-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--simul-gold);
}

/* =====================================================
   İŞ BİRLİĞİ SÜRECİ
===================================================== */

.consulting-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.consulting-process::before {
  content: "";
  position: absolute;
  top: 37px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--simul-gold),
    var(--simul-navy)
  );
}

.consulting-process-item {
  position: relative;
  z-index: 2;
  min-height: 250px;
  padding: 24px 21px;
  border: 1px solid var(--simul-border);
  border-radius: 18px;
  background: var(--simul-white);
  text-align: center;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.consulting-process-item:hover {
  transform: translateY(-10px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 19px 42px rgba(29, 29, 102, 0.12);
}

.consulting-process-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin: -14px auto 21px;
  border: 5px solid var(--simul-white);
  border-radius: 50%;
  background: var(--simul-navy);
  color: var(--simul-white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(46, 46, 137, 0.2);
  transition:
    transform 0.4s ease,
    background-color 0.4s ease;
}

.consulting-process-item:hover .consulting-process-index {
  transform: rotate(10deg) scale(1.1);
  background: var(--simul-gold);
}

.consulting-process-item h3 {
  margin: 0 0 12px;
  color: var(--simul-dark-navy);
  font-size: 18px;
  font-weight: 600;
}

.consulting-process-item p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* =====================================================
   DANIŞMANLIK SAYFASI ÖZEL FİNALİ
===================================================== */

.consulting-signature {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 65px;
  border: 1px solid rgba(46, 46, 137, 0.14);
  border-radius: 24px;
  background: var(--simul-white);
  box-shadow: 0 25px 65px rgba(29, 29, 102, 0.14);
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.consulting-signature:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 78px rgba(29, 29, 102, 0.21);
}

/* Sol içerik */

.consulting-signature-content {
  position: relative;
  padding: 49px 45px;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(176, 141, 87, 0.09),
      transparent 28%
    ),
    linear-gradient(
      140deg,
      rgba(176, 141, 87, 0.07),
      rgba(255, 255, 255, 0.98)
    );
}

.consulting-signature-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.consulting-signature-content h2 {
  max-width: 650px;
  margin: 0 0 21px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.38;
}

.consulting-signature-content p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.9;
}

/* Sağ iletişim alanı */

.consulting-signature-action {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 45px 38px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(176, 141, 87, 0.22),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  overflow: hidden;
}

.consulting-signature-action::before {
  content: "S";
  position: absolute;
  right: -15px;
  bottom: -55px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 230px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.5s ease;
}

.consulting-signature:hover .consulting-signature-action::before {
  transform: translateY(-12px) rotate(-4deg);
}

.consulting-signature-action > span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 13px;
  color: var(--simul-light-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.consulting-signature-action h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 13px;
  color: var(--simul-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.consulting-signature-action p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.75;
}

.consulting-contact-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 11px;
  padding: 13px 21px;
  border: 1px solid rgba(216, 195, 159, 0.55);
  border-radius: 30px;
  background: rgba(176, 141, 87, 0.13);
  color: var(--simul-white);
  font-size: 11px;
  font-weight: 700;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.consulting-contact-button:hover {
  transform: translateY(-4px);
  background: var(--simul-gold);
  color: var(--simul-white);
}

.consulting-contact-button i {
  transition: transform 0.35s ease;
}

.consulting-contact-button:hover i {
  transform: translateX(5px);
}

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

@media only screen and (max-width: 991px) {
  .consulting-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .consulting-process::before {
    display: none;
  }

  .consulting-signature {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .simul-article-hero.simul-consulting-hero {
    background-size: cover;
    animation: none;
  }

  .consulting-manifesto {
    padding: 39px 27px;
  }

  .consulting-manifesto h2,
  .consulting-heading h2 {
    font-size: 25px;
  }

  .consulting-impact-grid,
  .consulting-process {
    grid-template-columns: 1fr;
  }

  .consulting-impact-card,
  .consulting-process-item {
    min-height: auto;
  }

  .consulting-signature-content,
  .consulting-signature-action {
    padding: 38px 27px;
  }

  .consulting-signature-content h2 {
    font-size: 26px;
  }
}

/* =====================================================
   6. BLOG — DANIŞMANLIK YENİ TASARIM V2
===================================================== */

/* HERO */

.simul-article-hero.simul-consulting-v2-hero {
  background:
    linear-gradient(
      110deg,
      rgba(21, 21, 73, 0.96),
      rgba(46, 46, 137, 0.83),
      rgba(25, 25, 70, 0.65)
    ),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1920&q=85")
      center/cover no-repeat;
  background-size: 110%;
  animation: consultingV2HeroMove 14s ease-in-out infinite alternate;
}

@keyframes consultingV2HeroMove {
  from {
    background-size: 110%;
    background-position: center;
  }

  to {
    background-size: 121%;
    background-position: 57% center;
  }
}

/* =====================================================
   EDITORYAL GİRİŞ
===================================================== */

.consulting-v2-intro {
  display: grid;
  grid-template-columns: 160px 1fr;
  margin-bottom: 70px;
  border: 1px solid var(--simul-border);
  border-radius: 23px;
  background: var(--simul-white);
  box-shadow: 0 20px 50px rgba(29, 29, 102, 0.1);
  overflow: hidden;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.consulting-v2-intro:hover {
  transform: translateY(-7px);
  box-shadow: 0 29px 65px rgba(29, 29, 102, 0.16);
}

/* Sol numara alanı */

.consulting-v2-intro-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px 20px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(176, 141, 87, 0.24),
      transparent 35%
    ),
    linear-gradient(
      150deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  overflow: hidden;
}

.consulting-v2-intro-number::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px dashed rgba(216, 195, 159, 0.32);
  border-radius: 50%;
  animation: consultingV2Rotate 16s linear infinite;
}

.consulting-v2-intro-number small,
.consulting-v2-intro-number strong,
.consulting-v2-intro-number span {
  position: relative;
  z-index: 2;
}

.consulting-v2-intro-number small {
  color: rgba(255, 255, 255, 0.63);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.consulting-v2-intro-number strong {
  margin: 6px 0;
  color: var(--simul-white);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.consulting-v2-intro-number span {
  color: var(--simul-light-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

/* Sağ giriş metni */

.consulting-v2-intro-content {
  position: relative;
  padding: 47px 48px;
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(176, 141, 87, 0.08),
      transparent 27%
    ),
    var(--simul-white);
}

.consulting-v2-intro-content > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.consulting-v2-intro-content > span::before {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--simul-gold);
}

.consulting-v2-intro-content h2 {
  max-width: 730px;
  margin: 0 0 20px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.consulting-v2-intro-content p {
  max-width: 750px;
  margin: 0;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.9;
}

/* =====================================================
   ORTAK BÖLÜM BAŞLIĞI
===================================================== */

.consulting-v2-section {
  margin-top: 70px;
}

.consulting-v2-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.consulting-v2-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--simul-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.9px;
}

.consulting-v2-heading > span::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--simul-gold);
}

.consulting-v2-heading h2 {
  position: relative;
  margin: 0 0 19px;
  padding-bottom: 17px;
  color: var(--simul-dark-navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.consulting-v2-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  border-radius: 20px;
  background: var(--simul-gold);
  transition: width 0.4s ease;
}

.consulting-v2-section:hover .consulting-v2-heading h2::after {
  width: 95px;
}

.consulting-v2-heading p {
  margin: 0;
  color: var(--simul-muted);
  font-size: 15px;
  line-height: 1.85;
}

/* =====================================================
   YATAY ETKİ LİSTESİ
===================================================== */

.consulting-v2-impact-list {
  border-top: 1px solid var(--simul-border);
}

.consulting-v2-impact-item {
  position: relative;
  display: grid;
  grid-template-columns: 75px 245px 1fr 35px;
  align-items: center;
  gap: 20px;
  padding: 27px 20px;
  border-bottom: 1px solid var(--simul-border);
  background: var(--simul-white);
  overflow: hidden;
  transition:
    padding-left 0.4s ease,
    background-color 0.4s ease,
    box-shadow 0.4s ease;
}

.consulting-v2-impact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(176, 141, 87, 0.09),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.consulting-v2-impact-item:hover {
  padding-left: 30px;
  background: rgba(46, 46, 137, 0.035);
  box-shadow: inset 4px 0 0 var(--simul-gold);
}

.consulting-v2-impact-item:hover::before {
  left: 150%;
}

.consulting-v2-impact-number {
  position: relative;
  z-index: 2;
  color: rgba(46, 46, 137, 0.16);
  font-size: 30px;
  font-weight: 600;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.consulting-v2-impact-item:hover .consulting-v2-impact-number {
  transform: translateX(5px);
  color: var(--simul-gold);
}

.consulting-v2-impact-title {
  position: relative;
  z-index: 2;
}

.consulting-v2-impact-title small {
  display: block;
  margin-bottom: 5px;
  color: var(--simul-gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.consulting-v2-impact-title h3 {
  margin: 0;
  color: var(--simul-dark-navy);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.consulting-v2-impact-item p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.75;
}

.consulting-v2-impact-arrow {
  position: relative;
  z-index: 2;
  color: var(--simul-navy);
  font-size: 14px;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.consulting-v2-impact-item:hover .consulting-v2-impact-arrow {
  transform: translateX(7px);
  color: var(--simul-gold);
}

/* =====================================================
   ÖNCE / SONRA KARŞILAŞTIRMASI
===================================================== */

.consulting-v2-compare {
  padding: 42px;
  border: 1px solid var(--simul-border);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(46, 46, 137, 0.05),
      transparent 27%
    ),
    #f7f7fb;
}

.consulting-v2-compare-head,
.consulting-v2-compare-row {
  display: grid;
  grid-template-columns: 1fr 55px 1fr;
  align-items: center;
  gap: 15px;
}

.consulting-v2-compare-head {
  margin-bottom: 12px;
}

.consulting-v2-compare-head span {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.consulting-v2-compare-head span:first-child {
  background: rgba(112, 113, 125, 0.08);
  color: var(--simul-muted);
}

.consulting-v2-compare-head span:last-child {
  background: var(--simul-navy);
  color: var(--simul-white);
}

.consulting-v2-compare-row {
  margin-top: 11px;
}

.consulting-v2-compare-box {
  min-height: 92px;
  padding: 20px;
  border: 1px solid var(--simul-border);
  border-radius: 15px;
  background: var(--simul-white);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.consulting-v2-compare-box strong {
  display: block;
  margin-bottom: 5px;
  color: var(--simul-dark-navy);
  font-size: 13px;
  font-weight: 700;
}

.consulting-v2-compare-box span {
  color: var(--simul-muted);
  font-size: 12px;
  line-height: 1.65;
}

.consulting-v2-compare-row:hover .consulting-v2-compare-box {
  transform: translateY(-4px);
  border-color: rgba(176, 141, 87, 0.45);
  box-shadow: 0 12px 27px rgba(29, 29, 102, 0.08);
}

.consulting-v2-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin: auto;
  border-radius: 50%;
  background: var(--simul-gold);
  color: var(--simul-white);
  font-size: 12px;
  animation: consultingV2Arrow 2.3s ease-in-out infinite;
}

/* =====================================================
   DANIŞMANLIK YOL HARİTASI
===================================================== */

.consulting-v2-roadmap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.consulting-v2-roadmap-item {
  position: relative;
  min-height: 230px;
  padding: 33px 31px;
  border: 1px solid var(--simul-border);
  border-radius: 19px;
  background: var(--simul-white);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.consulting-v2-roadmap-item::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 4px;
  border-radius: 0 10px 10px 0;
  background: var(--simul-gold);
}

.consulting-v2-roadmap-item::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: rgba(46, 46, 137, 0.045);
  font-size: 95px;
  font-weight: 700;
  line-height: 1;
}

.consulting-v2-roadmap-item:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 141, 87, 0.48);
  box-shadow: 0 21px 48px rgba(29, 29, 102, 0.12);
}

.consulting-v2-roadmap-item > span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 14px;
  color: var(--simul-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.consulting-v2-roadmap-item h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: var(--simul-dark-navy);
  font-size: 20px;
  font-weight: 600;
}

.consulting-v2-roadmap-item p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--simul-muted);
  font-size: 13px;
  line-height: 1.78;
}

/* Son adım koyu */

.consulting-v2-roadmap-item:last-child {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(176, 141, 87, 0.2),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
}

.consulting-v2-roadmap-item:last-child h3 {
  color: var(--simul-white);
}

.consulting-v2-roadmap-item:last-child p {
  color: rgba(255, 255, 255, 0.76);
}

.consulting-v2-roadmap-item:last-child::after {
  color: rgba(255, 255, 255, 0.05);
}

/* =====================================================
   PREMIUM FİNAL
===================================================== */

.consulting-v2-final {
  position: relative;
  margin-top: 70px;
  padding: 72px 55px 58px;
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-top: 5px solid var(--simul-gold);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(176, 141, 87, 0.1),
      transparent 28%
    ),
    var(--simul-white);
  box-shadow: 0 25px 65px rgba(29, 29, 102, 0.14);
  text-align: center;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.consulting-v2-final::before {
  content: "SIMUL";
  position: absolute;
  top: -25px;
  left: 50%;
  color: transparent;
  font-size: 135px;
  font-weight: 700;
  letter-spacing: 13px;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px rgba(46, 46, 137, 0.07);
  transition: transform 0.7s ease;
}

.consulting-v2-final:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 78px rgba(29, 29, 102, 0.21);
}

.consulting-v2-final:hover::before {
  transform: translateX(-50%) translateY(10px);
}

.consulting-v2-final-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.consulting-v2-final-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  padding: 8px 15px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 30px;
  background: rgba(176, 141, 87, 0.09);
  color: var(--simul-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.consulting-v2-final h2 {
  margin: 0 auto 22px;
  color: var(--simul-dark-navy);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

.consulting-v2-final p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--simul-muted);
  font-size: 14px;
  line-height: 1.9;
}

.consulting-v2-final-values {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.consulting-v2-final-values span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 30px;
  background: rgba(46, 46, 137, 0.065);
  color: var(--simul-navy);
  font-size: 10px;
  font-weight: 700;
}

.consulting-v2-final-values span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--simul-gold);
}

.consulting-v2-final-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 29px;
  padding: 14px 24px;
  border-radius: 30px;
  background: var(--simul-navy);
  color: var(--simul-white);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(46, 46, 137, 0.2);
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.consulting-v2-final-button:hover {
  transform: translateY(-4px);
  background: var(--simul-gold);
  color: var(--simul-white);
  box-shadow: 0 17px 35px rgba(176, 141, 87, 0.25);
}

.consulting-v2-final-button i {
  transition: transform 0.35s ease;
}

.consulting-v2-final-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   ANİMASYONLAR
===================================================== */

@keyframes consultingV2Rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes consultingV2Arrow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

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

@media only screen and (max-width: 991px) {
  .consulting-v2-impact-item {
    grid-template-columns: 60px 210px 1fr 30px;
  }

  .consulting-v2-roadmap {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .simul-article-hero.simul-consulting-v2-hero {
    background-size: cover;
    animation: none;
  }

  .consulting-v2-intro {
    grid-template-columns: 1fr;
  }

  .consulting-v2-intro-number {
    min-height: 175px;
  }

  .consulting-v2-intro-content {
    padding: 36px 26px;
  }

  .consulting-v2-intro-content h2,
  .consulting-v2-heading h2 {
    font-size: 25px;
  }

  .consulting-v2-impact-item {
    grid-template-columns: 55px 1fr 25px;
    gap: 13px;
  }

  .consulting-v2-impact-item p {
    grid-column: 2 / 4;
  }

  .consulting-v2-compare {
    padding: 27px 20px;
  }

  .consulting-v2-compare-head {
    display: none;
  }

  .consulting-v2-compare-row {
    grid-template-columns: 1fr;
  }

  .consulting-v2-compare-arrow {
    transform: rotate(90deg);
  }

  .consulting-v2-final {
    padding: 65px 26px 45px;
  }

  .consulting-v2-final::before {
    font-size: 75px;
  }

  .consulting-v2-final h2 {
    font-size: 26px;
  }
}
/* Marka Yönetimi etiketi hareketsiz */

.simul-brand-hero .simul-article-category {
  animation: none !important;
  transform: none !important;
}

/* =====================================================
   1. BLOG — STRATEJİK BÜYÜME ÖZEL KAPANIŞI
===================================================== */

.growth-final-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 68px;
  border: 1px solid rgba(216, 195, 159, 0.4);
  border-top: 5px solid var(--simul-gold);
  border-radius: 24px;
  background: var(--simul-white);
  box-shadow: 0 28px 70px rgba(29, 29, 102, 0.2);
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.growth-final-panel:hover {
  transform: translateY(-9px);
  box-shadow: 0 39px 85px rgba(29, 29, 102, 0.28);
}

/* =====================================================
   SOL LACİVERT İÇERİK
===================================================== */

.growth-final-content {
  position: relative;
  padding: 54px 48px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(176, 141, 87, 0.23),
      transparent 28%
    ),
    linear-gradient(
      140deg,
      var(--simul-dark-navy),
      var(--simul-navy)
    );
  overflow: hidden;
}

.growth-final-content::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -110px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: growthFinalCircle 8s ease-in-out infinite alternate;
}

.growth-final-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: skewX(-20deg);
  animation: growthFinalLight 6s ease-in-out infinite;
}

/* Küçük etiket */

.growth-final-label {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(216, 195, 159, 0.42);
  border-radius: 30px;
  background: rgba(176, 141, 87, 0.14);
  color: var(--simul-light-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.growth-final-label i {
  font-size: 11px;
}

/* Başlık */

.growth-final-content h2 {
  position: relative;
  z-index: 3;
  max-width: 630px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--simul-white);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.growth-final-content h2::after {
  display: none;
}

/* Açıklamalar */

.growth-final-content p {
  position: relative;
  z-index: 3;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
  line-height: 1.9;
}

.growth-final-content p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   SAĞ BÜYÜME MODELİ
===================================================== */

.growth-final-model {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  padding: 39px 32px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(176, 141, 87, 0.11),
      transparent 30%
    ),
    #f7f7fb;
}

/* Büyük numara */

.growth-final-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 135px;
  height: 135px;
  margin: 0 auto;
  border: 1px solid rgba(46, 46, 137, 0.16);
  border-radius: 50%;
  background: var(--simul-white);
  box-shadow:
    inset 0 0 30px rgba(46, 46, 137, 0.04),
    0 15px 35px rgba(29, 29, 102, 0.1);
  animation: growthFinalFloat 4s ease-in-out infinite;
}

.growth-final-number::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(176, 141, 87, 0.45);
  border-radius: 50%;
  animation: growthFinalRotate 16s linear infinite;
}

.growth-final-number small,
.growth-final-number strong,
.growth-final-number span {
  position: relative;
  z-index: 2;
}

.growth-final-number small {
  color: var(--simul-muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.growth-final-number strong {
  margin: 3px 0;
  color: var(--simul-navy);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.growth-final-number span {
  color: var(--simul-gold);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

/* Sonuç listesi */

.growth-final-results {
  display: grid;
  gap: 11px;
}

.growth-final-result {
  position: relative;
  display: grid;
  grid-template-columns: 39px 1fr;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--simul-border);
  border-radius: 14px;
  background: var(--simul-white);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.growth-final-result::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(176, 141, 87, 0.1),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.growth-final-result:hover {
  transform: translateX(7px);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 0 12px 27px rgba(29, 29, 102, 0.09);
}

.growth-final-result:hover::after {
  left: 150%;
}

.growth-final-result > i {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 11px;
  background: rgba(46, 46, 137, 0.08);
  color: var(--simul-navy);
  font-size: 13px;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.growth-final-result:hover > i {
  transform: rotate(-7deg) scale(1.08);
  background: var(--simul-navy);
  color: var(--simul-white);
}

.growth-final-result > div {
  position: relative;
  z-index: 2;
}

.growth-final-result strong {
  display: block;
  margin-bottom: 3px;
  color: var(--simul-dark-navy);
  font-size: 12px;
  font-weight: 700;
}

.growth-final-result span {
  display: block;
  color: var(--simul-muted);
  font-size: 10px;
  line-height: 1.55;
}

/* =====================================================
   ANİMASYONLAR
===================================================== */

@keyframes growthFinalCircle {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-40px, 35px) scale(1.13);
  }
}

@keyframes growthFinalLight {
  0%,
  45% {
    left: -90%;
  }

  75%,
  100% {
    left: 145%;
  }
}

@keyframes growthFinalFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes growthFinalRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

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

@media only screen and (max-width: 991px) {
  .growth-final-panel {
    grid-template-columns: 1fr;
  }

  .growth-final-model {
    padding: 38px 32px;
  }
}

@media only screen and (max-width: 767px) {
  .growth-final-panel {
    border-radius: 20px;
  }

  .growth-final-content {
    padding: 40px 27px;
  }

  .growth-final-content h2 {
    font-size: 27px;
  }

  .growth-final-model {
    padding: 35px 23px;
  }
}

/* =====================================================
   MARKA YÖNETİMİ — MODERN BUSINESS TASARIM
===================================================== */

.simul-brand-page {
  --brand-navy: #252574;
  --brand-navy-dark: #171753;
  --brand-gold: #b08d57;
  --brand-text: #30313f;
  --brand-muted: #626474;
  --brand-light: #f3f4f9;
  --brand-border: #d8dbea;

  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

/* Silik görünmeye neden olan giriş animasyonlarını kapat */

.simul-brand-page .simul-article-section,
.simul-brand-page .simul-article-quote,
.simul-brand-page .simul-brand-closing {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  animation: none !important;
}

/* =====================================================
   HERO
===================================================== */

.simul-article-hero.simul-brand-hero {
  background:
    linear-gradient(
      105deg,
      rgba(18, 18, 72, 0.97) 0%,
      rgba(37, 37, 116, 0.9) 52%,
      rgba(23, 23, 83, 0.77) 100%
    ),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=85")
      center/cover no-repeat;
}

.simul-brand-hero .simul-article-category {
  border: 1px solid rgba(216, 195, 159, 0.65);
  background: rgba(176, 141, 87, 0.2);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(10, 10, 55, 0.22);
  animation: none !important;
  transform: none !important;
}

.simul-brand-hero h1 {
  color: #ffffff;
  
}

.simul-brand-hero .simul-article-lead {
  color: rgba(255, 255, 255, 0.88);
}

/* =====================================================
   ANA MAKALE KUTUSU
===================================================== */

.simul-brand-page {
  border: 1px solid var(--brand-border) !important;
  background: #ffffff !important;
  box-shadow: 0 25px 65px rgba(23, 23, 83, 0.13) !important;
}

.simul-brand-page .simul-article-intro {
  padding: 34px 38px;
  border: 1px solid #d7d9e8;
  border-left: 5px solid var(--brand-gold);
  border-radius: 0 14px 14px 0;
  background: #f1f2f8;
  box-shadow: 0 12px 28px rgba(23, 23, 83, 0.07);
}

.simul-brand-page .simul-article-intro p {
  color: var(--brand-text);
  font-size: 17px;
  font-weight: 500;
}

/* =====================================================
   BAŞLIKLAR VE METİNLER
===================================================== */

.simul-brand-page .simul-article-section h2 {
  color: var(--brand-navy-dark);
  font-weight: 650;
}

.simul-brand-page .simul-article-section h2::after {
  width: 60px;
  height: 4px;
  background: var(--brand-gold);
}

.simul-brand-page .simul-article-section p,
.simul-brand-page .simul-brand-summary-content p,
.simul-brand-page .simul-digital-content p {
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.9;
}

/* =====================================================
   MARKA ÖZET ALANI
===================================================== */

.simul-brand-page .simul-brand-summary {
  gap: 30px;
}

.simul-brand-page .simul-brand-summary-content {
  padding: 10px 0;
}

/* Güçlü markanın özellikleri */

.simul-brand-page .simul-brand-feature-box {
  border: 1px solid rgba(216, 195, 159, 0.45);
  border-top: 5px solid var(--brand-gold);
  border-radius: 14px;
  background:
    linear-gradient(
      140deg,
      var(--brand-navy-dark),
      var(--brand-navy)
    ) !important;
  box-shadow: 0 20px 45px rgba(23, 23, 83, 0.24);
}

.simul-brand-page .simul-brand-feature-label {
  color: #e5cda6;
}

.simul-brand-page .simul-brand-feature {
  border-bottom-color: rgba(255, 255, 255, 0.17);
}

.simul-brand-page .simul-brand-feature strong {
  color: #ffffff;
}

.simul-brand-page .simul-brand-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.simul-brand-page .simul-brand-feature:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.04);
}

/* =====================================================
   ÜÇ TEMEL MARKA KARTI
===================================================== */

.simul-brand-page .simul-brand-grid {
  gap: 22px;
}

.simul-brand-page .simul-brand-card {
  min-height: 285px;
  border: 1px solid var(--brand-border);
  border-top: 4px solid var(--brand-navy);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(23, 23, 83, 0.08);
}

.simul-brand-page .simul-brand-card:nth-child(2) {
  border-top-color: var(--brand-gold);
}

.simul-brand-page .simul-brand-card:hover {
  transform: translateY(-9px);
  border-color: rgba(176, 141, 87, 0.65);
  box-shadow: 0 24px 50px rgba(23, 23, 83, 0.16);
}

.simul-brand-page .simul-brand-card .simul-strategy-number {
  border: 1px solid rgba(37, 37, 116, 0.15);
  border-radius: 9px;
  background: #ececf5;
  color: var(--brand-navy);
}

.simul-brand-page .simul-brand-card:hover .simul-strategy-number {
  background: var(--brand-navy);
  color: #ffffff;
}

.simul-brand-page .simul-brand-card h3 {
  color: var(--brand-navy-dark);
  font-size: 19px;
}

.simul-brand-page .simul-brand-card p {
  color: var(--brand-muted);
}

/* =====================================================
   MARKA KONUMLANDIRMA ALANI
===================================================== */

.simul-brand-page .simul-positioning-layout {
  gap: 25px;
}

/* Sol bilgi kutusu */

.simul-brand-page .simul-positioning-content {
  border: 1px solid var(--brand-border);
  border-left: 5px solid var(--brand-gold);
  border-radius: 13px;
  background: #f2f3f8;
  box-shadow: 0 15px 35px rgba(23, 23, 83, 0.08);
}

.simul-brand-page .simul-positioning-label {
  color: #8a6735;
  font-weight: 800;
}

.simul-brand-page .simul-positioning-content h2 {
  color: var(--brand-navy-dark);
}

.simul-brand-page .simul-positioning-content p {
  color: var(--brand-muted);
}

/* =====================================================
   MARKA KONUMLANDIRMA TABLOSU
===================================================== */

.simul-brand-page .simul-positioning-table {
  border: 1px solid #c9ccdd;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(23, 23, 83, 0.13);
  overflow: hidden;
}

.simul-brand-page .simul-positioning-table-title {
  position: relative;
  padding: 23px 25px;
  border-bottom: 4px solid var(--brand-gold);
  background:
    linear-gradient(
      115deg,
      var(--brand-navy-dark),
      var(--brand-navy)
    );
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Tablo satırları */

.simul-brand-page .simul-positioning-row {
  position: relative;
  grid-template-columns: 135px 1fr;
  min-height: 72px;
  border-bottom: 1px solid #d3d5e2;
  background: #ffffff;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.simul-brand-page .simul-positioning-row:nth-child(odd) {
  background: #f4f5f9;
}

.simul-brand-page .simul-positioning-row:last-child {
  border-bottom: 0;
}

.simul-brand-page .simul-positioning-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--brand-gold);
  transition: height 0.3s ease;
}

.simul-brand-page .simul-positioning-row:hover {
  z-index: 2;
  transform: translateX(4px);
  background: #e9eaf3;
  box-shadow: 0 8px 20px rgba(23, 23, 83, 0.11);
}

.simul-brand-page .simul-positioning-row:hover::before {
  height: 100%;
}

.simul-brand-page .simul-positioning-row strong {
  display: flex;
  align-items: center;
  padding: 20px;
  border-right: 1px solid #d3d5e2;
  color: var(--brand-navy-dark);
  font-size: 13px;
  font-weight: 750;
}

.simul-brand-page .simul-positioning-row span {
  display: flex;
  align-items: center;
  padding: 20px;
  color: #555868;
  font-size: 13px;
  font-weight: 500;
}

/* =====================================================
   MARKA İLETİŞİMİ KARTLARI
===================================================== */

.simul-brand-page .simul-consistency-grid {
  border: 1px solid #cfd2e1;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(23, 23, 83, 0.1);
}

.simul-brand-page .simul-consistency-card {
  min-height: 250px;
  padding: 34px 29px;
  border-right: 1px solid #d2d5e3;
  background: #ffffff;
}

.simul-brand-page .simul-consistency-card:first-child {
  background:
    linear-gradient(
      145deg,
      var(--brand-navy-dark),
      var(--brand-navy)
    );
}

.simul-brand-page .simul-consistency-card:nth-child(2) {
  border-top: 4px solid var(--brand-gold);
}

.simul-brand-page .simul-consistency-card:last-child {
  border-top: 4px solid var(--brand-navy);
  background: #f1f2f7;
}

.simul-brand-page .simul-consistency-card span {
  color: var(--brand-gold);
}

.simul-brand-page .simul-consistency-card h3 {
  color: var(--brand-navy-dark);
  font-weight: 650;
}

.simul-brand-page .simul-consistency-card p {
  color: var(--brand-muted);
}

.simul-brand-page .simul-consistency-card:first-child span {
  color: var(--simul-light-gold);
}

.simul-brand-page .simul-consistency-card:first-child h3 {
  color: #ffffff;
}

.simul-brand-page .simul-consistency-card:first-child p {
  color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   ALINTI
===================================================== */

.simul-brand-page .simul-article-quote {
  border-left: 5px solid var(--brand-gold);
  border-radius: 13px;
  background:
    linear-gradient(
      120deg,
      var(--brand-navy-dark),
      var(--brand-navy)
    );
  box-shadow: 0 22px 50px rgba(23, 23, 83, 0.23);
}

.simul-brand-page .simul-article-quote p {
  color: #ffffff;
}

/* =====================================================
   DİJİTAL MARKA
===================================================== */

.simul-brand-page .simul-digital-layout {
  gap: 35px;
}

.simul-brand-page .simul-digital-item {
  border: 1px solid var(--brand-border);
  border-left: 4px solid var(--brand-navy);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(23, 23, 83, 0.07);
}

.simul-brand-page .simul-digital-item:nth-child(2) {
  border-left-color: var(--brand-gold);
}

.simul-brand-page .simul-digital-item:hover {
  transform: translateX(8px);
  border-color: rgba(176, 141, 87, 0.65);
  box-shadow: 0 17px 35px rgba(23, 23, 83, 0.13);
}

.simul-brand-page .simul-digital-item h3 {
  color: var(--brand-navy-dark);
}

.simul-brand-page .simul-digital-item p {
  color: var(--brand-muted);
}

/* =====================================================
   SIMUL DANIŞMANLIK KAPANIŞI
===================================================== */

.simul-brand-page .simul-brand-closing {
  border: 1px solid rgba(216, 195, 159, 0.55);
  border-top: 5px solid var(--brand-gold);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(176, 141, 87, 0.25),
      transparent 29%
    ),
    linear-gradient(
      130deg,
      var(--brand-navy-dark),
      var(--brand-navy)
    );
  box-shadow: 0 28px 65px rgba(23, 23, 83, 0.3);
}

.simul-brand-page .simul-brand-closing-label {
  border-color: rgba(216, 195, 159, 0.55);
  background: rgba(176, 141, 87, 0.17);
  color: #edd4aa;
}

.simul-brand-page .simul-brand-closing h2 {
  color: #ffffff;
  font-size: 32px;
}

.simul-brand-page .simul-brand-closing p {
  color: rgba(255, 255, 255, 0.84);
}

.simul-brand-page .simul-brand-closing-decoration {
  border-color: rgba(216, 195, 159, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.simul-brand-page .simul-brand-closing-decoration span {
  color: #ffffff;
}

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

@media only screen and (max-width: 991px) {
  .simul-brand-page .simul-positioning-row {
    grid-template-columns: 125px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .simul-brand-page .simul-article-intro {
    padding: 28px 24px;
  }

  .simul-brand-page .simul-positioning-row {
    grid-template-columns: 1fr;
  }

  .simul-brand-page .simul-positioning-row strong {
    padding-bottom: 9px;
    border-right: 0;
  }

  .simul-brand-page .simul-positioning-row span {
    padding-top: 5px;
  }

  .simul-brand-page .simul-consistency-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #d2d5e3;
  }

  .simul-brand-page .simul-brand-closing h2 {
    font-size: 27px;
  }
}