/* ============================================================
   KAYRAB ALÜMİNYUM — Tasarım Sistemi
   Marka renkleri: Antrasit (#2d2d2d) + Amber (#f5a623)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --charcoal: #2d2d2d;
  --charcoal-900: #1c1c1c;
  --charcoal-800: #242424;
  --charcoal-700: #333333;
  --amber: #f5a623;
  --amber-600: #e0951a;
  --amber-soft: #ffbf47;

  /* Neutrals */
  --ink: #1f2328;
  --body: #4a4f57;
  --muted: #8a9099;
  --line: #e7e9ee;
  --surface: #ffffff;
  --surface-2: #f6f7f9;
  --surface-3: #eef0f3;

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 10px 30px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, 0.14);
  --ring: 0 0 0 4px rgba(245, 166, 35, 0.18);

  /* Layout */
  --container: 1200px;
  --nav-h: 76px;

  /* Type */
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; position: relative; min-height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(56px, 8vw, 110px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-600);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber);
  display: inline-block;
}
.section-title {
  font-size: clamp(28px, 4.4vw, 46px);
  margin-top: 16px;
  color: var(--ink);
}
.section-lead {
  margin-top: 18px;
  max-width: 620px;
  color: var(--body);
  font-size: 17px;
}
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--amber); color: #241a03; }
.btn-primary:hover { background: var(--amber-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(245,166,35,.34); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-soft); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--amber); color: var(--amber-600); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 40px; width: auto; }
.nav-brand .wordmark { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--charcoal); letter-spacing: .5px; }
.nav-brand .wordmark small { color: var(--amber); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--amber-600); background: var(--surface-2); }
.nav-link.active { color: var(--amber-600); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > .nav-link .caret { margin-left: 4px; transition: transform .2s var(--ease); }
.nav-item:hover > .nav-link .caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-dropdown a:hover { background: var(--surface-2); color: var(--amber-600); }
.nav-dropdown a .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex: none; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang { position: relative; font-family: var(--font-head); }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 12px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
  font-weight: 600; font-size: 14px; color: var(--ink); cursor: pointer;
}
.lang-btn:hover { border-color: var(--amber); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-lg); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s var(--ease);
}
.lang:hover .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-weight: 600; font-size: 14px; color: var(--ink); }
.lang-menu a:hover { background: var(--surface-2); color: var(--amber-600); }
.lang-menu a .flag { font-size: 16px; }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(245,166,35,.16), transparent 58%),
    linear-gradient(160deg, #333 0%, #2a2a2a 46%, #1b1b1b 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
}
.hero h1 .accent { color: var(--amber); }
.hero-lead { margin-top: 24px; max-width: 540px; color: #c9cbd0; font-size: 18px; }
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { margin-top: 52px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: #fff; }
.hero-stat .n span { color: var(--amber); }
.hero-stat .l { font-size: 13.5px; color: #9a9da3; letter-spacing: .03em; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .placeholder { color: rgba(255,255,255,.4); font-family: var(--font-head); font-weight: 600; text-align: center; padding: 24px; }

/* ============================================================
   SYSTEMS (Sistemler)
   ============================================================ */
.systems-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.system-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.system-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.system-card__media {
  aspect-ratio: 16/11;
  background: linear-gradient(145deg, var(--charcoal-700), var(--charcoal-900));
  display: grid; place-items: center;
  color: rgba(255,255,255,.35);
  font-family: var(--font-head); font-weight: 700; letter-spacing: .08em;
  position: relative; overflow: hidden;
}
.system-card__media img { width: 100%; height: 100%; object-fit: cover; }
.system-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--amber); color: #241a03;
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: .06em; padding: 6px 12px; border-radius: 999px;
}
.system-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.system-card__body h3 { font-size: 21px; }
.system-card__body p { margin-top: 10px; font-size: 15px; color: var(--body); flex: 1; }
.system-card__link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--amber-600);
  transition: gap .2s var(--ease);
}
.system-card:hover .system-card__link { gap: 14px; }

/* ============================================================
   FEATURES / ABOUT
   ============================================================ */
.about { background: var(--surface-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual {
  aspect-ratio: 5/4; border-radius: var(--radius);
  background: linear-gradient(145deg, var(--charcoal-700), var(--charcoal-900));
  box-shadow: var(--shadow-lg); display: grid; place-items: center; overflow: hidden;
  color: rgba(255,255,255,.35); font-family: var(--font-head);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { margin-top: 28px; display: grid; gap: 18px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; color: var(--amber-600);
}
.feature .ic svg { width: 22px; height: 22px; }
.feature h4 { font-size: 17px; }
.feature p { margin-top: 4px; font-size: 15px; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta {
  background:
    radial-gradient(700px 400px at 85% 20%, rgba(245,166,35,.18), transparent 60%),
    linear-gradient(160deg, #2c2c2c, #1a1a1a);
  color: #fff;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); }
.cta p { margin-top: 12px; color: #c3c5cb; max-width: 520px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal-900);
  color: #b7bac0;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h5 {
  font-family: var(--font-head); color: #fff; font-size: 14px;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700;
}
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand .wordmark { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: #fff; margin-bottom: 16px; }
.footer-brand .wordmark small { color: var(--amber); }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer-links a { display: block; padding: 7px 0; font-size: 14.5px; color: #b7bac0; transition: color .18s var(--ease); }
.footer-links a:hover { color: var(--amber-soft); }
.footer-contact li { display: flex; gap: 12px; padding: 9px 0; font-size: 14.5px; align-items: flex-start; }
.footer-contact li svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.12); color: #b7bac0;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.footer-social a:hover { color: var(--amber); border-color: var(--amber); background: rgba(245,166,35,.08); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; font-size: 13.5px; color: #83868c; flex-wrap: wrap;
}

/* ============================================================
   SİNEMATİK BİRLEŞME ANİMASYONU (Faz 4)
   ============================================================ */
.assembly {
  position: relative;
  background: #171717;          /* sabitleme boşluğu için düz zemin */
  color: #fff;
  overflow: hidden;
}
/* ÖNEMLİ: arka plan sabitlenen (pinned) katmanda olmalı — aksi halde
   pin sırasında içerik arka planını kaybedip alttaki bölümlerin üstüne biner. */
.assembly__pin {
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;             /* parçalar asla dışarı taşmasın */
  background:
    radial-gradient(900px 600px at 50% 30%, rgba(245,166,35,.10), transparent 60%),
    linear-gradient(180deg, #1e1e1e 0%, #141414 100%);
}
.assembly__head { text-align: center; padding: 0 24px; margin-bottom: 8px; z-index: 3; }
.assembly__head .eyebrow { color: var(--amber-soft); justify-content: center; }
.assembly__title {
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  margin-top: 14px;
}
.assembly__stage {
  position: relative;
  width: min(90vw, 900px);
  height: min(64vh, 540px);
  margin: 10px auto 0;
  perspective: 1400px;
  transform-style: preserve-3d;
}
/* Montajlı görsel, parçaların oturduğu pencere boyutuyla uyumlu olsun */
.assembly__assembled img { max-height: 64%; }
.assembly__layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  will-change: transform, opacity, filter;
}
.assembly__layer img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}
.assembly__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(245,166,35,.28), transparent 72%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.assembly__assembled { z-index: 3; }
.assembly__exploded { z-index: 2; }

/* Dağınık parçalar */
.assembly__parts { position: absolute; inset: 0; z-index: 2; transform-style: preserve-3d; }
.assembly__part {
  position: absolute;
  left: 50%; top: 50%;
  max-width: 22%;
  max-height: 26%;
  width: auto; height: auto;
  object-fit: contain;
  opacity: 0;                 /* JS gelene kadar gizli (yığılma flash'ını önler) */
  will-change: transform, opacity;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.55));
  -webkit-user-drag: none;
}

/* Adımlar / açıklama */
.assembly__steps {
  position: relative;
  z-index: 3;
  margin-top: 22px;
  height: 28px;
  text-align: center;
}
.assembly__step {
  position: absolute;
  left: 0; right: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: #c9cbd0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.assembly__step.active { opacity: 1; transform: none; }
.assembly__step .ok { color: var(--amber); }

/* İlerleme çubuğu */
.assembly__progress {
  position: relative;
  z-index: 3;
  width: min(320px, 70vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  margin: 20px auto 0;
  overflow: hidden;
}
.assembly__bar {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--amber-soft));
  transform: scaleX(0);
  transform-origin: left center;
}
.assembly__hint {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #8a8d93;
  transition: opacity .4s;
}
.assembly__hint svg { width: 20px; height: 20px; animation: assemblyBounce 1.8s infinite; }
@keyframes assemblyBounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* Statik fallback (reduced-motion veya GSAP yoksa) */
.assembly.is-static .assembly__exploded,
.assembly.is-static .assembly__parts { display: none; }
.assembly.is-static .assembly__steps,
.assembly.is-static .assembly__progress,
.assembly.is-static .assembly__hint { display: none; }
.assembly.is-static .assembly__pin { height: auto; padding: 80px 0; }
.assembly.is-static .assembly__assembled { position: relative; opacity: 1 !important; transform: none !important; filter: none !important; }
.assembly.is-static .assembly__stage { height: auto; }

/* ============================================================
   PARÇA KARTLARI (ürün detay)
   ============================================================ */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.part-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.part-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(245,166,35,.5); }
.part-chip__media {
  aspect-ratio: 1/1;
  background: var(--surface-3);
  border-radius: 8px;
  display: grid; place-items: center;
  overflow: hidden;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
}
.part-chip__media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.part-chip__code { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--ink); }
.part-chip__meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   Reveal on scroll (basit)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-menu, .nav-actions .lang { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px; gap: 4px; box-shadow: var(--shadow-md);
  }
  .nav-item .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 14px; min-width: 0; }
  .systems-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RTL (Arapça) — Faz 5'te tam aktifleşecek, temeli burada
   ============================================================ */
[dir="rtl"] .eyebrow::before { margin-left: 8px; margin-right: 0; }
[dir="rtl"] .feature { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .footer-contact li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }
/* Yön okları RTL'de ters çevrilir */
[dir="rtl"] .btn svg,
[dir="rtl"] .system-card__link svg,
[dir="rtl"] .hero-cta .btn svg { transform: scaleX(-1); }
[dir="rtl"] .system-card__link:hover,
[dir="rtl"] .system-card:hover .system-card__link { gap: 14px; }
/* Metin hizalama */
[dir="rtl"] .hero-lead,
[dir="rtl"] .section-lead:not(.center *),
[dir="rtl"] .system-card__body,
[dir="rtl"] .feature h4,
[dir="rtl"] .feature p { text-align: right; }
[dir="rtl"] .nav-dropdown a,
[dir="rtl"] .lang-menu a { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .system-card__badge { left: auto; right: 14px; }
[dir="rtl"] .assembly__step .ok { margin-left: 4px; }
/* Amber vurgu ve genel akış zaten dir ile doğru çalışır */
