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

:root {
  --bg: #050508;
  --bg2: #0a0a12;
  --cyan: #00ffff;
  --magenta: #ff00ff;
  --purple: #8b00ff;
  --green: #00ff88;
  --white: #e0e0ff;
  --gray: #4a4a6a;
}

/* ── Gündüz Modu ── */
body.light {
  --bg: #f0f2f8;
  --bg2: #e4e6f0;
  --cyan: #0077aa;
  --magenta: #cc00aa;
  --purple: #6600cc;
  --green: #007a40;
  --white: #0d0d1a;
  --gray: #6a6a88;
}

body.light #bg-canvas { opacity: 0.12; }
body.light::after { opacity: 0.3; }

body.light nav {
  background: rgba(240,242,248,0.88);
  border-bottom-color: rgba(0,119,170,0.15);
}

body.light .stat,
body.light .svc,
body.light .proj,
body.light .ach-card {
  background: #fff;
  border-color: rgba(0,119,170,0.15);
}

body.light .svc-desc,
body.light .about-body,
body.light .ach-sub { color: rgba(13,13,26,0.6); }

body.light .contact-intro { color: #6a6a88; }

body.light .field input,
body.light .field textarea {
  background: #fff;
  border-color: rgba(0,119,170,0.2);
  color: #0d0d1a;
}

body.light footer {
  border-top-color: rgba(0,119,170,0.1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); }

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Scanlines */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}

nav, section, footer { position: relative; z-index: 2; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.4rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5,5,8,0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,255,255,0.08);
  z-index: 100;
}

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(0,255,255,0.7);
  letter-spacing: 0.35em;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem;
  padding-top: 6rem;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(4.5rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: carSlam 0.35s 2s cubic-bezier(0.05, 0.9, 0.1, 1) forwards;
}

@keyframes carSlam {
  0%   { opacity: 0; transform: translateX(-120vw) scaleX(1.15) skewX(-8deg); filter: blur(12px); }
  70%  { opacity: 1; transform: translateX(12px)   scaleX(0.98) skewX(-1deg); filter: blur(0px); }
  85%  { transform: translateX(-5px) scaleX(1.01) skewX(0deg); }
  100% { opacity: 1; transform: translateX(0)      scaleX(1)    skewX(0deg); filter: blur(0px); }
}

/* Glitch */
.glitch {
  position: relative;
  color: #fff;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.glitch::before {
  color: var(--cyan);
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
}

.glitch::after {
  color: var(--magenta);
  animation: glitch2 4s infinite;
  clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
  0%, 88%, 100% { transform: translate(0); }
  90% { transform: translate(-5px, 3px); opacity: 0.8; }
  92% { transform: translate(5px, -3px); }
  94% { transform: translate(-2px, 0); }
  96% { transform: translate(0); opacity: 0; }
}

@keyframes glitch2 {
  0%, 84%, 100% { transform: translate(0); }
  86% { transform: translate(5px, -3px); opacity: 0.8; }
  88% { transform: translate(-5px, 3px); }
  90% { transform: translate(3px, 0); }
  92% { transform: translate(0); opacity: 0; }
}

.hero-sub {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: var(--gray);
  margin-top: 2rem;
  letter-spacing: 0.12em;
  line-height: 1.9;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-sub span { color: var(--cyan); }

/* H1 içindeki anahtar kelime satırı */
.hero-h1-sub {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.72rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.7;
  color: var(--cyan);
  margin-top: 1.4rem;
  text-transform: uppercase;
}

.hero-h1-sub em {
  display: block;
  font-style: normal;
  font-size: 0.78em;
  letter-spacing: 0.16em;
  color: var(--gray);
  margin-top: 0.4rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  padding: 0.85rem 2.4rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.btn-neon {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.btn-neon::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--cyan);
  transition: left 0.3s;
  z-index: -1;
}

.btn-neon:hover::before { left: 0; }
.btn-neon:hover { color: var(--bg); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

/* Scroll line */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scroll-hint span {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ── Shared Section ── */
section { padding: 9rem 5rem; }

.sec-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.sec-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.sec-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
}

.neon-bar {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 12px var(--cyan);
  margin: 1.8rem 0 3rem;
}

/* Bölüm giriş metni */
.sec-intro {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(224,224,255,0.55);
  max-width: 760px;
  margin: -1.5rem 0 3rem;
}

.sec-intro strong { color: rgba(224,224,255,0.92); font-weight: 600; }
body.light .sec-intro { color: rgba(13,13,26,0.62); }
body.light .sec-intro strong { color: rgba(13,13,26,0.92); }

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12rem;
  align-items: center;
}

.about-body {
  font-size: 1.1rem;
  color: rgba(224,224,255,0.6);
  line-height: 2;
}

.about-body strong { color: var(--white); font-weight: 600; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0,255,255,0.15);
  background: rgba(0,255,255,0.02);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

.stat:hover {
  border-color: rgba(0,255,255,0.4);
  background: rgba(0,255,255,0.05);
  transform: translateY(-3px);
}

.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,255,255,0.5);
  line-height: 1;
}

.stat-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.2em;
  margin-top: 0.6rem;
}

/* ── SERVICES ── */
#services {
  border-top: 1px solid rgba(0,255,255,0.06);
  border-bottom: 1px solid rgba(0,255,255,0.06);
  background: rgba(0,0,20,0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc {
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,18,0.9);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.svc:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,255,0.25);
  box-shadow: 0 24px 60px rgba(0,255,255,0.07);
}

.svc:hover::after { transform: scaleX(1); }

.svc-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--white);
}

.svc-desc {
  font-size: 0.95rem;
  color: rgba(224,224,255,0.45);
  line-height: 1.75;
}

/* ── PROJECTS ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid rgba(0,255,255,0.1);
  background: rgba(0,255,255,0.1);
}

.proj {
  position: relative;
  background: var(--bg);
  padding: 2rem 2.2rem;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  overflow: hidden;
}

.proj::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,255,255,0.03);
  opacity: 0;
  transition: opacity 0.3s;
}

.proj:hover::before { opacity: 1; }

.proj-prompt {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.proj-prompt span { color: var(--cyan); }

.proj-name {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.proj:hover .proj-name { color: var(--cyan); }

.proj-url {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: rgba(0,255,255,0.4);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.proj-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.1em;
}

.proj-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: var(--green);
  letter-spacing: 0.2em;
}

.proj-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.proj-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: rgba(0,255,255,0.25);
  transition: color 0.3s, transform 0.3s;
}

.proj:hover .proj-arrow {
  color: var(--cyan);
  transform: translate(2px, -2px);
}

/* ── ACHIEVEMENTS ── */
.achievements {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
}

.ach-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 2.4rem;
  border: 1px solid rgba(0,255,255,0.12);
  background: rgba(0,255,255,0.02);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s;
}

.ach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--magenta));
}

.ach-card:hover {
  border-color: rgba(139,0,255,0.3);
  background: rgba(139,0,255,0.04);
}

.ach-badge {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--purple);
  text-shadow: 0 0 12px var(--purple);
  letter-spacing: 0.15em;
  white-space: nowrap;
  padding-top: 0.2rem;
  min-width: 70px;
}

.ach-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.ach-sub {
  font-size: 0.9rem;
  color: rgba(224,224,255,0.5);
  line-height: 1.8;
}

.ach-sub strong { color: var(--cyan); font-weight: 700; }

.ach-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
}

.ach-id { color: rgba(139,0,255,0.6); }

/* ── CONTACT ── */
#contact {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

#contact .neon-bar { margin: 1.8rem auto 3rem; }

.contact-intro {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 2;
  letter-spacing: 0.05em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
  text-align: left;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.field { display: flex; flex-direction: column; gap: 0.5rem; }

.field-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  background: rgba(0,255,255,0.02);
  border: 1px solid rgba(0,255,255,0.12);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,255,255,0.08);
}

.field textarea { min-height: 140px; }

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
}

.socials a {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  position: relative;
}

.socials a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}

.socials a:hover { color: var(--cyan); }
.socials a:hover::after { width: 100%; }

/* ── PRICING ── */
#pricing {
  border-top: 1px solid rgba(0,255,255,0.06);
}

.pricing-block { margin-bottom: 5rem; }
.pricing-block:last-child { margin-bottom: 0; }

.pricing-subtitle {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-top: 5rem;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: rgba(0,18,55,0.85);
  border: 1px solid rgba(0,255,255,0.18);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(0,255,255,0.1);
  border-color: rgba(0,255,255,0.45);
}

.price-card.featured {
  border-color: rgba(0,255,255,0.45);
  box-shadow: 0 0 40px rgba(0,255,255,0.08), inset 0 0 30px rgba(0,255,255,0.03);
}

.price-header {
  background: linear-gradient(160deg, rgba(0,50,130,0.95) 0%, rgba(0,22,70,0.98) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
  padding: 2rem 2rem 3rem;
  text-align: center;
}

.price-pkg {
  font-family: 'Orbitron', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(224,224,255,0.9);
  letter-spacing: 0.25em;
}

.price-body {
  padding: 1.8rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  margin-bottom: 2rem;
}

.price-features li {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: rgba(224,224,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.4;
}

.price-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  text-shadow: 0 0 8px rgba(0,255,255,0.6);
}

.price-btn {
  display: block;
  text-align: center;
}

body.light .price-card {
  background: #fff;
  border-color: rgba(0,119,170,0.18);
}

body.light .price-header {
  background: linear-gradient(160deg, #1a3a7a 0%, #0e2457 100%);
}

body.light .price-features li { color: rgba(13,13,26,0.75); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 1.2rem; max-width: 420px; }
  .pricing-subtitle { margin-top: 4rem; }
}

.price-notice {
  margin-top: 3rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(0,255,255,0.12);
  border-left: 3px solid rgba(0,255,255,0.5);
  background: rgba(0,255,255,0.02);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.price-notice-icon {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.price-notice p {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--gray);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.price-notice p span { color: rgba(0,255,255,0.6); }

body.light .price-notice { background: rgba(0,119,170,0.04); border-color: rgba(0,119,170,0.15); border-left-color: rgba(0,119,170,0.5); }

.local-seo {
  position: relative;
  z-index: 2;
  padding-top: 0;
  color: rgba(224,224,255,0.62);
}

.local-seo p {
  max-width: 900px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
}

.local-seo strong { color: rgba(224,224,255,0.9); }
body.light .local-seo { color: rgba(13,13,26,0.68); }
body.light .local-seo strong { color: rgba(13,13,26,0.9); }

/* ── HİZMET BÖLGESİ ETİKETLERİ ── */
.area-block { margin-top: 2.6rem; }

.area-block h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,255,255,0.55);
  margin-bottom: 1rem;
}

body.light .area-block h3 { color: rgba(0,119,170,0.75); }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.area-chips li {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(0,255,255,0.14);
  background: rgba(0,255,255,0.03);
  color: rgba(224,224,255,0.6);
  transition: border-color 0.3s, color 0.3s;
}

.area-chips li:hover {
  border-color: rgba(0,255,255,0.4);
  color: var(--cyan);
}

body.light .area-chips li {
  border-color: rgba(0,119,170,0.18);
  background: #fff;
  color: rgba(13,13,26,0.65);
}

/* ── SSS / FAQ ── */
.faq-list {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(0,255,255,0.1);
  background: rgba(0,255,255,0.02);
  transition: border-color 0.3s;
}

.faq-item[open] { border-color: rgba(0,255,255,0.28); }
.faq-item:hover { border-color: rgba(0,255,255,0.24); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  color: var(--cyan);
  transition: transform 0.3s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item .faq-a {
  padding: 0 1.4rem 1.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(224,224,255,0.6);
}

body.light .faq-item {
  background: #fff;
  border-color: rgba(0,119,170,0.15);
}
body.light .faq-item[open] { border-color: rgba(0,119,170,0.4); }
body.light .faq-item .faq-a { color: rgba(13,13,26,0.68); }

/* ── FOOTER NAP ── */
.footer-nap {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  line-height: 1.9;
  color: var(--gray);
  letter-spacing: 0.06em;
}

.footer-nap a { color: inherit; text-decoration: none; }
.footer-nap a:hover { color: var(--cyan); }

@media (max-width: 640px) {
  .pricing-grid { max-width: 100%; }
  .price-header { padding: 1.8rem 1.6rem 2.8rem; }
  .price-body { padding: 1.4rem 1.4rem 2rem; }
  .price-notice { padding: 1.2rem 1.2rem; }
  .price-notice p { font-size: 0.62rem; }
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 2;
  padding: 2rem 5rem;
  border-top: 1px solid rgba(0,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--gray);
}

footer .accent { color: rgba(0,255,255,0.35); }

/* ── Responsive: Tablet ── */
@media (max-width: 900px) {
  section { padding: 7rem 2.5rem; }
  #hero { padding: 0 2.5rem; padding-top: 6rem; }
  #about { grid-template-columns: 1fr; gap: 3.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .scroll-hint { right: 2.5rem; }
  footer { padding: 1.5rem 2.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── Theme Toggle ── */
.theme-toggle {
  background: none;
  border: 1px solid rgba(0,255,255,0.2);
  color: var(--cyan);
  font-size: 1rem;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  margin-left: auto;
  margin-right: 1.5rem;
}

.theme-toggle:hover {
  border-color: var(--cyan);
  transform: rotate(20deg);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive: Mobil ── */
@media (max-width: 640px) {
  /* Nav */
  nav {
    padding: 1rem 1.4rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo { font-size: 1rem; letter-spacing: 0.25em; }
  .hamburger { display: flex; }
  .theme-toggle {
    margin-left: auto;
    margin-right: 0.8rem;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    border: 1px solid rgba(0,255,255,0.2);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(5,5,8,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,255,255,0.1);
    padding: 1.5rem 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    border-bottom: 1px solid rgba(0,255,255,0.05);
  }

  /* Hero */
  #hero {
    padding: 0 1.4rem;
    padding-top: 8rem;
    min-height: 100svh;
  }
  .hero-title { font-size: clamp(3rem, 18vw, 5rem); }
  .hero-sub { font-size: 0.75rem; margin-top: 1.2rem; line-height: 1.8; }
  .hero-actions { flex-direction: column; gap: 0.8rem; margin-top: 2.5rem; }
  .btn { width: 100%; text-align: center; padding: 0.9rem 1.5rem; }
  .scroll-hint { display: none; }

  /* Section genel */
  section { padding: 5rem 1.4rem; }
  .sec-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  /* About */
  #about { gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat { padding: 1.4rem 1.2rem; }
  .stat-num { font-size: 2rem; }
  .about-body { font-size: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .svc { padding: 1.8rem 1.6rem; }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .proj { padding: 1.6rem 1.4rem; }

  /* Achievements */
  .achievements { gap: 1rem; margin-top: 2rem; }
  .ach-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.6rem 1.4rem;
  }
  .ach-badge { font-size: 0.6rem; }
  .ach-title { font-size: 0.78rem; }
  .ach-sub { font-size: 0.82rem; }

  /* Contact */
  #contact { max-width: 100%; padding: 5rem 1.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .socials { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .socials a { font-size: 0.6rem; }

  /* Footer */
  footer { padding: 1.5rem 1.4rem; gap: 0.4rem; }
  footer p { font-size: 0.6rem; }
}

/* ── Responsive: Küçük Mobil ── */
@media (max-width: 380px) {
  .hero-title { font-size: clamp(2.5rem, 16vw, 4rem); }
  .nav-links a { font-size: 0.52rem; }
  .stat-num { font-size: 1.7rem; }
}

/* ══════════════════════════════════════════
   ALT SAYFALAR (hizmet / lokasyon / blog)
   ══════════════════════════════════════════ */

.page-hero {
  padding-top: 12rem;
  padding-bottom: 4rem;
}

.crumb {
  font-family: 'Space Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  color: var(--gray);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.crumb a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
.crumb a:hover { color: var(--cyan); }
.crumb span { margin: 0 0.5rem; color: rgba(0,255,255,0.35); }
.crumb strong { color: rgba(224,224,255,0.75); font-weight: 400; }
body.light .crumb strong { color: rgba(13,13,26,0.75); }

.page-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--white);
}

.page-lede {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(224,224,255,0.6);
  max-width: 760px;
  margin-bottom: 2.6rem;
}

body.light .page-lede { color: rgba(13,13,26,0.66); }

/* Metin blokları */
.prose { max-width: 860px; }

.prose h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin: 3.4rem 0 1.2rem;
  letter-spacing: 0.01em;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(0,255,255,0.8);
  margin: 2.2rem 0 0.8rem;
}

body.light .prose h3 { color: rgba(0,119,170,0.95); }

.prose p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.02rem;
  line-height: 1.92;
  color: rgba(224,224,255,0.6);
  margin-bottom: 1.2rem;
}

.prose strong { color: rgba(224,224,255,0.95); font-weight: 600; }
body.light .prose p { color: rgba(13,13,26,0.7); }
body.light .prose strong { color: rgba(13,13,26,0.95); }

.prose ul { list-style: none; margin: 0 0 1.6rem; }

.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.01rem;
  line-height: 1.75;
  color: rgba(224,224,255,0.6);
}

.prose ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

body.light .prose ul li { color: rgba(13,13,26,0.7); }

.prose a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(0,255,255,0.3); }
.prose a:hover { border-bottom-color: var(--cyan); }

/* İlgili sayfalar */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.related-card {
  display: block;
  text-decoration: none;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(0,255,255,0.1);
  background: rgba(0,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
}

.related-card:hover { border-color: rgba(0,255,255,0.4); transform: translateY(-4px); }

.related-card .rc-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.related-card .rc-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(224,224,255,0.5);
}

body.light .related-card { background: #fff; border-color: rgba(0,119,170,0.15); }
body.light .related-card .rc-desc { color: rgba(13,13,26,0.6); }

/* Alt CTA bandı */
.cta-band {
  border: 1px solid rgba(0,255,255,0.16);
  background: rgba(0,255,255,0.03);
  padding: 3rem 2.5rem;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(224,224,255,0.6);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-band .hero-actions { justify-content: center; opacity: 1; animation: none; }

body.light .cta-band { background: #fff; border-color: rgba(0,119,170,0.2); }
body.light .cta-band p { color: rgba(13,13,26,0.68); }

/* Blog listesi */
.post-list { display: flex; flex-direction: column; gap: 1rem; max-width: 900px; }

.post-card {
  display: block;
  text-decoration: none;
  padding: 1.8rem 1.8rem;
  border: 1px solid rgba(0,255,255,0.1);
  background: rgba(0,255,255,0.02);
  transition: border-color 0.3s;
}

.post-card:hover { border-color: rgba(0,255,255,0.4); }

.post-card .pc-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
}

.post-card .pc-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.7rem 0 0.6rem;
  line-height: 1.4;
}

.post-card .pc-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(224,224,255,0.55);
}

body.light .post-card { background: #fff; border-color: rgba(0,119,170,0.15); }
body.light .post-card .pc-desc { color: rgba(13,13,26,0.62); }

.post-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

@media (max-width: 900px) {
  .page-hero { padding-top: 9rem; }
}

@media (max-width: 640px) {
  .cta-band { padding: 2.2rem 1.4rem; }
  .prose h2 { margin-top: 2.6rem; }
}

/* Ana sayfada alt sayfaya bağlanan hizmet kartları */
.svc-link { display: block; text-decoration: none; }

.svc-more {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,255,255,0.55);
  transition: color 0.3s, transform 0.3s;
}

.svc-link:hover .svc-more { color: var(--cyan); transform: translateX(4px); }
body.light .svc-more { color: rgba(0,119,170,0.8); }

.local-seo a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(0,255,255,0.25); }
.local-seo a:hover { border-bottom-color: var(--cyan); }
.area-chips li a { display: block; }

.page-hero + section { padding-top: 3.5rem; }
