/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #040408;
  --bg2: #080810;
  --surface: #0d0d1a;
  --border: rgba(255,255,255,0.07);
  --accent: #e8ff00;
  --accent2: #00d4ff;
  --accent3: #ff3366;
  --text: #f0f0f5;
  --text-muted: #6b6b80;
  --text-dim: #3a3a50;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --glow: 0 0 40px rgba(232,255,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ===== CANVAS & CURSOR ===== */
#particleCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.3;
}

.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.cursor-trail {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease; opacity: 0.5;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px; transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(4,4,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 4px;
  color: var(--text); text-decoration: none;
}

.logo-bracket { color: var(--accent); font-size: 32px; }

.nav-links {
  display: flex; list-style: none; gap: 40px;
}

.nav-links a {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}

.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  border: none; padding: 10px 20px; border-radius: 4px;
  cursor: none; transition: all 0.3s; font-weight: 700;
}

.nav-cta:hover {
  background: transparent; color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--glow);
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: none; z-index: 1001;
}

.hamburger span {
  width: 24px; height: 1px;
  background: var(--text); transition: all 0.3s ease; display: block;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 60px;
  overflow: hidden; z-index: 1;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: 0.4; pointer-events: none;
}

.page-hero::before {
  content: ''; position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,255,0,0.06), transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative; z-index: 2;
  animation: heroFadeIn 1s ease forwards;
}

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

.section-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; color: var(--accent);
  text-transform: uppercase; display: block; margin-bottom: 16px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 172px);
  line-height: 0.88; letter-spacing: 3px;
  margin: 20px 0 28px;
  display: flex; flex-direction: column; align-items: center;
}

.page-title .line {
  display: block; opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.page-title .line:nth-child(1) { animation-delay: 0.2s; }
.page-title .line:nth-child(2) { animation-delay: 0.4s; }

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

.page-title .accent {
  color: transparent;
  -webkit-text-stroke: 3px var(--accent); position: relative;
}

.page-title .accent::before {
  content: attr(data-text);
  position: absolute; left: 0; right: 0;
  color: var(--accent); -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  animation: textReveal 2s ease 1s forwards;
}

@keyframes textReveal { to { clip-path: inset(0 0% 0 0); } }

.page-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted); line-height: 1.7;
  opacity: 0; animation: slideUp 0.8s ease 0.7s forwards;
}

.page-subtitle em { color: var(--accent2); font-style: normal; }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: slideUp 0.8s ease 1.1s forwards;
}

.scroll-line {
  width: 40px; height: 1px; background: var(--accent);
  position: relative; overflow: hidden;
}

.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--bg);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { left: -100%; } 50% { left: 0%; } 100% { left: 100%; }
}

.hero-scroll-hint span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim);
}

/* ===== TRUSTED BY BAND ===== */
.trusted-band {
  position: relative; z-index: 2;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,26,0.6);
  overflow: hidden;
}

.trusted-label {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 28px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim);
}

.trusted-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(232,255,0,0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.trusted-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trusted-track {
  display: flex; align-items: center; gap: 60px;
  animation: trustedScroll 30s linear infinite;
  width: max-content;
}

.trusted-track:hover { animation-play-state: paused; }

@keyframes trustedScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted-logo {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  opacity: 0.65; transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.trusted-logo:hover { opacity: 1; transform: scale(1.1); }

.trusted-logo img,
.trusted-logo .trusted-svg {
  width: 32px; height: 32px;
  object-fit: contain; filter: none;
}

.trusted-logo .trusted-svg {
  filter: none; opacity: 1; transition: opacity 0.3s;
}

.trusted-logo:hover .trusted-svg { opacity: 1; }

.trusted-logo span {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap;
}

/* ===== OVERVIEW ===== */
.overview {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}

.overview-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1; letter-spacing: 2px; margin-bottom: 20px;
}

.section-sub {
  font-size: 15px; color: var(--text-muted);
  margin-top: 8px; margin-bottom: 0;
}

.highlight {
  color: transparent; -webkit-text-stroke: 2px var(--accent);
}

.overview-text p {
  font-size: 17px; color: var(--text-muted); line-height: 1.75;
}

.overview-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}

.ov-item {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s; cursor: none;
  font-family: var(--font-display); font-size: 20px; letter-spacing: 1px;
  text-decoration: none; color: var(--text);
}

.ov-item:last-child { border-bottom: none; }
.ov-item:hover { background: var(--surface); padding-left: 36px; }
.ov-item:hover .ov-num { color: var(--accent); }

.ov-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; color: var(--text-dim);
  transition: color 0.3s;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2; overflow: hidden;
}

.service-detail::before {
  content: attr(data-num);
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: 280px;
  color: rgba(255,255,255,0.015); line-height: 1;
  pointer-events: none; letter-spacing: -10px;
}

.service-detail.alt {
  background: var(--surface);
}

.sd-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

.sd-inner.reverse { direction: rtl; }
.sd-inner.reverse > * { direction: ltr; }

.sd-label {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}

.sd-num {
  font-family: var(--font-display); font-size: 64px;
  color: var(--text-dim); line-height: 1;
  transition: color 0.3s;
}

.service-detail:hover .sd-num { color: rgba(232,255,0,0.15); }

.sd-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1; letter-spacing: 2px; margin-bottom: 20px;
}

.sd-desc {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 32px;
}

.sd-features {
  list-style: none; display: flex;
  flex-direction: column; gap: 12px; margin-bottom: 40px;
}

.sd-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text-muted);
}

.feat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232,255,0,0.5);
}

/* ===== TECH GRID — Logo versiyonu ===== */
.tech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 32px;
}

.tech-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 18px 12px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  transition: all 0.3s; cursor: none;
  position: relative;
}

.service-detail.alt .tech-item { background: var(--bg2); }

.tech-item:hover {
  border-color: rgba(232,255,0,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Gerçek logo img */
.tech-logo {
  width: 36px; height: 36px;
  object-fit: contain;
  transition: transform 0.3s, filter 0.3s;
  filter: none;
}

.tech-item:hover .tech-logo {
  filter: none;
  transform: scale(1.12);
}

.tech-item span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; color: var(--text-muted);
  text-align: center;
}

/* SD Stats */
.sd-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.sd-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 20px;
  text-align: center; transition: all 0.3s;
}

.service-detail.alt .sd-stat { background: var(--bg2); }

.sd-stat:hover {
  border-color: rgba(232,255,0,0.2);
  box-shadow: 0 0 20px rgba(232,255,0,0.05);
}

.sd-stat-num {
  font-family: var(--font-display);
  font-size: 40px; color: var(--accent); line-height: 1;
}

.sd-stat-unit {
  font-family: var(--font-display);
  font-size: 28px; color: var(--accent2);
}

.sd-stat p {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim); margin-top: 6px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg); border: none;
  padding: 14px 28px; font-family: var(--font-mono);
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 4px;
  cursor: none; transition: all 0.3s; text-decoration: none;
  position: relative; overflow: hidden;
}

.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(150%) skewX(-15deg); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(232,255,0,0.4); transform: translateY(-2px); }

.btn-primary svg {
  width: 18px; height: 18px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round;
  transition: transform 0.3s;
}

.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); padding: 14px 24px;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 1px; border-radius: 4px;
  cursor: none; transition: all 0.3s; text-decoration: none;
}

.btn-ghost:hover { border-color: var(--accent2); color: var(--accent2); }
.btn-ghost.full { width: 100%; justify-content: center; }

/* ===== PROCESS ===== */
.process {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}

.section-header { margin-bottom: 64px; }

.process-steps {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; position: relative;
}

.process-step {
  padding: 0 24px 0 0;
  position: relative;
}

.process-step.last { padding-right: 0; }

.ps-num {
  font-family: var(--font-display); font-size: 48px;
  color: var(--text-dim); line-height: 1;
  margin-bottom: 16px; transition: color 0.3s;
}

.ps-num.active {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(232,255,0,0.3);
}

.process-step:hover .ps-num { color: rgba(232,255,0,0.3); }

.ps-line {
  width: 100%; height: 1px; background: var(--border);
  margin-bottom: 20px; position: relative; overflow: hidden;
}

.ps-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--accent);
  transition: left 0.6s ease;
}

.process-step:hover .ps-line::after { left: 0%; }

.process-step h3 {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 1px; margin-bottom: 8px;
}

.process-step p {
  font-size: 13px; color: var(--text-muted); line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
  background: var(--surface);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  transition: all 0.4s ease; cursor: none; position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}

.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--border);
  transition: background 0.4s;
}

.price-card:hover::before { background: var(--accent); }
.price-card:hover {
  border-color: rgba(232,255,0,0.15);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.price-card.featured {
  background: rgba(232,255,0,0.03);
  border-color: rgba(232,255,0,0.2);
}

.price-card.featured::before { background: var(--accent); }

.price-badge {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 4px 10px; border-radius: 2px;
}

.price-header { margin-bottom: 24px; }

.price-tier {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent2); display: block; margin-bottom: 12px;
}

.price-amount {
  font-family: var(--font-display); font-size: 52px;
  line-height: 1; letter-spacing: 1px; margin-bottom: 10px;
}

.currency { font-size: 32px; color: var(--text-muted); vertical-align: top; margin-top: 8px; display: inline-block; }
.period { font-size: 16px; color: var(--text-muted); font-family: var(--font-body); }

/* Yeni: plan açıklama cümlesi */
.price-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6; border-left: 2px solid rgba(232,255,0,0.2);
  padding-left: 10px; margin-top: 6px;
}

.price-features {
  list-style: none; display: flex;
  flex-direction: column; gap: 12px; margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-muted);
}

.price-features li.disabled { opacity: 0.35; }

.check {
  font-size: 13px; color: var(--accent);
  flex-shrink: 0; font-weight: bold;
}

.price-features li.disabled .check { color: var(--text-dim); }

/* Buton + not alanı */
.price-footer {
  margin-top: auto;
}

.price-note {
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; color: var(--text-dim);
  text-align: center;
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}

.faq-list {
  max-width: 820px;
  display: flex; flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  padding: 24px 32px; background: transparent; border: none;
  font-family: var(--font-body); font-size: 16px;
  color: var(--text); text-align: left; cursor: none;
  transition: all 0.3s; gap: 20px;
}

.faq-q:hover { background: var(--surface); color: var(--accent); }
.faq-item.open .faq-q { background: var(--surface); color: var(--accent); }

.faq-icon {
  font-family: var(--font-mono); font-size: 20px;
  color: var(--accent); flex-shrink: 0;
  transition: transform 0.3s; line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 32px;
}

.faq-item.open .faq-a {
  max-height: 200px; padding: 0 32px 24px;
}

.faq-a p {
  font-size: 15px; color: var(--text-muted); line-height: 1.75;
  border-left: 2px solid var(--accent); padding-left: 16px;
}

/* ===== CTA ===== */
.services-cta {
  padding: 120px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
  text-align: center; overflow: hidden;
}

.services-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,255,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95; letter-spacing: 2px; margin: 20px 0 16px;
}

.cta-sub {
  font-size: 17px; color: var(--text-muted);
  margin-bottom: 48px;
}

.cta-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 24px; flex-wrap: wrap;
}

/* WhatsApp buton ek stili */
#whatsappBtn {
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
  animation: wpPulse 2.5s ease-in-out infinite;
}

#whatsappBtn:hover {
  background: #1ebe5d;
  box-shadow: 0 0 30px rgba(37,211,102,0.5);
}

@keyframes wpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border); padding: 40px 60px 32px;
}

.footer-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 32px;
}

.footer-logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 4px; }
.footer-links { display: flex; gap: 32px; }

.footer-links a {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none; transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom span { font-size: 13px; color: var(--text-dim); }
.footer-mono { font-family: var(--font-mono); font-size: 11px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-step { padding-right: 0; }
}

@media (max-width: 1024px) {
  .sd-inner { grid-template-columns: 1fr; gap: 48px; }
  .sd-inner.reverse { direction: ltr; }
  .overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .page-hero { padding: 0 24px; }
  .overview, .service-detail, .process, .pricing, .faq, .services-cta { padding: 80px 24px; }

  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-stat-row { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .faq-q { padding: 20px 20px; font-size: 14px; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding: 0 20px 20px; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }

  .footer { padding: 32px 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .trusted-band { padding: 32px 0; }
  .trusted-track { gap: 40px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
}
