@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&display=swap');
:root {
      --red: #e60023;
      --red-glow: rgba(230, 0, 35, 0.45);
      --dark: #0a0a0a;
      --dark-2: #111111;
      --dark-3: #181818;
      --gray: #8a8a8a;
      --light: #f4f4f4;
      --whatsapp: #25d366;
      --header-h: 78px;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--dark);
      color: #fff;
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    .container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

    /* ========== KEYFRAMES ========== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(48px); filter: blur(6px); }
      to { opacity: 1; transform: translateY(0); filter: blur(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.88); filter: blur(4px); }
      to { opacity: 1; transform: scale(1); filter: blur(0); }
    }
    @keyframes floatSoft {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-14px) rotate(1.5deg); }
    }
    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
      50% { box-shadow: 0 0 0 16px transparent; }
    }
    @keyframes shine {
      0% { left: -120%; }
      100% { left: 140%; }
    }
    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
      33% { transform: translate(30px, -40px) scale(1.1); opacity: 0.7; }
      66% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.4; }
    }
    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes rotateRing {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes countPop {
      0% { transform: scale(1); }
      40% { transform: scale(1.18); }
      100% { transform: scale(1); }
    }
    @keyframes borderPulse {
      0%, 100% { border-color: rgba(230,0,35,0.15); }
      50% { border-color: rgba(230,0,35,0.5); }
    }
    @keyframes textShine {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    
    /* ===== PAGE LOADER ===== */
    .page-loader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
    }
    .page-loader.is-done {
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
      display: none !important;
    }
    .loader-logo {
      width: 64px;
      height: 64px;
      background: var(--red);
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 1.2rem;
      color: #fff;
      letter-spacing: -0.02em;
      box-shadow: 0 0 0 0 rgba(230, 0, 35, 0.5);
      animation: loaderPulse 1.4s ease-in-out infinite;
      margin-bottom: 28px;
    }
    @keyframes loaderPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 0, 35, 0.45);
      }
      50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(230, 0, 35, 0);
      }
    }
    .loader-brand {
      font-family: "Caveat", "Segoe Script", "Comic Sans MS", cursive;
      font-weight: 600;
      font-size: clamp(1.35rem, 3.2vw, 1.85rem);
      letter-spacing: 0.01em;
      line-height: 1.35;
      text-align: center;
      max-width: min(420px, 88vw);
      margin: 0 auto 28px;
      color: #1f2937;
      opacity: 0;
      animation: loaderFadeUp 0.6s 0.15s forwards;
    }
    @keyframes loaderFadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .loader-bar-wrap {
      width: min(220px, 60vw);
      height: 2px;
      background: rgba(0,0,0,0.08);
      border-radius: 2px;
      overflow: hidden;
      opacity: 0;
      animation: loaderFadeUp 0.5s 0.3s forwards;
    }
    .loader-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--red), #ff6b81);
      border-radius: 2px;
      box-shadow: 0 0 12px var(--red-glow);
      transition: width 0.25s ease-out;
    }
    .loader-text {
      margin-top: 18px;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(17,24,39,0.45);
      opacity: 0;
      animation: loaderFadeUp 0.5s 0.4s forwards;
    }
    body.is-loading {
      overflow: hidden;
    }

    /* Progress */
    .progress-bar {
      position: fixed; top: 0; left: 0; height: 2.5px;
      background: linear-gradient(90deg, var(--red), #ff4d6a);
      width: 0%; z-index: 1200;
      box-shadow: 0 0 12px var(--red-glow);
      transition: width 0.08s linear;
    }

    /* Grain overlay */
    body::after {
      content: '';
      position: fixed; inset: 0; pointer-events: none; z-index: 9999;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ========== HEADER ========== */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: var(--header-h);
      background: rgba(10,10,10,0.65);
      backdrop-filter: blur(22px) saturate(160%);
      border-bottom: 1px solid transparent;
      transition: background 0.45s, border-color 0.45s, box-shadow 0.45s;
    }
    .header.scrolled {
      background: rgba(10,10,10,0.94);
      border-bottom-color: rgba(255,255,255,0.05);
      box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    }
    .nav-wrap {
      height: 100%; display: flex; align-items: center; justify-content: space-between;
    }
    .logo {
      display: flex; align-items: center; gap: 12px;
      font-weight: 800; font-size: 1.22rem; letter-spacing: -0.03em;
      transition: transform 0.4s var(--ease-spring);
    }
    .logo:hover { transform: scale(1.04); }
    .logo-mark {
      width: 36px; height: 36px; background: var(--red); border-radius: 8px;
      display: grid; place-items: center; font-size: 0.82rem; font-weight: 800;
      box-shadow: 0 4px 16px var(--red-glow);
      transition: transform 0.5s var(--ease-spring), box-shadow 0.4s;
    }
    .logo:hover .logo-mark {
      transform: rotate(-10deg) scale(1.12);
      box-shadow: 0 6px 24px var(--red-glow);
    }
    .nav-links { display: flex; gap: 2px; }
    .nav-links a {
      padding: 8px 15px; font-size: 0.88rem; font-weight: 500;
      color: rgba(255,255,255,0.65); position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 3px; left: 15px; right: 15px;
      height: 1.5px; background: var(--red);
      transform: scaleX(0); transform-origin: right;
      transition: transform 0.4s var(--ease);
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

    .btn-nav {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 22px; background: var(--red); color: #fff;
      font-weight: 600; font-size: 0.88rem; border-radius: 8px;
      position: relative; overflow: hidden;
      box-shadow: 0 4px 18px var(--red-glow);
      transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    }
    .btn-nav::before {
      content: ''; position: absolute; top: 0; left: -120%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    }
    .btn-nav:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 32px var(--red-glow);
    }
    .btn-nav:hover::before { animation: shine 0.7s ease; }

    .hamburger {
      display: none; width: 42px; height: 42px;
      flex-direction: column; align-items: center; justify-content: center; gap: 5px;
      background: rgba(255,255,255,0.06); border-radius: 10px;
      transition: background 0.3s;
    }
    .hamburger span {
      width: 17px; height: 2px; background: #fff; border-radius: 2px;
      transition: 0.4s var(--ease);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      position: fixed; top: var(--header-h); left: 0; right: 0;
      background: rgba(12,12,12,0.97); backdrop-filter: blur(20px);
      padding: 16px 28px 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
      transform: translateY(-16px); opacity: 0; visibility: hidden;
      transition: all 0.45s var(--ease); z-index: 999;
    }
    .mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .mobile-menu a {
      display: block; padding: 14px 0; font-weight: 500; font-size: 1.05rem;
      color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.05);
      opacity: 0; transform: translateX(-20px); transition: all 0.4s var(--ease);
    }
    .mobile-menu.open a { opacity: 1; transform: translateX(0); }
    .mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
    .mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
    .mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; overflow: hidden; padding-top: var(--header-h);
    }
    #webgl-canvas {
      position: fixed; inset: 0; width: 100%; height: 100%;
      z-index: 0; pointer-events: none;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(110deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.22) 50%, rgba(10,10,10,0.55) 100%);
      pointer-events: none;
    }
    .hero, .section, .footer, .header, .hero-content, .hero-strip, .cinematic {
      position: relative; z-index: 5;
    }
    .cinematic { z-index: 4; } /* content above fixed bg (z:1) */
    .header { z-index: 1000; }
    .floating-right, .lang-float, .scroll-top { z-index: 900; }
    .progress-bar { z-index: 1200; }
    .mobile-menu { z-index: 999; }
    .hero-orb {
      position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 3;
    }
    .hero-orb-1 {
      width: 380px; height: 380px; top: 8%; right: 8%;
      background: radial-gradient(circle, rgba(230,0,35,0.18), transparent 70%);
      animation: orbFloat 14s ease-in-out infinite;
    }
    .hero-orb-2 {
      width: 240px; height: 240px; bottom: 18%; left: 8%;
      background: radial-gradient(circle, rgba(80,40,200,0.1), transparent 70%);
      animation: orbFloat 18s ease-in-out infinite reverse;
    }

    .hero-content {
      position: relative; z-index: 5; max-width: 700px; padding: 50px 0 120px;
      margin-left: 0;
      margin-right: auto;
    }
    .hero > .container {
      padding-left: 40px;
      padding-right: 40px;
    }
    .hero-strip .container {
      padding-left: 40px;
      padding-right: 40px;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--red); margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.9s 0.15s var(--ease) forwards;
    }
    .hero-eyebrow::before {
      content: ''; width: 7px; height: 7px; background: var(--red);
      border-radius: 50%; animation: pulseGlow 2.2s infinite;
    }
    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.08rem, 4.32vw, 3.28rem); font-weight: 700; /* -20% */
      line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 22px;
      opacity: 0; animation: fadeUp 1s 0.35s var(--ease) forwards;
    }
    .hero h1 .grad {
      background: linear-gradient(90deg, #fff 0%, #ff6b81 40%, #fff 60%, #ff6b81 100%);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: textShine 6s linear infinite;
    }
    .hero .lead {
      font-size: 1.1rem; color: rgba(255,255,255,0.68);
      max-width: 520px; margin-bottom: 36px; line-height: 1.75;
      opacity: 0; animation: fadeUp 1s 0.55s var(--ease) forwards;
    }
    .hero-actions {
      display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
      opacity: 0; animation: fadeUp 1s 0.75s var(--ease) forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 15px 26px 15px 28px;
      color: #fff;
      font-weight: 650;
      font-size: 0.94rem;
      letter-spacing: 0.02em;
      border-radius: 999px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      border: 1px solid rgba(255,255,255,0.14);
      background:
        linear-gradient(135deg, #ff1a3c 0%, #e60023 45%, #b8001c 100%);
      box-shadow:
        0 4px 16px rgba(230,0,35,0.35),
        0 12px 32px rgba(230,0,35,0.18),
        inset 0 1px 0 rgba(255,255,255,0.22);
      transition:
        transform 0.45s cubic-bezier(.16,1,.3,1),
        box-shadow 0.45s ease,
        border-color 0.35s ease,
        filter 0.35s ease;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: -130%;
      width: 55%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
      z-index: 1;
      pointer-events: none;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,0.22), transparent 55%);
      z-index: 0;
      pointer-events: none;
    }
    .btn-primary > * { position: relative; z-index: 2; }
    .btn-primary svg {
      transition: transform 0.4s cubic-bezier(.16,1,.3,1);
      flex-shrink: 0;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      border-color: rgba(255,255,255,0.28);
      filter: brightness(1.05);
      box-shadow:
        0 8px 24px rgba(230,0,35,0.45),
        0 18px 48px rgba(230,0,35,0.25),
        inset 0 1px 0 rgba(255,255,255,0.28);
    }
    .btn-primary:hover::before { animation: shine 0.75s ease; }
    .btn-primary:hover svg { transform: translateX(4px); }
    .btn-primary:active {
      transform: translateY(-1px) scale(0.985);
      filter: brightness(0.98);
    }

    .btn-play {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 10px 18px; color: #fff; font-weight: 500; font-size: 0.92rem;
      transition: transform 0.35s var(--ease), opacity 0.3s;
    }
    .btn-play:hover { transform: translateX(6px); opacity: 0.92; }
    .btn-play .circle {
      width: 50px; height: 50px; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.28);
      display: grid; place-items: center;
      transition: all 0.45s var(--ease-spring);
      position: relative;
    }
    .btn-play .circle::after {
      content: ''; position: absolute; inset: -4px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.08);
      transition: border-color 0.4s;
    }
    .btn-play:hover .circle {
      border-color: #fff; background: rgba(255,255,255,0.1);
      transform: scale(1.12);
    }
    .btn-play:hover .circle::after { border-color: rgba(255,255,255,0.2); }
    .btn-play .circle svg { margin-left: 2px; transition: transform 0.3s; }
    .btn-play:hover .circle svg { transform: scale(1.15); }

    .hero-strip {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 6;
      background: rgba(255,255,255,0.025); backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255,255,255,0.05); padding: 18px 0;
      opacity: 0; animation: fadeIn 1.1s 1.1s forwards;
    }
    .hero-strip-inner {
      display: flex; justify-content: center; align-items: center;
      gap: 32px 48px; flex-wrap: wrap;
      padding-left: 24px;
      padding-right: 48px; /* sağ boşluk */
      box-sizing: border-box;
    }
    .strip-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.86rem; color: rgba(255,255,255,0.65);
      transition: transform 0.35s var(--ease), color 0.3s;
    }
    .strip-item:hover { transform: translateY(-4px); color: #fff; }
    .strip-item strong {
      color: #fff; font-weight: 700; font-size: 1.2rem;
      text-shadow: 0 0 20px rgba(230,0,35,0.3);
    }

    /* ========== SECTIONS ========== */
    .section { padding: 110px 0; }
    .section-light { background: var(--light); color: #1a1a1a; }
    .section-dark { background: rgba(17, 17, 17, 0.97); backdrop-filter: blur(8px); }
    .footer { background: rgba(6, 6, 6, 0.95); }
    .section-header {
      text-align: center; max-width: 580px; margin: 0 auto 60px;
    }
    .section-header .eyebrow {
      font-size: 0.76rem; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--red); margin-bottom: 14px;
    }
    .section-header h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 3.8vw, 2.65rem); font-weight: 700;
      letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 14px;
    }
    .section-header p { color: var(--gray); font-size: 1.05rem; }
    .section-light .section-header p { color: #666; }

    /* Reveal system – scroll ile yazılar efektle gelsin */
    .reveal {
      opacity: 0;
      transform: translateY(72px);
      filter: blur(10px);
      transition:
        opacity 1.05s var(--ease),
        transform 1.05s var(--ease),
        filter 1.05s var(--ease);
      will-change: opacity, transform, filter;
    }
    .reveal.from-left {
      transform: translateX(-64px) translateY(24px);
    }
    .reveal.from-right {
      transform: translateX(64px) translateY(24px);
    }
    .reveal.from-scale {
      transform: scale(0.86) translateY(48px);
    }
    .reveal.visible {
      opacity: 1;
      transform: translate(0) scale(1);
      filter: blur(0);
    }
    .reveal[data-delay="1"] { transition-delay: 0.12s; }
    .reveal[data-delay="2"] { transition-delay: 0.24s; }
    .reveal[data-delay="3"] { transition-delay: 0.36s; }
    .reveal[data-delay="4"] { transition-delay: 0.48s; }

    /* Başlık / metin kademeli giriş */
    .section-header.reveal .eyebrow {
      opacity: 0; transform: translateY(14px);
      transition: opacity 0.75s 0.05s var(--ease), transform 0.75s 0.05s var(--ease);
    }
    .section-header.reveal h2 {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.95s 0.18s var(--ease), transform 0.95s 0.18s var(--ease);
    }
    .section-header.reveal p {
      opacity: 0; transform: translateY(22px);
      transition: opacity 0.9s 0.32s var(--ease), transform 0.9s 0.32s var(--ease);
    }
    .section-header.reveal.visible .eyebrow,
    .section-header.reveal.visible h2,
    .section-header.reveal.visible p {
      opacity: 1; transform: translateY(0);
    }

    /* BENTO GRID – reference style + animations */
    @keyframes bentoIn {
      from {
        opacity: 0;
        transform: translateY(48px) scale(0.96);
        filter: blur(6px);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }
    @keyframes bentoShine {
      0% { left: -120%; }
      100% { left: 140%; }
    }
    @keyframes avatarPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(230, 0, 35, 0.35); }
      50% { box-shadow: 0 0 0 6px rgba(230, 0, 35, 0); }
    }
    @keyframes statGlow {
      0%, 100% { text-shadow: 0 0 0 transparent; }
      50% { text-shadow: 0 0 28px rgba(255,255,255,0.15); }
    }
    @keyframes tagFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    .bento-section {
      background: #f0f0f1;
      padding: 48px 0 80px;
      position: relative;
      z-index: 5;
      margin-top: 0;
    }
    .bento-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr 1.1fr 1.2fr;
      gap: 18px;
      align-items: stretch;
      perspective: 1200px;
    }
    .bento-card {
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      opacity: 0;
      transform: translateY(48px) scale(0.96);
      transform-style: preserve-3d;
      transition:
        transform 0.15s ease-out,
        box-shadow 0.45s var(--ease);
      will-change: transform;
    }
    .bento-card .bento-text,
    .bento-card .bento-stat,
    .bento-card .bento-photo {
      transform: translateZ(0);
      transform-style: preserve-3d;
    }
    /* 3D depth on inner content */
    .bento-card .bento-tag,
    .bento-card h3,
    .bento-card .bento-cta,
    .bento-card .big,
    .bento-card .bento-avatars {
      transition: transform 0.15s ease-out;
    }
    .bento-card.reveal.visible {
      animation: bentoIn 0.9s var(--ease) forwards;
    }
    .bento-card.reveal[data-delay="1"].visible { animation-delay: 0.05s; }
    .bento-card.reveal[data-delay="2"].visible { animation-delay: 0.15s; }
    .bento-card.reveal[data-delay="3"].visible { animation-delay: 0.25s; }
    .bento-card.reveal[data-delay="4"].visible { animation-delay: 0.35s; }

    .bento-card.is-tilting {
      box-shadow: 0 28px 60px rgba(0,0,0,0.16);
    }
    .bento-card:hover {
      box-shadow: 0 24px 56px rgba(0,0,0,0.14);
    }

    /* Shine sweep on hover */
    .bento-card::after {
      content: '';
      position: absolute;
      top: 0; left: -120%;
      width: 55%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
      pointer-events: none;
      z-index: 3;
    }
    .bento-card:hover::after {
      animation: bentoShine 0.75s ease;
    }

    .bento-text {
      background: #fff;
      padding: 28px 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 280px;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    }
    .bento-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      color: #555;
      background: #f3f3f3;
      border: 1px solid #e5e5e5;
      border-radius: 999px;
      padding: 6px 14px;
      margin-bottom: 18px;
      width: fit-content;
      transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.4s var(--ease-spring);
    }
    .bento-card:hover .bento-tag {
      background: rgba(230,0,35,0.08);
      color: var(--red);
      border-color: rgba(230,0,35,0.2);
      animation: tagFloat 1.6s ease-in-out infinite;
    }
    .bento-text h3 {
      font-size: 1.45rem;
      font-weight: 700;
      color: #111;
      line-height: 1.3;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      transition: transform 0.45s var(--ease), color 0.35s;
    }
    .bento-card:hover .bento-text h3 {
      transform: translateX(4px);
      color: #000;
    }
    .bento-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #111;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid #eee;
      transition: color 0.3s, gap 0.4s var(--ease);
    }
    .bento-cta .arrow {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--red); color: #fff;
      display: grid; place-items: center;
      box-shadow: 0 4px 14px var(--red-glow);
      transition: transform 0.45s var(--ease-spring), box-shadow 0.4s;
    }
    .bento-card:hover .bento-cta {
      color: var(--red);
      gap: 16px;
    }
    .bento-card:hover .bento-cta .arrow {
      transform: rotate(-45deg) scale(1.12);
      box-shadow: 0 6px 20px var(--red-glow);
    }

    .bento-photo {
      min-height: 280px;
      background: #ddd;
    }
    .bento-photo img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      min-height: 280px;
      transition: transform 0.85s var(--ease), filter 0.5s;
    }
    .bento-card:hover .bento-photo img {
      transform: scale(1.1);
      filter: brightness(1.05) contrast(1.05);
    }

    .bento-stat {
      background: #0d0d0d;
      color: #fff;
      padding: 28px 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 280px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      overflow: hidden;
    }
    .bento-stat::before {
      content: '';
      position: absolute;
      width: 180px; height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(230,0,35,0.2), transparent 70%);
      top: -40px; right: -40px;
      transition: transform 0.6s var(--ease), opacity 0.5s;
      opacity: 0.7;
    }
    .bento-card:hover .bento-stat::before,
    .bento-stat:hover::before {
      transform: scale(1.4);
      opacity: 1;
    }
    .bento-avatars {
      display: flex;
      align-items: center;
      margin-bottom: 18px;
    }
    .bento-avatars span {
      width: 40px; height: 40px; border-radius: 50%;
      border: 2px solid #0d0d0d;
      margin-left: -10px;
      background: linear-gradient(135deg, #444, #222);
      display: block;
      overflow: hidden;
      transition: transform 0.4s var(--ease-spring), z-index 0s;
      position: relative;
    }
    .bento-avatars span:first-child { margin-left: 0; }
    .bento-avatars span img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .bento-card:hover .bento-avatars span {
      animation: avatarPulse 1.8s ease infinite;
    }
    .bento-card:hover .bento-avatars span:nth-child(1) { transform: translateY(-4px) scale(1.08); z-index: 4; animation-delay: 0s; }
    .bento-card:hover .bento-avatars span:nth-child(2) { transform: translateY(-6px) scale(1.1); z-index: 3; animation-delay: 0.1s; }
    .bento-card:hover .bento-avatars span:nth-child(3) { transform: translateY(-4px) scale(1.08); z-index: 2; animation-delay: 0.2s; }
    .bento-card:hover .bento-avatars span:nth-child(4) { transform: translateY(-6px) scale(1.1); z-index: 1; animation-delay: 0.3s; }

    .bento-stat .label {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 12px;
      line-height: 1.4;
      transition: color 0.35s;
    }
    .bento-card:hover .bento-stat .label {
      color: rgba(255,255,255,0.9);
    }
    .bento-stat .big {
      font-size: clamp(1.8rem, 2.8vw, 2.4rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      transition: transform 0.45s var(--ease);
    }
    .bento-card:hover .bento-stat .big {
      transform: scale(1.04);
      animation: statGlow 2s ease-in-out infinite;
    }

    @media (max-width: 1100px) {
      .bento-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .bento-grid { grid-template-columns: 1fr; }
      .bento-section { margin-top: 0; padding-top: 40px; }
      .bento-card:hover { transform: translateY(-6px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .bento-card,
      .bento-card.reveal.visible {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }
    }

        /* SERVICES CARDS – light "Neler Yapıyoruz" style */
    .services-section {
      background: #f4f4f5;
      color: #1a1a1a;
      position: relative;
      overflow: hidden;
    }
    .services-section::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image:
        linear-gradient(90deg, #333 1px, transparent 1px),
        linear-gradient(#333 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
    }
    .services-section .section-header .eyebrow { color: var(--red); }
    .services-section .section-header h2 { color: #111; }
    .services-section .section-header p { color: #666; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
      z-index: 1;
    }
    .service-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.04);
      transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }
    .service-card-img {
      position: relative;
      height: 240px;
      overflow: hidden;
      background: #e8e8e8;
    }
    .service-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s var(--ease);
    }
    .service-card:hover .service-card-img img {
      transform: scale(1.08);
    }
    .service-card-body {
      padding: 24px 26px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .service-card-body h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 16px;
      line-height: 1.35;
    }
    .service-card-body .service-link {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.92rem;
      font-weight: 500;
      color: #555;
      border-top: 1px solid #eee;
      padding-top: 16px;
      transition: color 0.3s, gap 0.35s;
    }
    .service-card:hover .service-link {
      color: var(--red);
      gap: 12px;
    }
    .service-link svg {
      transition: transform 0.35s var(--ease);
    }
    .service-card:hover .service-link svg {
      transform: translateX(4px);
    }

    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .services-grid { grid-template-columns: 1fr; }
      .service-card-img { height: 200px; }
    }

    /* PORTFOLIO */    /* PORTFOLIO */
    .portfolio-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .portfolio-card {
      border-radius: 14px; overflow: hidden; background: var(--dark-3);
      border: 1px solid rgba(255,255,255,0.05);
      transition: transform 0.55s var(--ease), box-shadow 0.55s;
    }
    .portfolio-card:hover {
      transform: translateY(-14px);
      box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 50px rgba(230,0,35,0.06);
    }
    .portfolio-img { height: 250px; position: relative; overflow: hidden; }
    .portfolio-img .bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      transition: transform 0.7s cubic-bezier(.16,1,.3,1);
    }
    .portfolio-card:hover .bg { transform: scale(1.12); }
    .bg-1 { background: linear-gradient(145deg, #1a1a2e, #2d1b3d 40%, #4a1020); }
    .bg-2 { background: linear-gradient(145deg, #0f2027, #1a3a3a 50%, #0d3b2e); }
    .bg-3 { background: linear-gradient(145deg, #2c1810, #4a2010 50%, #1a0a05); }
    .portfolio-img .overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
      display: flex; align-items: flex-end; padding: 22px;
      opacity: 0; transform: translateY(18px);
      transition: all 0.5s var(--ease);
    }
    .portfolio-card:hover .overlay { opacity: 1; transform: translateY(0); }
    .overlay span {
      color: #fff; font-weight: 600; font-size: 0.9rem;
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap 0.35s;
    }
    .portfolio-card:hover .overlay span { gap: 12px; }
    .portfolio-body { padding: 24px; }
    .portfolio-body .tag {
      display: inline-block; font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 8px;
    }
    .portfolio-body h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 6px; }
    .portfolio-body p { font-size: 0.88rem; color: var(--gray); }

    /* CINEMATIC BANNER – fixed parallax background */
    .cinematic {
      position: relative;
      min-height: 78vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      /* transform/filter YOK – fixed background bozulmasın */
    }
    /* reveal sınıfı bu bölümde transform uygulamasın */
    .cinematic.reveal {
      opacity: 1;
      transform: none !important;
      filter: none !important;
      transition: none;
    }
    .cinematic-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: 1;
      pointer-events: none;
      background-color: #0d0d12;
      background-image:
        linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.7) 50%, rgba(8,8,8,0.88) 100%),
        url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.6s ease, visibility 0.6s;
    }
    /* Bölüm görünürken arka planı göster */
    .cinematic.is-fixed-active .cinematic-bg,
    .cinematic-bg.is-active {
      opacity: 1;
      visibility: visible;
    }
    /* Clip: sadece cinematic alanı içinde görünsün hissi için üst katman */
    .cinematic::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: transparent;
    }
    .cinematic-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 900px;
      padding: 80px 28px;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cinematic.reveal.visible .cinematic-content,
    .cinematic.is-fixed-active .cinematic-content {
      opacity: 1;
      transform: translateY(0);
    }
    .cinematic-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 22px;
    }
    .cinematic-label::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--red);
      border-radius: 1px;
      box-shadow: 0 0 12px var(--red-glow);
    }
    .cinematic-content h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: #fff;
      text-shadow: 0 4px 40px rgba(0,0,0,0.5);
      margin: 0;
    }
    .cinematic-content h2 span.line2 {
      display: block;
    }

    /* PROCESS */
    .process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }
    .process-step { text-align: center; }
    .step-num {
      width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
      background: var(--dark-3); border: 1.5px solid rgba(255,255,255,0.08);
      display: grid; place-items: center; font-size: 1.3rem; font-weight: 800;
      color: var(--red); position: relative;
      transition: all 0.5s var(--ease-spring);
    }
    .step-num::after {
      content: ''; position: absolute; inset: -5px; border-radius: 50%;
      border: 1px solid transparent; transition: border-color 0.4s;
    }
    .process-step:hover .step-num {
      background: var(--red); color: #fff; border-color: var(--red);
      transform: scale(1.14);
      box-shadow: 0 0 0 8px rgba(230,0,35,0.12), 0 12px 32px var(--red-glow);
    }
    .process-step:hover .step-num::after {
      border-color: rgba(230,0,35,0.35);
      animation: borderPulse 1.8s infinite;
    }
    .process-step h3 {
      font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
      transition: transform 0.35s;
    }
    .process-step:hover h3 { transform: translateY(-3px); }
    .process-step p {
      font-size: 0.88rem; color: var(--gray); max-width: 200px; margin: 0 auto;
    }

    /* CTA — light background */
    .cta-section {
      background: linear-gradient(165deg, #f7f7f8 0%, #f0f1f3 45%, #eef0f4 100%);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; width: 480px; height: 480px;
      top: -180px; right: -80px;
      background: radial-gradient(circle, rgba(230,0,35,0.08), transparent 65%);
      animation: floatSoft 10s ease-in-out infinite;
    }
    .cta-section .cta-text h2 { color: #1a1a1a; }
    .cta-section .cta-text p { color: #5c5c5c; }
    .cta-section .cta-list li { color: #333; }
    .cta-section .form-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 12px 40px rgba(0,0,0,0.06);
      backdrop-filter: none;
    }
    .cta-section .form-card label { color: #555; }
    .cta-section .form-card input,
    .cta-section .form-card select,
    .cta-section .form-card textarea {
      background: #f7f7f8;
      border: 1px solid #e2e2e6;
      color: #1a1a1a;
    }
    .cta-section .form-card input::placeholder,
    .cta-section .form-card textarea::placeholder { color: #999; }
    .cta-section .form-card input:focus,
    .cta-section .form-card select:focus,
    .cta-section .form-card textarea:focus {
      border-color: rgba(230,0,35,0.45);
      box-shadow: 0 0 0 3px rgba(230,0,35,0.1);
    }
    .cta-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
      align-items: start; position: relative; z-index: 1;
    }
    .cta-text h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 700;
      margin-bottom: 16px; line-height: 1.25;
    }
    .cta-text p {
      color: var(--gray); font-size: 1.05rem; margin-bottom: 28px; max-width: 400px;
    }
    .cta-list { display: flex; flex-direction: column; gap: 12px; }
    .cta-list li {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.95rem; color: rgba(255,255,255,0.85);
      transition: transform 0.35s var(--ease);
    }
    .cta-list li:hover { transform: translateX(8px); }
    .cta-list .check {
      width: 24px; height: 24px; border-radius: 50%;
      background: rgba(230,0,35,0.18); color: var(--red);
      display: grid; place-items: center; font-size: 0.7rem; font-weight: 700;
      flex-shrink: 0;
      transition: transform 0.4s var(--ease-spring), background 0.3s, box-shadow 0.3s;
    }
    .cta-list li:hover .check {
      transform: scale(1.25);
      background: rgba(230,0,35,0.3);
      box-shadow: 0 0 16px var(--red-glow);
    }
    .form-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px; padding: 36px;
      transition: border-color 0.45s, box-shadow 0.45s;
      backdrop-filter: blur(8px);
    }
    .form-card:focus-within {
      border-color: rgba(230,0,35,0.4);
      box-shadow: 0 0 0 4px rgba(230,0,35,0.08), 0 20px 50px rgba(0,0,0,0.25);
    }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block; font-size: 0.78rem; font-weight: 600;
      color: rgba(255,255,255,0.55); margin-bottom: 7px; transition: color 0.3s;
    }
    .form-group:focus-within label { color: rgba(255,255,255,0.9); }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 13px 16px; border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.035); color: #fff;
      font-size: 0.94rem; font-family: inherit;
      transition: border-color 0.35s, background 0.35s, transform 0.35s, box-shadow 0.35s;
    }
    .form-group input::placeholder, .form-group textarea::placeholder {
      color: rgba(255,255,255,0.28);
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: var(--red);
      background: rgba(255,255,255,0.06);
      box-shadow: 0 0 0 3px rgba(230,0,35,0.15);
      transform: translateY(-2px);
    }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.45)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
    }
    .form-group select option { background: #1a1a1a; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .btn-submit {
      width: 100%; padding: 15px; background: var(--red); color: #fff;
      font-weight: 700; font-size: 1rem; border-radius: 10px; margin-top: 8px;
      position: relative; overflow: hidden;
      box-shadow: 0 6px 22px var(--red-glow);
      transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    }
    .btn-submit::before {
      content: ''; position: absolute; top: 0; left: -120%;
      width: 55%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    }
    .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px var(--red-glow);
    }
    .btn-submit:hover::before { animation: shine 0.65s ease; }
    .form-success {
      display: none; text-align: center; padding: 50px 20px;
    }
    .form-success.show {
      display: block; animation: scaleIn 0.55s var(--ease-spring);
    }
    .form-success .icon {
      font-size: 3.2rem; margin-bottom: 16px;
      animation: floatSoft 3s ease-in-out infinite;
    }
    .form-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
    .form-success p { color: var(--gray); }

    /* FAQ */
    .faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
    .faq-item {
      background: #fff; border: 1px solid #e8e8e8; border-radius: 12px;
      margin-bottom: 10px; overflow: hidden;
      transition: box-shadow 0.45s, border-color 0.45s, transform 0.35s;
    }
    .faq-item:hover { transform: translateY(-3px); }
    .faq-item.active {
      box-shadow: 0 14px 36px rgba(0,0,0,0.08);
      border-color: rgba(230,0,35,0.28);
    }
    .faq-q {
      width: 100%; padding: 18px 22px; text-align: left;
      font-size: 1rem; font-weight: 600; color: #1a1a1a;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      transition: color 0.3s;
    }
    .faq-item.active .faq-q { color: var(--red); }
    .faq-q .icon {
      width: 28px; height: 28px; border-radius: 8px; background: #f2f2f2;
      display: grid; place-items: center; font-size: 1.1rem; color: var(--red);
      flex-shrink: 0;
      transition: all 0.45s var(--ease-spring);
    }
    .faq-item.active .faq-q .icon {
      background: var(--red); color: #fff;
      transform: rotate(45deg) scale(1.08);
      box-shadow: 0 4px 14px var(--red-glow);
    }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.55s var(--ease);
    }
    .faq-item.active .faq-a { max-height: 240px; }
    .faq-a-inner {
      padding: 0 22px 18px; color: #555; font-size: 0.95rem; line-height: 1.7;
      opacity: 0; transform: translateY(10px);
      transition: opacity 0.4s 0.12s, transform 0.4s 0.12s;
    }
    .faq-item.active .faq-a-inner { opacity: 1; transform: translateY(0); }

    /* FOOTER */
    .footer {
      background: #060606; padding: 70px 0 0;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 48px; padding-bottom: 50px;
    }
    .footer-brand .logo { margin-bottom: 16px; }
    .footer-brand p {
      font-size: 0.9rem; color: var(--gray); max-width: 280px; line-height: 1.7;
    }
    .footer h4 {
      font-size: 0.88rem; font-weight: 700; margin-bottom: 18px;
      letter-spacing: 0.05em; text-transform: uppercase; color: #fff;
    }
    .footer ul li { margin-bottom: 10px; }
    .footer ul a {
      font-size: 0.9rem; color: var(--gray);
      transition: color 0.3s, transform 0.3s; display: inline-block;
    }
    .footer ul a:hover { color: #fff; transform: translateX(5px); }
    .footer-contact li { font-size: 0.9rem; color: var(--gray); margin-bottom: 12px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.84rem; color: var(--gray);
    }
    .footer-bottom a:hover { color: #fff; }

    /* FLOATING */
    /* Floating contact – light gray pill (Kurumsal WhatsApp style) */
    @keyframes floatIn {
      from { opacity: 0; transform: translateY(16px) scale(0.92); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .floating-right {
      position: fixed;
      bottom: 28px;
      right: 20px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-end;
    }
    .float-pill {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      height: 52px;
      padding: 0 20px 0 6px;
      border-radius: 999px;
      background: #e8e8e8;
      text-decoration: none;
      color: #5a5a5a;
      box-shadow: 0 4px 18px rgba(0,0,0,0.1);
      opacity: 0;
      animation: floatIn 0.6s var(--ease) forwards;
      transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.3s, color 0.3s;
    }
    .float-pill:nth-child(1) { animation-delay: 0.2s; }
    .float-pill:nth-child(2) { animation-delay: 0.35s; }
    .float-pill:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 28px rgba(0,0,0,0.14);
      background: #efefef;
      color: #333;
    }
    .float-pill:active {
      transform: scale(0.98);
    }
    .float-pill .pill-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .float-pill.float-wa .pill-icon {
      background: #25d366;
      box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
    }
    .float-pill.float-phone .pill-icon {
      background: #e60023;
      box-shadow: 0 3px 12px rgba(230, 0, 35, 0.3);
    }
    .float-pill .pill-label {
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      white-space: nowrap;
      padding-right: 6px;
    }
    .float-pill svg {
      display: block;
    }

    @media (max-width: 600px) {
      .floating-right { bottom: 16px; right: 12px; gap: 10px; }
      .float-pill {
        height: 48px;
        padding: 0 14px 0 5px;
        gap: 10px;
      }
      .float-pill .pill-icon {
        width: 36px;
        height: 36px;
      }
      .float-pill .pill-label {
        font-size: 0.82rem;
      }
    }

        .lang-float {
      position: fixed; bottom: 28px; left: 24px; z-index: 900;
      display: flex; background: rgba(255,255,255,0.96);
      border-radius: 999px; padding: 4px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.22); gap: 2px;
      transition: transform 0.35s var(--ease-spring);
    }
    .lang-float:hover { transform: scale(1.05); }
    .lang-btn {
      padding: 8px 14px; border-radius: 999px; font-weight: 700;
      font-size: 0.8rem; color: #333;
      transition: all 0.4s var(--ease-spring);
    }
    .lang-btn.active {
      background: var(--dark); color: #fff; transform: scale(1.06);
    }

    .scroll-top {
      position: fixed; bottom: 220px; right: 24px; z-index: 920;
      width: 48px; height: 48px; border-radius: 50%;
      background: #1a1a1e; border: 1px solid rgba(255,255,255,0.14);
      color: #fff; display: grid; place-items: center;
      opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.85);
      transition: all 0.35s cubic-bezier(.16,1,.3,1);
      cursor: pointer; padding: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,.28);
    }
    .scroll-top.show {
      opacity: 1; visibility: visible; transform: translateY(0) scale(1);
    }
    .scroll-top:hover {
      background: var(--red); border-color: var(--red);
      transform: translateY(-4px) scale(1.1);
      box-shadow: 0 8px 24px var(--red-glow);
    }

    /* LANGUAGE */
    /* superseded by LANGUAGE SYSTEM at end */
    html[lang="tr"] p[data-lang="tr"], html[lang="en"] p[data-lang="en"],
    html[lang="ru"] p[data-lang="ru"], html[lang="de"] p[data-lang="de"],
    html[lang="tr"] div[data-lang="tr"], html[lang="en"] div[data-lang="en"],
    html[lang="ru"] div[data-lang="ru"], html[lang="de"] div[data-lang="de"],
    html[lang="tr"] li[data-lang="tr"], html[lang="en"] li[data-lang="en"],
    html[lang="ru"] li[data-lang="ru"], html[lang="de"] li[data-lang="de"],
    html[lang="tr"] h1[data-lang="tr"], html[lang="en"] h1[data-lang="en"],
    html[lang="ru"] h1[data-lang="ru"], html[lang="de"] h1[data-lang="de"],
    html[lang="tr"] h2[data-lang="tr"], html[lang="en"] h2[data-lang="en"],
    html[lang="ru"] h2[data-lang="ru"], html[lang="de"] h2[data-lang="de"],
    html[lang="tr"] h3[data-lang="tr"], html[lang="en"] h3[data-lang="en"],
    html[lang="ru"] h3[data-lang="ru"], html[lang="de"] h3[data-lang="de"] {
      display: block !important;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 860px) {
      .faq-list { grid-template-columns: 1fr !important; }

      .nav-links { display: none; }
      .hamburger { display: flex; }
      .cta-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
      .hero-strip-inner { justify-content: center; gap: 20px; }
    }
    @media (max-width: 600px) {
      .section { padding: 70px 0; }
      .portfolio-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
      .hero-content { padding: 40px 0 100px; }
      .floating-right { bottom: 20px; right: 16px; }
      .lang-float { bottom: 20px; left: 16px; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .hero-strip { display: none; }

      .hero-orb { display: none; }
      #webgl-canvas { opacity: 0.7; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
  
    /* Performance helpers */
    img { max-width: 100%; height: auto; }
    img[loading="lazy"] { content-visibility: auto; }
    .content-vis { content-visibility: auto; contain-intrinsic-size: 1px 600px; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

/* Social icons — always visible */
.header-social{display:flex!important;align-items:center;gap:6px;margin-right:8px}
.social-row{display:flex!important;justify-content:center;gap:12px;padding:28px 0 12px;flex-wrap:wrap}
.social-btn{
  width:40px;height:40px;border-radius:50%;
  display:grid!important;place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.85);
  text-decoration:none;
  transition:transform .3s,background .3s,color .3s,border-color .3s;
}
.social-btn:hover{
  background:var(--red,#e60023);border-color:var(--red,#e60023);color:#fff;
  transform:translateY(-3px);
}
.social-btn-sm{width:34px;height:34px}
.mobile-social{display:flex;gap:10px;padding:16px 0;justify-content:center}
.nav-actions{display:flex;align-items:center;gap:10px}
@media(max-width:900px){
  .header-social{display:none!important}
}


/* ===== Extra homepage content blocks ===== */
.trust-strip {
  padding: 36px 0;
  background: linear-gradient(90deg, #120808, #0a0a0a 40%, #0a0a12);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center;
}
.trust-item strong {
  display: block; font-size: 1.85rem; font-weight: 800;
  color: #fff; letter-spacing: -.02em; margin-bottom: 4px;
}
.trust-item span { font-size: .88rem; color: var(--gray, #8a8a8a); }

.why-section { padding: 90px 0; }
.why-section .section-head {
  text-align: center; margin-bottom: 36px;
}
.why-section .section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 8px;
}
.why-section .section-head p { color: var(--gray, #8a8a8a); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.why-card {
  background: var(--dark-3, #181818);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}
.why-card img {
  width: 100%; height: 180px; object-fit: cover; display: block;
}
.why-card h3 { font-size: 1.1rem; padding: 18px 18px 8px; }
.why-card p { font-size: .92rem; color: var(--gray, #8a8a8a); padding: 0 18px 22px; }

.quote-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #1a0a0c, #0a0a0a 55%);
  border-top: 1px solid rgba(230,0,35,.15);
  border-bottom: 1px solid rgba(230,0,35,.15);
  text-align: center;
}
.quote-band blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic; max-width: 720px; margin: 0 auto 18px;
  line-height: 1.45; color: rgba(255,255,255,.92);
}
.quote-band cite { font-size: .9rem; color: var(--gray, #8a8a8a); font-style: normal; }

.process-visual { padding: 90px 0; }
.process-visual .section-head {
  text-align: center; margin-bottom: 40px;
}
.process-visual .section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.steps li {
  background: var(--dark-3, #181818);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 24px 20px;
}
.steps li span {
  display: block; font-size: .8rem; font-weight: 800;
  color: var(--red, #e60023); letter-spacing: .08em; margin-bottom: 10px;
}
.steps li strong { display: block; font-size: 1.05rem; margin-bottom: 8px; }
.steps li p { font-size: .9rem; color: var(--gray, #8a8a8a); margin: 0; }


@media (max-width: 900px) {
  
}

.services-mini {
  padding: 40px 0;
  background: rgba(17,17,17,.97);
  border-top: 1px solid rgba(255,255,255,.05);
}
.services-mini-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.services-mini-grid > div {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 20px 18px;
  text-align: center;
}
.services-mini-grid strong {
  display: block; font-size: 1rem; margin-bottom: 6px;
}
.services-mini-grid span {
  font-size: .85rem; color: var(--gray, #8a8a8a);
}

@media (max-width: 900px) {
  .trust-inner, .why-grid, .steps, .services-mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .trust-inner, .why-grid, .steps, .services-mini-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Cookie bar + Quick quote modal ===== */
.cookie-bar {
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  z-index: 960;
  width: min(420px, calc(100vw - 32px));
  max-width: 420px;
  margin: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  transform: translate(-50%, -46%) scale(.92);
  opacity: 0;
  visibility: hidden;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .35s ease, visibility .35s;
  text-align: center;
}
.cookie-bar.is-visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}
.cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 955;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.cookie-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
.cookie-bar p {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin: 0 0 14px;
  line-height: 1.5;
}
.cookie-bar p a { color: var(--red, #e60023); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button {
  flex: 1; padding: 10px; border-radius: 8px; border: 0;
  font-weight: 600; font-size: .88rem; cursor: pointer; font-family: inherit;
}
.cookie-accept { background: var(--red, #e60023); color: #fff; }
.cookie-decline { background: rgba(255,255,255,.08); color: #ddd; }

.qq-fab {
  position: fixed;
  right: 20px;
  bottom: 148px; /* Bizi Arayın + WhatsApp stack üstü */
  z-index: 920;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  background: var(--red, #e60023);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(230,0,35,.4);
  transition: transform .3s, box-shadow .3s;
}
.qq-fab:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(230,0,35,.5); }
.qq-fab:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(230,0,35,.5); }

.qq-overlay {
  position: fixed; inset: 0; z-index: 980;
  background: rgba(0,0,0,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.qq-overlay.is-open { opacity: 1; visibility: visible; }

.qq-modal {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 990;
  width: min(380px, calc(100vw - 32px));
  background: #141414;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 24px 22px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  transform: translateY(110%) scale(.96);
  opacity: 0;
  visibility: hidden;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .35s, visibility .35s;
}
.qq-modal.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}
.qq-modal h3 {
  font-size: 1.2rem;
  margin: 0 0 4px;
  font-weight: 700;
}
.qq-modal .qq-lead {
  font-size: .88rem;
  color: #8a8a8a;
  margin-bottom: 16px;
}
.qq-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.08);
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: grid; place-items: center;
}
.qq-modal label {
  display: block; font-size: .75rem; color: rgba(255,255,255,.5);
  margin-bottom: 5px;
}
.qq-modal input,
.qq-modal select {
  width: 100%; padding: 11px 12px; margin-bottom: 12px;
  border-radius: 10px; border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); color: #fff; font: inherit;
}
.qq-modal input:focus,
.qq-modal select:focus {
  outline: 0; border-color: var(--red, #e60023);
}
.qq-modal button[type="submit"] {
  width: 100%; padding: 13px; border: 0; border-radius: 10px;
  background: var(--red, #e60023); color: #fff;
  font-weight: 700; font-size: .95rem; cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(230,0,35,.35);
}
.qq-msg {
  display: none; margin-top: 10px; padding: 10px;
  border-radius: 8px; font-size: .88rem; text-align: center;
}
.qq-msg.ok { display: block; background: rgba(37,211,102,.12); color: #6dffb0; }
.qq-msg.err { display: block; background: rgba(230,0,35,.12); color: #ff8a9a; }

@media (max-width: 760px) {
  .cookie-bar { width: calc(100vw - 32px); max-width: none; }
  .qq-fab { bottom: 140px; right: 14px; padding: 11px 14px; font-size: .82rem; }
  .qq-modal { right: 12px; left: 12px; width: auto; bottom: 12px; }
}


/* ===== Nav / menu animations ===== */
.header {
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, backdrop-filter .35s;
}
.header.is-scrolled {
  background: rgba(10,10,10,.96) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  border-bottom-color: rgba(230,0,35,.2) !important;
}

.logo {
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .3s;
}
.logo:hover { transform: scale(1.04); }
.logo-mark, .logo-img {
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.logo:hover .logo-mark,
.logo:hover .logo-img {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 20px rgba(230,0,35,.45);
}

.nav-links a {
  position: relative;
  transition: color .3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2px;
  width: auto;
  background: var(--red, #e60023);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.nav-links a:hover {
  color: #fff !important;
}
.nav-links a:hover::after {
  transform: scaleX(1);
  width: auto;
}
.nav-links a::before {
  content: "";
  position: absolute;
  inset: 4px 2px;
  border-radius: 8px;
  background: rgba(230,0,35,.0);
  z-index: -1;
  transition: background .3s ease, transform .35s cubic-bezier(.16,1,.3,1);
  transform: scale(.9);
}
.nav-links a:hover::before {
  background: rgba(230,0,35,.1);
  transform: scale(1);
}

.btn-nav {
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s !important;
}
.btn-nav::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn-nav:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(230,0,35,.5) !important;
}
.btn-nav:hover::after {
  animation: navBtnShine .7s ease;
}
@keyframes navBtnShine {
  from { left: -60%; }
  to { left: 130%; }
}

.hamburger {
  transition: background .3s, transform .35s cubic-bezier(.16,1,.3,1);
}
.hamburger:hover {
  background: rgba(230,0,35,.2) !important;
  transform: scale(1.06);
}
.hamburger span {
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s, background .3s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .35s, visibility .35s !important;
}
.mobile-menu a {
  position: relative;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    color .3s,
    padding-left .35s cubic-bezier(.16,1,.3,1),
    background .3s,
    opacity .4s,
    transform .4s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: .05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: .3s; }
.mobile-menu a:hover {
  color: #fff;
  padding-left: 12px;
  background: rgba(230,0,35,.08);
}
.mobile-menu a::after {
  content: "→";
  position: absolute;
  right: 8px;
  opacity: 0;
  transform: translateX(-8px);
  color: var(--red, #e60023);
  transition: opacity .3s, transform .35s cubic-bezier(.16,1,.3,1);
}
.mobile-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.header-social .social-btn {
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s, color .3s, border-color .3s !important;
}
.header-social .social-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .nav-links a::after, .btn-nav, .logo, .mobile-menu a, .hamburger span {
    transition: none !important; animation: none !important;
  }
}


/* ===== Unified language FAB ===== */
.lang-float { display: none !important; } /* hide legacy multi-btn */

.lang-fab-wrap {
  position: fixed;
  left: 20px;
  bottom: 28px;
  z-index: 9999;
  font-family: Inter, system-ui, sans-serif;
  pointer-events: auto;
}
.lang-fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(20,20,20,.92);
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 32px rgba(0,0,0,.4);
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s, border-color .3s, box-shadow .35s;
  backdrop-filter: blur(12px);
}
.lang-fab:hover,
.lang-fab-wrap.is-open .lang-fab {
  background: var(--red, #e60023);
  border-color: var(--red, #e60023);
  transform: scale(1.06);
  box-shadow: 0 12px 36px rgba(230,0,35,.4);
}
.lang-panel {
  position: absolute;
  left: 0;
  bottom: 64px;
  min-width: 168px;
  background: #141414;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.96);
  transform-origin: bottom left;
  transition: opacity .3s, transform .35s cubic-bezier(.16,1,.3,1), visibility .3s;
  z-index: 10000;
}
.lang-fab-wrap.is-open .lang-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.lang-panel button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,.85);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background .25s, color .25s, transform .25s;
}
.lang-panel button:hover {
  background: rgba(230,0,35,.12);
  color: #fff;
  transform: translateX(3px);
}
.lang-panel button.is-active {
  background: rgba(230,0,35,.18);
  color: #fff;
}
.lang-panel .lang-code {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
}
.lang-panel button.is-active .lang-code {
  background: var(--red, #e60023);
}
@media (max-width: 760px) {
  .lang-fab-wrap { left: 14px; bottom: 22px; }
  .lang-fab { width: 48px; height: 48px; font-size: .78rem; }
}

.footer-credit {
  text-align: center;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 8px;
}
.footer-credit-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.footer-credit-line .dot {
  margin: 0 8px;
  opacity: .45;
}
.footer-credit-line a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .25s;
}
.footer-credit-line a:hover {
  color: var(--red, #e60023);
}
@media (max-width: 700px) {
  .footer-credit-line {
    font-size: .75rem;
  }
  .footer-credit-line .dot {
    margin: 0 5px;
  }
}


/* ===== Hero DB slider ===== */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6s ease;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide-fallback {
  background: linear-gradient(135deg, #1a0a0c 0%, #0a0a0a 50%, #0a0a12 100%);
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero-dot.is-active {
  background: var(--red, #e60023);
  transform: scale(1.2);
}
.hero-dot:hover { background: rgba(255,255,255,.7); }
/* keep content above slider */
.hero .hero-content,
.hero .hero-strip {
  position: relative;
  z-index: 5;
}
.hero .hero-bg {
  z-index: 2;
  pointer-events: none;
  /* soft dark overlay so text readable */
  background: linear-gradient(to bottom, rgba(10,10,10,.45), rgba(10,10,10,.72)) !important;
  opacity: 1 !important;
}

.trust-item strong { display: inline; }
.trust-suffix { font-size: 1.85rem; font-weight: 800; margin-left: 2px; }
.trust-item { text-align: center; }
.trust-item span[data-lang] { display: block; margin-top: 4px; }

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item strong {
  display: block !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.2;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.trust-item span[data-lang] {
  font-size: .9rem;
  color: var(--gray, #8a8a8a);
}
@media (max-width: 560px) {
  .trust-inner { grid-template-columns: 1fr; }
}
@keyframes countPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}


/* cinematic fixed background image */
.cinematic-bg {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #0a0a0a;
}
.cinematic-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.55), rgba(10,10,10,.75));
  pointer-events: none;
}


/* ===== Fixed bg + references overlay ===== */
.cinematic-refs {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.cinematic-refs .cinematic-bg {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  z-index: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #0a0a0a;
  pointer-events: none;
}
.cinematic-refs .cinematic-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.82) 50%, rgba(8,8,8,.9) 100%);
}
.cinematic-refs-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.cinematic-refs-head {
  text-align: center;
  margin-bottom: 40px;
}
.cinematic-refs-head .eyebrow {
  color: var(--red, #e60023);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cinematic-refs-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 12px;
  color: #fff;
}
.cinematic-refs-head p {
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto;
}
.cinematic-refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) {
  .cinematic-refs-grid { grid-template-columns: repeat(2, 1fr); }
}
.cref-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(18,18,18,.82);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s, border-color .35s;
}
.cref-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230,0,35,.4);
  box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(230,0,35,.15);
}
.cref-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.cref-card:hover .cref-img { transform: scale(1.08); }
.cref-body { padding: 18px 18px 22px; }
.cref-body .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red, #e60023);
  margin-bottom: 8px;
}
.cref-body h3 {
  font-size: 1.08rem;
  margin: 0 0 8px;
  color: #fff;
}
.cref-body p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.cinematic-refs-cta {
  text-align: center;
  margin-top: 36px;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
@media (max-width: 900px) {
  .cinematic-refs-grid { grid-template-columns: 1fr; }
  .cinematic-refs { min-height: auto; padding: 72px 0 60px; }
  .cinematic-refs .cinematic-bg { position: absolute; height: 100%; }
}

.cta-section .form-card:focus-within {
  border-color: rgba(230,0,35,0.35);
  box-shadow: 0 0 0 1px rgba(230,0,35,0.12), 0 16px 40px rgba(0,0,0,0.08);
}


/* CTA list — çarpıcı staggered giriş */
@keyframes ctaCheckIn {
  0% {
    opacity: 0;
    transform: translateX(-28px) scale(0.92);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}
@keyframes ctaCheckPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.25); }
  100% { transform: scale(1); opacity: 1; }
}
.cta-section .cta-list li {
  opacity: 0;
}
.cta-section.is-in .cta-list li,
.cta-section .cta-text.reveal.visible .cta-list li {
  animation: ctaCheckIn 0.7s cubic-bezier(.16,1,.3,1) forwards;
}
.cta-section .cta-text.reveal.visible .cta-list li:nth-child(1) { animation-delay: 0.15s; }
.cta-section .cta-text.reveal.visible .cta-list li:nth-child(2) { animation-delay: 0.28s; }
.cta-section .cta-text.reveal.visible .cta-list li:nth-child(3) { animation-delay: 0.41s; }
.cta-section .cta-text.reveal.visible .cta-list li:nth-child(4) { animation-delay: 0.54s; }

.cta-section .cta-text.reveal.visible .cta-list li .check {
  animation: ctaCheckPop 0.55s cubic-bezier(.34,1.56,.64,1) forwards;
}
.cta-section .cta-text.reveal.visible .cta-list li:nth-child(1) .check { animation-delay: 0.22s; }
.cta-section .cta-text.reveal.visible .cta-list li:nth-child(2) .check { animation-delay: 0.35s; }
.cta-section .cta-text.reveal.visible .cta-list li:nth-child(3) .check { animation-delay: 0.48s; }
.cta-section .cta-text.reveal.visible .cta-list li:nth-child(4) .check { animation-delay: 0.61s; }

.cta-section .cta-list li .check {
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(230,0,35,0.35);
}
.cta-section .cta-text.reveal.visible .cta-list li .check {
  box-shadow: 0 0 0 6px rgba(230,0,35,0.12);
}

.faq-list {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px 24px !important;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 860px) {
  .faq-list {
    grid-template-columns: 1fr !important;
  }
}

.cta-banner {
  position: relative;
  padding: 110px 0;
  text-align: center;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.55));
  z-index: 0;
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  color: #fff;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .cta-banner {
    background-attachment: scroll;
  }
}


/* Counter: layout shift / titreme önleme */
.hero-strip-inner .strip-item strong,
#c1, #c2, #c3,
#countProje, #countYil, #countMarka {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  display: inline-block;
  min-width: 4.2ch;
  text-align: center;
}
#c1, #countProje { min-width: 5.5ch; }
.hero-strip { contain: layout; }
.strip-item {
  min-width: 110px;
  text-align: center;
  flex: 0 0 auto;
}
.hero-content,
.hero-slider,
.hero-slide {
  contain: layout paint;
}


/* =========================================================
   GLOBAL RESPONSIVE — tüm site
   ========================================================= */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
img, video, iframe, canvas, svg {
  max-width: 100%;
  height: auto;
}
iframe {
  max-width: 100%;
}
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ---- Tablet ≤1024 ---- */
@media (max-width: 1024px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .bento-grid { grid-template-columns: 1fr 1fr !important; }
  .portfolio-grid,
  .cinematic-refs-grid { grid-template-columns: 1fr 1fr !important; }
  .process-grid { grid-template-columns: 1fr 1fr !important; }
  .services-grid,
  .why-grid { grid-template-columns: 1fr 1fr !important; }
  .cta-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
}

/* ---- Mobile / small tablet ≤860 ---- */
@media (max-width: 860px) {
  .container { padding-left: 16px; padding-right: 16px; }

  /* Header */
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .btn-nav { display: none !important; }
  .header-social { display: none !important; }
  .header-inner,
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,.97);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 12px 16px 20px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
  }
  .mobile-menu.open { display: flex !important; }
  .mobile-menu a {
    padding: 12px 10px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
  }

  /* Hero */
  .hero { min-height: auto; padding-top: 80px; }
  .hero-content { padding: 28px 0 80px !important; max-width: 100% !important; }
  .hero > .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .hero-strip .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .hero h1 { font-size: clamp(1.4rem, 5.6vw, 1.92rem) !important; }
  .hero .lead { font-size: 1rem !important; max-width: 100% !important; }
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
  .hero-strip { padding: 16px 0 !important; }
  .hero-strip-inner {
    gap: 16px 20px !important;
    justify-content: center !important;
  }
  .strip-item { min-width: 90px !important; font-size: .85rem; }

  /* Grids → 1 col */
  .bento-grid,
  .portfolio-grid,
  .cinematic-refs-grid,
  .process-grid,
  .services-grid,
  .why-grid,
  .footer-grid,
  .faq-list,
  .services-mini-grid,
  .steps {
    grid-template-columns: 1fr !important;
  }
  .faq-col { width: 100%; }

  /* Sections */
  .section { padding: 56px 0 !important; }
  .section-header { margin-bottom: 32px !important; }
  .section-header h2,
  .page-hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }

  /* Cinematic refs */
  .cinematic-refs {
    min-height: auto !important;
    padding: 56px 0 48px !important;
  }
  .cinematic-refs .cinematic-bg {
    position: absolute !important;
    height: 100% !important;
  }
  .cref-img { height: 180px !important; }

  /* Bento */
  .bento-section { margin-top: 0 !important; padding: 40px 0 48px !important; }
  .bento-card { min-height: auto !important; }

  /* CTA */
  .cta-section { padding: 48px 0 !important; }
  .cta-grid { grid-template-columns: 1fr !important; }
  .form-card { padding: 24px 18px !important; }
  .form-row { grid-template-columns: 1fr !important; }

  .cta-banner {
    padding: 64px 16px !important;
    background-attachment: scroll !important;
  }

  /* Floating buttons */
  .floating-right {
    right: 12px !important;
    bottom: 16px !important;
    gap: 10px !important;
  }
  .lang-fab-wrap {
    left: 12px !important;
    bottom: 16px !important;
  }
  .qq-fab {
    right: 12px !important;
    bottom: 150px !important;
    font-size: .8rem !important;
    padding: 10px 14px !important;
  }

  /* Footer */
  .footer { padding: 48px 0 24px !important; }
  .footer-credit-line {
    flex-direction: column !important;
    gap: 6px !important;
  }
  .footer-credit-line .dot { display: none !important; }

  /* Tables / admin-like on front if any */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Cookie */
  .cookie-bar {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 24px) !important;
    max-width: 420px !important;
  }
}

/* ---- Phone ≤560 ---- */
@media (max-width: 560px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .hero h1 { font-size: 1.32rem !important; line-height: 1.2 !important; }
  .hero-orb { display: none !important; }
  .logo-text, .logo span:not(.logo-mark) { font-size: .95rem; }
  .cinematic-refs-head h2 { font-size: 1.45rem !important; }
  .trust-inner { grid-template-columns: 1fr !important; }
  .process-step { text-align: left; }
  .btn-primary, .btn-submit, .btn-nav {
    width: 100%;
    justify-content: center;
  }
  .faq-q {
    font-size: .92rem !important;
    padding: 14px 12px !important;
  }
  .page-hero { padding: 32px 0 16px !important; }
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}


/* hero side breathing — slider içeriği kenara yapışmasın */
.hero > .container {
  padding-left: clamp(24px, 5vw, 56px);
  padding-right: clamp(24px, 5vw, 56px);
}
.hero-content {
  box-sizing: border-box;
}
.hero-strip .container.hero-strip-inner,
.hero-strip .container {
  padding-left: clamp(24px, 5vw, 56px);
  padding-right: clamp(24px, 5vw, 56px);
}
@media (max-width: 560px) {
  .hero > .container,
  .hero-strip .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}


/* hero-strip right space */
.hero-strip {
  padding-right: 24px;
  padding-left: 16px;
  box-sizing: border-box;
}
.hero-strip .container,
.hero-strip .hero-strip-inner {
  justify-content: center !important;
  padding-right: clamp(28px, 6vw, 64px) !important;
  padding-left: clamp(20px, 4vw, 40px) !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.strip-item {
  margin-right: 8px;
}


/* Hero strip — 3 istatistik tek satır, dengeli */
.hero-strip {
  width: 100%;
  padding: 0 !important;
  box-sizing: border-box;
}
.hero-strip .container,
.hero-strip .hero-strip-inner {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  align-items: center !important;
  justify-items: center !important;
  gap: 12px 24px !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 18px 28px !important;
  width: 100%;
  box-sizing: border-box;
}
.hero-strip .strip-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  text-align: center !important;
  flex: none !important;
}
.hero-strip .strip-item strong {
  min-width: 0 !important;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem) !important;
}
.hero-strip .strip-item span {
  font-size: clamp(.78rem, 1.4vw, .9rem);
  opacity: .85;
}
@media (max-width: 560px) {
  .hero-strip .container,
  .hero-strip .hero-strip-inner {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 16px 20px !important;
  }
  .hero-strip .strip-item {
    justify-content: center !important;
  }
}


/* Hero tek buton — Referanslar */
.hero-strip-cta {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 22px 28px !important;
  grid-template-columns: none !important;
}
.hero-ref-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--red, #e60023);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(230,0,35,0.35);
  transition: transform .3s ease, box-shadow .3s ease, background .25s;
}
.hero-ref-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(230,0,35,0.45);
  background: #ff1a3a;
}
.hero-ref-btn svg {
  transition: transform .3s ease;
}
.hero-ref-btn:hover svg {
  transform: translateX(4px);
}


/* ===== Dil görünürlüğü (tek dil) — nav fix ===== */
/* old lang rule removed */

html[lang="tr"] p[data-lang="tr"], html[lang="en"] p[data-lang="en"],
html[lang="ru"] p[data-lang="ru"], html[lang="de"] p[data-lang="de"],
html[lang="tr"] div[data-lang="tr"], html[lang="en"] div[data-lang="en"],
html[lang="ru"] div[data-lang="ru"], html[lang="de"] div[data-lang="de"],
html[lang="tr"] h1[data-lang="tr"], html[lang="en"] h1[data-lang="en"],
html[lang="tr"] h2[data-lang="tr"], html[lang="en"] h2[data-lang="en"],
html[lang="tr"] h3[data-lang="tr"], html[lang="en"] h3[data-lang="en"],
html[lang="tr"] li[data-lang="tr"], html[lang="en"] li[data-lang="en"] {
  display: block !important;
}

.header .logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.header .logo-text {
  white-space: nowrap !important;
  font-weight: 700;
  line-height: 1.15;
}
.header .nav-links a {
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
}
.header .btn-nav {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.header .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}


/* Nav underline — ortalanmış, sağa kaymasın */
.header .nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  bottom: 3px !important;
  width: auto !important;
  height: 2px !important;
  margin: 0 !important;
  background: var(--red, #e60023) !important;
  border-radius: 2px !important;
  transform: scaleX(0) !important;
  transform-origin: center center !important;
  transition: transform .35s cubic-bezier(.16,1,.3,1) !important;
  pointer-events: none !important;
}
.header .nav-links a:hover::after,
.header .nav-links a:focus::after {
  transform: scaleX(1) !important;
}


/* ===== Footer — premium ===== */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,0,35,.12), transparent 55%),
    linear-gradient(180deg, #0c0c0e 0%, #080809 100%) !important;
  padding: 72px 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(420px, 60%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red, #e60023), transparent);
  opacity: .85;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px 32px;
  padding-bottom: 48px;
}
.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: #fff;
}
.footer-brand .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff1a3c, #c4001a);
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(230,0,35,.35);
}
.footer-brand p {
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 300px;
  margin: 0;
}
.footer h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 18px;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin-bottom: 11px;
}
.footer ul a {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .3s, transform .35s cubic-bezier(.16,1,.3,1);
}
.footer ul a:hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-contact li {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact a {
  color: inherit;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #fff;
}

/* Social */
.footer .social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s, border-color .3s, color .3s, box-shadow .35s;
}
.footer .social-btn:hover {
  background: var(--red, #e60023);
  border-color: var(--red, #e60023);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(230,0,35,.35);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .82rem;
  color: rgba(255,255,255,.42);
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .25s;
}
.footer-bottom a:hover {
  color: #fff;
}

.footer-credit {
  width: 100%;
  margin-top: 4px;
}
.footer-credit-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  padding: 14px 12px 22px;
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-credit-line .dot {
  opacity: .35;
}
.footer-credit-line a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .25s;
}
.footer-credit-line a:hover {
  color: var(--red, #e60023);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 24px !important;
  }
}
@media (max-width: 560px) {
  .footer {
    padding-top: 56px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-brand p { max-width: none; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-credit-line {
    flex-direction: column;
    gap: 6px;
  }
  .footer-credit-line .dot { display: none; }
}


/* ===== CSS Animasyonları ===== */
@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(230,0,35,.45); }
  70% { box-shadow: 0 0 0 14px rgba(230,0,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,0,35,0); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(255,255,255,.08); }
  50% { border-color: rgba(230,0,35,.35); }
}

/* Footer giriş */
.footer .footer-brand {
  animation: fadeUpSoft .8s cubic-bezier(.16,1,.3,1) both;
}
.footer .footer-grid > div:nth-child(2) {
  animation: fadeUpSoft .8s .08s cubic-bezier(.16,1,.3,1) both;
}
.footer .footer-grid > div:nth-child(3) {
  animation: fadeUpSoft .8s .16s cubic-bezier(.16,1,.3,1) both;
}
.footer .footer-grid > div:nth-child(4) {
  animation: fadeUpSoft .8s .24s cubic-bezier(.16,1,.3,1) both;
}
.footer .social-row {
  animation: fadeUpSoft .7s .3s cubic-bezier(.16,1,.3,1) both;
}
.footer .social-btn {
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s, border-color .3s, color .3s, box-shadow .35s;
}
.footer .social-btn:hover {
  animation: none;
}
.footer .footer-bottom,
.footer .footer-credit-line {
  animation: fadeIn .9s .4s both;
}

/* Kart / bölüm hover zenginleştirme */
.service-card,
.cref-card,
.why-card,
.bento-card,
.faq-item,
.process-step,
.form-card {
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .35s ease;
}
.service-card:hover,
.why-card:hover {
  transform: translateY(-8px);
}
.faq-item {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

/* Reveal ile uyumlu ek sınıflar */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible,
.reveal.is-visible,
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal.from-left {
  transform: translateX(-36px);
}
.reveal.from-left.visible,
.reveal.from-left.is-visible {
  transform: none;
}
.reveal.from-right {
  transform: translateX(36px);
}
.reveal.from-right.visible,
.reveal.from-right.is-visible {
  transform: none;
}
.reveal.from-scale {
  transform: scale(.94);
}
.reveal.from-scale.visible,
.reveal.from-scale.is-visible {
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* Buton nabız (dikkat çekici CTA) */
.btn-primary {
  animation: pulseRing 2.8s ease-out infinite;
}
.btn-primary:hover {
  animation: none;
}

/* Logo mark hafif float */
.header .logo-mark {
  animation: floatY 4.5s ease-in-out infinite;
}
.header .logo:hover .logo-mark {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .footer .footer-brand,
  .footer .footer-grid > div,
  .footer .social-row,
  .footer .footer-bottom,
  .footer .footer-credit-line,
  .btn-primary,
  .header .logo-mark,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Footer copyright ortala */
.footer-bottom {
  justify-content: center !important;
  text-align: center !important;
}
.footer-bottom > div {
  width: 100%;
  text-align: center;
}


/* Hero slider — hafif hareket (Ken Burns) */
.hero-slider {
  overflow: hidden !important;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  will-change: transform, opacity;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}
.hero-slide-fallback {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1015 50%, #111 100%);
}
@keyframes heroKenBurns {
  0% {
    transform: scale(1.05) translate(0, 0);
    background-position: 50% 50%;
  }
  50% {
    transform: scale(1.12) translate(-1.2%, -0.6%);
    background-position: 52% 48%;
  }
  100% {
    transform: scale(1.08) translate(0.8%, 0.5%);
    background-position: 48% 52%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active {
    animation: none !important;
    transform: scale(1.02);
  }
}

/* Menü logo boyutu */
.header .logo-img {
  height: 65px !important;
  width: auto !important;
  max-width: 243px !important;
  object-fit: contain !important;
  border-radius: 6px;
  display: block;
}
.header .logo-mark {
  width: 65px !important;
  height: 65px !important;
  font-size: 1.05rem !important;
}
@media (max-width: 700px) {
  .header .logo-img {
    height: 54px !important;
    max-width: 189px !important;
  }
  .header .logo-mark {
    width: 54px !important;
    height: 54px !important;
  }
}

/* Loader — site logosu */
.loader-logo-img {
  display: block;
  height: 216px;
  width: auto;
  max-width: 660px;
  object-fit: contain;
  margin: 0 auto 18px;
  animation: loaderLogoPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,.4));
}
@keyframes loaderLogoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: .92; }
}
@media (max-width: 560px) {
  .loader-logo-img { height: 140px; max-width: 90vw; }
}


/* ===== Ana sayfa — öne çıkan projeler papatya hover ===== */
.cref-card {
  position: relative;
  overflow: visible !important;
  z-index: 1;
}
.cref-card:hover {
  z-index: 8;
}
.cref-daisy {
  position: relative;
  height: 200px;
  overflow: visible;
  background: #111;
  border-radius: 16px 16px 0 0;
}
.cref-daisy-base {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.cref-daisy-base img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .45s;
  filter: brightness(.92);
}
.cref-card:hover .cref-daisy-base img {
  transform: scale(1.06);
  filter: brightness(.5);
}
.cref-petals {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 4;
  pointer-events: none;
}
.cref-petal {
  position: absolute;
  width: 78px;
  height: 78px;
  margin: -39px 0 0 -39px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  opacity: 0;
  transform: translate(0, 0) scale(.3) rotate(0deg);
  transition:
    transform .55s cubic-bezier(.16,1,.3,1),
    opacity .35s ease;
  background: #222;
}
.cref-petal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cref-petal:nth-child(1) { transition-delay: .02s; }
.cref-petal:nth-child(2) { transition-delay: .06s; }
.cref-petal:nth-child(3) { transition-delay: .1s; }
.cref-petal:nth-child(4) { transition-delay: .14s; }
.cref-petal:nth-child(5) { transition-delay: .18s; }

.cref-card:hover .cref-petal { opacity: 1; }
.cref-card:hover .cref-petal:nth-child(1) {
  transform: translate(0, -72px) scale(1) rotate(-8deg);
}
.cref-card:hover .cref-petal:nth-child(2) {
  transform: translate(66px, -26px) scale(1) rotate(12deg);
}
.cref-card:hover .cref-petal:nth-child(3) {
  transform: translate(48px, 54px) scale(1) rotate(-6deg);
}
.cref-card:hover .cref-petal:nth-child(4) {
  transform: translate(-48px, 54px) scale(1) rotate(10deg);
}
.cref-card:hover .cref-petal:nth-child(5) {
  transform: translate(-66px, -26px) scale(1) rotate(-12deg);
}

/* Eski arka plan görseli varsa gizle */
.cref-card .cref-img { display: none !important; }

@media (max-width: 700px) {
  .cref-card:hover .cref-petal:nth-child(1) { transform: translate(0, -58px) scale(.9) rotate(-6deg); }
  .cref-card:hover .cref-petal:nth-child(2) { transform: translate(52px, -20px) scale(.9) rotate(10deg); }
  .cref-card:hover .cref-petal:nth-child(3) { transform: translate(38px, 44px) scale(.9) rotate(-4deg); }
  .cref-card:hover .cref-petal:nth-child(4) { transform: translate(-38px, 44px) scale(.9) rotate(8deg); }
  .cref-card:hover .cref-petal:nth-child(5) { transform: translate(-52px, -20px) scale(.9) rotate(-10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cref-petal, .cref-daisy-base img { transition: none !important; }
}


/* ===== Ana sayfa — son 6 blog ===== */
.home-blog-section {
  padding: 80px 0 72px;
  background: #0c0c0e;
}
.home-blog-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.home-blog-section .section-header h2 {
  color: #fff;
  margin: 8px 0 12px;
}
.home-blog-section .section-header p {
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto;
}
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-blog-card {
  display: block;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s, border-color .35s;
}
.home-blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230,0,35,.4);
  box-shadow: 0 22px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(230,0,35,.12);
}
.home-blog-media {
  height: 180px;
  overflow: hidden;
  background: #1a1a1e;
}
.home-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}
.home-blog-card:hover .home-blog-media img {
  transform: scale(1.08);
}
.home-blog-body {
  padding: 18px 18px 20px;
}
.home-blog-body .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red, #e60023);
  margin-bottom: 8px;
}
.home-blog-body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #fff;
}
.home-blog-body p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-blog-cta {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: color .3s, letter-spacing .3s;
}
.home-blog-card:hover .home-blog-cta {
  color: var(--red, #e60023);
}
.home-blog-more {
  text-align: center;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .home-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .home-blog-grid { grid-template-columns: 1fr; }
}


/* Scroll to top — Hızlı Teklif üstünde */
.scroll-top {
  position: fixed !important;
  right: 28px !important;
  bottom: 220px !important;
  z-index: 930 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: #1a1a1e !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.28) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(16px) scale(0.85) !important;
  transition: opacity .35s ease, visibility .35s, transform .35s cubic-bezier(.16,1,.3,1), background .25s, border-color .25s !important;
  padding: 0 !important;
}
.scroll-top.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}
.scroll-top:hover {
  background: var(--red, #e60023) !important;
  border-color: var(--red, #e60023) !important;
  transform: translateY(-3px) scale(1.06) !important;
  box-shadow: 0 10px 28px rgba(230,0,35,.4) !important;
}
@media (max-width: 560px) {
  .scroll-top {
    right: 18px !important;
    bottom: 200px !important;
    width: 44px !important;
    height: 44px !important;
  }
}




/* ===== LANGUAGE SYSTEM (TR default) ===== */
[data-lang] { display: none !important; }

/* Varsayılan: Türkçe her zaman görünsün (html lang yoksa / tr ise) */
html:not([lang]) [data-lang="tr"],
html[lang=""] [data-lang="tr"],
html[lang="tr"] [data-lang="tr"] {
  display: inline !important;
}
html[lang="en"] [data-lang="en"],
html[lang="ru"] [data-lang="ru"],
html[lang="de"] [data-lang="de"] {
  display: inline !important;
}

/* Blok elemanlar */
html:not([lang]) p[data-lang="tr"], html[lang=""] p[data-lang="tr"], html[lang="tr"] p[data-lang="tr"],
html[lang="en"] p[data-lang="en"], html[lang="ru"] p[data-lang="ru"], html[lang="de"] p[data-lang="de"],
html:not([lang]) h1[data-lang="tr"], html[lang="tr"] h1[data-lang="tr"],
html[lang="en"] h1[data-lang="en"], html[lang="ru"] h1[data-lang="ru"], html[lang="de"] h1[data-lang="de"],
html:not([lang]) h2[data-lang="tr"], html[lang="tr"] h2[data-lang="tr"],
html[lang="en"] h2[data-lang="en"], html[lang="ru"] h2[data-lang="ru"], html[lang="de"] h2[data-lang="de"],
html:not([lang]) h3[data-lang="tr"], html[lang="tr"] h3[data-lang="tr"],
html[lang="en"] h3[data-lang="en"], html[lang="ru"] h3[data-lang="ru"], html[lang="de"] h3[data-lang="de"],
html:not([lang]) div[data-lang="tr"], html[lang="tr"] div[data-lang="tr"],
html[lang="en"] div[data-lang="en"], html[lang="ru"] div[data-lang="ru"], html[lang="de"] div[data-lang="de"],
html:not([lang]) li[data-lang="tr"], html[lang="tr"] li[data-lang="tr"],
html[lang="en"] li[data-lang="en"], html[lang="ru"] li[data-lang="ru"], html[lang="de"] li[data-lang="de"],
html:not([lang]) a[data-lang="tr"], html[lang="tr"] a[data-lang="tr"],
html[lang="en"] a[data-lang="en"], html[lang="ru"] a[data-lang="ru"], html[lang="de"] a[data-lang="de"],
html:not([lang]) label[data-lang="tr"], html[lang="tr"] label[data-lang="tr"],
html[lang="en"] label[data-lang="en"], html[lang="ru"] label[data-lang="ru"], html[lang="de"] label[data-lang="de"],
html:not([lang]) button[data-lang="tr"], html[lang="tr"] button[data-lang="tr"],
html[lang="en"] button[data-lang="en"], html[lang="ru"] button[data-lang="ru"], html[lang="de"] button[data-lang="de"] {
  display: block !important;
}

/* EN/RU/DE aktifken TR gizle */
html[lang="en"] [data-lang="tr"],
html[lang="ru"] [data-lang="tr"],
html[lang="de"] [data-lang="tr"] {
  display: none !important;
}

/* Yüzen butonlar / hero — inline */
.pill-label [data-lang],
.qq-fab [data-lang],
.hero-content span[data-lang],
.hero-actions span[data-lang],
.hero-strip span[data-lang],
.btn-primary span[data-lang],
.btn-submit span[data-lang],
.qq-modal span[data-lang] {
  display: none !important;
}
html:not([lang]) .pill-label [data-lang="tr"],
html[lang="tr"] .pill-label [data-lang="tr"],
html[lang="en"] .pill-label [data-lang="en"],
html[lang="ru"] .pill-label [data-lang="ru"],
html[lang="de"] .pill-label [data-lang="de"],
html:not([lang]) .qq-fab [data-lang="tr"],
html[lang="tr"] .qq-fab [data-lang="tr"],
html[lang="en"] .qq-fab [data-lang="en"],
html[lang="ru"] .qq-fab [data-lang="ru"],
html[lang="de"] .qq-fab [data-lang="de"],
html:not([lang]) .hero-content span[data-lang="tr"],
html[lang="tr"] .hero-content span[data-lang="tr"],
html[lang="en"] .hero-content span[data-lang="en"],
html[lang="ru"] .hero-content span[data-lang="ru"],
html[lang="de"] .hero-content span[data-lang="de"],
html:not([lang]) .hero-actions span[data-lang="tr"],
html[lang="tr"] .hero-actions span[data-lang="tr"],
html[lang="en"] .hero-actions span[data-lang="en"],
html[lang="ru"] .hero-actions span[data-lang="ru"],
html[lang="de"] .hero-actions span[data-lang="de"],
html:not([lang]) .hero-strip span[data-lang="tr"],
html[lang="tr"] .hero-strip span[data-lang="tr"],
html[lang="en"] .hero-strip span[data-lang="en"],
html[lang="ru"] .hero-strip span[data-lang="ru"],
html[lang="de"] .hero-strip span[data-lang="de"],
html:not([lang]) .btn-primary span[data-lang="tr"],
html[lang="tr"] .btn-primary span[data-lang="tr"],
html[lang="en"] .btn-primary span[data-lang="en"],
html[lang="ru"] .btn-primary span[data-lang="ru"],
html[lang="de"] .btn-primary span[data-lang="de"] {
  display: inline !important;
}

/* Reveal her zaman görünür */
.reveal, .reveal.from-left, .reveal.from-right {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}

/* Loader kapanınca kesin gizle */
.page-loader.is-done {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* Yüzen butonlar her zaman üstte */
.floating-right, .qq-fab, .lang-fab-wrap, .scroll-top {
  z-index: 2147483000 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.floating-right {
  display: flex !important;
}
.qq-fab {
  display: inline-flex !important;
}

/* Blog cover fallback */
.blog-cover-fallback {
  width: 100%;
  min-height: 160px;
  background: #fff !important;
  display: grid !important;
  place-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.blog-cover-fallback .blog-cover-logo {
  max-width: 60%;
  max-height: 72%;
  object-fit: contain;
}


/* SAFETY-VISIBLE — JS yoksa veya geç yüklenirse sayfa boş kalmasın */
.page-loader {
  animation: safetyLoaderHide 0.01s 4s forwards;
}
@keyframes safetyLoaderHide {
  to { opacity: 0; visibility: hidden; pointer-events: none; display: none; }
}
.reveal {
  /* JS eklenince .visible ile geçiş; 3 sn sonra zorla göster */
  animation: safetyReveal 0.01s 3.2s forwards;
}
@keyframes safetyReveal {
  to { opacity: 1; transform: none; filter: none; }
}
.floating-right,
.qq-fab,
.lang-fab-wrap,
.scroll-top {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}