/* =========================================================
   Mavi Elma — Casino & Slot Ekipmanları
   Kurumsal çok sayfalı tema · TR / EN / RU
   ========================================================= */

:root {
  --bg: #060912;
  --bg-2: #0a1122;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-lit: rgba(56, 189, 248, 0.4);
  --text: #eaf1ff;
  --muted: #93a4c4;
  --blue: #38bdf8;
  --blue-deep: #2563eb;
  --gold: #f5c451;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.8);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, .brand-text { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; }

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

a { color: inherit; text-decoration: none; }

main { flex: 1; }

/* ---------- Ambient background ---------- */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; background:
  radial-gradient(1200px 800px at 80% -10%, rgba(37, 99, 235, 0.18), transparent 60%),
  radial-gradient(1000px 700px at 0% 20%, rgba(56, 189, 248, 0.12), transparent 55%),
  var(--bg); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.orb-1 { width: 480px; height: 480px; background: #1d4ed8; top: -120px; right: -80px; animation: float 18s var(--ease) infinite; }
.orb-2 { width: 420px; height: 420px; background: #0ea5e9; bottom: 10%; left: -120px; animation: float 22s var(--ease) infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: #7c3aed; top: 45%; right: 10%; opacity: 0.25; animation: float 26s var(--ease) infinite; }
@keyframes float { 50% { transform: translate(30px, -40px) scale(1.08); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #041022;
  box-shadow: 0 12px 30px -10px rgba(56, 189, 248, 0.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(56, 189, 248, 0.75); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--border-lit); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.nav.scrolled, .nav.solid { background: rgba(6, 9, 18, 0.78); backdrop-filter: blur(16px); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { display: grid; place-items: center; }
.brand-img { height: 42px; width: auto; display: block; }
.brand-text { font-size: 1.35rem; font-weight: 800; }
.brand-text span { color: var(--blue); }
/* footer brand: mark + wordmark */
.footer-logo { display: inline-flex; align-items: center; }
.footer-mark { height: 50px; }
.footer-logo .brand-text { font-size: 1.5rem; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--blue); transition: width 0.25s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 8px 12px; border-radius: 999px; cursor: pointer; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.85rem; transition: border-color 0.2s; }
.lang-btn:hover { border-color: var(--border-lit); }
.lang-btn .chev { transition: transform 0.2s; font-size: 0.7rem; opacity: 0.7; }
.lang.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; background: rgba(10, 17, 34, 0.97); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 14px; padding: 6px; min-width: 150px; display: none; flex-direction: column; box-shadow: var(--shadow); z-index: 120; }
.lang.open .lang-menu { display: flex; }
.lang-menu button { display: flex; align-items: center; gap: 10px; background: none; border: none; color: var(--text); padding: 10px 12px; border-radius: 9px; cursor: pointer; font-family: inherit; font-size: 0.9rem; text-align: left; transition: background 0.15s; }
.lang-menu button:hover { background: var(--surface-2); }
.lang-menu button.active { color: var(--blue); }
.lang-menu button .flag { font-size: 1.1rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobil yan menü (drawer) */
.nav-backdrop { position: fixed; inset: 0; background: rgba(3, 6, 14, 0.6); opacity: 0; visibility: hidden; transition: opacity 0.3s; z-index: 150; }
.nav-backdrop.open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; z-index: 200; width: min(82vw, 330px); transform: translateX(100%); transition: transform 0.38s var(--ease); background: rgba(9, 14, 28, 0.98); backdrop-filter: blur(18px); border-left: 1px solid var(--border); display: flex; flex-direction: column; gap: 2px; padding: 88px 26px 30px; overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); box-shadow: -30px 0 60px -20px rgba(0, 0, 0, 0.7); }
.mobile-menu a { padding: 15px 4px; color: var(--muted); border-bottom: 1px solid var(--border); font-family: 'Sora', sans-serif; font-size: 1.02rem; transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--blue); }
.mobile-menu .btn { margin-top: 20px; justify-content: center; }
.mobile-close { position: absolute; top: 20px; right: 22px; width: 40px; height: 40px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 1.15rem; cursor: pointer; transition: border-color 0.2s; }
.mobile-close:hover { border-color: var(--border-lit); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 150px 0 60px; text-align: center; }
.page-hero .crumb { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; }
.page-hero .crumb a:hover { color: var(--blue); }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); line-height: 1.08; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 18px auto 0; }

/* ---------- Home hero ---------- */
.hero { position: relative; padding: 140px 0 60px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600; color: var(--blue); background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.25); padding: 7px 15px; border-radius: 999px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgba(56,189,248,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(56,189,248,0); } 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); } }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); line-height: 1.05; font-weight: 800; margin: 22px 0 18px; }
.grad { background: linear-gradient(120deg, var(--blue), #a5f3fc 40%, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin: 30px 0 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats strong { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; display: block; background: linear-gradient(120deg, #fff, var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats span { color: var(--muted); font-size: 0.85rem; }

/* Hero görsel placeholder */
.hero-media { position: relative; width: 100%; max-width: 540px; aspect-ratio: 16 / 10; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); background: #0b1322; box-shadow: var(--shadow), 0 0 0 1px rgba(56,189,248,0.1) inset; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* mavi tema ile kaynaşması + üstteki çip/rozetlerin okunması için hafif overlay */
.hero-media:not(.no-img)::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(37,99,235,0.20), transparent 36%), linear-gradient(to top, rgba(6,9,18,0.55), transparent 42%); }
.hero-media.no-img { display: grid; place-items: center; }
.hero-media.no-img img { display: none; }
.hero-media.no-img::after { content: '🖼️'; font-size: 3rem; opacity: 0.4; }

/* Slot machine visual */
.hero-visual { position: relative; display: grid; place-items: center; }
.machine { position: relative; width: 320px; background: linear-gradient(180deg, #101a30, #0a1120); border: 1px solid var(--border); border-radius: 24px; padding: 22px; box-shadow: var(--shadow), 0 0 0 1px rgba(56,189,248,0.08) inset; }
.machine-top { text-align: center; font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 16px; text-shadow: 0 0 18px rgba(245, 196, 81, 0.5); }
.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; background: #05070f; border-radius: 14px; padding: 12px; border: 1px solid var(--border); }
.reel { height: 84px; overflow: hidden; background: linear-gradient(180deg, #0d1526, #0a101d); border-radius: 10px; display: flex; flex-direction: column; align-items: center; }
.reel span { font-size: 2.5rem; line-height: 84px; flex: 0 0 84px; }
.reel.spin { animation: spin 0.4s linear infinite; }
@keyframes spin { to { transform: translateY(-420px); } }
.machine-bar { display: flex; justify-content: space-between; align-items: center; margin: 16px 0; padding: 10px 14px; background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.2); border-radius: 12px; }
.jack { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--blue); font-weight: 700; }
.win { font-family: 'Sora', sans-serif; font-weight: 800; color: var(--gold); }
.spin-btn { width: 100%; padding: 14px; border: none; border-radius: 12px; font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: 0.1em; cursor: pointer; color: #041022; background: linear-gradient(135deg, var(--gold), #e0a92e); box-shadow: 0 10px 24px -8px rgba(245,196,81,0.6); transition: transform 0.2s; }
.spin-btn:active { transform: scale(0.97); }
.chip { position: absolute; width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.6rem; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); backdrop-filter: blur(6px); box-shadow: var(--shadow); }
.chip-a { top: -14px; left: -22px; animation: float 8s var(--ease) infinite; }
.chip-b { bottom: 30px; left: -34px; color: var(--blue); animation: float 10s var(--ease) infinite reverse; }
.chip-c { top: 40px; right: -30px; color: var(--gold); animation: float 12s var(--ease) infinite; }

/* Marquee */
.marquee { margin-top: 70px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 16px 0; background: var(--surface); }
.marquee-track { display: flex; gap: 26px; white-space: nowrap; animation: scroll 30s linear infinite; width: max-content; }
.marquee-track span { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.12em; color: var(--muted); }
.marquee-track span:nth-child(odd) { color: var(--blue); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Trust ---------- */
.trust { padding: 46px 0; text-align: center; }
.trust-label { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.trust-row span { font-family: 'Sora', sans-serif; font-weight: 700; letter-spacing: 0.1em; color: #56688a; font-size: 1.05rem; transition: color 0.3s; }
.trust-row span:hover { color: var(--text); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section.alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent); }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.kicker { display: inline-block; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.12; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Cards grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s; overflow: hidden; }
.card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(400px at var(--mx, 50%) var(--my, 0%), rgba(56,189,248,0.1), transparent 70%); opacity: 0; transition: opacity 0.35s; }
.card:hover { transform: translateY(-6px); border-color: var(--border-lit); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card-ico { font-size: 2.2rem; width: 62px; height: 62px; display: grid; place-items: center; background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.22); border-radius: 16px; margin-bottom: 18px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card ul { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.card li { position: relative; padding-left: 22px; font-size: 0.9rem; color: #b9c6e0; }
.card li::before { content: '✦'; position: absolute; left: 0; color: var(--blue); }
.card-tag { position: absolute; top: 18px; right: 18px; z-index: 3; font-family: 'Sora', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gold); background: rgba(10,17,34,0.75); backdrop-filter: blur(6px); border: 1px solid rgba(245,196,81,0.4); padding: 5px 10px; border-radius: 999px; }

/* Ürün kartı görseli */
.card.has-media { padding: 0; }
.card.has-media .card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: #0b1322; }
.card.has-media .card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,9,18,0.55), transparent 45%); pointer-events: none; }
.card.has-media .card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.card.has-media:hover .card-media img { transform: scale(1.06); }
.card.has-media .card-body { padding: 22px 30px 30px; }
.card.has-media .card-ico { display: none; }
/* görsel yüklenmezse ikona düş */
.card.has-media.no-media { padding: 30px; }
.card.has-media.no-media .card-media { display: none; }
.card.has-media.no-media .card-ico { display: grid; }
.card.has-media.no-media .card-body { padding: 0; }

/* ---------- Filter tabs ---------- */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.filter-btn { background: var(--surface); border: 1px solid var(--border); color: var(--muted); padding: 9px 18px; border-radius: 999px; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.9rem; transition: all 0.2s; }
.filter-btn:hover { color: var(--text); border-color: var(--border-lit); }
.filter-btn.active { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #041022; border-color: transparent; font-weight: 600; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.split.rev { grid-template-columns: 1.1fr 0.9fr; }
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 8px; transition: transform 0.3s, border-color 0.3s; }
.stat-tile:hover { transform: translateY(-4px); border-color: var(--border-lit); }
.stat-tile.wide { grid-column: 1 / -1; }
.st-num { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; background: linear-gradient(120deg, var(--blue), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.st-label { color: var(--muted); font-size: 0.9rem; }
.split-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin: 12px 0 16px; }
.split-copy > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.feat-list { display: grid; gap: 18px; }
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-ico { flex: 0 0 46px; height: 46px; display: grid; place-items: center; font-size: 1.3rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; }
.feat strong { font-family: 'Sora', sans-serif; display: block; margin-bottom: 3px; }
.feat p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform 0.3s, border-color 0.3s; }
.why:hover { transform: translateY(-4px); border-color: var(--border-lit); }
.why .why-ico { font-size: 1.6rem; margin-bottom: 12px; }
.why h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--blue); }
.why p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; transition: transform 0.3s, border-color 0.3s; }
.step:hover { transform: translateY(-5px); border-color: var(--border-lit); }
.step-no { font-family: 'Sora', sans-serif; font-size: 2.4rem; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px var(--border-lit); display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Timeline (about) ---------- */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--blue), transparent); }
.tl-item { position: relative; padding: 0 0 34px 60px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 12px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--bg); border: 2px solid var(--blue); box-shadow: 0 0 0 4px rgba(56,189,248,0.12); }
.tl-year { font-family: 'Sora', sans-serif; font-weight: 800; color: var(--gold); font-size: 1.05rem; }
.tl-item h3 { font-size: 1.15rem; margin: 4px 0 6px; }
.tl-item p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Yönetim (executives) ---------- */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
.exec { display: flex; gap: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform 0.3s var(--ease), border-color 0.3s; }
.exec:hover { transform: translateY(-4px); border-color: var(--border-lit); }
.exec-photo { position: relative; flex: 0 0 180px; aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden; background: #0b1322; border: 1px solid var(--border); display: grid; place-items: center; }
.exec-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exec-photo .exec-ph { font-size: 3rem; opacity: 0.4; }
.exec-photo img ~ .exec-ph { display: none; }
.exec-photo.no-photo img { display: none; }
.exec-photo.no-photo .exec-ph { display: block; }
.exec-info { display: flex; flex-direction: column; }
.exec-info h3 { font-size: 1.25rem; }
.exec-role { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--gold); margin: 4px 0 12px; }
.exec-bio { color: var(--muted); font-size: 0.93rem; flex: 1; }
.exec-socials { display: flex; gap: 10px; margin-top: 16px; }
.exec-socials a { width: 38px; height: 38px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; transition: all 0.2s; }
.exec-socials a:hover { border-color: var(--border-lit); transform: translateY(-2px); }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.3s, border-color 0.3s; }
.tst:hover { transform: translateY(-5px); border-color: var(--border-lit); }
.tst .quote-mark { font-family: 'Sora', sans-serif; font-size: 2.6rem; line-height: 0.6; color: var(--blue); }
.tst p { color: #cdd8ee; font-size: 0.98rem; flex: 1; }
.tst-author { display: flex; align-items: center; gap: 12px; }
.tst-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 800; color: #041022; background: linear-gradient(135deg, var(--blue), var(--gold)); }
.tst-author strong { display: block; font-family: 'Sora', sans-serif; font-size: 0.95rem; }
.tst-author span { color: var(--muted); font-size: 0.82rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }

/* ---------- Logo grid (references / partners) ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.logo-cell { aspect-ratio: 16/9; display: grid; place-items: center; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; transition: transform 0.3s, border-color 0.3s, background 0.3s; }
.logo-cell:hover { transform: translateY(-4px); border-color: var(--border-lit); background: var(--surface-2); }
.logo-cell .lg-name { font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: 0.06em; font-size: 1.05rem; color: #cdd8ee; }
.logo-cell .lg-cat { display: block; margin-top: 4px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- Partner / brand cards ---------- */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: transform 0.3s, border-color 0.3s; }
.partner:hover { transform: translateY(-5px); border-color: var(--border-lit); }
.partner .pbadge { display: inline-flex; align-items: center; gap: 8px; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: 12px; }
.partner .pbadge .pdot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.28); font-size: 1.1rem; }
.partner .pcat { display: inline-block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); background: rgba(245,196,81,0.08); border: 1px solid rgba(245,196,81,0.24); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.partner p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Marka logo duvarı ---------- */
.brand-group { margin-bottom: 42px; }
.brand-group:last-child { margin-bottom: 0; }
.brand-cat { font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.brand-cat::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
.brand-logos { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.brand-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.brand-logo { position: relative; aspect-ratio: 16 / 10; background: #fff; border-radius: 14px; display: grid; place-items: center; padding: 20px; border: 1px solid var(--border); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.brand-logo:hover { transform: translateY(-5px); box-shadow: 0 20px 38px -18px rgba(0, 0, 0, 0.85); }
.brand-logo img { max-width: 100%; max-height: 60px; object-fit: contain; }
.brand-name { position: absolute; inset: auto 0 8px; text-align: center; font-size: 0.68rem; color: #041022; opacity: 0; transition: opacity 0.25s; pointer-events: none; }

/* ---------- Map / info (contact) ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 14px; }
.contact-copy > p { color: var(--muted); font-size: 1.03rem; }
.contact-list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; color: #c3cfe6; }
.contact-list .ci { flex: 0 0 42px; height: 42px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; }
.contact-list .cl-label { display: block; font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; transition: all 0.2s; }
.socials a:hover { border-color: var(--border-lit); transform: translateY(-3px); color: var(--blue); }
.map-embed { margin-top: 40px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 300px; display: block; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* ---------- Form ---------- */
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: grid; gap: 18px; box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { background: #070c17; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(56,189,248,0.15); }
.field input.invalid, .field textarea.invalid { border-color: #ef5a5a; }
.form-note { color: #4ade80; font-size: 0.9rem; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; margin: 0 auto; max-width: calc(var(--maxw) - 0px); }
.cta-inner { text-align: center; background: linear-gradient(135deg, rgba(37,99,235,0.16), rgba(56,189,248,0.08)); border: 1px solid var(--border-lit); border-radius: 26px; padding: 60px 30px; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.cta-inner p { color: var(--muted); max-width: 540px; margin: 14px auto 28px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 60px 0 30px; background: var(--bg-2); margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { color: var(--muted); margin-top: 12px; max-width: 280px; font-size: 0.94rem; }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.muted { color: #5b6b8a; font-size: 0.85rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 34px; }
  .cards, .why-grid, .tst-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .cards, .why-grid, .steps, .split-media, .field-row, .tst-grid, .partner-grid, .team-grid { grid-template-columns: 1fr; }
  .exec { flex-direction: column; }
  .exec-photo { flex: 0 0 auto; width: 140px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
  .hero, .page-hero { padding-top: 120px; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .lang-btn .lang-name { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
