/* HizmetPoint — premium stil (HTML5 efektli) */
:root {
  --bg: #070b14;
  --bg-2: #0b1222;
  --card: rgba(255, 255, 255, 0.035);
  --card-brd: rgba(255, 255, 255, 0.08);
  --gold: #e0a93b;
  --gold-2: #f6cd6b;
  --cyan: #38bdf8;
  --violet: #a78bfa;
  --text: #eef2f8;
  --muted: #93a4bd;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --max: 1160px;
  --grad: linear-gradient(135deg, var(--gold-2), var(--gold));
  --grad-cool: linear-gradient(135deg, var(--cyan), var(--violet));
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* Arka plan ışıltıları (mesh glow) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(600px 400px at 12% -5%, rgba(224, 169, 59, .12), transparent 60%),
    radial-gradient(700px 500px at 100% 0%, rgba(56, 189, 248, .08), transparent 55%),
    radial-gradient(600px 600px at 50% 120%, rgba(167, 139, 250, .07), transparent 60%);
}
a { color: var(--gold-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
img { max-width: 100%; display: block; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 11, 20, .72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.28rem; color: var(--text); letter-spacing: -.3px; }
.brand:hover { color: var(--text); }
.brand .dot {
  width: 13px; height: 13px; border-radius: 50%; background: var(--grad);
  box-shadow: 0 0 16px rgba(224, 169, 59, .8); animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ box-shadow: 0 0 10px rgba(224,169,59,.6);} 50%{ box-shadow: 0 0 22px rgba(224,169,59,1);} }
.brand b { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .94rem; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); transition: width .25s; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.7rem; cursor: pointer; line-height: 1; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 1rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
  position: relative;
}
.btn-primary { background: var(--grad); color: #1a1206; box-shadow: 0 8px 30px rgba(224, 169, 59, .28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(224, 169, 59, .42); color: #1a1206; }
.btn-ghost { border-color: var(--card-brd); color: var(--text); background: rgba(255, 255, 255, .03); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--text); transform: translateY(-2px); }

/* ─── Hero ─── */
.hero { padding: 110px 0 80px; text-align: center; position: relative; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  color: var(--gold-2); background: rgba(224, 169, 59, .1); border: 1px solid rgba(224, 169, 59, .25);
  padding: 7px 16px; border-radius: 30px; margin-bottom: 26px;
}
.hero .pill .live { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; animation: pulse 1.8s infinite; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4rem); line-height: 1.08; font-weight: 850; letter-spacing: -1.5px; }
.hero p.lead { color: var(--muted); font-size: clamp(1.08rem, 2.2vw, 1.32rem); max-width: 700px; margin: 24px auto 0; }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.hero-stats .stat strong { display: block; font-size: 2rem; font-weight: 800; }
.hero-stats .stat span { color: var(--muted); font-size: .9rem; }

/* ─── Sections ─── */
.section { padding: 78px 0; position: relative; }
.section-title { text-align: center; margin-bottom: 14px; }
.section-title .eyebrow { color: var(--gold-2); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: .8rem; }
.section-title h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 820; margin-top: 10px; letter-spacing: -.5px; }
.section-title p { color: var(--muted); max-width: 640px; margin: 12px auto 0; }

/* ─── Project / feature grid ─── */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; margin-top: 48px; }
.card {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
  padding: 30px; transition: transform .2s, border-color .2s, background .2s; position: relative; overflow: hidden;
  backdrop-filter: blur(8px); display: flex; flex-direction: column;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,169,59,.5), transparent); opacity: 0; transition: opacity .25s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(224, 169, 59, .35); background: rgba(255, 255, 255, .055); }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 18px; background: linear-gradient(135deg, rgba(224,169,59,.18), rgba(224,169,59,.05));
  border: 1px solid rgba(224, 169, 59, .2);
}
.card h3 { font-size: 1.28rem; font-weight: 780; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.card p { color: var(--muted); margin-top: 11px; flex: 1; font-size: .97rem; }
.badge { font-size: .68rem; font-weight: 700; padding: 3px 11px; border-radius: 20px; letter-spacing: .3px; }
.badge-live { background: rgba(74, 222, 128, .14); color: #4ade80; border: 1px solid rgba(74,222,128,.25); }
.badge-soon { background: rgba(147, 164, 189, .14); color: var(--muted); border: 1px solid var(--line); }
.card .card-link { margin-top: 20px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link:hover { gap: 10px; }

/* ─── Feature rows (alternating, detailed) ─── */
.frow { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center; margin: 70px 0; }
.frow:nth-child(even) .frow-media { order: -1; }
.frow .eyebrow { color: var(--gold-2); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .78rem; }
.frow h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin: 12px 0 14px; letter-spacing: -.4px; }
.frow p { color: var(--muted); font-size: 1.02rem; }
.frow ul { list-style: none; margin: 18px 0 0; display: grid; gap: 10px; }
.frow ul li { color: var(--text); font-size: .98rem; padding-left: 30px; position: relative; }
.frow ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--grad); color: #1a1206; font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.frow-media {
  background: linear-gradient(135deg, rgba(56,189,248,.06), rgba(167,139,250,.06));
  border: 1px solid var(--card-brd); border-radius: 20px; padding: 34px; min-height: 230px;
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); position: relative; overflow: hidden;
}
.frow-media .big-emoji { font-size: 5rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,.4)); }
.frow-media::after {
  content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,169,59,.18), transparent 70%); top: -40px; right: -40px;
}

/* ─── Mini feature chips ─── */
.chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-top: 46px; }
.chip { background: var(--card); border: 1px solid var(--card-brd); border-radius: 14px; padding: 22px; transition: transform .18s, border-color .18s; }
.chip:hover { transform: translateY(-4px); border-color: rgba(224,169,59,.3); }
.chip .ic { font-size: 1.5rem; }
.chip h4 { margin: 11px 0 7px; font-size: 1.05rem; font-weight: 720; }
.chip p { color: var(--muted); font-size: .92rem; }

/* ─── Highlight (eller serbest) band ─── */
.highlight {
  background: linear-gradient(135deg, rgba(224,169,59,.12), rgba(167,139,250,.08));
  border: 1px solid rgba(224, 169, 59, .25); border-radius: 24px; padding: 54px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.highlight h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 850; letter-spacing: -.5px; }
.highlight p { color: var(--muted); max-width: 640px; margin: 16px auto 0; font-size: 1.08rem; }

/* ─── CTA band ─── */
.cta-band {
  background: linear-gradient(120deg, var(--bg-2), #0d1830); border: 1px solid var(--card-brd);
  border-radius: 22px; padding: 52px 34px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 200px at 50% 0%, rgba(224,169,59,.14), transparent 70%); }
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 820; position: relative; }
.cta-band p { color: var(--muted); margin: 14px auto 28px; max-width: 560px; position: relative; }

/* ─── Detail hero ─── */
.detail-hero { padding: 70px 0 20px; max-width: 820px; }
.detail-hero .eyebrow { color: var(--gold-2); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; font-size: .82rem; }
.detail-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 850; margin: 12px 0 18px; letter-spacing: -1px; line-height: 1.1; }
.detail-hero p { color: var(--muted); font-size: 1.18rem; }

/* ─── Footer ─── */
.site-footer { border-top: 1px solid var(--line); padding: 58px 0 34px; margin-top: 50px; background: rgba(5, 8, 15, .6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
.footer-grid h4 { color: var(--text); font-size: .95rem; margin-bottom: 15px; }
.footer-grid a { display: block; color: var(--muted); font-size: .92rem; margin: 8px 0; }
.footer-grid a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 38px; padding-top: 22px; text-align: center; color: var(--muted); font-size: .88rem; }

/* ─── Scroll reveal ─── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* ─── Gerçekçi ekran mockup'ları ─── */
.frow-media { padding: 28px; }
.mock { box-shadow: 0 24px 60px rgba(0,0,0,.55); font-family: "Inter", system-ui, sans-serif; }

/* WhatsApp telefon */
.mock-phone { width: 256px; max-width: 100%; background: #0b141a; border: 8px solid #20303a; border-radius: 30px; overflow: hidden; }
.wa-head { background: #005c4b; color: #fff; padding: 11px 13px; display: flex; align-items: center; gap: 9px; }
.wa-head .av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#25d366,#128c7e); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.wa-head .nm { font-size: 12.5px; font-weight: 700; line-height: 1.2; }
.wa-head .st { font-size: 9.5px; color: #cfeee4; }
.wa-body { background: #0b141a; padding: 12px 10px; display: flex; flex-direction: column; gap: 7px; min-height: 300px; background-image: radial-gradient(rgba(255,255,255,.018) 1px, transparent 1px); background-size: 16px 16px; }
.wa-msg { max-width: 82%; padding: 6px 9px; border-radius: 9px; font-size: 11.5px; line-height: 1.42; }
.wa-in { background: #202c33; color: #e9edef; align-self: flex-start; border-top-left-radius: 2px; }
.wa-out { background: #005c4b; color: #e9edef; align-self: flex-end; border-top-right-radius: 2px; }
.wa-t { font-size: 8.5px; color: rgba(233,237,239,.55); float: right; margin: 4px 0 -2px 8px; }

/* Pencere / dashboard */
.mock-window { width: 100%; max-width: 430px; background: #0c1322; border: 1px solid var(--card-brd); border-radius: 14px; overflow: hidden; }
.win-bar { background: #0a0f1a; padding: 9px 12px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--line); }
.win-bar i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.win-bar .title { margin-left: 8px; font-size: 11px; color: var(--muted); font-weight: 600; }
.dash { padding: 13px; }
.dash-stats { display: flex; gap: 8px; margin-bottom: 11px; }
.dash-stat { flex: 1; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 9px; padding: 9px 10px; }
.dash-stat b { font-size: 16px; display: block; line-height: 1.1; }
.dash-stat span { font-size: 9px; color: var(--muted); }
.dash-row { display: flex; align-items: center; gap: 9px; padding: 8px 9px; border: 1px solid var(--line); border-radius: 9px; margin-bottom: 6px; background: rgba(255,255,255,.022); }
.dash-row .t { font-size: 12px; font-weight: 800; color: var(--gold-2); width: 40px; }
.dash-row .n { font-size: 11px; flex: 1; color: var(--text); }
.dash-row .b { font-size: 8.5px; padding: 2px 8px; border-radius: 10px; font-weight: 700; }
.b-ok { background: rgba(74,222,128,.16); color: #4ade80; }
.b-now { background: rgba(224,169,59,.18); color: var(--gold-2); }
.b-wait { background: rgba(147,164,189,.16); color: var(--muted); }

/* Kiosk tablet */
.mock-tablet { width: 100%; max-width: 320px; background: #0b1018; border: 9px solid #18222e; border-radius: 22px; overflow: hidden; }
.kiosk { padding: 18px 16px; text-align: center; }
.kiosk .logo { width: 40px; height: 40px; border-radius: 11px; background: var(--grad); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.kiosk h5 { font-size: 13px; font-weight: 800; }
.kiosk .sub { font-size: 10px; color: var(--muted); margin-bottom: 13px; }
.kiosk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 11px; }
.kiosk-btn { background: rgba(224,169,59,.1); border: 1px solid rgba(224,169,59,.22); border-radius: 10px; padding: 11px 6px; font-size: 10.5px; font-weight: 600; color: var(--text); }
.kiosk-btn.sel { background: var(--grad); color: #1a1206; border-color: transparent; }
.kiosk-cta { background: var(--grad); color: #1a1206; border-radius: 11px; padding: 11px; font-weight: 800; font-size: 12px; }

/* Takvim / slot */
.mock-cal { width: 100%; max-width: 290px; background: #0c1322; border: 1px solid var(--card-brd); border-radius: 14px; padding: 14px; }
.cal-head { font-size: 12px; font-weight: 800; margin-bottom: 11px; display: flex; justify-content: space-between; align-items: center; }
.cal-head span { font-size: 9.5px; color: var(--muted); font-weight: 600; }
.cal-slot { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 9px; margin-bottom: 6px; font-size: 11px; }
.cal-slot .t { font-weight: 800; width: 40px; }
.cal-slot .x { flex: 1; }
.slot-free { background: rgba(74,222,128,.07); border: 1px solid rgba(74,222,128,.2); }
.slot-free .t { color: #4ade80; }
.slot-busy { background: rgba(255,255,255,.035); border: 1px solid var(--line); color: var(--text); }
.slot-busy .t { color: var(--gold-2); }
.slot-closed { background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.25); color: #fca5a5; }
.slot-closed .t { color: #fca5a5; }
.slot-drag { background: rgba(56,189,248,.08); border: 1px dashed rgba(56,189,248,.45); color: #7dd3fc; }
.slot-drag .t { color: #38bdf8; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .brand .dot, .hero .pill .live { animation: none; } }

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .frow { grid-template-columns: 1fr; gap: 26px; margin: 48px 0; }
  .frow:nth-child(even) .frow-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: rgba(7, 11, 20, .97); backdrop-filter: blur(14px); padding: 20px 22px; gap: 18px;
    border-bottom: 1px solid var(--line); display: none; max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { padding: 70px 0 56px; }
  .hero-stats { gap: 26px; }
}
