﻿/* MixCix — Özellik Sayfaları Paylaşılan CSS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #f8fafc; color: #1e293b; font-family: 'Hanken Grotesk', sans-serif; overflow-x: hidden; line-height: 1.6; }

/* ── Layout ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Orbs ── */
.orb { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; width: 600px; height: 600px; }
.orb-blue  { background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%); }
.orb-orange{ background: radial-gradient(circle, rgba(255,138,0,0.09) 0%, transparent 65%); }
.orb-purple{ background: radial-gradient(circle, rgba(128,131,255,0.09) 0%, transparent 65%); }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(248,250,252,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(15,23,42,0.08); }
.hdr-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.brand span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; color: #1e293b; letter-spacing: -0.01em; }
.desk-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 500; color: #64748b; text-decoration: none; transition: color .2s; }
.nav-link:hover { color: #1e293b; }
.nav-link.active { color: #2563eb; }
.desk-cta { display: flex; align-items: center; gap: 12px; }
.mob-btn { display: none; background: none; border: none; cursor: pointer; font-size: 22px; color: #1e293b; padding: 4px; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 1.75rem; background: #2563eb; color: #ffffff; font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 600; border-radius: .5rem; border: none; cursor: pointer; transition: background .2s, box-shadow .2s, transform .15s; white-space: nowrap; }
.btn-primary:hover { background: #3b82f6; box-shadow: 0 0 24px rgba(37,99,235,0.25); transform: translateY(-1px); }
.btn-primary.sm { padding: .5rem 1.25rem; }
.btn-primary.lg { padding: 1rem 2.5rem; font-size: 15px; }
.btn-ghost { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 1.75rem; background: transparent; color: #1e293b; font-family: 'Geist', sans-serif; font-size: 14px; font-weight: 500; border-radius: .5rem; border: 1px solid rgba(139,144,160,.35); cursor: pointer; transition: border-color .2s, color .2s; white-space: nowrap; }
.btn-ghost:hover { border-color: #2563eb; color: #2563eb; }
.btn-ghost.sm { padding: .5rem 1.25rem; }

/* ── Mobile menu ── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(248,250,252,0.97); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700; color: #1e293b; text-decoration: none; transition: color .2s; }
.mobile-menu a:hover { color: #2563eb; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; cursor: pointer; font-size: 26px; color: #1e293b; }

/* ── Section labels ── */
.section-cap { font-family: 'Geist', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #64748b; display: block; margin-bottom: .75rem; }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: 'Geist', sans-serif; font-size: 12px; color: #64748b; margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: #64748b; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #2563eb; }
.breadcrumb span { color: #94a3b8; }

/* ── Hero ── */
.hero-section { position: relative; overflow: hidden; padding: 4rem 0 3rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(37,99,235,0.1); border: 1px solid rgba(75,142,255,.2); border-radius: 9999px; font-family: 'Geist', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; color: #2563eb; text-transform: uppercase; margin-bottom: 1.25rem; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #2563eb; animation: pulse 2s infinite; display: inline-block; }
.hero-section h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; color: #1e293b; margin-bottom: 1.25rem; }
.accent { color: #2563eb; }
.accent-orange { color: #ffb77f; }
.accent-purple { color: #c0c1ff; }
.accent-green  { color: #4ade80; }
.hero-desc { font-size: 17px; line-height: 1.75; color: #475569; max-width: 580px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Video ── */
.video-section { padding: 2rem 0 3rem; }
.video-placeholder { background: #f1f5f9; border: 1px solid rgba(15,23,42,0.1); border-radius: 1rem; overflow: hidden; aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; position: relative; }
.video-placeholder::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.08) 0%, transparent 70%); }
.video-inner { text-align: center; position: relative; z-index: 1; }
.play-btn { width: 64px; height: 64px; background: #2563eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.play-btn:hover { transform: scale(1.08); box-shadow: 0 0 32px rgba(173,198,255,.35); }
.video-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: #1e293b; margin-bottom: .5rem; }
.video-sub { font-family: 'Geist', sans-serif; font-size: 12px; color: #94a3b8; }

/* ── Content ── */
.content-section { padding: 3rem 0 4rem; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.mt-lg { margin-top: 5rem; }
.content-text h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 700; color: #1e293b; margin-bottom: 1rem; letter-spacing: -.015em; line-height: 1.25; }
.content-text p { font-size: 15px; color: #64748b; line-height: 1.8; margin-bottom: 1rem; }

/* ── Feature list ── */
.feature-list { background: #f1f5f9; border: 1px solid rgba(15,23,42,0.1); border-radius: 1rem; padding: 1.75rem; display: flex; flex-direction: column; gap: 12px; }
.flist-item { display: flex; align-items: center; gap: 10px; font-family: 'Geist', sans-serif; font-size: 13.5px; color: #475569; }
.check { width: 16px; height: 16px; flex-shrink: 0; fill: none; stroke: #4ade80; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── CTA ── */
.cta-wrap { padding: 2rem 0 5rem; }
.cta-box { background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(128,131,255,.08) 50%, rgba(255,138,0,.08) 100%); border: 1px solid rgba(37,99,235,0.08); border-radius: 1.5rem; padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-box h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; color: #1e293b; letter-spacing: -.02em; margin-bottom: 1rem; }
.cta-box p { font-size: 16px; color: #475569; margin-bottom: 2rem; }

/* ── Footer ── */
.site-footer { background: #e8eef5; border-top: 1px solid rgba(15,23,42,0.08); padding: 2rem 0; }
.ftr-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.ftr-brand { display: flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; color: #1e293b; }
.ftr-copy { font-family: 'Geist', sans-serif; font-size: 12px; color: #94a3b8; }
.ftr-links { display: flex; gap: 1.5rem; }
.ftr-links a { font-family: 'Geist', sans-serif; font-size: 12px; color: #94a3b8; text-decoration: none; transition: color .2s; }
.ftr-links a:hover { color: #64748b; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr !important; direction: ltr !important; gap: 2rem; }
  .desk-nav, .desk-cta { display: none !important; }
  .mob-btn { display: block !important; }
}
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .video-placeholder { aspect-ratio: 16/9; }
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── Sektörler dropdown ── */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trig { display: flex !important; align-items: center; gap: 3px; cursor: default; }
.sectors-dd { visibility: hidden; opacity: 0; pointer-events: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid rgba(15,23,42,.1); border-radius: .75rem; padding: 10px .5rem .5rem; min-width: 272px; box-shadow: 0 8px 32px rgba(15,23,42,.1); z-index: 300; transition: opacity .15s, visibility .15s; }
.nav-dropdown:hover .sectors-dd { visibility: visible; opacity: 1; pointer-events: auto; }
.sector-lnk { display: block; padding: .5rem .875rem; font-family: 'Geist', sans-serif; font-size: 13px; color: #475569; text-decoration: none; border-radius: .5rem; transition: background .15s, color .15s; white-space: nowrap; }
.sector-lnk:hover { background: #f1f5f9; color: #1e293b; }


/* ── MixCix Footer ── */
.mixcix-footer { background:#e8eef5; border-top:1px solid rgba(15,23,42,.08); padding:4rem 0 2rem; }
.mftr-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.mftr-logo { display:flex; align-items:center; gap:8px; text-decoration:none; margin-bottom:1rem; }
.mftr-logo span { font-family:'Plus Jakarta Sans',sans-serif; font-size:16px; font-weight:800; color:#1e293b; }
.mftr-desc { font-size:13.5px; color:#64748b; line-height:1.7; max-width:260px; margin-bottom:1.5rem; }
.mftr-social { display:flex; gap:8px; }
.mftr-soc-btn { width:36px; height:36px; background:#f1f5f9; border:1px solid rgba(15,23,42,.1); border-radius:8px; display:flex; align-items:center; justify-content:center; color:#64748b; text-decoration:none; transition:background .2s, color .2s, border-color .2s; }
.mftr-soc-btn:hover { background:#2563eb; color:#fff; border-color:#2563eb; }
.mftr-col-title { font-family:'Geist',sans-serif; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#1e293b; margin-bottom:1.25rem; }
.mftr-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.mftr-links a { font-family:'Geist',sans-serif; font-size:13.5px; color:#64748b; text-decoration:none; transition:color .2s; }
.mftr-links a:hover { color:#1e293b; }
.mftr-bottom { padding-top:2rem; border-top:1px solid rgba(15,23,42,.06); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.mftr-copy { font-family:'Geist',sans-serif; font-size:12px; color:#94a3b8; }
.mftr-legal { display:flex; gap:1.5rem; }
.mftr-legal a { font-family:'Geist',sans-serif; font-size:12px; color:#94a3b8; text-decoration:none; transition:color .2s; }
.mftr-legal a:hover { color:#64748b; }
@media (max-width:900px) {
  .mftr-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .mftr-brand-col { grid-column:1/-1; }
}
@media (max-width:580px) {
  .mftr-grid { grid-template-columns:1fr; }
  .mftr-bottom { flex-direction:column; align-items:flex-start; }
}
