/* ============================================================
   Allintos — stil dosyası
   Renk ve tipografi mevcut sitedeki görünüme göre ayarlandı.
   ============================================================ */

:root {
  --blue:      #2f6bed;
  --blue-dark: #2457c9;
  --navy:      #1b2436;
  --navy-2:    #222d43;
  --card-blue: #e9f3fc;
  --ink:       #1c2430;
  --muted:     #6b7280;
  --line:      #e6e8ec;
  --white:     #ffffff;

  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1360px;
  --radius:    14px;
  --shadow:    0 10px 30px rgba(17, 24, 39, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.2; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.muted { color: var(--muted); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}
.btn:hover {
  box-shadow: 0 7px 18px rgba(17, 24, 39, .14);
  transform: translateY(-1px) scale(1.01);
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); text-decoration: none; }
.btn-outline-light:hover { background: #fff !important; color: var(--navy) !important; text-decoration: none !important; }

/* ============================================================
   ÜST BAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 84px;
  gap: 24px;
}
.brand {
  justify-self: start;
  display: flex;
  align-items: center;
}
.brand-logo { height: 62px; width: auto; }

.main-nav {
  display: contents;
}
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.2vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0 12px;
  width: 100%;
  justify-self: stretch;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 84px;
  padding: 0;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}
.nav-link.active { border-bottom-color: var(--ink); }
.nav-link:hover { color: var(--blue); }
.caret { font-size: 11px; line-height: 1; }

/* açılır menü */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  list-style: none;
  margin: 6px 0 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 7px; font-size: 14px; font-weight: 500; }
.dropdown a:hover { background: var(--card-blue); color: var(--blue); }

.social { display: flex; align-items: center; gap: 14px; }
.social a { color: var(--ink); transition: color .2s; }
.social a:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ============================================================
   FLASH MESAJLARI
   ============================================================ */
.flash-wrap { margin-top: 16px; }
.flash { padding: 12px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 8px; }
.flash-success { background: #e7f6ec; color: #1b7a3f; border: 1px solid #b9e5c8; }
.flash-error   { background: #fdeaea; color: #b42318; border: 1px solid #f5c2c0; }

/* ============================================================
   ANA SAYFA DUYURU CAROUSEL
   ============================================================ */
.home-hero-background {
  position: relative;
  overflow: hidden;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(15, 20, 33, .82);
}

.announcement-section {
  position: relative;
  z-index: 1;
  padding: 96px 0 28px;
  background: transparent;
  border: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .home-hero-background {
    background-attachment: scroll;
  }
}

.announcement-carousel {
  --announcement-gap: 16px;
  --announcement-slide-width: 86%;
  width: min(var(--container), 100%);
  margin: 0 auto;
  isolation: isolate;
}

.announcement-viewport {
  overflow: hidden;
  padding: 0 48px;
  perspective: 1200px;
}

.announcement-track {
  display: flex;
  align-items: stretch;
  gap: var(--announcement-gap);
  isolation: isolate;
  will-change: transform;
  transition: transform 500ms ease;
}

.announcement-slide {
  position: relative;
  flex: 0 0 var(--announcement-slide-width);
  min-width: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .55;
  transform: scale(.92);
  transform-origin: center;
  transition:
    transform 500ms ease,
    opacity 500ms ease,
    box-shadow 500ms ease;
}

.announcement-slide.is-active {
  z-index: 4;
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}

.announcement-slide.is-prev,
.announcement-slide.is-next {
  z-index: 2;
  opacity: .68;
  transform: scale(.92);
}

.announcement-slide.is-inactive {
  z-index: 1;
  opacity: .55;
}

.announcement-slide[aria-hidden="true"] { pointer-events: none; }
.announcement-slide[aria-hidden="true"].is-active { pointer-events: auto; }

.announcement-carousel.is-normalizing .announcement-track,
.announcement-carousel.is-normalizing .announcement-slide,
.announcement-carousel.is-normalizing .announcement-card {
  transition: none !important;
}

.announcement-carousel.is-normalizing .announcement-slide.is-active {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
}

.announcement-carousel.is-normalizing
  .announcement-slide:not(.is-active) {
  pointer-events: none;
}

.announcement-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: stretch;
  height: 290px;
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow:
    0 16px 40px rgba(15, 23, 42, .08),
    0 0 0 1px rgba(47, 107, 237, .04);
  transition: box-shadow 400ms ease, border-color 400ms ease;
}

.announcement-card.has-fallback {
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #ffffff 0%, var(--card-blue) 100%);
}

.announcement-slide.is-active .announcement-card {
  border-color: #cfdcf5;
  box-shadow:
    0 24px 56px rgba(15, 23, 42, .13),
    0 0 0 1px rgba(47, 107, 237, .08);
}

.announcement-content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.5vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--card-blue);
  border: 1px solid rgba(47, 107, 237, 0.15);
  border-radius: 999px;
  letter-spacing: 0.4px;
}

.announcement-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--card-blue);
  border-left: 1px solid var(--line);
}

.announcement-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.announcement-card:hover .announcement-image {
  transform: scale(1.04);
}

.announcement-content h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 750;
  line-height: 1.3;
  color: var(--navy);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.announcement-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

.announcement-content h2 a:hover {
  color: var(--blue);
}

.announcement-actions {
  margin-top: 4px;
}

.announcement-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff !important;
  border: 2px solid var(--blue);
  box-shadow: 0 4px 14px rgba(47, 107, 237, 0.28);
  cursor: pointer;
  text-decoration: none;
  transition: all 220ms ease;
}

.announcement-action-btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 7px 20px rgba(47, 107, 237, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .announcement-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 240px;
  }
  .announcement-media {
    display: none;
  }
}

.announcement-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.announcement-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.announcement-modal-box {
  position: relative;
  width: min(640px, 100%);
  max-height: min(85vh, 680px);
  overflow: hidden;
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 64px rgba(15, 23, 42, .3);
  transform: scale(.98);
  transition: transform 200ms ease;
}

.announcement-modal-scroll {
  width: 100%;
  overflow-y: auto;
  padding: clamp(28px, 4.5vw, 44px);
}

.announcement-modal.is-open .announcement-modal-box {
  transform: scale(1);
}

.announcement-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--card-blue);
  color: var(--navy);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 150ms ease;
}

.announcement-modal-close:hover {
  background: #dce8f8;
  color: var(--blue);
}

.announcement-modal-title {
  margin: 0 36px 18px 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 750;
  line-height: 1.3;
  color: var(--navy);
}

.announcement-modal-desc {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.announcement-controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  gap: 12px;
  margin-top: 16px;
}

.announcement-arrow,
.announcement-dot {
  border: 0;
  cursor: pointer;
}

.announcement-arrow {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(4, 8, 18, .1);
  transition: box-shadow 200ms ease, color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.announcement-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.announcement-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.announcement-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #a8b0bf;
  border-radius: 50%;
  transition: transform 180ms ease, opacity 180ms ease;
}

.announcement-dot.is-active {
  background: var(--blue);
  transform: scale(1.35);
}

.announcement-dot:disabled { cursor: default; }

.announcement-arrow:hover {
  color: var(--blue);
  background: var(--card-blue);
  border-color: #b9caf4;
  box-shadow: 0 6px 16px rgba(47, 107, 237, .22);
}

.announcement-arrow:focus-visible,
.announcement-dot:focus-visible,
.announcement-detail:focus-visible {
  outline: 3px solid rgba(47, 107, 237, .42);
  outline-offset: 3px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  color: #fff;
  background: transparent;
  overflow: hidden;
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 64px 24px 120px;
}
.hero-content h1 {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 800;
  margin-bottom: 26px;
}
.hero-sub {
  max-width: 780px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: rgba(255,255,255,.9);
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BÖLÜM ORTAK
   ============================================================ */
.section { padding: 84px 0; }
.section-title {
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 48px; letter-spacing: .5px; font-size: 14px; }
.section-sub.left { text-align: left; text-transform: none; letter-spacing: 0; font-size: 17px; margin-bottom: 48px; }

/* ---------- Hizmet kartları ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--card-blue);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 34px 32px;
}
.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: #3c4656; margin-bottom: 18px; }
.card-link { color: var(--blue); font-weight: 600; font-family: var(--font-head); }

/* ---------- Nasıl çalışıyoruz ---------- */
.how { background: #f7f9fc; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.step-no { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--blue); opacity: .35; }
.step h4 { font-size: 20px; margin: 10px 0 8px; }
.step p { color: var(--muted); }

/* ---------- Başarı hikayeleri ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  margin-top: 46px;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-media img { border-radius: 20px; width: 100%; height: 380px; object-fit: cover; box-shadow: var(--shadow); }
.feature-text h3 { font-size: 26px; font-weight: 700; margin-bottom: 14px; }
.feature-text p { color: #3c4656; font-size: 17px; }

/* ============================================================
   BÜLTEN
   ============================================================ */
.newsletter { background: var(--navy); color: #fff; padding: 72px 0 56px; }
.newsletter-inner { text-align: center; max-width: 640px; }
.newsletter h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,.8); margin-bottom: 34px; }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.newsletter-form label { font-size: 14px; color: rgba(255,255,255,.85); }
.newsletter-form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 0;
  font-size: 16px;
  font-family: var(--font-body);
}
.newsletter-form .btn { align-self: center; margin-top: 8px; min-width: 160px; }

/* ============================================================
   ALT BİLGİ
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  max-width: 960px;
  padding-bottom: 32px;
}
.footer-col h5 { font-size: 22px; margin-bottom: 12px; }
.footer-col h6 { font-size: 13px; letter-spacing: 1px; color: rgba(255,255,255,.6); margin: 18px 0 6px; }
.footer-col > h6:first-child { margin-top: 2px; }
.footer-col p { color: rgba(255,255,255,.9); }
.footer-col a:not(.btn):hover { color: #fff; text-decoration: underline; }
.footer-form-link {
  display: inline-flex;
  margin-top: 4px;
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
.footer-form-link:hover {
  background: #fff !important;
  color: var(--navy) !important;
  border-color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.site-footer .social a { color: rgba(255,255,255,.85); margin-top: 14px; }
.site-footer .social { margin-top: 14px; }

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-page { padding: 36px 0 48px; }
.contact-page-inner {
  max-width: 480px;
  margin: 0 auto;
}
.contact-page h1 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-form,
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  scroll-margin-top: 140px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.contact-form-field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-size: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font: inherit;
}
.contact-form textarea { min-height: 96px; resize: vertical; }
.contact-form .contact-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.contact-form .contact-kvkk input { width: auto; margin-top: 3px; }
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.footer-form-link { margin-top: 8px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 24px; }
.footer-bottom p { color: rgba(255,255,255,.6); font-size: 14px; }

/* ---------- Alt sayfa başlık ---------- */
.page-hero { background: #f7f9fc; padding: 72px 0; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; margin-bottom: 12px; }
.page-hero .lead { font-size: 18px; color: var(--muted); max-width: 640px; }
code { background: #eef1f5; padding: 2px 6px; border-radius: 5px; font-size: 14px; }

/* ============================================================
   DUYARLILIK (RESPONSIVE)
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; justify-self: stretch; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link { padding: 14px 0; width: 100%; min-height: 0; }
  .header-actions {
    justify-self: stretch;
    justify-content: flex-start;
    margin-top: 12px;
  }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; margin: 0 0 8px; padding-left: 12px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .social-header { margin-top: 12px; }

  .card-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 28px; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-media img { height: 260px; }

  .announcement-carousel {
    --announcement-slide-width: 92%;
    --announcement-gap: 10px;
  }
  .announcement-viewport { padding-inline: 24px; }
  .announcement-card { height: 270px; }
  .announcement-slide.is-prev,
  .announcement-slide.is-next {
    transform: scale(.94);
  }
  .announcement-content {
    width: 88%;
    padding: 30px;
  }
}

@media (max-width: 540px) {
  .newsletter { padding: 60px 0 48px; }
  .site-footer { padding-top: 32px; }
  .footer-grid { gap: 24px; padding-bottom: 28px; }
  .contact-form-row { grid-template-columns: 1fr; }

  .announcement-section { padding: 40px 0 22px; }
  .announcement-carousel { --announcement-slide-width: 94%; }
  .announcement-viewport { padding-inline: 14px; }
  .announcement-card {
    height: 235px;
    border-radius: 14px;
  }
  .announcement-slide {
    transform: scale(.96);
  }
  .announcement-slide.is-prev,
  .announcement-slide.is-next {
    transform: scale(.96);
  }
  .announcement-shade {
    background: rgba(18, 27, 44, .78);
  }
  .announcement-content {
    width: 100%;
    padding: 24px;
  }
  .announcement-content h2 { font-size: 25px; }
  .announcement-content p { -webkit-line-clamp: 4; }
  .hero-title { font-size: clamp(26px, 7vw, 36px); }
  .hero-sub { font-size: 15px; padding: 0 12px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .table-responsive, .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================================
   DİJİTAL DÖNÜŞÜM SAYFASI
   ============================================================ */
.container.narrow { max-width: 860px; }

.dd-title { padding: 60px 0 10px; text-align: center; }
.dd-title h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; }

.dd-intro { padding-top: 30px; text-align: center; }
.dd-intro h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; margin-bottom: 26px; }
.dd-intro p { color: #3c4656; margin-bottom: 20px; font-size: 17px; }

/* DDX bölümü */
.dd-ddx { background: #ffffff; }
.dd-ddx-head { text-align: center; margin-bottom: 40px; }
.dd-ddx-head h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-bottom: 8px; }
.dd-ddx-head p { color: #3c4656; }
.dd-ddx-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.dd-ddx-media img { border-radius: 18px; width: 100%; height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.dd-ddx-text h4 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; }
.dd-ddx-text h4:first-child { margin-top: 0; }
.dd-ddx-text p { color: #3c4656; }

.dd-list { margin: 0; padding-left: 20px; color: #3c4656; }
.dd-list li { margin-bottom: 8px; }

.dd-support { list-style: none; margin: 0; padding: 0; }
.dd-support li { margin-bottom: 16px; color: #3c4656; }
.dd-support strong { display: block; font-family: var(--font-head); color: var(--ink); margin-bottom: 3px; }

/* Hizmetler koyu bölüm */
.dd-services { background: var(--navy); }
.section-title.light { color: #fff; }
.section-sub.light-sub { color: rgba(255,255,255,.75); text-transform: none; letter-spacing: 0; font-size: 17px; max-width: 760px; margin: 0 auto 48px; }
.dd-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dd-card { background: #fff; border: 1px solid transparent; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.dd-card-img { height: 190px; background-size: cover; background-position: center; }
.dd-card-body { padding: 24px 24px 28px; text-align: center; }
.dd-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.dd-card-body p { color: #4b5563; font-size: 14.5px; text-align: left; }

/* xxx bandı */
#digital-maturity-assessment { scroll-margin-top: 72px; }
.dd-band { text-align: left; padding: 70px 0; }
.dd-band h3 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 8px; }
#digital-maturity-assessment .dd-ai-feature-grid { margin-top: 34px; text-align: left; }
.dm-ai-badge-row { margin: 12px 0 16px; }
.dm-ai-description { max-width: 820px; margin: 12px auto 0; font-size: 17px; }

/* AI ile Tanışın */
.btn-dark { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-dark:hover { background: var(--ink); color: #fff; }
.dd-ai .feature-text h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; margin-bottom: 16px; }
.dd-ai .feature-text p { margin-bottom: 26px; }

.dd-ai-advisor {
  background: var(--card-blue);
  border-top: 1px solid var(--line);
}
.dd-ai-advisor-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}
.dd-ai-advisor-heading h2 {
  margin: 16px 0 14px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
}
.dd-ai-advisor-heading p { color: #3c4656; font-size: 17px; }
.dd-ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dd-ai-feature-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.dd-ai-feature-grid h3 { margin-bottom: 10px; font-size: 19px; }
.dd-ai-feature-grid p { color: var(--muted); font-size: 14.5px; }
.dd-ai-advisor-action { margin-top: 32px; text-align: center; }

/* Neden Biz */
.dd-why .feature-text h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
}

.dd-why .feature-media.collage {
  position: relative;
  width: 100%;
  min-height: 460px;
}

.dd-why .feature-media.collage .collage-back {
  display: block;
  width: 78%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.dd-why .feature-media.collage .collage-front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border: 6px solid #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 2;
}

/* ============================================================
   SAYFA BAŞLIKLARI (PAGE HEADERS - TÜM SAYFALARDA STANDART HERO)
   ============================================================ */
.page-header-compact {
  position: relative;
  color: #fff;
  background: url("../img/hero.jpg") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.page-header-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 22, 44, 0.78),
    rgba(12, 22, 44, 0.85)
  );
  pointer-events: none;
}

.page-header-compact .container {
  position: relative;
  z-index: 1;
  padding: 80px 24px 84px;
}

.page-header-compact .header-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  margin-bottom: 18px;
  background: rgba(47, 107, 237, 0.18);
  border: 1px solid rgba(53, 196, 212, 0.4);
  border-radius: 999px;
  color: #35c4d4;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-header-compact .page-main-title,
.page-header-compact h1 {
  max-width: 1050px;
  margin: 0 auto 18px;
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.hero-content h1 .accent,
.gl-hero-content h1 .accent,
.gl-hero-content .accent,
.page-header-compact .accent,
.dm-heading .accent {
  color: inherit !important;
}

.page-header-compact .page-main-sub,
.page-header-compact p {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.65;
}




/* ============================================================
   AI DANIŞMAN SAYFASI
   ============================================================ */
.ai-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1675023112817-52b789fd2ef0?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}
.ai-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,94,78,.75), rgba(30,60,50,.8)); }
.ai-hero-content { position: relative; text-align: center; }
.ai-hero-content h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.25;
}

.ai-cta { background: var(--navy); text-align: center; }
.ai-cta-inner h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); font-weight: 800; margin-bottom: 14px; }
.ai-cta-inner p { color: rgba(255,255,255,.8); margin-bottom: 30px; }

.ai-subscribe { text-align: center; }
.ai-subscribe-inner { max-width: 640px; margin: 0 auto; }
.ai-subscribe-inner h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-bottom: 10px; }
.ai-subscribe-inner p { color: var(--muted); margin-bottom: 30px; }
.subscribe-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.subscribe-form label { font-size: 14px; color: #374151; }
.subscribe-form input { width: 100%; padding: 16px 18px; border-radius: 12px; border: 1px solid var(--line); font-size: 16px; font-family: var(--font-body); }
.subscribe-form .btn { align-self: center; margin-top: 8px; min-width: 160px; }

.btn-black { background: #111827; color: #fff; }
.btn-black:hover { background: #000; }

/* ============================================================
   GLOBALLEŞME SAYFASI
   ============================================================ */

.gl-fixed-background {
  position: relative;
  background-image:
    linear-gradient(
      rgba(20, 30, 45, 0.36),
      rgba(20, 30, 45, 0.36)
    ),
    url("https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/irsq1zdcjI1CUN3s/gaprsel3-1romvQC4mnHKxuDv.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.gl-fixed-background .gl-programs {
  background: transparent;
}

.gl-fixed-background .section-title {
  color: #ffffff;
}

.gl-fixed-background .section-sub {
  color: rgba(255, 255, 255, 0.9);
}

/* Hero */
.gl-hero {
  position: relative;
  color: #fff;
  background: url("../img/hero.jpg") center / cover no-repeat;
}

.gl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 22, 44, 0.78),
    rgba(12, 22, 44, 0.85)
  );
}

.gl-hero-content {
  position: relative;
  text-align: center;
  padding: 90px 24px 96px;
}

.gl-hero-content h1 {
  max-width: 1050px;
  margin: 0 auto 22px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.25;
}

.gl-hero-content .accent {
  color: inherit !important;
}

.gl-hero-content p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

/* Giriş */
.gl-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.gl-intro-text .strong {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
}

.gl-intro-text p {
  color: #3c4656;
}

.gl-intro-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* Programlar */
.gl-projects {
  position: relative;
  z-index: 2;
  background: #ffffff !important;
  color: var(--ink);
  padding-top: 45px;
  padding-bottom: 84px;
}

.gl-projects .section-title {
  color: var(--ink) !important;
}

.gl-projects .section-sub {
  color: var(--muted) !important;
}

.gl-prog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: 40px;
}

.gl-prog-card {
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.gl-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 1px;
}

.gl-badge-turquality {
  background: #2bc4d4;
  color: #ffffff;
  border: 8px solid #ffffff;
  box-shadow: inset 0 0 0 3px #2bc4d4;
  font-size: 30px;
}

.gl-badge-turquality sup {
  font-size: 14px;
}

.gl-badge-eturquality {
  background: #ffffff;
  color: #1b2f6b;
  font-size: 28px;
}

.gl-badge-eturquality span {
  display: block;
  margin-top: 4px;
  color: #7a4fd1;
  font-size: 11px;
  letter-spacing: 2px;
}

.gl-prog-body {
  padding: 30px 30px 34px;
}

.gl-prog-body.dark {
  background: #16213f;
  color: #ffffff;
}

.gl-prog-body.cyan {
  background: #2ec8dc;
  color: #08313a;
}

.gl-prog-body h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.gl-prog-body p {
  margin-bottom: 14px;
  font-size: 14.5px;
  opacity: 0.95;
}

.gl-prog-body ul {
  margin: 0 0 22px;
  padding-left: 18px;
}

.gl-prog-body li {
  margin-bottom: 8px;
  font-size: 14px;
}

.btn.block {
  display: flex;
  width: 100%;
}

.brand-card {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 16px;
}

.brand-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Süreç kartları */
.gl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.gl-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 30px 26px;
  overflow: hidden;
  color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
}

.gl-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 17, 36, 0.62);
}

.gl-step h4,
.gl-step p {
  position: relative;
  z-index: 2;
}

.gl-step h4 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.gl-step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.gl-step:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1622050270517-de948a8c0c26?auto=format&fit=crop&w=612&q=100");
}

.gl-step:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1541746972996-4e0b0f43e02a?auto=format&fit=crop&w=612&q=100");
}

.gl-step:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1656077217715-bdaeb06bd01f?auto=format&fit=crop&w=612&q=100");
}

.gl-step:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1776874882078-ca755aae66b8?auto=format&fit=crop&w=612&q=100");
}

.gl-step:nth-child(5) {
  background-image: url("https://images.unsplash.com/photo-1535868463750-c78d9543614f?auto=format&fit=crop&w=612&q=100");
}

.gl-step:nth-child(6) {
  background-image: url("https://images.unsplash.com/photo-1583855505158-d0a4753d33f1?auto=format&fit=crop&w=612&q=100");
}

/* Mobil */
@media (max-width: 900px) {
  .gl-intro-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gl-prog-grid {
    grid-template-columns: 1fr;
  }

  .gl-steps {
    grid-template-columns: 1fr;
  }

  .gl-fixed-background {
    background-attachment: scroll;
    background-position: center top;
  }
}

/* ============================================================
   BLOG SAYFASI
   ============================================================ */
.blog-top { text-align: center; padding-bottom: 54px; }
.blog-top h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; margin-bottom: 14px; }
.blog-intro {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
}
.blog-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-categories li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px;
  color: var(--ink);
  background: var(--card-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
}
.blog-items { display: flex; flex-direction: column; gap: 26px; }
.blog-item h4 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.blog-feed { padding-top: 60px; padding-bottom: 72px; }
.blog-feed-title { margin-bottom: 24px; text-align: center; }
.blog-post-list { display: grid; gap: 22px; }
.blog-post-card {
  background: #fff;
  border: 1px solid #dbe7f4;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  overflow: hidden;
}
.blog-post-card--no-image { grid-template-columns: minmax(0, 1fr); }
.blog-post-media { min-height: 220px; overflow: hidden; position: relative; }
.blog-post-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.blog-back-wrapper {
  margin-bottom: 24px;
}
.blog-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: #f0f5fc;
  color: #1b2436 !important;
  border: 1px solid #d0e0f5;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.blog-back-btn:hover {
  background: #1b2436 !important;
  color: #ffffff !important;
  border-color: #1b2436 !important;
  transform: translateX(-4px);
  box-shadow: 0 4px 14px rgba(27, 36, 54, 0.25);
}
.blog-back-btn:focus-visible {
  outline: 2px solid #1b2436;
  outline-offset: 2px;
}
.blog-article-media {
  border-radius: var(--radius);
  margin: 20px 0 28px;
  min-height: 280px;
}
.blog-post-body {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 28px;
}
.blog-post-date {
  align-self: flex-end;
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 12px;
  text-align: right;
}
.blog-post-title { font-size: clamp(21px, 2.5vw, 28px); margin-bottom: 10px; }
.blog-post-summary { color: #3c4656; margin: 0; white-space: pre-wrap; }
.blog-post-title,
.blog-post-summary,
.blog-post-content { overflow-wrap: anywhere; }
.blog-post-content {
  color: #3c4656;
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
  white-space: pre-line;
}
.blog-post-content[hidden] { display: none; }
.blog-post-toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 7px 16px;
  border: 1px solid #dce5f0;
  border-radius: 999px;
  background: #f4f8fc;
  color: var(--blue);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.blog-post-toggle:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(47, 107, 237, 0.22);
  transform: translateY(-1px);
}

.blog-post-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.blog-feed-state {
  background: #f5f9fd;
  border: 1px solid #dbe7f4;
  border-radius: 14px;
  color: #4b5563;
  margin: 0;
  padding: 28px;
  text-align: center;
}
.blog-feed-state[hidden] { display: none; }

@media (max-width: 900px) {
  .blog-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .blog-categories { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-media { aspect-ratio: 16 / 10; min-height: 0; }
  .blog-post-body { padding: 20px; }
}

/* ============================================================
   PROGRAM DETAY (Turquality / E-Turquality)
   ============================================================ */
.pd-hero {
  position: relative; color: #fff;
  background: url("../img/hero.jpg") center/cover no-repeat;
}
.pd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(9,18,40,.92), rgba(12,28,60,.72)); }
.pd-hero-content { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 70px 24px; flex-wrap: wrap; }
.pd-hero-text { max-width: 760px; }
.pd-hero-text h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; margin-bottom: 16px; }
.pd-hero-text p { color: rgba(255,255,255,.85); font-size: 16px; }
.pd-hero-btn { white-space: nowrap; }

/* özet kutu */
.pd-summary-wrap { padding-top: 40px; padding-bottom: 20px; }
.pd-summary { background: #eef1f5; border-radius: 14px; padding: 34px 38px; }
.pd-summary h2 { text-align: center; font-size: 24px; font-weight: 700; margin-bottom: 18px; }
.pd-summary .strong { font-weight: 700; margin-bottom: 16px; }
.pd-summary p { color: #2b333f; }

/* iki sütun */
.pd-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.pd-col { display: flex; flex-direction: column; gap: 28px; }
.pd-card { border: 1px solid var(--line); border-radius: 14px; padding: 30px 32px; background: #fff; }
.pd-card.teal { background: #a9d6dd; border-color: #a9d6dd; text-align: center; }
.pd-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.pd-card p { color: #2b333f; margin-bottom: 14px; }
.pd-card ul, .pd-card ol { padding-left: 20px; margin: 0 0 6px; color: #2b333f; }
.pd-card li { margin-bottom: 10px; }
.pd-ol li { margin-bottom: 14px; }

/* değerlendir CTA */
.pd-cta { text-align: center; }
.pd-eval-btn {
  border: 2px solid #0e1830; color: #0e1830; background: #fff;
  font-size: 17px; padding: 20px 40px; width: 100%; max-width: 680px;
}
.pd-eval-btn:hover { background: #0e1830; color: #fff; }

@media (max-width: 900px) {
  .pd-cols { grid-template-columns: 1fr; }
  .pd-hero-content { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   TEKNOLOJİ HAZIRLIK SEVİYESİ TESTİ (TRL-* ön eki)
   ============================================================ */
.trl-page {
  background-color: var(--white);
  padding: 30px 0 60px;
}

.trl-container {
  max-width: var(--container);
  margin: 0 auto;
}

/* Üst Açıklama Alanı */
.trl-header-section {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

.trl-main-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.trl-main-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Süreç Göstergesi */
.trl-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 30px;
  user-select: none;
  padding: 0 16px;
}

.trl-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.trl-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.trl-step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  max-width: 60px;
}

/* Adım Durumları */
.trl-step.is-active {
  color: var(--blue);
  font-weight: 700;
}

.trl-step.is-active .trl-step-num {
  background: var(--blue);
  color: var(--white);
}

.trl-step.is-completed {
  color: #16a36a;
}

.trl-step.is-completed .trl-step-num {
  background: #16a36a;
  color: var(--white);
}

.trl-step.is-upcoming {
  color: var(--muted);
}

.trl-step.is-upcoming .trl-step-num {
  background: #eef0f3;
  color: var(--muted);
}

.trl-step.is-completed + .trl-step-line {
  background: #16a36a;
}

.trl-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

/* --- Form Ekranı Tasarımı --- */
.trl-form-section {
  background-color: #eef3ff;
  padding: 32px;
  border-radius: 22px;
  margin-top: 10px;
}

.trl-two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Sol Sütun Stilleri */
.trl-info-column {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trl-info-heading {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.trl-info-paragraph {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.trl-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.trl-adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trl-adv-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.trl-adv-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trl-adv-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.trl-adv-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Koyu Lacivert Bilgi Banner'ı */
.trl-info-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.trl-banner-icon {
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trl-banner-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
}

.trl-banner-arrow {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

/* Sağ Sütun Form Kartı */
.trl-form-card {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(27, 36, 54, 0.06);
  padding: 30px;
}

.trl-form-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.trl-form-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.trl-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trl-field-full {
  grid-column: span 2;
}

.trl-field label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.trl-field input[type="text"],
.trl-field input[type="email"],
.trl-field input[type="tel"],
.trl-field select,
.trl-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease;
}

.trl-field input:focus,
.trl-field select:focus,
.trl-field textarea:focus {
  border-color: var(--blue);
}

.trl-field input.has-error,
.trl-field select.has-error,
.trl-field textarea.has-error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.trl-field-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  min-height: 16px;
}

.trl-checkbox-field {
  margin-top: 4px;
}

.trl-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trl-checkbox-wrapper input[type="checkbox"] {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
  cursor: pointer;
}

.trl-checkbox-wrapper label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  cursor: pointer;
}

.trl-checkbox-wrapper label a.trl-link {
  color: var(--blue);
  text-decoration: underline;
}

.trl-alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

.trl-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.trl-form-actions {
  margin-top: 16px;
}

.trl-view[hidden] {
  display: none !important;
}

/* --- Alt Güven Kutuları --- */
.trl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.trl-trust-box {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease;
}

.trl-trust-box:hover {
  transform: translateY(-1px);
}

.trl-trust-icon {
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  align-self: start;
}

.trl-trust-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.trl-trust-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* --- Test Ekranı Tasarımı --- */
.trl-test-header {
  max-width: 1000px;
  margin: 0 auto 24px;
}

.trl-metadata-bar {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  background: #f1f5f9;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 16px;
  display: inline-block;
  margin: 0 auto 20px;
  font-weight: 500;
  max-width: 1000px;
}

.trl-progress-container {
  margin-top: 0px;
}

.trl-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.trl-progress-track {
  background: var(--line);
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
}

.trl-progress-bar {
  background: var(--blue);
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.trl-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.trl-question-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trl-question-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 40px;
  margin: 0;
  min-width: 0;
}

.trl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.trl-question-number {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.trl-question-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.4;
}

.trl-option-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trl-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.2s ease;
  user-select: none;
}

.trl-option:hover {
  border-color: var(--blue);
  background: rgba(47, 107, 237, 0.02);
}

.trl-option.is-selected {
  border-color: var(--blue);
  background: rgba(47, 107, 237, 0.06);
}

.trl-option input[type="radio"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.trl-option-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

.trl-btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.trl-btn-secondary:hover {
  background: var(--line);
}

.trl-btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--white);
}

.trl-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.trl-btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.trl-btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- Sağ Panel Navigasyon --- */
.trl-navigator {
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.trl-navigator-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trl-navigator-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.trl-navigator-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.trl-navigator-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  padding: 0;
  background: transparent;
}

.trl-navigator-item.is-unanswered {
  background: var(--white);
  color: var(--muted);
  border-color: var(--line);
}

.trl-navigator-item.is-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.trl-navigator-item.is-answered {
  background: #ecfdf3;
  color: #166534;
  border-color: #86efac;
}

.trl-navigator-item.is-answered.is-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.trl-navigator-item:hover:not(:disabled) {
  transform: scale(1.05);
}

/* --- Sonuç Ekranı Tasarımı --- */
.trl-result-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.trl-result-badge-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.trl-result-level-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.trl-result-badge {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  padding: 10px 32px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(47, 107, 237, 0.25);
  line-height: 1;
}

.trl-result-content {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.trl-result-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: center;
}

.trl-result-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.trl-result-company-sub {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.trl-result-greeting {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}

.trl-result-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}

.trl-result-divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.trl-result-next-steps h3,
.trl-result-summary-box h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.trl-result-next-steps ul {
  padding-left: 20px;
  margin: 0;
}

.trl-result-next-steps li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}

.trl-result-summary-box {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.trl-result-summary-box p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.trl-result-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* --- Modal Stilleri --- */
.trl-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  transition: opacity 0.2s ease;
}

.trl-modal-overlay[hidden] {
  display: none !important;
}

.trl-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 500px;
  width: 100%;
  animation: trlModalShow 0.3s ease;
}

@keyframes trlModalShow {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.trl-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
}

.trl-modal-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

.trl-modal-close {
  background: transparent;
  border: 0;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  margin-top: -4px;
}

.trl-modal-close:hover {
  color: var(--navy);
}

.trl-modal-body {
  padding: 24px;
}

.trl-modal-body p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.trl-modal-footer {
  padding: 16px 24px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   RESPONSIVE DESIGN (TRL-*)
   ============================================================ */
@media (max-width: 1024px) {
  .trl-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .trl-layout {
    grid-template-columns: 1fr;
  }

  .trl-navigator {
    position: static;
    max-height: none;
    order: 2;
  }

  .trl-navigator-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .trl-two-col-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
    .dd-why .feature-media.collage {
    min-height: 0;
  }

  .dd-why .feature-media.collage .collage-back {
    width: 100%;
    height: 240px;
  }

  .dd-why .feature-media.collage .collage-front {
    position: static;
    width: 100%;
    height: 200px;
    margin-top: 14px;
    border-width: 0;
  }
}

@media (max-width: 768px) {
  .trl-form-grid {
    grid-template-columns: 1fr;
  }

  .trl-field-full {
    grid-column: span 1;
  }

  .trl-card {
    padding: 24px;
  }

  .trl-result-actions,
  .trl-actions {
    flex-direction: column;
    gap: 12px;
  }

  .trl-result-actions .btn,
  .trl-actions .btn {
    width: 100%;
  }

  .trl-steps-indicator {
    gap: 8px;
  }

  .trl-step-label {
    display: none; /* Mobilde yazıları gizleyip sadece sayıları göstermek taşmayı önler */
  }

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

@media (max-width: 480px) {
  .trl-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .trl-navigator-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .trl-modal-overlay {
    padding: 16px;
  }

  .trl-modal-footer {
    flex-direction: column;
  }

  .trl-modal-footer .btn {
    width: 100%;
  }
}

@keyframes trl-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-delay: 0s !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-entrance,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .announcement-track,
  .announcement-slide,
  .announcement-dot {
    transition: none !important;
  }
}

/* Dijital Olgunluk değerlendirme formu */
.dm-assessment {
  background: #eef6ff;
  padding: 56px 0 90px;
}
.dm-heading {
  text-align: center;
  margin-bottom: 30px;
}
.dm-heading h1,
.dm-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}
.dm-heading p {
  color: #4b5563;
}
.dm-eyebrow {
  color: #2f6bed !important;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
  margin-top: 14px;
  text-transform: uppercase;
}
.ai-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 18px !important;
  color: #1e40af !important;
  background: #ffffff !important;
  border: 1.5px solid #93c5fd !important;
  border-radius: 9999px !important;
  font-family: var(--font-head);
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12) !important;
}
.ai-badge span[aria-hidden="true"] {
  color: #2563eb !important;
  font-size: 14px;
}
.dm-ai-notice {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 14px;
  color: #64748b !important;
}
.dm-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.03);
  padding: clamp(24px, 5vw, 44px);
}
.dm-card[hidden] { display: none; }
.dm-card > label { display: block; font-weight: 700; margin-bottom: 8px; }
.dm-form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dm-field { display: flex; flex-direction: column; gap: 6px; }
.dm-field-wide { grid-column: 1 / -1; }
.dm-field label { font-size: 13px; font-weight: 700; }
.dm-field input,
.dm-select {
  background: #fff;
  border: 1px solid #b9c9da;
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 10px 14px;
  width: 100%;
}
.dm-field input:focus,
.dm-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 107, 237, .12);
  outline: 0;
}
.dm-field-error {
  color: #b42318;
  display: block;
  font-size: 12px;
  min-height: 18px;
}
.dm-consent {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.dm-consent input { accent-color: var(--blue); margin-top: 5px; }
.dm-consent span { color: #4b5563; font-size: 13px; line-height: 1.5; }
.dm-question-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}
.dm-edit-profile {
  background: #f4f8fc;
  border: 1px solid #b9c9da;
  color: #243247;
}
.dm-edit-profile:hover { background: #e8f0f8; }
.dm-progress-row { margin-bottom: 26px; }
.dm-progress-row > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dm-category { color: var(--blue); font-weight: 700; }
.dm-progress-track {
  background: #e3eaf2;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}
.dm-progress-track span {
  background: var(--blue);
  display: block;
  height: 100%;
  transition: width .2s ease;
}
#dm-question-text { font-size: clamp(20px, 3vw, 28px); margin-bottom: 24px; }
.dm-options { border: 0; display: grid; gap: 10px; margin: 0; padding: 0; }
.dm-option {
  align-items: flex-start;
  border: 1px solid #d8e1ec;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
}
.dm-option:has(input:checked) { background: #e9f4ff; border-color: var(--blue); }
.dm-option input { margin-top: 4px; }
.dm-message { color: #b42318; min-height: 24px; margin: 14px 0 4px; }
.dm-actions { display: flex; justify-content: space-between; margin-top: 18px; }
.dm-result { text-align: center; }
.dm-result-heading { margin-bottom: 14px; }
.dm-result-sector {
  color: var(--blue);
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
}
.dm-result-level {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 4px;
  overflow-wrap: anywhere;
}
.dm-result-comment {
  color: #4b5563;
  font-size: 16px;
  margin: 0 auto;
  max-width: 680px;
}
.dm-result-person {
  border-bottom: 1px solid #dbe7f4;
  border-top: 1px solid #dbe7f4;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  padding: 18px 0;
  text-align: left;
}
.dm-result-person span {
  color: #607086;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
.dm-result-person strong { display: block; margin-top: 4px; }
.dm-result-summary {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin: 28px 0;
}
.dm-result-summary div {
  background: #f4f8fc;
  border-radius: 14px;
  padding: 20px;
}
.dm-result-summary strong { display: block; font-size: 28px; }
.dm-result-summary span { color: #607086; }
.dm-ai-recommendations {
  margin: 26px 0 20px;
  padding: 20px;
  text-align: left;
  background: #f4f8fc;
  border: 1px solid #dbe7f4;
  border-radius: 14px;
}
.dm-ai-recommendations h3 { margin: 12px 0 8px; }
.dm-ai-recommendations p { color: #4b5563; font-size: 14px; }
.dm-category-results { display: grid; gap: 14px; margin: 20px 0; text-align: left; }
.dm-category-results article { border: 1px solid #dbe7f4; border-radius: 12px; padding: 16px; }
.dm-category-title {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.dm-category-level {
  color: var(--ink);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 6px;
}
.dm-category-metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.dm-category-metrics span { color: #607086; }
.dm-category-bar {
  background: #e3eaf2;
  border-radius: 999px;
  height: 7px;
  margin-top: 12px;
  overflow: hidden;
}
.dm-category-bar span {
  background: var(--blue);
  display: block;
  height: 100%;
}
.dm-priority-development {
  background: #fff6e6;
  border-radius: 12px;
  margin: 20px 0;
  padding: 18px;
}
.dm-priority-development > h3 {
  color: #5f461d;
  margin: 0 0 14px;
}
.dm-priority-development-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dm-development-item {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(118, 91, 44, .18);
  border-radius: 10px;
  min-width: 0;
  padding: 14px;
}
.dm-development-item span,
.dm-development-item strong {
  display: block;
  overflow-wrap: anywhere;
}
.dm-development-item span {
  color: #765b2c;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.dm-development-item strong { color: #4d3714; margin-top: 7px; }
.dm-development-item p {
  color: #604820;
  line-height: 1.55;
  margin-top: 7px;
  overflow-wrap: anywhere;
}
.dm-result-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}
.dm-copyright {
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.4;
  margin-top: 2rem;
  padding: 1rem 0 0;
  text-align: center;
}

.demo-admin-entry {
  align-items: center;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: .06em;
  min-height: 36px;
  padding: .45rem .9rem;
  text-decoration: none;
  white-space: nowrap;
}
.demo-admin-entry:hover,
.demo-admin-entry:focus-visible {
  color: #fff;
  filter: brightness(1.08);
}

.language-toggle {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  min-height: 36px;
  min-width: 42px;
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin: 0;
  text-decoration: none;
}
.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   HAFİF MİKRO ANİMASYONLAR
   ============================================================ */
.motion-ready .hero-entrance {
  animation: hero-entrance 520ms ease-out both;
  animation-delay: var(--hero-delay, 0ms);
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
}

.motion-ready .reveal-on-scroll.is-visible {
  animation: reveal-on-scroll 500ms ease-out both;
  animation-delay: var(--reveal-delay, 0ms);
  opacity: 1;
  transform: none;
}

.service-card,
.dd-card,
.dd-ai-feature-grid article,
.blog-categories li,
.dm-category-results article {
  transition:
    transform 230ms ease,
    box-shadow 230ms ease,
    border-color 230ms ease,
    background-color 230ms ease;
}

.ai-badge {
  animation: ai-badge-glow 3.2s ease-in-out 2;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .dd-card:hover,
  .dd-ai-feature-grid article:hover,
  .blog-categories li:hover,
  .dm-category-results article:hover {
    border-color: rgba(47, 107, 237, .28);
    box-shadow: 0 14px 34px rgba(17, 24, 39, .13);
    transform: translateY(-4px);
  }
}

@keyframes hero-entrance {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes reveal-on-scroll {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ai-badge-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(47, 107, 237, 0);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 14px rgba(47, 107, 237, .16);
    opacity: .94;
  }
}

@media (max-width: 640px) {
  .dm-form-grid, .dm-result-person { grid-template-columns: 1fr; }
  .dm-field-wide { grid-column: auto; }
  .dm-progress-row > div:first-child { display: grid; gap: 4px; }
  .dm-actions, .dm-result-summary { grid-template-columns: 1fr; }
  .dm-question-toolbar .btn { width: 100%; }
  .dm-actions { flex-direction: column-reverse; gap: 10px; }
  .dm-actions .btn, .dm-result-actions .btn { width: 100%; }
  .dm-result-actions { flex-direction: column; }
  .dm-category-metrics { align-items: flex-start; flex-direction: column; gap: 4px; }
  .dm-priority-development-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .demo-admin-entry,
  .language-toggle {
    align-self: center;
    margin: .8rem 0;
  }
  .dd-ai-feature-grid { grid-template-columns: 1fr; }
}
