:root {
  --bg: #0a0707;
  --bg-2: #100b0b;
  --panel: #130e0e;
  --panel-2: #191212;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --accent: #ef4444;
  --accent-soft: rgba(239, 68, 68, 0.13);
  --accent-line: rgba(239, 68, 68, 0.34);
  --text: #f1e8e8;
  --text-2: #aa9a9a;
  --muted: #716060;
  --display: "Space Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 75% -5%, rgba(239, 68, 68, 0.08), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(239, 68, 68, 0.05), transparent 55%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}

.wrap { position: relative; z-index: 1; }
.container { width: min(1140px, 90vw); margin: 0 auto; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 40;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 7, 7, 0.78);
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  max-width: 1600px; margin: 0 auto;
}
@media (max-width: 700px) { .nav-inner { padding: 14px 20px; } }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 36px; height: 36px; }
.brand .name { font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: 5px; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--text-2); text-decoration: none;
  font-size: 14px; letter-spacing: 0.3px; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.btn {
  font-family: var(--display); font-weight: 500; letter-spacing: 0.3px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; border: none; border-radius: 8px;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--accent); color: #fff; padding: 12px 22px; font-size: 14px; font-weight: 600; }
.btn-primary:hover { transform: translateY(-1px); background: #f05252; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); padding: 11px 22px; font-size: 14px; }
.btn-ghost:hover { border-color: var(--accent-line); color: var(--accent); }
.nav-cta { padding: 9px 18px; font-size: 13px; }

/* ---------- Hero ---------- */
header.hero { padding: 120px 0 90px; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 1px;
  color: #34e29b; border: 1px solid rgba(52, 226, 155, 0.3);
  background: rgba(52, 226, 155, 0.12); padding: 6px 13px; border-radius: 999px; margin-bottom: 28px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #34e29b; }
h1.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(46px, 6.5vw, 82px); line-height: 1.02;
  letter-spacing: -1.5px; color: #fff; margin-bottom: 22px;
}
h1.hero-title .ac { color: var(--accent); }
.hero-sub { font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2); max-width: 520px; margin-bottom: 36px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 30px; margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-trust .num { font-family: var(--display); font-weight: 700; font-size: 30px; color: #fff; letter-spacing: -0.5px; }
.hero-trust .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.5px; color: var(--muted); margin-top: 2px; text-transform: uppercase; }

.hero-visual { position: relative; display: grid; place-items: center; }
.visual-ring {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid var(--line-2);
  box-shadow: inset 0 0 80px rgba(239,68,68,0.07);
}
.visual-ring.r2 { width: 280px; height: 280px; border-color: var(--accent-line); opacity: 0.4; }
.hero-visual img { width: 230px; height: 230px; position: relative; filter: drop-shadow(0 24px 60px rgba(0,0,0,0.6)); }

/* ---------- Section headers ---------- */
section { padding: 90px 0; position: relative; }
.sec-head { margin-bottom: 56px; max-width: 640px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.sec-title { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -0.8px; color: #fff; line-height: 1.1; }
.sec-desc { color: var(--text-2); font-size: 17px; margin-top: 14px; }

/* ---------- Status bar ---------- */
.status-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.status-bar .container { display: flex; flex-wrap: wrap; }
.status-item { flex: 1 1 25%; min-width: 180px; padding: 26px 26px 26px 0; display: flex; align-items: center; gap: 14px; }
.status-item + .status-item { border-left: 1px solid var(--line); padding-left: 26px; }
.status-item .ic { color: var(--accent); flex-shrink: 0; }
.status-item .ttl { font-weight: 600; font-size: 15px; color: #fff; letter-spacing: 0.3px; }
.status-item .sub { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.status-item .sub b { color: var(--accent); font-weight: 500; }

/* ---------- Features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.feat { background: var(--panel); padding: 34px 30px; transition: background 0.25s; }
.feat:hover { background: var(--panel-2); }
.feat .ic {
  width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); margin-bottom: 22px;
}
.feat h3 { font-family: var(--display); font-weight: 600; font-size: 19px; color: #fff; margin-bottom: 9px; letter-spacing: -0.2px; }
.feat p { color: var(--text-2); font-size: 15px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 14px; min-height: 480px; }
.shot {
  border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  position: relative; overflow: hidden; transition: border-color 0.25s; min-height: 150px;
}
.shot::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.02) 75%, transparent 75%);
  background-size: 16px 16px; opacity: 0.6;
}
.shot:hover { border-color: var(--accent-line); }
.shot.big { grid-row: span 2; }
.shot .ph-ic { color: var(--muted); position: relative; }
.shot .ph-txt { font-family: var(--mono); font-size: 12px; letter-spacing: 1px; color: var(--muted); position: relative; }
.shot .badge { position: absolute; top: 14px; left: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.5px; color: var(--text-2); display: flex; align-items: center; gap: 7px; }
.shot .badge .d { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.play { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--accent-line); display: grid; place-items: center; color: var(--accent); background: var(--accent-soft); position: relative; transition: transform 0.2s; }
.shot:hover .play { transform: scale(1.06); }
.shot.has-img { padding: 0; cursor: zoom-in; }
.shot.has-img::before { display: none; }
.shot.has-img img { position: relative; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.shot.has-img:hover img { transform: scale(1.03); }

/* ---------- Pricing ---------- */
.price-wrap { display: flex; justify-content: center; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.price-grid .price-card { width: auto; display: flex; flex-direction: column; }
.price-grid .price-list { flex: 1; }
.price-card.popular { border-color: var(--accent-line); box-shadow: 0 0 0 1px var(--accent-line), 0 30px 60px -30px rgba(239,68,68,0.28); position: relative; }
.price-card.popular::before { content: "POPÜLER"; position: absolute; top: 14px; right: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; color: #fff; background: var(--accent); padding: 4px 10px; border-radius: 4px; font-weight: 600; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { width: min(440px, 100%); border: 1px solid var(--line-2); background: linear-gradient(180deg, var(--panel-2), var(--panel)); border-radius: 18px; overflow: hidden; }
.price-head { padding: 32px 36px 26px; border-bottom: 1px solid var(--line); }
.price-head .plan { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-2); }
.price-head .amount { font-family: var(--display); font-weight: 700; font-size: 64px; color: #fff; letter-spacing: -2px; line-height: 1; margin: 14px 0 2px; }
.price-head .amount span { font-size: 26px; color: var(--accent); letter-spacing: 0; }
.price-head .per { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.price-list { padding: 26px 36px; list-style: none; }
.price-list li { display: flex; align-items: center; gap: 13px; padding: 9px 0; color: var(--text); font-size: 15px; }
.price-list .chk { color: var(--accent); flex-shrink: 0; display: grid; place-items: center; }
.price-foot { padding: 6px 36px 34px; }
.price-foot .btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px; }
.price-note { text-align: center; font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ---------- SSS index list ---------- */
.faq-index { max-width: 820px; display: grid; gap: 14px; }
.faq-card {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--panel); color: var(--text); text-decoration: none;
  font-family: var(--display); font-weight: 500; font-size: 17px;
  transition: border-color 0.2s, background 0.2s, transform 0.18s;
}
.faq-card:hover { border-color: var(--accent-line); background: var(--panel-2); transform: translateY(-1px); }
.faq-card .arrow { color: var(--accent); font-family: var(--mono); font-size: 18px; flex-shrink: 0; }
.faq-card small { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; }

/* ---------- Article (single SSS) ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 60px 0 30px; }
.article .back { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); text-decoration: none; font-family: var(--mono); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 32px; transition: color 0.2s; }
.article .back:hover { color: var(--accent); }
.article h1 { font-family: var(--display); font-weight: 700; font-size: clamp(32px, 4.4vw, 48px); color: #fff; letter-spacing: -1px; line-height: 1.15; margin-bottom: 24px; }
.article .meta { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.article .lede { font-size: 19px; color: var(--text); margin-bottom: 28px; }
.article p { color: var(--text-2); font-size: 16px; margin-bottom: 18px; }
.article h2 { color: #fff; font-family: var(--display); font-weight: 600; font-size: 22px; margin: 36px 0 12px; letter-spacing: -0.3px; }
.article ul { color: var(--text-2); font-size: 16px; padding-left: 22px; margin-bottom: 18px; }
.article ul li { margin-bottom: 8px; }
.article .next-prev { display: flex; justify-content: space-between; gap: 14px; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.article .next-prev a { color: var(--text-2); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.article .next-prev a:hover { color: var(--accent); }
.article .next-prev small { display: block; font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }

/* ---------- Final CTA ---------- */
.final { text-align: center; border: 1px solid var(--line-2); background: linear-gradient(180deg, var(--panel-2), var(--bg-2)); border-radius: 20px; padding: 72px 30px; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(239,68,68,0.11), transparent 70%); pointer-events: none; }
.final h2 { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4.5vw, 50px); color: #fff; letter-spacing: -1px; margin-bottom: 14px; position: relative; }
.final p { color: var(--text-2); font-size: 18px; max-width: 520px; margin: 0 auto 32px; position: relative; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 44px 0 36px; margin-top: 20px; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.foot-inner .brand .name { font-size: 15px; letter-spacing: 4px; }
.foot-links { display: flex; gap: 26px; font-size: 14px; }
.foot-links a { color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--accent); }
.copyright { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 26px; }
.disclaimer { font-family: var(--mono); font-size: 11px; color: #3a443f; margin-top: 8px; max-width: 720px; line-height: 1.6; }
.powered { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 18px; text-align: center; letter-spacing: 1px; text-transform: uppercase; }
.powered b { color: var(--accent); font-weight: 500; letter-spacing: 0.5px; }
footer .container::after { content: "Powered by Kadir Burak"; display: block; font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); text-align: center; letter-spacing: 1.5px; }

svg.di { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual img { width: 170px; height: 170px; }
  .visual-ring { width: 260px; height: 260px; } .visual-ring.r2 { width: 200px; height: 200px; }
  .feat-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .shot.big { grid-row: span 1; min-height: 220px; }
  .status-item + .status-item { border-left: none; padding-left: 0; }
}
