/* ==========================================================================
   Bildad — Tema üzerine binen özel stiller (premium SaaS / growth tonu)
   ========================================================================== */

:root {
  --bildad-ink: #0b1020;
  --bildad-ink-2: #1a1f3d;
  --bildad-muted: #5a607a;
  --bildad-primary: #5751e1;
  --bildad-primary-2: #8b6cff;
  --bildad-accent: #ff7a45;
  --bildad-soft: #f4f4fb;
  --bildad-soft-2: #ebeaff;
  --bildad-border: rgba(11, 16, 32, 0.08);
}

/* ----- WhatsApp floating button ----- */
.bildad-wa-float {
  position: fixed;
  right: 24px;
  bottom: 110px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bildad-wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}
.bildad-wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.35;
  animation: bildad-wa-pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes bildad-wa-pulse {
  0%   { transform: scale(1);   opacity: 0.35; }
  70%  { transform: scale(1.5); opacity: 0;    }
  100% { transform: scale(1.5); opacity: 0;    }
}

/* ----- Hero (Bildad) ----- */
.bildad-hero {
  position: relative;
  padding: 65px 0 90px;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(139, 108, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(87, 81, 225, 0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f7ff 100%);
  overflow: hidden;
}

/* Subtle dotted grid layer */
.bildad-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(87, 81, 225, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, #000 50%, transparent 100%);
  opacity: 0.6;
  pointer-events: none;
}

/* Floating gradient blobs (background) */
.bildad-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}
.bildad-hero__blob.one {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #8b6cff 0%, transparent 70%);
  top: -80px; right: 8%;
  animation: bildad-blob-float 12s ease-in-out infinite;
}
.bildad-hero__blob.two {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #ff7a45 0%, transparent 70%);
  bottom: -60px; left: 10%;
  opacity: 0.35;
  animation: bildad-blob-float 14s ease-in-out infinite reverse;
}
@keyframes bildad-blob-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -30px); }
}
.bildad-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(87, 81, 225, 0.08);
  color: var(--bildad-primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.bildad-hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}
.bildad-hero__title {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.08;
  color: var(--bildad-ink);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.bildad-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--bildad-primary) 0%, var(--bildad-primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bildad-hero__sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--bildad-muted);
  max-width: 620px;
  margin-bottom: 36px;
}
.bildad-hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
}
.bildad-hero__trust {
  display: flex; flex-wrap: wrap; gap: 28px;
  color: var(--bildad-muted);
  font-size: 14px;
}
.bildad-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.bildad-hero__trust svg { color: #22c55e; }

.bildad-hero__visual {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f4ff 100%);
  border: 1px solid var(--bildad-border);
  box-shadow: 0 30px 60px -20px rgba(11, 16, 32, 0.18);
}
.bildad-hero__visual::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(139, 108, 255, 0.6), transparent 50%);
  z-index: -1; filter: blur(14px); opacity: 0.7;
}
.bildad-hero__metric {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(11, 16, 32, 0.04);
}
.bildad-hero__metric:last-child { margin-bottom: 0; }
.bildad-hero__metric h4 { font-size: 14px; color: var(--bildad-muted); margin: 0 0 4px; font-weight: 500; }
.bildad-hero__metric .v { font-size: 26px; color: var(--bildad-ink); font-weight: 700; letter-spacing: -0.5px; }
.bildad-hero__metric .badge {
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(34, 197, 94, 0.12); color: #16a34a;
}

/* ----- Buttons ----- */
.bildad-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all 0.25s ease;
  border: 0; cursor: pointer;
}
.bildad-btn--primary {
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(87, 81, 225, 0.35);
}
.bildad-btn--primary:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(87, 81, 225, 0.45);
}
.bildad-btn--ghost {
  background: #fff;
  color: var(--bildad-ink);
  border: 1px solid var(--bildad-border);
}
.bildad-btn--ghost:hover {
  color: var(--bildad-primary); border-color: var(--bildad-primary);
  transform: translateY(-2px);
}
.bildad-btn--wa {
  background: #25d366; color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.bildad-btn--wa:hover {
  color: #fff; transform: translateY(-2px);
}

/* ----- Section header ----- */
.bildad-section { padding: 50px 0 110px; }
.bildad-section--alt { background: var(--bildad-soft); }
.bildad-section--dark { background: var(--bildad-ink); color: #fff; }
.bildad-section--dark .bildad-section__title,
.bildad-section--dark .bildad-section__title em { color: #fff; }
.bildad-section--dark .bildad-section__sub { color: rgba(255, 255, 255, 0.72); }

.bildad-section__head { text-align: center; margin-bottom: 60px; }
.bildad-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.12), rgba(255, 122, 69, 0.12));
  border: 1px solid rgba(87, 81, 225, 0.22);
  color: var(--bildad-primary);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.bildad-section__eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bildad-accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 69, 0.25);
}
.bildad-section__title {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.08;
  color: var(--bildad-ink);
  letter-spacing: -1.3px;
  font-weight: 800;
  margin-bottom: 22px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.bildad-section__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bildad-section__sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--bildad-muted);
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .bildad-section__title { font-size: 32px; letter-spacing: -0.8px; }
  .bildad-section__sub { font-size: 16px; }
}

/* ----- Card grid ----- */
.bildad-card {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.bildad-card:hover {
  transform: translateY(-6px);
  border-color: rgba(87, 81, 225, 0.4);
  box-shadow: 0 24px 50px -20px rgba(11, 16, 32, 0.18);
}
.bildad-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.1), rgba(139, 108, 255, 0.1));
  color: var(--bildad-primary);
  margin-bottom: 22px;
}
.bildad-card__title {
  font-size: 20px; font-weight: 700;
  color: var(--bildad-ink); margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.bildad-card__text {
  font-size: 15px; line-height: 1.65;
  color: var(--bildad-muted); margin-bottom: 18px;
}
.bildad-card__link {
  font-size: 14px; font-weight: 600;
  color: var(--bildad-primary); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.bildad-card__link:hover { color: var(--bildad-primary-2); gap: 10px; transition: gap 0.25s ease; }

/* ==========================================================================
   HİZMET DETAY v24 — "Editorial Premium" (dev tipografi, asimetrik, ferah)
   .hizmet-v24 wrapper class'ı altındaki tüm sayfaya uygulanır
   ========================================================================== */

/* Section'lar büyük, ferah */
.hizmet-v24 .bildad-section {
  padding: 120px 0;
  position: relative;
}

/* Section header — sol-hizalı asimetrik 2-kolon grid */
.hizmet-v24 .bildad-section__head {
  text-align: left;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.hizmet-v24 .bildad-section__eyebrow {
  grid-column: 1;
  align-self: start;
  margin-bottom: 24px;
  width: fit-content;
}
.hizmet-v24 .bildad-section__title {
  grid-column: 1;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -2px;
  line-height: 1;
  font-weight: 800;
  margin: 0;
}
.hizmet-v24 .bildad-section__sub {
  grid-column: 2;
  max-width: none;
  margin: 0;
  text-align: left;
  font-size: 18px;
  align-self: end;
  padding-bottom: 6px;
}

/* ----- HERO — Editorial büyük tipografi ----- */
.hizmet-v24 .bildad-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  text-align: left;
}
.hizmet-v24 .bildad-hero .container > .row { justify-content: flex-start; }
.hizmet-v24 .bildad-hero .col-lg-10 { max-width: 1200px; text-align: left; }
.hizmet-v24 .bildad-hero__live {
  margin-left: 0 !important;
  margin-right: auto;
}
.hizmet-v24 .bildad-hero__title {
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: -3.5px;
  font-weight: 800;
  text-align: left;
}
.hizmet-v24 .bildad-hero__sub {
  margin: 32px 0 40px;
  text-align: left;
  font-size: 22px;
  max-width: 720px;
}
.hizmet-v24 .bildad-hero__cta {
  justify-content: flex-start !important;
}

/* ----- PAIN — büyük, gölgeli kartlar ----- */
.hizmet-v24 .bildad-pain {
  background: linear-gradient(135deg, #fff 70%, rgba(11, 16, 32, 0.025));
  border: none;
  border-radius: 26px;
  padding: 36px 36px;
  box-shadow: 0 30px 60px -30px rgba(11, 16, 32, 0.15);
  gap: 18px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hizmet-v24 .bildad-pain:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -30px rgba(11, 16, 32, 0.25);
}
.hizmet-v24 .bildad-pain__icon {
  width: 48px; height: 48px;
  background: var(--bildad-ink);
  color: #fff;
  border-radius: 14px;
}
.hizmet-v24 .bildad-pain__icon svg { width: 22px; height: 22px; }
.hizmet-v24 .bildad-pain__body h4 {
  font-size: 22px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.hizmet-v24 .bildad-pain__body p {
  font-size: 16px;
  line-height: 1.6;
}

/* ----- ETKİLERİ — dev sayılar, beyaz zemin ----- */
.hizmet-v24 .bildad-impact {
  background: #fff;
  border: none;
  border-top: 2px solid rgba(11, 16, 32, 0.08);
  border-radius: 0;
  padding: 56px 32px;
  text-align: left;
}
.hizmet-v24 .bildad-impact__num {
  font-size: 88px;
  letter-spacing: -3px;
  line-height: 0.9;
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--bildad-ink) 0%, var(--bildad-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.hizmet-v24 .bildad-impact__label {
  font-size: 16px;
  color: var(--bildad-ink-2);
  font-weight: 500;
  line-height: 1.4;
}

/* ----- APPROACH (Çözüm) — dev tipografi ----- */
.hizmet-v24 .bildad-approach {
  border: none;
  border-top: 3px solid var(--bildad-ink);
  border-radius: 0;
  padding: 48px 32px 40px;
  background: transparent;
  box-shadow: none;
}
.hizmet-v24 .bildad-approach:hover {
  transform: translateY(-6px);
  border-top-color: var(--bildad-primary);
  box-shadow: none;
}
.hizmet-v24 .bildad-approach::before { display: none; }
.hizmet-v24 .bildad-approach__icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: none;
  background: var(--bildad-ink);
}
.hizmet-v24 .bildad-approach__icon svg { width: 32px; height: 32px; }
.hizmet-v24 .bildad-approach__title {
  font-size: 30px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hizmet-v24 .bildad-approach__text {
  font-size: 16px;
  line-height: 1.65;
}

/* ----- OUTCOME — büyük list ----- */
.hizmet-v24 .bildad-outcome-list {
  background: transparent;
  border: none;
  border-top: 2px solid rgba(11, 16, 32, 0.08);
  border-radius: 0;
  box-shadow: none;
}
.hizmet-v24 .bildad-outcome-list li {
  padding: 32px 0;
  gap: 24px;
  border-bottom: 1px solid rgba(11, 16, 32, 0.08);
}
.hizmet-v24 .bildad-outcome-list .ok {
  width: 44px; height: 44px;
  background: var(--bildad-ink);
  color: #fff;
  box-shadow: none;
}
.hizmet-v24 .bildad-outcome-list .ok svg { width: 22px; height: 22px; }
.hizmet-v24 .bildad-outcome-list strong {
  font-size: 22px;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.hizmet-v24 .bildad-outcome-list span {
  font-size: 16px;
  line-height: 1.55;
}

/* ----- FIT PILL — sade, büyük ----- */
.hizmet-v24 .bildad-fit-pill {
  background: transparent;
  border: 2px solid rgba(11, 16, 32, 0.1);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}
.hizmet-v24 .bildad-fit-pill .icon { display: none; }
.hizmet-v24 .bildad-fit-pill:hover {
  background: var(--bildad-ink);
  color: #fff;
  border-color: var(--bildad-ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -12px rgba(11, 16, 32, 0.4);
}

/* ----- WHY ITEM ----- */
.hizmet-v24 .bildad-why-item {
  background: transparent;
  border: none;
  border-top: 2px solid rgba(11, 16, 32, 0.08);
  border-radius: 0;
  padding: 32px 0;
  gap: 22px;
}
.hizmet-v24 .bildad-why-item:hover {
  border-top-color: var(--bildad-primary);
  box-shadow: none;
  background: transparent;
  transform: none;
}
.hizmet-v24 .bildad-why-item__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--bildad-ink);
  color: #fff;
  box-shadow: none;
}
.hizmet-v24 .bildad-why-item h5 {
  font-size: 22px;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.hizmet-v24 .bildad-why-item p {
  font-size: 16px;
  line-height: 1.6;
}

/* ----- FAQ — minimalist çizgi ----- */
.hizmet-v24 .bildad-faq {
  background: transparent;
  border: none;
  border-top: 2px solid rgba(11, 16, 32, 0.08);
  border-radius: 0;
  box-shadow: none;
}
.hizmet-v24 .bildad-faq details {
  border-bottom: 1px solid rgba(11, 16, 32, 0.08);
}
.hizmet-v24 .bildad-faq summary {
  padding: 32px 0;
  font-size: 22px;
  letter-spacing: -0.4px;
  background: transparent;
}
.hizmet-v24 .bildad-faq summary:hover {
  background: transparent;
  color: var(--bildad-primary);
}
.hizmet-v24 .bildad-faq details[open] summary { background: transparent; color: var(--bildad-primary); }
.hizmet-v24 .bildad-faq summary::after {
  background: transparent;
  color: var(--bildad-ink);
  border: 2px solid var(--bildad-ink);
  box-shadow: none;
  width: 36px; height: 36px;
  font-weight: 400;
  font-size: 22px;
}
.hizmet-v24 .bildad-faq details[open] summary::after {
  background: var(--bildad-primary);
  color: #fff;
  border-color: var(--bildad-primary);
}
.hizmet-v24 .bildad-faq details > div {
  padding: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
}

/* ----- FINAL CTA — devasa ----- */
.hizmet-v24 .bildad-cta-final {
  padding: 140px 80px;
  border-radius: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(139, 108, 255, 0.4), transparent 50%),
    linear-gradient(135deg, #0b1020 0%, #1a1f3d 100%);
}
.hizmet-v24 .bildad-cta-final h2 {
  font-size: clamp(48px, 6.5vw, 88px);
  letter-spacing: -2.5px;
  line-height: 0.95;
}
.hizmet-v24 .bildad-cta-final p { font-size: 20px; margin-bottom: 44px; }

/* Container daha geniş v24'te */
.hizmet-v24 .container { max-width: 1280px; }

@media (max-width: 991px) {
  .hizmet-v24 .bildad-section { padding: 70px 0; }
  .hizmet-v24 .bildad-section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .hizmet-v24 .bildad-hero { min-height: auto; padding: 70px 0 60px; }
  .hizmet-v24 .bildad-impact__num { font-size: 56px; }
  .hizmet-v24 .bildad-cta-final { padding: 70px 30px; }
}

/* ==========================================================================
   HİZMET DETAY v23 — "Konuşkan & Yakın" (kullanıcı odaklı / müşteri çekici)
   .hizmet-v23 wrapper class'ı altındaki tüm sayfaya uygulanır
   ========================================================================== */

/* Section akışı: sıkı tempo, sıcak ton */
.hizmet-v23 .bildad-section { padding: 60px 0 70px; position: relative; overflow: hidden; }
.hizmet-v23 .bildad-section > .container { position: relative; z-index: 1; }

/* Floating dekoratif blob'lar — daha sıcak (turuncu öne çıkar) */
.hizmet-v23 .bildad-section::before {
  content: "";
  position: absolute;
  top: 15%; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hizmet-v23 .bildad-section:nth-child(even)::before {
  right: auto; left: -80px;
  background: radial-gradient(circle, rgba(87, 81, 225, 0.06), transparent 70%);
}

/* ----- Hero — Social Proof Bar (avatar grup + 4.9★) ----- */
.hizmet-v23 .bildad-hero {
  padding-bottom: 100px;
}
.hizmet-v23 .bildad-hero__title {
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.05;
}
.hizmet-v23 .bildad-hero__cta {
  position: relative;
}
.hizmet-v23 .bildad-hero__cta::after {
  content: "★ 4.9/5  ·  200+ Türk KOBİ ile çalıştık";
  display: block;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bildad-accent);
  letter-spacing: 0.3px;
  width: 100%;
  text-align: center;
}

/* ----- Pain — Sohbet baloncuğu (speech bubble) ----- */
.hizmet-v23 .bildad-pain {
  border-left: none;
  border-radius: 18px;
  background: #fff;
  padding: 24px 26px;
  position: relative;
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hizmet-v23 .bildad-pain::before {
  content: "";
  position: absolute;
  bottom: -10px; left: 30px;
  width: 20px; height: 20px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(11, 16, 32, 0.05);
}
.hizmet-v23 .bildad-pain:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -18px rgba(255, 122, 69, 0.3);
}
.hizmet-v23 .bildad-pain__icon {
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  color: #fff;
  width: 36px; height: 36px;
}
.hizmet-v23 .bildad-pain__icon svg { width: 18px; height: 18px; }
.hizmet-v23 .bildad-pain__body h4 {
  font-size: 17px;
  color: var(--bildad-ink);
}
.hizmet-v23 .bildad-pain__body p {
  font-size: 14.5px;
  font-style: italic;
  color: var(--bildad-ink-2);
}

/* ----- Etkileri — Koyu zemin, daha sıcak ----- */
.hizmet-v23 .bildad-section .row.g-3:has(.bildad-impact) {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 122, 69, 0.2), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(139, 108, 255, 0.15), transparent 60%),
    linear-gradient(135deg, #0b1020 0%, #1a1f3d 100%);
  border-radius: 28px;
  padding: 44px 32px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.hizmet-v23 .bildad-section .row.g-3:has(.bildad-impact)::after {
  content: "Sizin de yaşadıklarınız mı?";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fcd34d;
  white-space: nowrap;
}
.hizmet-v23 .bildad-impact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 18px 20px;
}
.hizmet-v23 .bildad-impact__num {
  font-size: 42px;
  background: linear-gradient(135deg, #fff 0%, #fcd34d 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hizmet-v23 .bildad-impact__label {
  color: rgba(255, 255, 255, 0.85);
}

/* ----- Approach (Çözüm) — büyük numara çemberleri 01·02·03 ----- */
.hizmet-v23 .bildad-approach {
  border-radius: 22px;
  padding: 56px 32px 32px;
  position: relative;
  text-align: center;
}
.hizmet-v23 .bildad-approach::before {
  content: "01";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--bildad-accent);
  color: var(--bildad-accent);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 14px 28px rgba(255, 122, 69, 0.3);
}
.hizmet-v23 .row .col-lg-4:nth-child(2) .bildad-approach::before,
.hizmet-v23 .row .col-md-6:nth-child(2) .bildad-approach::before { content: "02"; }
.hizmet-v23 .row .col-lg-4:nth-child(3) .bildad-approach::before,
.hizmet-v23 .row .col-md-6:nth-child(3) .bildad-approach::before { content: "03"; }
.hizmet-v23 .bildad-approach .bildad-approach__icon { display: none; }
.hizmet-v23 .bildad-approach__title { font-size: 22px; margin-bottom: 12px; }
.hizmet-v23 .bildad-approach__text { font-size: 15.5px; }

/* ----- Outcome list — "Siz" vurgusu ----- */
.hizmet-v23 .bildad-outcome-list {
  background: linear-gradient(135deg, #fff, rgba(255, 122, 69, 0.025));
  box-shadow: 0 22px 50px -25px rgba(11, 16, 32, 0.15);
}
.hizmet-v23 .bildad-outcome-list li {
  padding: 22px 28px;
  transition: background 0.25s ease;
}
.hizmet-v23 .bildad-outcome-list li:hover {
  background: linear-gradient(90deg, rgba(255, 122, 69, 0.05), transparent);
}
.hizmet-v23 .bildad-outcome-list .ok {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 122, 69, 0.4);
}
.hizmet-v23 .bildad-outcome-list .ok svg { width: 18px; height: 18px; }
.hizmet-v23 .bildad-outcome-list strong { font-size: 17px; }

/* ----- Fit pill — turuncu gradient hover ----- */
.hizmet-v23 .bildad-fit-pill {
  padding: 14px 22px 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hizmet-v23 .bildad-fit-pill::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.hizmet-v23 .bildad-fit-pill > * { position: relative; z-index: 1; }
.hizmet-v23 .bildad-fit-pill:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -10px rgba(255, 122, 69, 0.5);
}
.hizmet-v23 .bildad-fit-pill:hover::before { opacity: 1; }
.hizmet-v23 .bildad-fit-pill:hover .icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ----- Why item ----- */
.hizmet-v23 .bildad-why-item {
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid var(--bildad-border);
  background: #fff;
}
.hizmet-v23 .bildad-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px -18px rgba(255, 122, 69, 0.28);
  border-color: rgba(255, 122, 69, 0.3);
}
.hizmet-v23 .bildad-why-item__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 122, 69, 0.35);
}

/* ----- FAQ ----- */
.hizmet-v23 .bildad-faq {
  background: linear-gradient(180deg, #fff, rgba(255, 122, 69, 0.02));
  border-radius: 22px;
  box-shadow: 0 24px 50px -25px rgba(11, 16, 32, 0.15);
}
.hizmet-v23 .bildad-faq summary {
  padding: 26px 30px;
  font-size: 17.5px;
}
.hizmet-v23 .bildad-faq summary:hover {
  background: linear-gradient(90deg, rgba(255, 122, 69, 0.05), transparent);
}
.hizmet-v23 .bildad-faq details[open] summary {
  background: linear-gradient(90deg, rgba(255, 122, 69, 0.08), transparent);
  color: var(--bildad-accent);
}
.hizmet-v23 .bildad-faq summary::after {
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  width: 32px; height: 32px;
  box-shadow: 0 8px 18px rgba(255, 122, 69, 0.4);
}

/* ----- Final CTA — daha sıcak ----- */
.hizmet-v23 .bildad-cta-final {
  padding: 90px 60px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 122, 69, 0.5), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(139, 108, 255, 0.25), transparent 50%),
    linear-gradient(135deg, #0b1020 0%, #2a2960 100%);
}
.hizmet-v23 .bildad-cta-final h2 { font-size: clamp(34px, 4.5vw, 56px); }

/* ----- STICKY ACTION BUTTON (sağ alt, her zaman görünür) ----- */
.bildad-sticky-action {
  position: fixed;
  bottom: 110px; right: 24px;
  z-index: 9997;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 40px -10px rgba(87, 81, 225, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: bildad-sticky-pop 0.5s 0.8s both;
}
.bildad-sticky-action::before {
  content: "";
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bildad-sticky-action svg {
  position: absolute;
  left: 28px;
  width: 16px; height: 16px;
  color: #fff;
}
.bildad-sticky-action:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -10px rgba(87, 81, 225, 0.7);
}
@keyframes bildad-sticky-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hide sticky action by default, show only on v23 pages */
.bildad-sticky-action { display: none; }
body:has(main.hizmet-v23) .bildad-sticky-action { display: inline-flex; }

@media (max-width: 991px) {
  .hizmet-v23 .bildad-section { padding: 50px 0 60px; }
  .hizmet-v23 .bildad-section::before { display: none; }
  .hizmet-v23 .bildad-cta-final { padding: 56px 28px; }
  .bildad-sticky-action { bottom: 90px; right: 16px; padding: 12px 18px 12px 16px; font-size: 13px; }
}

/* ==========================================================================
   HİZMET DETAY v22 — Daha akıcı, çekici görünüm (CSS-only iyileştirme)
   .hizmet-v22 wrapper class'ı altındaki tüm sayfaya uygulanır
   ========================================================================== */

/* ----- Section akışı: daha sıkı tempo, dekoratif shape ekler ----- */
.hizmet-v22 .bildad-section { padding: 60px 0 70px; position: relative; overflow: hidden; }
.hizmet-v22 .bildad-section > .container { position: relative; z-index: 1; }

/* Floating decorative blobs (her section'a farklı pozisyon) */
.hizmet-v22 .bildad-section::before {
  content: "";
  position: absolute;
  top: 15%; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 81, 225, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hizmet-v22 .bildad-section:nth-child(even)::before {
  right: auto; left: -80px;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.06), transparent 70%);
}

/* Section header — sol-hizalı asimetrik (sadece bazı section'lar için) */
.hizmet-v22 .bildad-section__head {
  text-align: center;
  margin-bottom: 50px;
}

/* ----- Hero — daha zengin ----- */
.hizmet-v22 .bildad-hero { padding-bottom: 100px; }
.hizmet-v22 .bildad-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
  z-index: 0;
}
.hizmet-v22 .bildad-hero__title {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
}

/* ----- Pain cards — daha vurgulu ----- */
.hizmet-v22 .bildad-pain {
  border-left-width: 5px;
  background: linear-gradient(135deg, #fff 60%, rgba(239, 68, 68, 0.025));
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}
.hizmet-v22 .bildad-pain:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 44px -18px rgba(239, 68, 68, 0.25);
  border-left-color: #dc2626;
}
.hizmet-v22 .bildad-pain__icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(255, 122, 69, 0.15));
  width: 38px; height: 38px;
}
.hizmet-v22 .bildad-pain__icon svg { width: 20px; height: 20px; }
.hizmet-v22 .bildad-pain__body h4 { font-size: 18px; }

/* ----- Etkileri — DRAMATIK dark panel ----- */
.hizmet-v22 .bildad-section .row.g-3:has(.bildad-impact) {
  background:
    radial-gradient(circle at 90% 10%, rgba(239, 68, 68, 0.18), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(255, 122, 69, 0.12), transparent 60%),
    linear-gradient(135deg, #0b1020 0%, #1a1f3d 100%);
  border-radius: 26px;
  padding: 40px 30px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.hizmet-v22 .bildad-section .row.g-3:has(.bildad-impact)::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
  pointer-events: none;
}
.hizmet-v22 .bildad-impact {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 28px 20px;
}
.hizmet-v22 .bildad-impact__num {
  font-size: 44px;
  background: linear-gradient(135deg, #fff 0%, #fca5a5 70%, #fcd34d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hizmet-v22 .bildad-impact__label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

/* ----- Approach (çözüm) — connected feel ----- */
.hizmet-v22 .bildad-approach {
  border-radius: 22px;
  padding: 34px 30px 30px;
  position: relative;
  background: #fff;
  border: 1px solid var(--bildad-border);
}
.hizmet-v22 .bildad-approach::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bildad-primary), var(--bildad-primary-2), var(--bildad-accent));
  border-radius: 22px 22px 0 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hizmet-v22 .bildad-approach:hover::before { opacity: 1; }
.hizmet-v22 .bildad-approach__icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(87, 81, 225, 0.42);
}
.hizmet-v22 .bildad-approach__icon svg { width: 28px; height: 28px; }
.hizmet-v22 .bildad-approach__title { font-size: 21px; }

/* ----- Outcome list — daha modern ----- */
.hizmet-v22 .bildad-outcome-list {
  background: linear-gradient(135deg, #fff, rgba(87, 81, 225, 0.02));
  box-shadow: 0 20px 50px -25px rgba(11, 16, 32, 0.15);
}
.hizmet-v22 .bildad-outcome-list li {
  padding: 22px 28px;
  transition: background 0.25s ease;
}
.hizmet-v22 .bildad-outcome-list li:hover {
  background: linear-gradient(90deg, rgba(87, 81, 225, 0.04), transparent);
}
.hizmet-v22 .bildad-outcome-list .ok {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #fff;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.35);
}
.hizmet-v22 .bildad-outcome-list .ok svg { width: 18px; height: 18px; }
.hizmet-v22 .bildad-outcome-list strong { font-size: 17px; }
.hizmet-v22 .bildad-outcome-list span { font-size: 15px; }

/* ----- Fit pills — gradient hover ----- */
.hizmet-v22 .bildad-fit-pill {
  padding: 14px 22px 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hizmet-v22 .bildad-fit-pill::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.hizmet-v22 .bildad-fit-pill > * { position: relative; z-index: 1; }
.hizmet-v22 .bildad-fit-pill:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -10px rgba(87, 81, 225, 0.5);
}
.hizmet-v22 .bildad-fit-pill:hover::before { opacity: 1; }
.hizmet-v22 .bildad-fit-pill:hover .icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ----- Why item (Neden Bildad) — daha sofistike ----- */
.hizmet-v22 .bildad-why-item {
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hizmet-v22 .bildad-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px -18px rgba(87, 81, 225, 0.3);
  border-color: rgba(87, 81, 225, 0.3);
}
.hizmet-v22 .bildad-why-item__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  box-shadow: 0 10px 22px rgba(87, 81, 225, 0.32);
}
.hizmet-v22 .bildad-why-item h5 { font-size: 17px; }

/* ----- FAQ — daha şık ve davetkar ----- */
.hizmet-v22 .bildad-faq {
  background: linear-gradient(180deg, #fff, rgba(87, 81, 225, 0.015));
  border-radius: 22px;
  box-shadow: 0 24px 50px -25px rgba(11, 16, 32, 0.15);
}
.hizmet-v22 .bildad-faq summary {
  padding: 26px 30px;
  font-size: 17.5px;
}
.hizmet-v22 .bildad-faq summary:hover {
  background: linear-gradient(90deg, rgba(87, 81, 225, 0.06), transparent);
}
.hizmet-v22 .bildad-faq details[open] summary {
  background: linear-gradient(90deg, rgba(87, 81, 225, 0.08), transparent);
  color: var(--bildad-primary);
}
.hizmet-v22 .bildad-faq summary::after {
  width: 32px; height: 32px;
  box-shadow: 0 8px 18px rgba(87, 81, 225, 0.35);
}

/* ----- Final CTA — daha etkileyici ----- */
.hizmet-v22 .bildad-cta-final {
  padding: 90px 60px;
  border-radius: 32px;
}
.hizmet-v22 .bildad-cta-final h2 { font-size: clamp(34px, 4.5vw, 56px); }

@media (max-width: 991px) {
  .hizmet-v22 .bildad-section { padding: 50px 0 60px; }
  .hizmet-v22 .bildad-section::before { display: none; }
  .hizmet-v22 .bildad-cta-final { padding: 56px 28px; }
}

/* ==========================================================================
   ÇÖZÜMLER (Sektörel sayfası) — Sektör bloğu bileşenleri v37
   ========================================================================== */

.bildad-sector-block {
  position: relative;
  padding: 70px 0;
  border-bottom: 1px dashed rgba(11, 16, 32, 0.08);
}
.bildad-sector-block:last-of-type { border-bottom: 0; }

.bildad-sector-block__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px;
}
.bildad-sector-block__num {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(87, 81, 225, 0.35);
}
.bildad-sector-block__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--bildad-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bildad-sector-block__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--bildad-ink);
  line-height: 1.1;
  margin: 0;
}

/* 3 kart: Problem · Etki · Çözüm */
.bildad-sector-card {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 18px;
  padding: 24px 26px 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.bildad-sector-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.bildad-sector-card__label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.bildad-sector-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bildad-sector-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bildad-ink-2);
  padding: 9px 0;
  border-bottom: 1px dashed rgba(11, 16, 32, 0.06);
}
.bildad-sector-card ul li:last-child { border-bottom: 0; }
.bildad-sector-card ul li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 8px;
}

/* Problem — kırmızı */
.bildad-sector-card--problem::before { background: linear-gradient(90deg, #ef4444, #f97316); }
.bildad-sector-card--problem .bildad-sector-card__label {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.bildad-sector-card--problem ul li::before { background: #ef4444; }

/* Etki — turuncu */
.bildad-sector-card--impact::before { background: linear-gradient(90deg, #f97316, #fbbf24); }
.bildad-sector-card--impact .bildad-sector-card__label {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}
.bildad-sector-card--impact ul li::before { background: #f97316; }

/* Çözüm — mor (yeşilden vazgeçtim — Bildad paletinde mor kalsın) */
.bildad-sector-card--solution::before { background: linear-gradient(90deg, var(--bildad-primary), var(--bildad-primary-2)); }
.bildad-sector-card--solution .bildad-sector-card__label {
  background: rgba(87, 81, 225, 0.1);
  color: var(--bildad-primary);
}
.bildad-sector-card--solution ul li::before { background: var(--bildad-primary); }

/* Bildad yaklaşımı satırı */
.bildad-sector-block__approach {
  margin-top: 26px;
  background:
    radial-gradient(800px 200px at 100% 50%, rgba(139, 108, 255, 0.2), transparent 60%),
    linear-gradient(135deg, #0b1020, #1a1f3d);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}
.bildad-sector-block__approach-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  color: #0b1020;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 122, 69, 0.4);
}
.bildad-sector-block__approach-icon svg { width: 22px; height: 22px; }
.bildad-sector-block__approach-text {
  font-size: 16px;
  line-height: 1.55;
}
.bildad-sector-block__approach-text strong {
  color: #fcd34d;
  font-weight: 800;
}

@media (max-width: 991px) {
  .bildad-sector-block { padding: 50px 0; }
  .bildad-sector-block__head { gap: 16px; margin-bottom: 26px; }
  .bildad-sector-block__num { width: 56px; height: 56px; font-size: 22px; }
  .bildad-sector-block__approach { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   İÇGÖRÜLER (BLOG) — Listeleme ve detay bileşenleri v31
   ========================================================================== */

/* ----- Blog liste kartı (öne çıkan/normal) ----- */
.bildad-post {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.bildad-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -24px rgba(11, 16, 32, 0.22);
  border-color: rgba(87, 81, 225, 0.35);
  color: inherit;
}
.bildad-post__cover {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bildad-soft-2), #fff);
}
.bildad-post__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bildad-post:hover .bildad-post__cover img { transform: scale(1.05); }
.bildad-post__cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 16, 32, 0.15));
  pointer-events: none;
}
.bildad-post__cat {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bildad-primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.bildad-post__body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bildad-post__meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12.5px;
  color: var(--bildad-muted);
  margin-bottom: 14px;
}
.bildad-post__meta span { display: inline-flex; align-items: center; gap: 6px; }
.bildad-post__meta svg { width: 13px; height: 13px; color: var(--bildad-primary); }

.bildad-post__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--bildad-ink);
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
.bildad-post__excerpt {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--bildad-ink-2);
  margin: 0 0 22px;
  flex: 1;
}
.bildad-post__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bildad-primary);
  align-self: flex-start;
  transition: gap 0.25s ease;
}
.bildad-post:hover .bildad-post__cta { gap: 12px; }
.bildad-post__cta svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.bildad-post:hover .bildad-post__cta svg { transform: translateX(4px); }

/* ----- Featured (büyük) varyant — yatay layout ----- */
.bildad-post--featured { flex-direction: row; }
.bildad-post--featured .bildad-post__cover {
  flex: 0 0 50%;
  height: auto;
  min-height: 400px;
}
.bildad-post--featured .bildad-post__body {
  flex: 1;
  padding: 44px 48px;
  justify-content: center;
}
.bildad-post--featured .bildad-post__title {
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.bildad-post--featured .bildad-post__excerpt { font-size: 17px; }
@media (max-width: 991px) {
  .bildad-post--featured { flex-direction: column; }
  .bildad-post--featured .bildad-post__cover { min-height: 280px; flex: none; }
  .bildad-post--featured .bildad-post__body { padding: 28px 24px; }
  .bildad-post--featured .bildad-post__title { font-size: 26px; }
}

/* ----- DETAY sayfası ----- */
.bildad-article-hero {
  position: relative;
  padding: 70px 0 60px;
  background:
    radial-gradient(1000px 500px at 85% 0%, rgba(139, 108, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #fff 0%, #f7f7ff 100%);
}
.bildad-article-hero__cat {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.12), rgba(255, 122, 69, 0.12));
  border: 1px solid rgba(87, 81, 225, 0.22);
  color: var(--bildad-primary);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.bildad-article-hero__title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: var(--bildad-ink);
  letter-spacing: -1.3px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.bildad-article-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  font-size: 14px;
  color: var(--bildad-muted);
  margin-bottom: 36px;
}
.bildad-article-hero__meta span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.bildad-article-hero__meta svg { width: 16px; height: 16px; color: var(--bildad-primary); }
.bildad-article-hero__cover {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(11, 16, 32, 0.25);
  margin-top: 20px;
}
.bildad-article-hero__cover img { width: 100%; height: auto; display: block; }

/* Article body typography */
.bildad-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.bildad-article-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--bildad-ink);
  margin: 0 0 22px;
}
.bildad-article-body p strong { color: var(--bildad-primary); font-weight: 800; }
.bildad-article-body h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--bildad-ink);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin: 50px 0 20px;
  scroll-margin-top: 100px;
}
.bildad-article-body h2:first-of-type { margin-top: 0; }
.bildad-article-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--bildad-ink);
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin: 36px 0 14px;
}
.bildad-article-body ul, .bildad-article-body ol {
  margin: 0 0 26px;
  padding-left: 0;
  list-style: none;
}
.bildad-article-body ul li, .bildad-article-body ol li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bildad-ink-2);
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px dashed rgba(11, 16, 32, 0.06);
}
.bildad-article-body ul li:last-child, .bildad-article-body ol li:last-child { border-bottom: 0; }
.bildad-article-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.18), rgba(139, 108, 255, 0.18));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235751e1' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.bildad-article-body ol { counter-reset: bildad-ol; }
.bildad-article-body ol li { counter-increment: bildad-ol; }
.bildad-article-body ol li::before {
  content: counter(bildad-ol);
  position: absolute;
  left: 0; top: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bildad-article-body strong { color: var(--bildad-ink); font-weight: 800; }
.bildad-article-body hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 81, 225, 0.25), transparent);
  margin: 50px auto;
  width: 70%;
}
.bildad-article-body blockquote {
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.04), rgba(255, 122, 69, 0.04));
  border-left: 4px solid var(--bildad-primary);
  border-radius: 0 14px 14px 0;
  padding: 22px 28px;
  margin: 30px 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--bildad-ink);
  font-style: italic;
}

/* Section in article (numbered katmanlar) */
.bildad-article-body .article-section {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 16px;
  padding: 26px 28px;
  margin: 26px 0;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.bildad-article-body .article-section .num {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(87, 81, 225, 0.32);
}
.bildad-article-body .article-section h3 { margin-top: 0; }

@media (max-width: 575px) {
  .bildad-article-body p { font-size: 16px; }
  .bildad-article-body h2 { font-size: 24px; }
  .bildad-article-body h3 { font-size: 19px; }
  .bildad-article-body ul li, .bildad-article-body ol li { font-size: 15px; }
}

/* ==========================================================================
   HİZMET DETAY SAYFALARI — Ortak bileşenler v21
   ========================================================================== */

/* Pain (problem) cards — açık zemin */
.bildad-pain {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-left: 4px solid #ef4444;
  border-radius: 14px;
  padding: 22px 24px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bildad-pain:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(11, 16, 32, 0.16);
}
.bildad-pain__icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bildad-pain__icon svg { width: 18px; height: 18px; }
.bildad-pain__body h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--bildad-ink);
  margin: 0 0 6px;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.bildad-pain__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--bildad-ink-2);
  margin: 0;
}

/* Impact (etkileri) cards */
.bildad-impact {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(255, 122, 69, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease;
}
.bildad-impact:hover { transform: translateY(-4px); }
.bildad-impact__num {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 10px;
}
.bildad-impact__label {
  font-size: 14px;
  color: var(--bildad-ink-2);
  font-weight: 600;
  line-height: 1.5;
}

/* Outcome list (beklenen kazanımlar) */
.bildad-outcome-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 18px;
  overflow: hidden;
}
.bildad-outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--bildad-border);
}
.bildad-outcome-list li:last-child { border-bottom: 0; }
.bildad-outcome-list .ok {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.08));
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.bildad-outcome-list .ok svg { width: 16px; height: 16px; }
.bildad-outcome-list strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--bildad-ink);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.bildad-outcome-list span {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bildad-ink-2);
}

/* FAQ accordion (native details) */
.bildad-faq {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 18px;
  overflow: hidden;
}
.bildad-faq details {
  border-bottom: 1px solid var(--bildad-border);
}
.bildad-faq details:last-child { border-bottom: 0; }
.bildad-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--bildad-ink);
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  user-select: none;
  transition: background 0.2s ease;
}
.bildad-faq summary::-webkit-details-marker { display: none; }
.bildad-faq summary:hover { background: rgba(87, 81, 225, 0.04); }
.bildad-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 2px;
  transition: transform 0.3s ease;
}
.bildad-faq details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.bildad-faq details > div {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--bildad-ink-2);
}

/* "Kimler için uygun" pills */
.bildad-fit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 999px;
  padding: 12px 20px 12px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bildad-ink);
  transition: all 0.25s ease;
  text-decoration: none;
}
.bildad-fit-pill:hover {
  border-color: var(--bildad-primary);
  color: var(--bildad-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(87, 81, 225, 0.3);
}
.bildad-fit-pill .icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.12), rgba(139, 108, 255, 0.12));
  color: var(--bildad-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bildad-fit-pill .icon svg { width: 14px; height: 14px; }

/* Çözüm cards (high-level approach) */
.bildad-approach {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bildad-approach::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top left, rgba(87, 81, 225, 0.08), transparent 70%);
}
.bildad-approach:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(11, 16, 32, 0.18);
}
.bildad-approach__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(87, 81, 225, 0.32);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.bildad-approach__icon svg { width: 24px; height: 24px; }
.bildad-approach__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--bildad-ink);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}
.bildad-approach__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--bildad-ink-2);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HİZMETLER v14 — Section başlığı büyütüldü + vurgulu eyebrow
   ========================================================================== */
.bildad-section__head--hizmetler .bildad-section__eyebrow {
  font-size: 13px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.12), rgba(255, 122, 69, 0.12));
  border: 1px solid rgba(87, 81, 225, 0.22);
  color: var(--bildad-primary);
  margin-bottom: 22px;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bildad-section__head--hizmetler .bildad-section__eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bildad-accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 69, 0.25);
}
.bildad-section__head--hizmetler .bildad-section__title {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 800;
  letter-spacing: -1.3px;
  line-height: 1.08;
  margin-bottom: 22px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.bildad-section__head--hizmetler .bildad-section__sub {
  font-size: 19px;
  line-height: 1.6;
  max-width: 780px;
}

@media (max-width: 575px) {
  .bildad-section__head--hizmetler .bildad-section__title { font-size: 32px; }
  .bildad-section__head--hizmetler .bildad-section__sub { font-size: 16px; }
}

/* ==========================================================================
   HİZMETLER v12 — Kompakt çekici kart (kısa, hover'da gradient border parlar)
   ========================================================================== */
.bildad-service-compact {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px 22px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--bildad-border);
}
/* Animated gradient halo on hover via pseudo */
.bildad-service-compact::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--bildad-primary) 0%, var(--bildad-primary-2) 50%, var(--bildad-accent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.bildad-service-compact:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px -22px rgba(87, 81, 225, 0.32);
  color: inherit;
}
.bildad-service-compact:hover::after { opacity: 1; }

.bildad-service-compact__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.bildad-service-compact__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(87, 81, 225, 0.32);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bildad-service-compact:hover .bildad-service-compact__icon {
  box-shadow: 0 12px 26px rgba(87, 81, 225, 0.5), 0 0 28px rgba(139, 108, 255, 0.45);
  transform: scale(1.04) rotate(-2deg);
}
.bildad-service-compact__icon svg { width: 24px; height: 24px; }

.bildad-service-compact__title {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--bildad-ink);
  letter-spacing: -0.1px;
  line-height: 1.3;
  margin: 0;
  flex: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bildad-service-compact__tag {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bildad-ink-2);
  margin: 0 0 14px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bildad-service-compact__metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.08), rgba(255, 122, 69, 0.1));
  border: 1px solid rgba(87, 81, 225, 0.18);
  padding: 5px 12px 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bildad-primary);
  margin-bottom: 16px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.bildad-service-compact__metric svg {
  width: 13px; height: 13px;
  color: var(--bildad-accent);
}

.bildad-service-compact__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--bildad-primary);
  align-self: flex-start;
  transition: gap 0.25s ease, color 0.25s ease;
  position: relative;
  z-index: 1;
}
.bildad-service-compact__cta svg {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
}
.bildad-service-compact:hover .bildad-service-compact__cta {
  color: var(--bildad-primary-2);
  gap: 10px;
}
.bildad-service-compact:hover .bildad-service-compact__cta svg {
  transform: translateX(4px);
}

/* === Featured (Komple Sistem) — koyu varyant === */
.bildad-service-compact--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 69, 0.22), transparent 60%),
    linear-gradient(135deg, #0b1020 0%, #1a1f3d 100%);
  color: #fff;
  border: 1px solid rgba(255, 122, 69, 0.25);
}
.bildad-service-compact--featured::after {
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  opacity: 0.6;
}
.bildad-service-compact--featured:hover::after { opacity: 1; }
.bildad-service-compact--featured .bildad-service-compact__icon {
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  box-shadow: 0 10px 22px rgba(255, 122, 69, 0.45);
}
.bildad-service-compact--featured .bildad-service-compact__title { color: #fff; }
.bildad-service-compact--featured .bildad-service-compact__tag { color: rgba(255, 255, 255, 0.78); }
.bildad-service-compact--featured .bildad-service-compact__metric {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fcd34d;
}
.bildad-service-compact--featured .bildad-service-compact__metric svg { color: #fcd34d; }
.bildad-service-compact--featured .bildad-service-compact__cta { color: #fcd34d; }
.bildad-service-compact--featured:hover .bildad-service-compact__cta { color: #fff; }

/* "EN ÇOK TERCİH" badge for featured */
.bildad-service-compact__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  color: #0b1020;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 575px) {
  .bildad-service-compact { padding: 20px 18px 20px; }
  .bildad-service-compact__icon { width: 44px; height: 44px; }
}

/* ==========================================================================
   HİZMETLER v11 — Premium SaaS pricing-card stil (özellik listesi + sonuç + CTA)
   ========================================================================== */
.bildad-service-card {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 24px;
  padding: 34px 30px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bildad-service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bildad-primary), var(--bildad-primary-2));
  opacity: 0.55;
  transition: opacity 0.3s ease, height 0.3s ease;
}
.bildad-service-card::after {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(87, 81, 225, 0.08), transparent 70%);
  pointer-events: none;
}
.bildad-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 60px -24px rgba(11, 16, 32, 0.22);
  border-color: rgba(87, 81, 225, 0.42);
}
.bildad-service-card:hover::before { opacity: 1; height: 5px; }

.bildad-service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(255, 122, 69, 0.4);
  z-index: 3;
}

.bildad-service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(87, 81, 225, 0.32);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.bildad-service-card__icon svg { width: 30px; height: 30px; }

.bildad-service-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--bildad-ink);
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.bildad-service-card__tag {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bildad-muted);
  margin: 0 0 22px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.bildad-service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.bildad-service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--bildad-ink-2);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(11, 16, 32, 0.07);
}
.bildad-service-card__features li:last-child { border-bottom: 0; }
.bildad-service-card__features li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.15), rgba(139, 108, 255, 0.15));
  color: var(--bildad-primary);
  border-radius: 50%;
  padding: 3px;
  margin-top: 1px;
}

.bildad-service-card__outcome {
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.06), rgba(255, 122, 69, 0.06));
  border: 1px solid rgba(87, 81, 225, 0.14);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.bildad-service-card__outcome-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--bildad-muted);
  font-weight: 600;
}
.bildad-service-card__outcome-row + .bildad-service-card__outcome-row {
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px dashed rgba(11, 16, 32, 0.08);
}
.bildad-service-card__outcome-row strong {
  color: var(--bildad-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.bildad-service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bildad-ink);
  color: #fff;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}
.bildad-service-card__cta svg { transition: transform 0.25s ease; }
.bildad-service-card__cta:hover {
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(87, 81, 225, 0.4);
}
.bildad-service-card__cta:hover svg { transform: translateX(3px); }

/* === Featured (Komple Sistem Paketi) — koyu varyant === */
.bildad-service-card--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 108, 255, 0.3), transparent 60%),
    linear-gradient(135deg, #0b1020 0%, #1a1f3d 60%, #2a2960 130%);
  color: #fff;
  border: 1px solid rgba(139, 108, 255, 0.3);
}
.bildad-service-card--featured::before {
  background: linear-gradient(90deg, #ff7a45, #fbbf24);
  opacity: 1;
  height: 5px;
}
.bildad-service-card--featured::after {
  background: radial-gradient(circle, rgba(255, 122, 69, 0.18), transparent 70%);
}
.bildad-service-card--featured .bildad-service-card__icon {
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  box-shadow: 0 12px 24px rgba(255, 122, 69, 0.4);
}
.bildad-service-card--featured .bildad-service-card__title { color: #fff; }
.bildad-service-card--featured .bildad-service-card__tag { color: rgba(255, 255, 255, 0.72); }
.bildad-service-card--featured .bildad-service-card__features li {
  color: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.bildad-service-card--featured .bildad-service-card__features li svg {
  background: rgba(255, 255, 255, 0.1);
  color: #fcd34d;
}
.bildad-service-card--featured .bildad-service-card__outcome {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.bildad-service-card--featured .bildad-service-card__outcome-row { color: rgba(255, 255, 255, 0.7); }
.bildad-service-card--featured .bildad-service-card__outcome-row + .bildad-service-card__outcome-row { border-top-color: rgba(255, 255, 255, 0.1); }
.bildad-service-card--featured .bildad-service-card__outcome-row strong { color: #fcd34d; }
.bildad-service-card--featured .bildad-service-card__cta {
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  color: #0b1020;
  font-weight: 800;
}
.bildad-service-card--featured .bildad-service-card__cta:hover {
  background: #fff;
  color: var(--bildad-primary);
  box-shadow: 0 14px 30px rgba(255, 122, 69, 0.45);
}

@media (max-width: 575px) {
  .bildad-service-card { padding: 28px 22px 22px; }
  .bildad-service-card__icon { width: 56px; height: 56px; }
  .bildad-service-card__icon svg { width: 26px; height: 26px; }
  .bildad-service-card__title { font-size: 18px; }
}

/* ==========================================================================
   SÜREÇ ZAMAN ÇİZGİSİ v09 — Yatay flow timeline (number nodes + connecting track + akan ışık)
   ========================================================================== */
.bildad-process {
  position: relative;
  padding: 30px 10px 0;
}

/* Horizontal connecting track */
.bildad-process__track {
  position: absolute;
  top: 64px; /* circle center */
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(87, 81, 225, 0.18) 0%,
    var(--bildad-primary) 30%,
    var(--bildad-primary-2) 70%,
    rgba(87, 81, 225, 0.18) 100%);
  border-radius: 3px;
  z-index: 0;
}
/* Animated flow dot */
.bildad-process__track::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a45, #fbbf24);
  box-shadow: 0 0 18px rgba(255, 122, 69, 0.65);
  animation: bildad-process-flow 6s linear infinite;
}
@keyframes bildad-process-flow {
  0%   { left: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.bildad-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.bildad-process__step {
  text-align: center;
  position: relative;
}

/* Tiny label above the circle */
.bildad-process__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bildad-muted);
  white-space: nowrap;
}

/* Big number circle (on the track) */
.bildad-process__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--bildad-primary);
  font-size: 34px;
  font-weight: 800;
  color: var(--bildad-primary);
  letter-spacing: -2px;
  margin: 22px 0 26px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 26px rgba(87, 81, 225, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.bildad-process__node::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(87, 81, 225, 0.25);
  animation: bildad-rotate 18s linear infinite;
}
@keyframes bildad-rotate { to { transform: rotate(360deg); } }

.bildad-process__step:hover .bildad-process__node {
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 18px 38px rgba(87, 81, 225, 0.42);
  animation-play-state: paused;
}

/* v10 — Akan turuncu noktayla senkron node-pulse: dot çembere geldiğinde turuncu yanar, geçince söner */
.bildad-process__node {
  animation: bildad-node-pulse 6s linear infinite;
}
.bildad-process__steps > :nth-child(1) .bildad-process__node { animation-delay: 0s; }
.bildad-process__steps > :nth-child(2) .bildad-process__node { animation-delay: -4s; }
.bildad-process__steps > :nth-child(3) .bildad-process__node { animation-delay: -2s; }
.bildad-process__steps > :nth-child(4) .bildad-process__node { animation-delay: -0.2s; }

@keyframes bildad-node-pulse {
  0% {
    background: linear-gradient(135deg, #ff7a45 0%, #fbbf24 100%);
    color: #fff;
    border-color: #ff7a45;
    box-shadow:
      0 0 0 10px rgba(255, 122, 69, 0.28),
      0 0 30px rgba(255, 122, 69, 0.65),
      0 10px 26px rgba(255, 122, 69, 0.4);
  }
  3% {
    background: linear-gradient(135deg, #ff7a45 0%, #fbbf24 100%);
    color: #fff;
    border-color: #ff7a45;
    box-shadow:
      0 0 0 14px rgba(255, 122, 69, 0.15),
      0 0 40px rgba(255, 122, 69, 0.45),
      0 10px 26px rgba(255, 122, 69, 0.3);
  }
  10% {
    background: #fff;
    color: var(--bildad-primary);
    border-color: var(--bildad-primary);
    box-shadow: 0 10px 26px rgba(87, 81, 225, 0.18);
  }
  100% {
    background: #fff;
    color: var(--bildad-primary);
    border-color: var(--bildad-primary);
    box-shadow: 0 10px 26px rgba(87, 81, 225, 0.18);
  }
}

/* Step content card */
.bildad-process__card {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 18px;
  padding: 24px 22px;
  text-align: left;
  position: relative;
  transition: all 0.25s ease;
}
.bildad-process__step:hover .bildad-process__card {
  border-color: rgba(87, 81, 225, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11, 16, 32, 0.15);
}

.bildad-process__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--bildad-ink);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.bildad-process__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bildad-ink-2);
  margin: 0 0 16px;
}

.bildad-process__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--bildad-primary);
  background: rgba(87, 81, 225, 0.08);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.bildad-process__duration svg { width: 12px; height: 12px; }

/* Mini icon shown inside the card (top-right) for visual richness */
.bildad-process__card-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(87, 81, 225, 0.08);
  color: var(--bildad-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bildad-process__card-icon svg { width: 15px; height: 15px; }

/* ===== Responsive: vertical timeline on mobile ===== */
@media (max-width: 991px) {
  .bildad-process { padding: 0 0 0 0; }
  .bildad-process__track {
    top: 0; bottom: 0;
    left: 42px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg,
      rgba(87, 81, 225, 0.18) 0%,
      var(--bildad-primary) 30%,
      var(--bildad-primary-2) 70%,
      rgba(87, 81, 225, 0.18) 100%);
  }
  .bildad-process__track::after {
    top: 0; left: -5px;
    animation: bildad-process-flow-v 6s linear infinite;
  }
  @keyframes bildad-process-flow-v {
    0%   { top: 0%;   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
  .bildad-process__steps { grid-template-columns: 1fr; gap: 32px; }
  .bildad-process__step {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 20px;
    text-align: left;
    align-items: start;
  }
  .bildad-process__label {
    position: static;
    transform: none;
    text-align: center;
    display: block;
    margin-bottom: 6px;
  }
  .bildad-process__node { margin: 0; }
}

@media (max-width: 575px) {
  .bildad-process__step { grid-template-columns: 64px 1fr; gap: 14px; }
  .bildad-process__node { width: 64px; height: 64px; font-size: 24px; }
  .bildad-process__track { left: 31px; }
  .bildad-process__card { padding: 20px 18px; }
  .bildad-process__title { font-size: 17px; }
}

/* ==========================================================================
   ÇÖZÜM KARTLARI v08 — Icon-forward kart (büyük mor ikon + accent badge + mini ikonlar)
   ========================================================================== */
.bildad-solution-iconcard {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 22px;
  padding: 34px 30px 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bildad-solution-iconcard::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at top right, rgba(87, 81, 225, 0.08), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bildad-solution-iconcard::after {
  content: "";
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.06), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bildad-solution-iconcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -22px rgba(11, 16, 32, 0.22);
  border-color: rgba(87, 81, 225, 0.4);
}
.bildad-solution-iconcard:hover::before { opacity: 1.5; }

/* Big main icon */
.bildad-solution-iconcard__main {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--bildad-primary) 0%, var(--bildad-primary-2) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(87, 81, 225, 0.38);
  position: relative;
  z-index: 1;
}
.bildad-solution-iconcard__main svg { width: 34px; height: 34px; }

/* Small accent badge (top-right of main icon) */
.bildad-solution-iconcard__badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a45 0%, #fbbf24 100%);
  color: #fff;
  border: 3px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 122, 69, 0.4);
  z-index: 2;
}
.bildad-solution-iconcard__badge svg { width: 14px; height: 14px; }

/* Top-icon wrapper to anchor badge */
.bildad-solution-iconcard__head {
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}

.bildad-solution-iconcard__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.25;
  color: var(--bildad-ink);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.bildad-solution-iconcard__text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--bildad-ink-2);
  margin: 0 0 22px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 1;
}

/* Mini icon row at bottom */
.bildad-solution-iconcard__mini {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.bildad-solution-iconcard__mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px 7px 8px;
  background: rgba(87, 81, 225, 0.08);
  border: 1px solid rgba(87, 81, 225, 0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bildad-primary);
  letter-spacing: 0.2px;
}
.bildad-solution-iconcard__mini-pill svg {
  width: 13px; height: 13px;
}

@media (max-width: 575px) {
  .bildad-solution-iconcard { padding: 28px 24px 24px; }
  .bildad-solution-iconcard__main { width: 64px; height: 64px; border-radius: 18px; }
  .bildad-solution-iconcard__main svg { width: 28px; height: 28px; }
  .bildad-solution-iconcard__title { font-size: 20px; }
  .bildad-solution-iconcard__text { font-size: 15px; }
}

/* ==========================================================================
   ÇÖZÜM KARTLARI v07 — Split layout (sol koyu numara / sağ beyaz içerik)
   ========================================================================== */
.bildad-solution-split {
  display: flex;
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.bildad-solution-split:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(11, 16, 32, 0.25);
  border-color: rgba(87, 81, 225, 0.35);
}

.bildad-solution-split__left {
  flex: 0 0 38%;
  background:
    radial-gradient(circle at 80% 0%, rgba(139, 108, 255, 0.32), transparent 60%),
    linear-gradient(135deg, #0b1020 0%, #1a1f3d 65%, #2a2960 130%);
  color: #fff;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bildad-solution-split__left::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, transparent);
  pointer-events: none;
}

.bildad-solution-split__label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.bildad-solution-split__label::before {
  content: "";
  width: 18px; height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.bildad-solution-split__num {
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #fff 30%, #b6b4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative; z-index: 1;
  margin: 16px 0 24px;
}

.bildad-solution-split__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: #fff;
  position: relative; z-index: 1;
  align-self: flex-start;
}

.bildad-solution-split__right {
  flex: 1;
  padding: 34px 32px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bildad-solution-split__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.25;
  color: var(--bildad-ink);
  margin-bottom: 14px;
}
.bildad-solution-split__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bildad-ink-2);
  margin: 0;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
  .bildad-solution-split { flex-direction: column; }
  .bildad-solution-split__left {
    flex: none;
    padding: 24px 28px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .bildad-solution-split__num { font-size: 42px; margin: 0; }
  .bildad-solution-split__icon { margin-left: auto; }
  .bildad-solution-split__right { padding: 26px 28px 28px; }
  .bildad-solution-split__title { font-size: 20px; }
  .bildad-solution-split__text { font-size: 15px; }
}

/* ==========================================================================
   ÇÖZÜM KARTLARI v06 — Okunurluk odaklı varyant
   .bildad-card--solution modifier'ı .bildad-card üzerinde
   ========================================================================== */
.bildad-card--solution {
  padding: 36px 30px 32px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.bildad-card--solution::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bildad-primary), var(--bildad-primary-2));
  opacity: 0.6;
  transition: opacity 0.25s ease;
}
.bildad-card--solution:hover::before { opacity: 1; }

.bildad-card--solution .layer-num {
  position: absolute; top: 22px; right: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--bildad-primary);
  background: rgba(87, 81, 225, 0.1);
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.bildad-card--solution .bildad-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  margin-bottom: 26px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  box-shadow: 0 10px 22px rgba(87, 81, 225, 0.32);
}

.bildad-card--solution .bildad-card__title {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: var(--bildad-ink);
  margin-bottom: 14px;
}

.bildad-card--solution .bildad-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bildad-ink-2);
  margin: 0;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 575px) {
  .bildad-card--solution { padding: 28px 22px 24px; }
  .bildad-card--solution .bildad-card__title { font-size: 20px; }
  .bildad-card--solution .bildad-card__text { font-size: 15px; }
}

/* ----- Problem section v1 (eski stil — kullanılmıyor) ----- */
.bildad-problem-card {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-left: 3px solid #ef4444;
  border-radius: 14px;
  padding: 26px 28px;
  height: 100%;
}
.bildad-problem-card h4 { font-size: 17px; color: var(--bildad-ink); font-weight: 700; margin-bottom: 10px; }
.bildad-problem-card p { font-size: 14px; color: var(--bildad-muted); line-height: 1.6; margin: 0; }

/* ==========================================================================
   PROBLEM ZONE — Koyu zeminli teşhis bölümü
   ========================================================================== */
.bildad-problems {
  position: relative;
  padding: 50px 0 110px;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(239, 68, 68, 0.12), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(87, 81, 225, 0.18), transparent 60%),
    linear-gradient(180deg, #0b1020 0%, #131836 100%);
  color: #fff;
  overflow: hidden;
}
.bildad-problems::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}

.bildad-problems__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 22px;
}
.bildad-problems__eyebrow .x {
  width: 16px; height: 16px; border-radius: 50%;
  background: #ef4444; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}

.bildad-problems__title {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.08;
  color: #fff;
  font-weight: 800;
  letter-spacing: -1.3px;
  margin-bottom: 22px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.bildad-problems__title em {
  font-style: normal;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.bildad-problems__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}

/* Stat card — büyük "10 KOBİ'den 7'sinde" */
.bildad-problems__stat {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  display: flex; align-items: center; gap: 22px;
}
.bildad-problems__stat-ring {
  width: 96px; height: 96px;
  flex-shrink: 0;
  position: relative;
}
.bildad-problems__stat-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.bildad-problems__stat-ring .ring-bg   { fill: none; stroke: rgba(255, 255, 255, 0.1); stroke-width: 8; }
.bildad-problems__stat-ring .ring-prog { fill: none; stroke: url(#ringGrad); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 251.2; stroke-dashoffset: 251.2;
  animation: bildad-ring-fill 1.6s 0.3s cubic-bezier(.22,1,.36,1) forwards; }
.bildad-problems__stat-ring .ring-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; color: #fff;
  letter-spacing: -1px;
}
@keyframes bildad-ring-fill { to { stroke-dashoffset: 75.4; } } /* %70 doluluk */
.bildad-problems__stat-text strong {
  display: block;
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 4px; line-height: 1.3;
}
.bildad-problems__stat-text span {
  font-size: 13px; color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

/* Right: vertical list of problems — VURGULU versiyon */
.bildad-problems__list {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bildad-problems__item {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
  position: relative;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent);
}
.bildad-problems__item:last-child { border-bottom: 0; }
.bildad-problems__item::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, #ef4444, #f97316);
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
.bildad-problems__item:hover {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.04));
  transform: translateX(4px);
}
.bildad-problems__item:hover::before { opacity: 1; }

/* v01 — eski kırmızı kare ikon (yalnızca /versiyonlar/v01 sayfasında kullanılır) */
.bildad-problems__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: 0;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

/* v02 — Küçük turuncu nokta */
.bildad-problems__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff7a45;
  flex-shrink: 0;
  margin-top: 9px;          /* başlık üst-baseline ile hizala */
  box-shadow: 0 0 0 5px rgba(255, 122, 69, 0.15);
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bildad-problems__item:hover .bildad-problems__dot {
  box-shadow: 0 0 0 7px rgba(255, 122, 69, 0.25);
  transform: scale(1.1);
}
.bildad-problems__body { flex: 1; min-width: 0; }
.bildad-problems__body h5 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.2px;
  line-height: 1.3;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bildad-problems__item:hover .bildad-problems__body h5 {
  background: linear-gradient(135deg, #fff 0%, #fca5a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}
.bildad-problems__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.bildad-problems__impact {
  flex-shrink: 0;
  text-align: right;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  min-width: 110px;
}
.bildad-problems__impact strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fca5a5, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.bildad-problems__impact span {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.2;
  display: block;
}

/* Bottom CTA bar inside problems */
.bildad-problems__cta {
  margin-top: 18px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.2), rgba(139, 108, 255, 0.15));
  border: 1px solid rgba(139, 108, 255, 0.35);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  color: #fff;
}
.bildad-problems__cta strong {
  font-size: 15px; font-weight: 700;
  display: block; margin-bottom: 2px;
}
.bildad-problems__cta span {
  font-size: 13px; color: rgba(255, 255, 255, 0.7);
}
.bildad-problems__cta a {
  background: #fff; color: var(--bildad-primary);
  padding: 10px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.bildad-problems__cta a:hover { transform: translateY(-2px); color: var(--bildad-primary); }

@media (max-width: 991px) {
  .bildad-problems { padding: 35px 0 70px; }
  .bildad-problems__stat { margin-bottom: 30px; }
  .bildad-problems__item { padding: 20px 18px; gap: 14px; flex-wrap: wrap; }
  .bildad-problems__dot { margin-top: 8px; }
  .bildad-problems__body { flex: 1 1 calc(100% - 30px); }
  .bildad-problems__body h5 { font-size: 19px; }
  .bildad-problems__impact { min-width: 90px; padding: 8px 12px; }
  .bildad-problems__impact strong { font-size: 18px; }
  .bildad-problems__cta { flex-direction: column; align-items: stretch; text-align: center; }
}
@media (max-width: 575px) {
  .bildad-problems__item { flex-direction: column; align-items: flex-start; }
  .bildad-problems__impact {
    align-self: flex-start;
    margin-left: 52px;
    text-align: left;
  }
}

/* ----- Step / Process ----- */
.bildad-step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 18px;
  height: 100%;
}
.bildad-step__num {
  position: absolute; top: -18px; left: 28px;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff; font-weight: 700; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(87, 81, 225, 0.35);
}
.bildad-step h4 { font-size: 18px; font-weight: 700; color: var(--bildad-ink); margin: 14px 0 10px; }
.bildad-step p { font-size: 14px; color: var(--bildad-muted); line-height: 1.65; margin: 0; }

/* ----- Sector pill ----- */
.bildad-sector {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 14px;
  padding: 22px 22px;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.bildad-sector:hover {
  border-color: var(--bildad-primary);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px rgba(87, 81, 225, 0.45);
}
.bildad-sector__icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bildad-soft-2); color: var(--bildad-primary);
  flex-shrink: 0;
}
.bildad-sector h5 { font-size: 16px; font-weight: 700; color: var(--bildad-ink); margin: 0 0 2px; }
.bildad-sector p { font-size: 13px; color: var(--bildad-muted); margin: 0; }

/* ----- Case study card ----- */
.bildad-case {
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.25s ease;
}
.bildad-case:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(11, 16, 32, 0.16); }
.bildad-case__cover {
  height: 220px;
  background: linear-gradient(135deg, var(--bildad-soft-2), #fff);
  display: flex; align-items: center; justify-content: center;
  color: var(--bildad-primary);
  font-weight: 700; font-size: 22px;
  border-bottom: 1px solid var(--bildad-border);
}
.bildad-case__body { padding: 24px 26px 26px; }
.bildad-case__tag { font-size: 12px; font-weight: 700; color: var(--bildad-primary); letter-spacing: 1px; text-transform: uppercase; }
.bildad-case__title { font-size: 19px; font-weight: 700; color: var(--bildad-ink); margin: 8px 0 14px; }
.bildad-case__metrics { display: flex; gap: 22px; padding-top: 14px; border-top: 1px solid var(--bildad-border); }
.bildad-case__metrics .m strong { font-size: 22px; color: var(--bildad-primary); display: block; line-height: 1; }
.bildad-case__metrics .m span { font-size: 12px; color: var(--bildad-muted); }

/* ----- Why Bildad ----- */
.bildad-why-item {
  display: flex; gap: 16px;
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bildad-border);
  height: 100%;
}
.bildad-why-item__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.12), rgba(139, 108, 255, 0.12));
  color: var(--bildad-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.bildad-why-item h5 { font-size: 16px; font-weight: 700; color: var(--bildad-ink); margin: 0 0 6px; }
.bildad-why-item p { font-size: 14px; color: var(--bildad-muted); line-height: 1.6; margin: 0; }

/* ----- Final CTA ----- */
.bildad-cta-final {
  position: relative;
  border-radius: 28px;
  padding: 80px 60px;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(139, 108, 255, 0.35), transparent 60%),
    radial-gradient(500px 250px at 0% 100%, rgba(255, 122, 69, 0.18), transparent 60%),
    linear-gradient(135deg, #1a1f3d 0%, #0b1020 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.bildad-cta-final h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
  color: #fff;
}
.bildad-cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto 32px;
}
.bildad-cta-final__buttons { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ==========================================================================
   Hero — Zengin Versiyon (sosyal kanıt, canlı dashboard, floating kartlar)
   ========================================================================== */

/* Animated highlight underline (squiggle / brush stroke) */
.bildad-hero__highlight {
  position: relative;
  display: inline-block;
  font-style: normal;
  background: linear-gradient(135deg, var(--bildad-primary) 0%, var(--bildad-primary-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 1;
}
.bildad-hero__highlight::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 6px;
  height: 14px;
  background: linear-gradient(90deg, rgba(139, 108, 255, 0.35) 0%, rgba(255, 122, 69, 0.3) 100%);
  border-radius: 8px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: bildad-hl-grow 1.2s 0.4s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes bildad-hl-grow { to { transform: scaleX(1); } }

/* Eyebrow — live pill */
.bildad-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--bildad-border);
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bildad-ink);
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.05);
  margin-bottom: 26px;
}
.bildad-hero__live .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: bildad-live-pulse 1.6s ease-in-out infinite;
}
@keyframes bildad-live-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.05); }
}
.bildad-hero__live .live-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #16a34a;
  text-transform: uppercase;
}
.bildad-hero__live .live-sep {
  width: 1px; height: 14px;
  background: var(--bildad-border);
}

/* Social proof row — avatars + rating */
.bildad-hero__proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.bildad-hero__avatars {
  display: flex;
}
.bildad-hero__avatars .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff;
  box-shadow: 0 2px 8px rgba(11, 16, 32, 0.12);
}
.bildad-hero__avatars .av:first-child { margin-left: 0; }
.bildad-hero__avatars .av.a1 { background: linear-gradient(135deg, #5751e1, #8b6cff); }
.bildad-hero__avatars .av.a2 { background: linear-gradient(135deg, #ff7a45, #ff9d6e); }
.bildad-hero__avatars .av.a3 { background: linear-gradient(135deg, #22c55e, #4ade80); }
.bildad-hero__avatars .av.a4 { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.bildad-hero__avatars .av.more {
  background: #f4f4fb; color: var(--bildad-primary);
  font-size: 11px; border: 2px solid #fff;
}
.bildad-hero__proof-text { line-height: 1.3; }
.bildad-hero__proof-text strong {
  display: block;
  font-size: 15px; font-weight: 700; color: var(--bildad-ink);
}
.bildad-hero__proof-text .stars {
  color: #fbbf24; font-size: 13px; letter-spacing: 1px;
}
.bildad-hero__proof-text .stars + span {
  font-size: 12px; color: var(--bildad-muted); margin-left: 4px;
}

/* Video pill — "Bildad'ı 90 saniyede tanıyın" */
.bildad-hero__video {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 999px;
  padding: 6px 18px 6px 6px;
  text-decoration: none;
  color: var(--bildad-ink);
  font-size: 14px; font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(11, 16, 32, 0.05);
}
.bildad-hero__video:hover { color: var(--bildad-primary); transform: translateY(-2px); }
.bildad-hero__video .play {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(87, 81, 225, 0.35);
}

/* ==== Right side: layered dashboard + floating cards ==== */
.bildad-hero__stage {
  position: relative;
  padding: 30px 10px;
}

/* Main dashboard card */
.bildad-hero__dash {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--bildad-border);
  box-shadow: 0 30px 70px -20px rgba(11, 16, 32, 0.22);
  z-index: 2;
  transform: rotate(-1.2deg);
}
.bildad-hero__dash:hover { transform: rotate(0); transition: transform 0.4s ease; }
.bildad-hero__dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--bildad-border);
}
.bildad-hero__dash-head .lbl {
  display: flex; flex-direction: column;
}
.bildad-hero__dash-head .lbl small {
  font-size: 11px; color: var(--bildad-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.bildad-hero__dash-head .lbl strong {
  font-size: 14px; color: var(--bildad-ink); font-weight: 700;
}
.bildad-hero__dash-head .pill {
  background: rgba(34, 197, 94, 0.12); color: #16a34a;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
}

.bildad-hero__bignum {
  font-size: 38px; font-weight: 700; letter-spacing: -1px;
  color: var(--bildad-ink); line-height: 1;
  margin-bottom: 4px;
}
.bildad-hero__bignum .diff {
  font-size: 14px; color: #16a34a; font-weight: 700; margin-left: 8px;
}
.bildad-hero__bignum-sub {
  font-size: 12px; color: var(--bildad-muted); margin-bottom: 18px;
}

/* Mini SVG line chart wrapper */
.bildad-hero__chart {
  position: relative;
  height: 90px;
  margin-bottom: 18px;
}
.bildad-hero__chart svg { width: 100%; height: 100%; display: block; }
.bildad-hero__chart .chart-line {
  fill: none;
  stroke: url(#bildadGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: bildad-draw 2s 0.6s ease-out forwards;
}
.bildad-hero__chart .chart-area {
  fill: url(#bildadArea);
  opacity: 0;
  animation: bildad-fadein 0.8s 2.2s ease-out forwards;
}
.bildad-hero__chart .chart-dot {
  fill: #fff; stroke: var(--bildad-primary); stroke-width: 3;
  opacity: 0;
  animation: bildad-fadein 0.5s 2.4s ease-out forwards;
}
@keyframes bildad-draw   { to { stroke-dashoffset: 0; } }
@keyframes bildad-fadein { to { opacity: 1; } }

.bildad-hero__metric-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--bildad-border);
}
.bildad-hero__metric-row .m {
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  background: rgba(87, 81, 225, 0.04);
}
.bildad-hero__metric-row .m strong {
  display: block;
  font-size: 18px; font-weight: 700; color: var(--bildad-ink);
  line-height: 1; margin-bottom: 4px;
}
.bildad-hero__metric-row .m span {
  font-size: 11px; color: var(--bildad-muted); font-weight: 600;
}

/* Floating cards */
.bildad-hero__notif {
  position: absolute;
  background: #fff;
  border: 1px solid var(--bildad-border);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 50px -10px rgba(11, 16, 32, 0.25);
  z-index: 3;
  min-width: 240px;
}
.bildad-hero__notif--lead {
  top: -8px; left: -28px;
  animation: bildad-float-in 0.8s 0.6s both, bildad-bob 4s 2s ease-in-out infinite;
  transform: rotate(-3deg);
}
.bildad-hero__notif--wa {
  bottom: 28px; right: -32px;
  animation: bildad-float-in 0.8s 1s both, bildad-bob 4.5s 2.5s ease-in-out infinite;
  transform: rotate(3deg);
}
.bildad-hero__notif .ico {
  width: 38px; height: 38px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.bildad-hero__notif--lead .ico { background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2)); }
.bildad-hero__notif--wa   .ico { background: #25d366; }
.bildad-hero__notif .txt strong {
  display: block;
  font-size: 13px; font-weight: 700; color: var(--bildad-ink); line-height: 1.2;
}
.bildad-hero__notif .txt span {
  font-size: 11px; color: var(--bildad-muted);
}
@keyframes bildad-float-in {
  from { opacity: 0; transform: translateY(20px) rotate(0); }
  to   { opacity: 1; }
}
@keyframes bildad-bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -3deg)); }
  50%      { transform: translateY(-6px) rotate(var(--rot, -3deg)); }
}
.bildad-hero__notif--lead { --rot: -3deg; }
.bildad-hero__notif--wa   { --rot: 3deg; }

/* Brand strip — "Çalıştığımız sektörlerden örnekler" — VURGULU bant */
.bildad-hero__strip {
  position: relative;
  margin-top: 60px;
  padding: 32px 40px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(87, 81, 225, 0.06) 0%, rgba(255, 122, 69, 0.06) 100%),
    #fff;
  border: 1px solid rgba(87, 81, 225, 0.15);
  box-shadow: 0 18px 40px -20px rgba(87, 81, 225, 0.22);
}
.bildad-hero__strip::before {
  content: "";
  position: absolute;
  top: -1px; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--bildad-primary), var(--bildad-accent), transparent);
  border-radius: 2px;
}
.bildad-hero__strip-title {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-align: center;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--bildad-ink);
  margin-bottom: 22px;
}
.bildad-hero__strip-title::before,
.bildad-hero__strip-title::after {
  content: "";
  flex: 0 1 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 81, 225, 0.4));
}
.bildad-hero__strip-title::after {
  background: linear-gradient(90deg, rgba(87, 81, 225, 0.4), transparent);
}
.bildad-hero__strip-title strong {
  background: linear-gradient(135deg, var(--bildad-primary), var(--bildad-primary-2));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
}
.bildad-hero__strip-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
}
.bildad-hero__brand {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border: 1.5px solid rgba(87, 81, 225, 0.18);
  border-radius: 999px;
  color: var(--bildad-ink);
  font-weight: 600; font-size: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(11, 16, 32, 0.04);
  text-decoration: none;
}
.bildad-hero__brand:hover {
  border-color: var(--bildad-primary);
  color: var(--bildad-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(87, 81, 225, 0.2);
}
.bildad-hero__brand .b-ico {
  color: var(--bildad-primary);
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* ----- Responsive tweaks ----- */
@media (max-width: 1199px) {
  .bildad-hero__notif--lead { left: -10px; }
  .bildad-hero__notif--wa   { right: -10px; }
}
@media (max-width: 991px) {
  .bildad-hero { padding: 50px 0 60px; }
  .bildad-section { padding: 40px 0 80px; }
  .bildad-cta-final { padding: 56px 28px; }
  .bildad-hero__stage { margin-top: 50px; }
  .bildad-hero__notif--lead { left: 0; top: -16px; }
  .bildad-hero__notif--wa   { right: 0; bottom: 12px; }
  .bildad-hero__strip-row { gap: 8px; }
  .bildad-hero__brand { padding: 8px 14px; font-size: 12px; }
}
@media (max-width: 575px) {
  .bildad-hero__notif { min-width: 200px; padding: 10px 12px; }
  .bildad-hero__notif .ico { width: 32px; height: 32px; }
  .bildad-hero__proof { gap: 12px; flex-wrap: wrap; }
}

/* ==========================================================================
   v41 — Premium menü & submenu (üst nav)
   ========================================================================== */

/* Üst seviye link: hafifleştir, hoverda mor underline grow */
.main-menu ul li a {
  font-weight: 500;
  letter-spacing: -0.2px;
  transition: color .2s ease;
}
.main-menu > nav > ul > li > a {
  position: relative;
  padding: 8px 2px 10px;
}
.main-menu > nav > ul > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  height: 2px;
  width: 0;
  background: linear-gradient(135deg, var(--bildad-primary, #5751e1), var(--bildad-accent, #ff7a45));
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.main-menu > nav > ul > li:hover > a::before,
.main-menu > nav > ul > li.active > a::before {
  width: calc(100% - 4px);
  left: 2px;
}
.main-menu > nav > ul > li:hover > a {
  color: var(--bildad-primary, #5751e1);
}

/* has-dropdown chevron */
.main-menu ul li.has-dropdown > a::after {
  font-size: 11px;
  margin-left: 8px;
  opacity: .55;
  transition: transform .25s ease, opacity .2s ease;
}
.main-menu ul li.has-dropdown:hover > a::after {
  transform: translateY(2px) rotate(180deg);
  opacity: 1;
  color: var(--bildad-primary, #5751e1);
}

/* SUBMENU — premium card */
.main-menu ul li .submenu {
  min-width: 300px;
  padding: 14px 12px;
  margin-top: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 16, 32, 0.06);
  box-shadow:
    0 24px 50px -12px rgba(11, 16, 32, 0.18),
    0 8px 24px -8px rgba(87, 81, 225, 0.08);
}
/* Üstte ince gradient şerit */
.main-menu ul li .submenu::before {
  content: "";
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 3px;
  background: linear-gradient(135deg, var(--bildad-primary, #5751e1), var(--bildad-accent, #ff7a45));
  border-radius: 0 0 6px 6px;
  opacity: .9;
}
/* Eski temanın küçük açılış noktası — gizle */
.main-menu ul li .submenu::after { display: none; }

.main-menu ul li .submenu li {
  margin: 2px 0;
}
.main-menu ul li .submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.1px;
  color: #1a1f3d;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
/* Sol başlangıçta küçük nokta */
.main-menu ul li .submenu li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(87, 81, 225, 0.25);
  margin-right: -2px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
/* Eski temanın left:25px alt çizgisi var, kapat */
.main-menu ul li .submenu li a::before { display: none; }

.main-menu ul li .submenu li:hover > a {
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.08), rgba(255, 122, 69, 0.06));
  color: var(--bildad-primary, #5751e1);
  padding-left: 22px;
}
.main-menu ul li .submenu li:hover > a::after {
  opacity: 1;
  transform: translateX(0);
  background: var(--bildad-accent, #ff7a45);
}

/* Tıklanamaz top item (Çözümler / Sistem) imleci varsayılan kalsın */
.main-menu ul li.has-dropdown > a[href*="javascript"] { cursor: default; }


/* ----- v41b: Sticky header iken de aynı menü stilini koru ----- */
.header__sticky.header-sticky .main-menu ul li > a {
  padding: 22px 2px;
}
.header__sticky.header-sticky .main-menu > nav > ul > li > a::before {
  bottom: 16px;
}

.header__sticky.header-sticky .main-menu ul li .submenu {
  padding: 14px 12px;
  margin-top: 0;
}
.header__sticky.header-sticky .main-menu ul li .submenu li a,
.header__sticky.header-sticky .main-menu ul li .submenu li:hover > a {
  padding: 12px 16px 12px 18px;
}
.header__sticky.header-sticky .main-menu ul li .submenu li:hover > a {
  padding-left: 22px;
}

/* v42 — Hero CTA tek buton modu (WhatsApp kaldırıldıktan sonra) */
.bildad-hero__cta--single { justify-content: flex-start; gap: 0; }
.bildad-btn--lg {
  padding: 18px 36px;
  font-size: 16.5px;
  letter-spacing: -0.1px;
  border-radius: 14px;
  gap: 12px;
}

/* v42b — Scroll-down indicator (anasayfa hero) */
.bildad-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--bildad-ink, #1a1f3d);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  z-index: 5;
  transition: opacity .25s ease, transform .25s ease;
}
.bildad-scroll-cue:hover {
  color: var(--bildad-primary, #5751e1);
  opacity: 1;
  transform: translateX(-50%) translateY(3px);
}
.bildad-scroll-cue__label {
  display: inline-block;
}
.bildad-scroll-cue__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 14px;
  position: relative;
  display: inline-block;
}
.bildad-scroll-cue__wheel {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
  animation: bildad-scroll-wheel 1.6s ease-in-out infinite;
}
@keyframes bildad-scroll-wheel {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}
.bildad-scroll-cue__chev {
  animation: bildad-scroll-chev 1.6s ease-in-out infinite;
}
@keyframes bildad-scroll-chev {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50%      { transform: translateY(4px); opacity: 1; }
}

@media (max-width: 991px) {
  .bildad-scroll-cue { display: none; }
}

/* v42c — İletişim sayfası: kart hizalama + başlık/bilgi boşluğu */
.contact__info-area .row { align-items: stretch; }
.contact__info-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 26px 30px;
  border-radius: 18px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease;
}
.contact__info-item:hover {
  box-shadow: 0 18px 40px -16px rgba(11, 16, 32, 0.15);
  transform: translateY(-3px);
}
/* İkon kutusu sabit yükseklik → üç kartta başlık aynı hizada başlar */
.contact__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 26px !important;
  color: var(--bildad-primary, #5751e1);
}
.contact__info-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}
/* Başlık ile bilgi arasında belirgin boşluk */
.contact__info-title {
  margin-bottom: 18px !important;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.contact__info-content p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--bildad-muted, #6b7280);
}
.contact__info-content p:last-child { margin-bottom: 0; }
.contact__info-content a {
  color: var(--bildad-ink, #1a1f3d);
  font-weight: 500;
  transition: color .2s ease;
}
.contact__info-content a:hover { color: var(--bildad-primary, #5751e1); }

/* ==========================================================================
   v43 — İletişim sayfası yeni split layout
   ========================================================================== */

/* HERO + FORM SPLIT */
.bildad-contact-hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #0b1020 0%, #14182f 60%, #1a1f3d 100%);
  color: #fff;
  overflow: hidden;
}
.bildad-contact-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 75% 20%, rgba(139, 108, 255, 0.18), transparent 65%),
    radial-gradient(700px 400px at 0% 100%, rgba(255, 122, 69, 0.10), transparent 60%);
  pointer-events: none;
}
.bildad-contact-hero__left {
  padding-right: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bildad-contact-hero__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  position: relative;
  padding-left: 36px;
}
.bildad-contact-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 2px;
  background: #ff7a45;
  border-radius: 2px;
}
.bildad-contact-hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
  color: #fff;
}
.bildad-contact-hero__title span {
  background: linear-gradient(135deg, #ff7a45, #ffaa6e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bildad-contact-hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 38px;
  max-width: 540px;
}
.bildad-contact-hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 40px;
}
.bildad-pillar { text-align: center; }
.bildad-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: #ff7a45;
  margin-bottom: 12px;
}
.bildad-pillar__icon svg { width: 30px; height: 30px; }
.bildad-pillar h5 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #fff;
  margin: 0 0 8px;
}
.bildad-pillar p {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}
.bildad-contact-hero__claim { margin-bottom: 20px; }
.bildad-contact-hero__claim-lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 4px;
}
.bildad-contact-hero__claim-main {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
}
.bildad-contact-hero__underline {
  display: block;
  width: clamp(260px, 75%, 380px);
  height: 18px;
  margin-top: 4px;
  margin-left: 2px;
  filter: drop-shadow(0 2px 4px rgba(255, 122, 69, 0.35));
}

/* Growth curve — illustrated mountain SVG */
.bildad-growth-curve {
  position: relative;
  margin-top: auto;
  padding-top: 30px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.65);
  background: #0a0e22;
}
.bildad-summit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.bildad-curve-dot__pulse { display: none; }
.bildad-growth-curve__labels span {
  transform: translate(-50%, calc(-100% - 16px));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85), 0 0 12px rgba(0, 0, 0, 0.4);
  padding: 4px 0;
}
.bildad-growth-curve__labels span.is-final {
  color: #ffd9b8;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}
.bildad-growth-curve__svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.bildad-growth-curve__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bildad-growth-curve__labels span {
  position: absolute;
  white-space: nowrap;
}

/* RIGHT — FORM CARD */
.bildad-contact-form-card {
  background: linear-gradient(180deg, #f8f7fb 0%, #f1f0f5 100%);
  border-radius: 22px;
  padding: 38px 32px 32px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.35);
}
.bildad-contact-form-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(11, 16, 32, 0.08);
  color: #1a1f3d;
  margin: 0 auto 20px;
}
.bildad-contact-form-card__icon svg { width: 28px; height: 28px; }
.bildad-contact-form-card__title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #1a1f3d;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.bildad-contact-form-card__sub {
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: #6b7280;
  margin-bottom: 28px;
}
.bildad-contact-form { display: flex; flex-direction: column; gap: 14px; }
.bildad-field { display: flex; flex-direction: column; gap: 6px; }
.bildad-field label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1f3d;
  letter-spacing: -0.1px;
}
.bildad-field label em {
  color: #ff7a45;
  font-style: normal;
  font-weight: 700;
  margin-left: 2px;
}
.bildad-field input,
.bildad-field select,
.bildad-field textarea {
  width: 100%;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid rgba(11, 16, 32, 0.10);
  border-radius: 10px;
  font-size: 14px;
  color: #1a1f3d;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
}
.bildad-field input:focus,
.bildad-field select:focus,
.bildad-field textarea:focus {
  outline: none;
  border-color: #5751e1;
  box-shadow: 0 0 0 3px rgba(87, 81, 225, 0.12);
}
.bildad-field textarea { resize: vertical; min-height: 84px; }
.bildad-contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;
  margin: 6px 0 4px;
}
.bildad-contact-form__privacy svg { flex-shrink: 0; margin-top: 2px; color: #9ca3af; }
.bildad-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #ff7a45 0%, #ffaa6e 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bildad-contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(255, 122, 69, 0.5);
}

/* CONTACT STRIP */
.bildad-contact-strip { padding: 60px 0; background: #fff; }
.bildad-contact-strip__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.bildad-contact-strip__item:hover {
  border-color: rgba(87, 81, 225, 0.35);
  box-shadow: 0 18px 30px -16px rgba(11, 16, 32, 0.12);
  transform: translateY(-2px);
}
.bildad-contact-strip__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(87, 81, 225, 0.10), rgba(255, 122, 69, 0.10));
  color: #5751e1;
}
.bildad-contact-strip__icon svg { width: 22px; height: 22px; }
.bildad-contact-strip__txt h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 4px;
}
.bildad-contact-strip__txt p {
  font-size: 15px;
  font-weight: 600;
  color: #1a1f3d;
  margin: 0;
  line-height: 1.4;
}

/* BENEFITS */
.bildad-contact-benefits {
  padding: 70px 0;
  background: #f6f5fa;
}
.bildad-benefit {
  text-align: center;
  padding: 12px 8px;
}
.bildad-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #1a1f3d;
  margin-bottom: 18px;
  border: 1px solid rgba(11, 16, 32, 0.06);
}
.bildad-benefit__icon svg { width: 28px; height: 28px; }
.bildad-benefit h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #1a1f3d;
  margin: 0 0 12px;
}
.bildad-benefit p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* STATS + TRUST */
.bildad-contact-stats {
  padding: 60px 0 70px;
  background: linear-gradient(135deg, #0b1020 0%, #14182f 100%);
  color: #fff;
}
.bildad-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 4px;
}
.bildad-stat__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #ff7a45;
}
.bildad-stat__icon svg { width: 22px; height: 22px; }
.bildad-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.6px;
  line-height: 1.1;
}
.bildad-stat span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.4px;
  margin-top: 3px;
}
.bildad-trust-strip {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.bildad-trust-strip__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 22px;
}
.bildad-trust-strip__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.bildad-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.bildad-trust-chip svg { width: 16px; height: 16px; color: #ff7a45; }

@media (max-width: 991px) {
  .bildad-contact-hero { padding: 70px 0 50px; }
  .bildad-contact-hero__left { padding-right: 0; margin-bottom: 40px; }
  .bildad-contact-hero__pillars { grid-template-columns: 1fr; gap: 16px; }
  .bildad-growth-curve { height: 160px; }
  .bildad-contact-form-card { padding: 30px 24px 26px; }
  .bildad-contact-form-card__title { font-size: 22px; }
}
