/* Orvixa — page-specific styles. Loaded after style.css */

/* ─── Shared backgrounds (reused by pages) ──────────────── */

/* ─── Home: Hero ─────────────────────────────────────────── */
.hero {
  position: relative; z-index: 3;
  min-height: 100vh;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: 32px;
  padding: 120px 32px 60px;
  max-width: 1320px; margin: 0 auto;
}
.hero-content { display: flex; flex-direction: column; gap: 28px; max-width: 640px; }
.hero-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px; border-radius: var(--r-pill);
  background: rgba(122,90,248,0.08);
  border: 1px solid rgba(122,90,248,0.20);
  font-size: 12px; color: var(--accent-2);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  animation: fadeUp .8s var(--e-out) .3s both;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulseDot 2s var(--e-out) infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(155,138,251,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(155,138,251,0); }
  100% { box-shadow: 0 0 0 0 rgba(155,138,251,0); }
}
.hero h1.h-display {
  animation: fadeUp .9s var(--e-out) .4s both;
}
.hero h1 .word { display: inline-block; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent-3) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 100%;
  animation: gradShift 6s linear infinite;
}
.hero p.lead { animation: fadeUp .9s var(--e-out) .55s both; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp .9s var(--e-out) .7s both; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding-top: 28px;
  border-top: 1px solid var(--hairline);
  animation: fadeUp .9s var(--e-out) .85s both;
}
.hero-meta-item .num {
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  color: var(--text-1); letter-spacing: -0.025em;
  display: flex; align-items: baseline; gap: 4px;
}
.hero-meta-item .num small { font-size: 14px; color: var(--accent-2); font-weight: 500; }
.hero-meta-item .label { font-size: 12px; color: var(--text-4); margin-top: 4px; }

/* Hero visual — orbital system around brand mark */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 540px;
  justify-self: center;
  animation: fadeIn 1.4s var(--e-out) .3s both;
}
.hv-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hv-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
  -webkit-mask-image: radial-gradient(circle at center, #000 58%, transparent 78%);
  mask-image: radial-gradient(circle at center, #000 58%, transparent 78%);
}
.hv-canvas canvas { display: block; width: 100% !important; height: 100% !important; pointer-events: auto; }

/* ── BH fallback (WebGL kullanılamadığında, three_hero.js renderFallback) ──
   Sade CSS gradient kara delik — Three.js başarısız olduğunda site asla boş
   görünmesin. Halo + core + Einstein halkası benzeri dönen çember. */
.hv-canvas.hv-fallback {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hv-fallback-halo {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(122,90,248,0.32) 0%,
    rgba(91,60,196,0.18) 28%,
    rgba(91,60,196,0.06) 55%,
    transparent 80%);
  filter: blur(8px);
  animation: bhf-pulse 4s ease-in-out infinite;
}
.hv-fallback-core {
  position: absolute; inset: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #0a0612 0%, #000 60%);
  box-shadow:
    0 0 60px rgba(122,90,248,0.35),
    inset 0 0 30px rgba(0,0,0,0.95);
}
.hv-fallback-ring {
  position: absolute; inset: 22%;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background:
    conic-gradient(from 0deg, rgba(155,138,251,0.05), rgba(200,180,255,0.7), rgba(122,90,248,0.4), rgba(155,138,251,0.05), rgba(122,90,248,0.4), rgba(200,180,255,0.7), rgba(155,138,251,0.05)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: bhf-spin 22s linear infinite;
  box-shadow: 0 0 22px rgba(155,138,251,0.25);
}
@keyframes bhf-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.05); opacity: 1; }
}
@keyframes bhf-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hv-fallback-halo, .hv-fallback-ring { animation: none; }
}

/* ── Service card wormhole hover ── */
.svc-detail { position: relative; overflow: hidden; isolation: isolate; transition: transform .5s var(--e-out), border-color .5s var(--e-out); }
.svc-detail::before {
  content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(122,90,248,0.22), transparent 45%);
  opacity: 0; transition: opacity .5s var(--e-out);
}
.svc-detail::after {
  content: ''; position: absolute; left: var(--mx,50%); top: var(--my,50%); width: 0; height: 0;
  border-radius: 50%; pointer-events: none; z-index: -1;
  background: radial-gradient(circle, rgba(155,138,251,0.25) 0%, rgba(122,90,248,0.08) 40%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: width .8s var(--e-out), height .8s var(--e-out), opacity .5s;
  opacity: 0;
}
.svc-detail:hover { transform: translateY(-4px); border-color: rgba(122,90,248,0.35) !important; }
.svc-detail:hover::before { opacity: 1; }
.svc-detail:hover::after { width: 600px; height: 600px; opacity: 1; }
.svc-detail .svc-card-icon { position: relative; z-index: 1; transition: transform .5s var(--e-out); }
.svc-detail:hover .svc-card-icon { transform: scale(1.08) rotate(-4deg); box-shadow: 0 0 24px rgba(122,90,248,0.4); }
.hv-core {
  position: relative; width: 38%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1530 0%, #050208 60%, #000 100%);
  box-shadow:
    0 0 80px rgba(122,90,248,0.45),
    0 0 200px rgba(122,90,248,0.25),
    inset 0 0 40px rgba(0,0,0,0.8);
}
.hv-core::before {
  content: ''; position: absolute; inset: -8%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--accent-2), var(--accent-3), var(--accent), transparent 60%);
  filter: blur(14px);
  animation: spin 14s linear infinite;
  opacity: 0.6;
  z-index: -1;
}
.hv-core::after {
  content: ''; position: absolute; inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(155,138,251,0.4), transparent 60%);
  mix-blend-mode: screen;
}
.hv-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  pointer-events: none;
}
.hv-ring-1 { inset: 6%; animation: spin 26s linear infinite; }
.hv-ring-2 { inset: 18%; border-style: dashed; border-color: rgba(122,90,248,0.18); animation: spin 18s linear infinite reverse; }
.hv-ring-3 { inset: 30%; border-color: rgba(155,138,251,0.12); animation: spin 12s linear infinite; }
.hv-ring .pip {
  position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-glow);
}
.hv-ring-1 .pip { background: var(--accent-3); }
.hv-ring-2 .pip { left: 0; top: 50%; transform: translateY(-50%); }
.hv-ring-3 .pip { left: 100%; top: 50%; transform: translate(-50%,-50%); }

.hv-tag {
  position: absolute; padding: 8px 12px; border-radius: var(--r-2);
  background: rgba(14,18,32,0.92);
  /* backdrop-filter kaldırıldı — 4 küçük tag sürekli aktif, GPU paylaşımı */
  border: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-2);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  animation: fadeUp 1s var(--e-out) both;
}
.hv-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
.hv-tag.t1 { top: 8%; left: 4%; animation-delay: .8s; }
.hv-tag.t2 { top: 12%; right: 2%; animation-delay: .95s; }
.hv-tag.t3 { bottom: 14%; left: 0; animation-delay: 1.1s; }
.hv-tag.t4 { bottom: 8%; right: 8%; animation-delay: 1.25s; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 100px 20px 40px; gap: 20px; min-height: auto; }
  .hero-visual { max-width: 360px; order: -1; }
  .hero-content { max-width: 100%; gap: 20px; }
  .hero-badge { align-self: center; }
  .hero h1.h-display, .hero p.lead { text-align: center; }
  .hero-meta { grid-template-columns: 1fr 1fr 1fr; gap: 16px; padding-top: 20px; }
  .hero-actions { justify-content: center; }
  .hv-tag { display: none; }
}
@media (max-width: 540px) {
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta-item { display: flex; align-items: baseline; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
  .hero-meta-item:last-child { border-bottom: 0; padding-bottom: 0; }
  .hero-meta-item .label { margin-top: 0; flex: 1; text-align: right; }
  .hero-actions .btn { flex: 1; }
}

/* ─── Section header pattern ─────────────────────────────── */
.section-header {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: end; margin-bottom: 48px;
}
.section-header-title { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
@media (max-width: 720px) {
  .section-header { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── Marquee logos ──────────────────────────────────────── */
.marquee {
  position: relative; overflow: hidden;
  padding: 32px 0;
  border-block: 1px solid var(--hairline);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  animation: scroll 32s linear infinite;
  width: max-content;
}
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  color: var(--text-4); letter-spacing: -0.02em; opacity: 0.7;
  white-space: nowrap; transition: color .25s, opacity .25s;
}
.marquee-item:hover { color: var(--text-1); opacity: 1; }

/* ─── Services preview grid (home) ───────────────────────── */
.services-preview {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.svc-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s var(--e-out), border-color .35s, background .35s;
  min-height: 220px;
}
.svc-card:hover { transform: translateY(-3px); border-color: rgba(122,90,248,0.25); background: rgba(122,90,248,0.04); }
.svc-card .num { font-family: var(--font-mono); font-size: 11px; color: var(--text-5); letter-spacing: 0.1em; }
.svc-card h3 { font-size: 22px; font-weight: 600; color: var(--text-1); letter-spacing: -0.02em; }
.svc-card p { font-size: 13px; color: var(--text-4); line-height: 1.6; flex: 1; }
.svc-card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-card .tags .tag {
  font-size: 11px; padding: 4px 9px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04); border: 1px solid var(--hairline);
  color: var(--text-3);
}
.svc-card.lg { grid-column: span 6; min-height: 280px; }
.svc-card.md { grid-column: span 4; }
.svc-card.sm { grid-column: span 3; }
.svc-card-icon {
  width: 36px; height: 36px; border-radius: var(--r-2);
  background: linear-gradient(135deg, rgba(122,90,248,0.15), rgba(122,90,248,0.04));
  border: 1px solid rgba(122,90,248,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
}
.svc-card-icon svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .services-preview { grid-template-columns: repeat(2, 1fr); }
  .svc-card.lg, .svc-card.md, .svc-card.sm { grid-column: span 1; min-height: 200px; }
}
@media (max-width: 540px) {
  .services-preview { grid-template-columns: 1fr; }
}

/* ─── Process steps ──────────────────────────────────────── */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--hairline); border-radius: var(--r-3);
  overflow: hidden;
}
.process-step {
  padding: 28px;
  border-right: 1px solid var(--hairline);
  position: relative;
  transition: background .3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(122,90,248,0.04); }
.process-step .pn {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent-2);
  letter-spacing: 0.14em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.process-step .pn::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2); }
.process-step h4 { font-size: 17px; color: var(--text-1); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-4); line-height: 1.65; }

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--hairline); }
  .process-step:last-child { border-bottom: none; }
}

/* ─── Sector grid ────────────────────────────────────────── */
.sectors-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.sector-card {
  position: relative; overflow: hidden;
  padding: 24px; border-radius: var(--r-3);
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition: transform .3s var(--e-out), border-color .3s, background .3s;
}
.sector-card:hover { transform: translateY(-2px); border-color: rgba(122,90,248,0.22); background: rgba(122,90,248,0.04); }
.sector-card-icon {
  width: 36px; height: 36px; border-radius: var(--r-2);
  background: linear-gradient(135deg, rgba(122,90,248,0.14), rgba(122,90,248,0.04));
  border: 1px solid rgba(122,90,248,0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2); margin-bottom: 14px;
}
.sector-card-icon svg { width: 18px; height: 18px; }
.sector-card h3 { font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
.sector-card p { font-size: 13px; color: var(--text-4); line-height: 1.6; }

/* ─── Generic page-hero ──────────────────────────────────── */
.page-hero {
  position: relative; z-index: 3;
  padding: 140px 24px 64px;
  text-align: center;
  max-width: 880px; margin: 0 auto;
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 600; letter-spacing: -0.035em; margin-bottom: 18px; }
.page-hero p { color: var(--text-3); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65; max-width: 60ch; margin: 0 auto; }

/* ─── Hizmetler page ─────────────────────────────────────── */
.svc-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.svc-detail {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-3); padding: 32px;
  transition: transform .3s var(--e-out), border-color .3s;
}
.svc-detail:hover { transform: translateY(-3px); border-color: rgba(122,90,248,0.22); }
.svc-detail h3 { font-size: 22px; margin-bottom: 8px; color: var(--text-1); letter-spacing: -0.02em; }
.svc-detail > p { font-size: 14px; color: var(--text-4); line-height: 1.65; margin-bottom: 18px; }
.svc-detail-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px;
}
.svc-detail-list li {
  font-size: 12px; padding: 5px 11px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04); border: 1px solid var(--hairline);
  color: var(--text-3);
  transition: background .25s, color .25s, border-color .25s;
}
.svc-detail-list li:hover {
  background: rgba(122,90,248,0.08); color: var(--accent-2); border-color: rgba(122,90,248,0.22);
}

/* ─── Iletisim page ──────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px;
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.info-item {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-3); padding: 22px;
  transition: border-color .25s, background .25s;
}
.info-item:hover { border-color: rgba(122,90,248,0.20); background: rgba(122,90,248,0.04); }
.info-item h4 {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent-2);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px;
}
.info-item p, .info-item a { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.info-item a:hover { color: var(--accent-2); }
.contact-form {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-4); padding: 36px;
}
.contact-form h2 { font-size: 22px; color: var(--text-1); margin-bottom: 6px; }
.contact-form > p { font-size: 13px; color: var(--text-4); margin-bottom: 24px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-note { font-size: 11px; color: var(--text-5); text-align: center; margin-top: 12px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
}

/* ─── Hakkımızda page ────────────────────────────────────── */
.about-body { max-width: var(--content-narrow); margin: 0 auto; padding: 0 24px; }
.about-body h2 {
  font-size: 26px; font-weight: 600; color: var(--text-1);
  margin-top: 56px; margin-bottom: 20px;
  padding-top: 32px; border-top: 1px solid var(--hairline);
  letter-spacing: -0.025em;
}
.about-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.about-body p { font-size: 16px; color: var(--text-3); line-height: 1.8; margin-bottom: 18px; }
.about-body p strong { color: var(--text-1); font-weight: 500; }
.about-body ol, .about-body ul { padding-left: 22px; margin-bottom: 18px; }
.about-body li { font-size: 16px; color: var(--text-3); line-height: 1.8; margin-bottom: 10px; }
.about-body li strong { color: var(--text-1); font-weight: 500; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 32px 0;
}
.value-item {
  padding: 22px; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-3);
}
.value-item .vk {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent-2);
  letter-spacing: 0.12em; margin-bottom: 10px; text-transform: uppercase;
}
.value-item h4 { font-size: 16px; color: var(--text-1); margin-bottom: 6px; }
.value-item p { font-size: 13px; color: var(--text-4); line-height: 1.6; }

@media (max-width: 720px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ─── Tweaks panel ───────────────────────────────────────── */
.tweaks-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--text-1); color: var(--bg);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: transform .25s, box-shadow .25s;
}
.tweaks-fab:hover { transform: translateY(-2px) rotate(45deg); }
.tweaks-fab svg { width: 18px; height: 18px; }

.tweaks-panel {
  position: fixed; bottom: 80px; right: 24px; z-index: 199;
  width: 320px;
  background: var(--surface-strong);
  backdrop-filter: blur(28px);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-3);
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  transform-origin: bottom right;
  transform: scale(0.92) translateY(8px); opacity: 0; pointer-events: none;
  transition: opacity .25s var(--e-out), transform .25s var(--e-out);
}
.tweaks-panel.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.tweaks-panel h4 { font-size: 13px; color: var(--text-1); margin-bottom: 12px; font-weight: 500; }
.tweak-row { margin-bottom: 14px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  color: var(--text-4); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.tweak-segments {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  gap: 4px; padding: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2);
}
.tweak-segments button {
  background: transparent; border: none; padding: 7px 4px;
  font-size: 12px; color: var(--text-3); cursor: pointer; border-radius: 6px;
  transition: background .2s, color .2s;
  font-family: inherit;
}
.tweak-segments button:hover { color: var(--text-1); }
.tweak-segments button.on { background: rgba(255,255,255,0.08); color: var(--text-1); }
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatch {
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: transform .2s, border-color .2s;
}
.tweak-swatch:hover { transform: scale(1.08); }
.tweak-swatch.on { border-color: var(--text-1); }


/* ════════════════════════════════════════════════════════════
   PAGE INNOVATIONS v3 — sector explorer, live contact, about
   ════════════════════════════════════════════════════════════ */

/* ── SEKTÖRLER: Split Explorer ── */
.sector-explorer {
  display: grid; grid-template-columns: 320px 1fr; gap: 24px;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  min-height: 540px;
}
.se-rail {
  display: flex; flex-direction: column; gap: 2px;
  position: relative;
  border-left: 1px solid var(--hairline);
  padding-left: 0;
}
.se-rail::before {
  content: ''; position: absolute; left: -1px; top: var(--beam-y, 0);
  width: 1px; height: var(--beam-h, 56px);
  background: linear-gradient(180deg, transparent, var(--accent-2), transparent);
  box-shadow: 0 0 12px var(--accent-2);
  transition: top .45s var(--e-out), height .45s var(--e-out);
  pointer-events: none;
}
.se-tab {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  font-size: 15px; color: var(--text-4);
  cursor: pointer; user-select: none;
  border: none; border-left: 1px solid transparent;
  background: transparent;
  transition: color .25s, padding-left .35s var(--e-out), background .3s;
  font-family: inherit;
  text-align: left;
  width: 100%;
}
.se-tab .se-num {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-5); letter-spacing: .14em;
  width: 24px;
}
.se-tab .se-title { flex: 1; }
.se-tab .se-arrow {
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s, transform .3s var(--e-out);
  color: var(--accent-2);
}
.se-tab:hover { color: var(--text-2); padding-left: 24px; }
.se-tab.active {
  color: var(--text-1);
  padding-left: 24px;
  background: linear-gradient(90deg, rgba(122,90,248,0.08), transparent 60%);
}
.se-tab.active .se-arrow { opacity: 1; transform: translateX(0); }
.se-tab.active .se-num { color: var(--accent-2); }

.se-stage {
  position: relative; overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
  background: var(--surface);
  padding: 56px 56px 48px;
  min-height: 540px;
  isolation: isolate;
}
.se-stage::before {
  content: ''; position: absolute; inset: -1px;
  background:
    radial-gradient(600px circle at var(--gx, 80%) var(--gy, 20%), rgba(122,90,248,0.18), transparent 60%),
    radial-gradient(400px circle at 10% 100%, rgba(155,138,251,0.10), transparent 50%);
  z-index: -1;
  transition: --gx 1s, --gy 1s;
}
.se-stage::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(122,90,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,90,248,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask: radial-gradient(circle at center, black, transparent 75%);
  z-index: -1;
  pointer-events: none;
}
.se-panel {
  position: relative; z-index: 1;
  display: grid; gap: 28px;
  grid-template-rows: auto 1fr auto;
  height: 100%; min-height: 444px;
}
.se-head { display: flex; align-items: center; gap: 18px; }
.se-icon {
  width: 64px; height: 64px; border-radius: var(--r-3);
  background: linear-gradient(135deg, rgba(122,90,248,0.20), rgba(122,90,248,0.04));
  border: 1px solid rgba(122,90,248,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  position: relative;
  flex-shrink: 0;
}
.se-icon::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(122,90,248,0.15);
  animation: se-pulse 2.4s ease-in-out infinite;
}
@keyframes se-pulse { 0%, 100% { transform: scale(1); opacity: .7 } 50% { transform: scale(1.08); opacity: .2 } }
.se-icon svg { width: 30px; height: 30px; }
.se-head-text .se-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--accent-2); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 6px;
}
.se-head-text h2 {
  font-size: 36px; font-weight: 600; color: var(--text-1);
  letter-spacing: -0.025em; line-height: 1.1;
}
.se-desc {
  font-size: 17px; color: var(--text-3); line-height: 1.7;
  max-width: 640px;
}
.se-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.se-meta-item .se-meta-k {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-5); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 6px;
}
.se-meta-item .se-meta-v {
  font-size: 15px; color: var(--text-2); font-weight: 500;
}
.se-cta {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 12px 22px; border-radius: var(--r-pill);
  background: var(--accent-2); color: white;
  font-size: 14px; font-weight: 500;
  transition: transform .25s, box-shadow .25s;
}
.se-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(122,90,248,0.4); }

/* Reveal animation when stage content swaps */
.se-fade { animation: se-in .55s var(--e-out); }
@keyframes se-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .sector-explorer { grid-template-columns: 1fr; gap: 16px; }
  .se-rail { flex-direction: row; overflow-x: auto; border-left: none; border-bottom: 1px solid var(--hairline); padding-bottom: 8px; gap: 4px; }
  .se-rail::before { display: none; }
  .se-tab { white-space: nowrap; padding: 10px 14px; border-left: none; border-bottom: 2px solid transparent; }
  .se-tab.active { border-bottom-color: var(--accent-2); padding-left: 14px; }
  .se-tab .se-num, .se-tab .se-arrow { display: none; }
  .se-stage { padding: 32px 24px; min-height: auto; }
  .se-head-text h2 { font-size: 26px; }
}

/* ── İLETİŞİM: Live info cards ── */
.contact-info { gap: 12px; }
.info-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-3); padding: 22px;
  transition: border-color .3s, background .3s, transform .3s var(--e-out);
}
.info-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent-2);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--e-out);
}
.info-card:hover { border-color: rgba(122,90,248,0.25); background: rgba(122,90,248,0.04); }
.info-card:hover::before { transform: scaleY(1); }
.info-card-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.info-card-ic {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(122,90,248,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
}
.info-card-ic svg { width: 14px; height: 14px; }
.info-card-label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--accent-2); text-transform: uppercase; letter-spacing: .12em;
}
.info-card-body { font-size: 15px; color: var(--text-2); line-height: 1.55; }
.info-card-body a { color: var(--text-2); }
.info-card-body a:hover { color: var(--accent-2); }
.info-card-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.info-mini-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(122,90,248,0.08);
  border: 1px solid rgba(122,90,248,0.18);
  color: var(--text-2); font-size: 12px;
  font-family: inherit; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.info-mini-btn:hover { background: rgba(122,90,248,0.14); color: var(--accent-2); border-color: rgba(122,90,248,0.35); }
.info-mini-btn svg { width: 12px; height: 12px; }
.info-mini-btn.copied { background: rgba(97,206,112,0.12); border-color: rgba(97,206,112,0.4); color: #61CE70; }

.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #61CE70; margin-right: 8px;
  box-shadow: 0 0 10px rgba(97,206,112,0.6);
  animation: live-pulse 1.6s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .65; }
}
.live-dot.off { background: #6b7280; box-shadow: none; animation: none; }

.response-meter {
  margin-top: 10px;
  height: 6px; border-radius: 3px;
  background: rgba(122,90,248,0.12); overflow: hidden;
  position: relative;
}
.response-meter > span {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
  width: 0; transition: width 1.4s var(--e-out);
  border-radius: inherit;
}
.response-stats {
  display: flex; justify-content: space-between;
  margin-top: 8px; font-family: var(--font-mono); font-size: 10px;
  color: var(--text-5); letter-spacing: .12em; text-transform: uppercase;
}

.mini-map {
  margin-top: 12px;
  height: 110px; border-radius: var(--r-2);
  border: 1px solid var(--hairline);
  background:
    radial-gradient(circle at 50% 50%, rgba(122,90,248,0.18), transparent 50%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 22px),
    #0c0f1a;
  position: relative; overflow: hidden;
}
.mini-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mini-map .mm-pin {
  position: absolute; left: 50%; top: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
}
.mini-map .mm-pin::before, .mini-map .mm-pin::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: var(--accent-2);
}
.mini-map .mm-pin::after {
  inset: -10px; background: transparent; border: 1px solid var(--accent-2);
  animation: mm-ping 2.2s ease-out infinite;
}
@keyframes mm-ping {
  0% { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.copy-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translate(-50%, 20px);
  padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--accent-2); color: white;
  font-size: 13px; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s var(--e-out);
  z-index: 200;
  box-shadow: 0 12px 40px rgba(122,90,248,0.4);
}
.copy-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── HAKKIMIZDA: Stats + Manifesto + Process Timeline ── */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 8px auto 56px;
  max-width: var(--content-narrow);
  border: 1px solid var(--hairline); border-radius: var(--r-3);
  background: var(--surface); overflow: hidden;
}
.about-stat {
  padding: 28px 24px; border-right: 1px solid var(--hairline);
  text-align: left; position: relative;
}
.about-stat:last-child { border-right: none; }
.about-stat .as-num {
  font-family: var(--font-mono);
  font-size: 38px; font-weight: 500;
  color: var(--text-1);
  letter-spacing: -0.02em;
  display: block;
  background: linear-gradient(120deg, var(--text-1), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-stat .as-suffix { font-size: 22px; color: var(--accent-2); margin-left: 2px; }
.about-stat .as-label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-5); letter-spacing: .14em; text-transform: uppercase;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}

.manifesto {
  position: relative; max-width: 880px; margin: 56px auto;
  padding: 56px 48px;
  border: 1px solid var(--hairline); border-radius: var(--r-4);
  background: var(--surface);
  overflow: hidden;
  isolation: isolate;
}
.manifesto::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(500px circle at 100% 0%, rgba(122,90,248,0.18), transparent 55%),
    radial-gradient(400px circle at 0% 100%, rgba(155,138,251,0.10), transparent 50%);
  z-index: -1;
}
.manifesto-quote {
  font-size: 28px; line-height: 1.4; color: var(--text-1);
  font-weight: 500; letter-spacing: -0.02em;
  text-wrap: pretty;
}
.manifesto-quote em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.manifesto-mark {
  font-family: var(--font-mono); font-size: 64px;
  color: var(--accent-2); opacity: .35; line-height: 1;
  margin-bottom: -20px;
}
.manifesto-sig {
  margin-top: 28px; font-family: var(--font-mono); font-size: 11px;
  color: var(--text-5); letter-spacing: .14em; text-transform: uppercase;
}

.timeline {
  position: relative; max-width: var(--content-narrow); margin: 32px auto 56px;
  padding: 0 24px;
}
.timeline-track {
  position: absolute; left: 38px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--hairline);
  overflow: hidden;
}
.timeline-track::after {
  content: ''; position: absolute; inset: 0 0 auto 0;
  height: var(--track-fill, 0%);
  background: linear-gradient(180deg, var(--accent-2), var(--accent-3));
  transition: height .8s var(--e-out);
  box-shadow: 0 0 20px rgba(122,90,248,0.5);
}
.timeline-row {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; padding: 18px 0 28px 24px;
  opacity: 0; transform: translateX(-12px);
  transition: opacity .55s var(--e-out), transform .55s var(--e-out);
}
.timeline-row.visible { opacity: 1; transform: translateX(0); }
.timeline-node {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-1); border: 2px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-4);
  position: relative; z-index: 2;
  margin-left: -2px;
  transition: border-color .4s, color .4s, transform .4s var(--e-out);
}
.timeline-row.visible .timeline-node {
  border-color: var(--accent-2); color: var(--accent-2);
  background: rgba(122,90,248,0.10);
  transform: scale(1.05);
}
.timeline-row.visible .timeline-node::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 1px solid rgba(122,90,248,0.25);
  animation: tl-ping 2.2s ease-out infinite;
}
@keyframes tl-ping {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.timeline-card {
  padding: 4px 0;
}
.timeline-card h4 {
  font-size: 18px; color: var(--text-1); font-weight: 600;
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.timeline-card p {
  font-size: 14px; color: var(--text-3); line-height: 1.7;
  margin-bottom: 0;
}
.timeline-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.timeline-tag {
  font-family: var(--font-mono); font-size: 10px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(122,90,248,0.08);
  border: 1px solid rgba(122,90,248,0.18);
  color: var(--accent-2); letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .manifesto { padding: 36px 24px; }
  .manifesto-quote { font-size: 22px; }
  .timeline-track { left: 30px; }
}


/* ════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE — tablet & mobile across all pages
   ════════════════════════════════════════════════════════════ */

/* Tablet (1024 ↓) */
@media (max-width: 1024px) {
  .container, .container-narrow { padding: 0 24px; }
  .hero { padding: 110px 24px 50px; gap: 24px; }
  .h-display { font-size: clamp(40px, 6vw, 64px); }
  .page-hero h1 { font-size: clamp(36px, 5.5vw, 56px); }
  .se-head-text h2 { font-size: 30px; }
  .se-stage { padding: 44px 40px; }
}

/* Tablet portrait / large phones (880 ↓) */
@media (max-width: 880px) {
  .page-hero { padding: 100px 20px 40px; }
  .page-hero h1 { font-size: clamp(32px, 7vw, 44px); line-height: 1.1; }
  .page-hero p { font-size: 15px; }
  .lead { font-size: 15px; line-height: 1.65; }
  .h-1 { font-size: clamp(26px, 5vw, 38px); }
  .section-header { gap: 18px; }
  .about-body h2 { font-size: 22px; margin-top: 40px; margin-bottom: 14px; }
  .about-body p, .about-body li { font-size: 15px; line-height: 1.7; }
  .manifesto { padding: 40px 28px; margin: 32px auto; }
  .manifesto-quote { font-size: 22px; }
  .manifesto-mark { font-size: 48px; }
}

/* Phones (640 ↓) */
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 18px; }
  .hero { padding: 96px 18px 36px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { flex: 1; justify-content: center; min-width: 0; }
  .hero-content { gap: 22px; }
  .hero-visual { max-width: 280px; margin: 0 auto; }
  .hero-meta-item .num { font-size: 22px; }

  .page-hero { padding: 88px 18px 32px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 36px); }

  .section { padding: calc(40px * var(--density)) 0; }

  .section-header { padding: 0; }
  .section-header > a.btn { align-self: flex-start; }

  /* Sektörler explorer rail — horizontal scroll on phone */
  .se-stage { padding: 28px 20px; }
  .se-head { gap: 12px; }
  .se-icon { width: 48px; height: 48px; }
  .se-icon svg { width: 22px; height: 22px; }
  .se-head-text h2 { font-size: 22px; }
  .se-desc { font-size: 15px; }
  .se-meta { grid-template-columns: 1fr; gap: 10px; padding-top: 18px; }
  .se-cta { padding: 10px 18px; font-size: 13px; }

  /* İletişim cards */
  .contact-form { padding: 24px 20px; }
  .contact-form h2 { font-size: 20px; }
  .contact-form-row { display: flex; flex-direction: column; gap: 0; }
  .info-card { padding: 18px; }
  .info-card-body { font-size: 14px; }
  .info-card-actions { gap: 6px; }
  .info-mini-btn { padding: 8px 12px; font-size: 12px; }

  /* Hakkımızda timeline */
  .timeline { padding: 0 18px; }
  .timeline-track { left: 26px; }
  .timeline-row { grid-template-columns: 44px 1fr; gap: 14px; padding: 14px 0 22px 16px; }
  .timeline-node { width: 28px; height: 28px; font-size: 11px; }
  .timeline-card h4 { font-size: 16px; }
  .timeline-card p { font-size: 14px; }

  /* Hizmetler card grid */
  .svc-card { padding: 22px 20px; min-height: 180px; }
  .svc-card h3 { font-size: 18px; }
  .svc-card p { font-size: 13px; }

  /* Process steps single col with smaller padding */
  .process-step { padding: 22px 20px; }

  /* Values grid */
  .value-item { padding: 18px; }

  /* Footer breathing */
  .footer { padding: 48px 0 28px; }

  /* Cookie banner mobile-friendly */
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 14px; flex-direction: column; gap: 12px; align-items: stretch; }
  .cookie-banner .btn { justify-content: center; }

  /* WhatsApp FAB doesn't cover content */
  .whatsapp-fab { bottom: 16px; right: 16px; width: 48px; height: 48px; }

  /* Tweaks panel mobile */
  .tweaks-panel { left: 12px; right: 12px; bottom: 80px; max-width: none; width: auto; }
  .tweaks-fab { bottom: 16px; right: 76px; }
}

/* Tiny phones (380 ↓) */
@media (max-width: 380px) {
  .page-hero h1 { font-size: 26px; }
  .h-display { font-size: 32px; }
  .hero-meta-item .num { font-size: 20px; }
  .se-head-text h2 { font-size: 19px; }
  .manifesto-quote { font-size: 19px; }
  .nav-logo img { height: 22px; }
}

/* Force horizontal-only overflow protection */
html, body { overflow-x: hidden; max-width: 100vw; }


/* ── Mobile sektörler explorer: 2-col grid pills (no horizontal scroll) ── */
@media (max-width: 720px) {
  .se-rail {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }
  .se-rail::before { display: none; }
  .se-tab {
    border: 1px solid var(--hairline) !important;
    border-radius: 10px;
    padding: 12px 12px !important;
    font-size: 13px !important;
    background: rgba(255,255,255,0.02);
    white-space: normal !important;
  }
  .se-tab .se-num { display: inline-block !important; width: auto; margin-right: 4px; }
  .se-tab .se-arrow { display: none !important; }
  .se-tab .se-title { font-size: 13px; line-height: 1.25; }
  .se-tab.active {
    border-color: rgba(122,90,248,0.45) !important;
    background: rgba(122,90,248,0.10) !important;
    padding-left: 12px !important;
  }
  .sector-explorer { gap: 18px; }
  .se-stage { min-height: 360px; }
}

/* Make sure mobile menu / hamburger usable */
@media (max-width: 880px) {
  .hamburger { display: flex !important; }
  #readingProgress { display: none !important; }
  /* Mobile menu touch targets */
  .mobile-menu a { padding: 14px 18px; font-size: 16px; }
}
