/* =================================
   SERVICES PAGE
   ================================= */

/* HERO */
.svc-hero {
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  z-index: 0;
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  color: #6366f1;
  padding: 5px 16px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.svc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero-grad {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-prim {
  background: var(--accent-gradient);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}

.btn-prim:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.btn-sec {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: border-color .2s;
}

.btn-sec:hover {
  border-color: var(--accent-primary);
}

/* STATS BAR */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTIONS */
.svc-section { padding: 5rem 2rem; }
.svc-alt { background: var(--bg-secondary); }
.svc-container { max-width: 1100px; margin: 0 auto; }

/* SECTION HEADER */
.sec-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.sec-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.sec-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 0;
}

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col-reverse .col-info { order: 2; }
.two-col-reverse .col-visual { order: 1; }

@media(max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col-reverse .col-info,
  .two-col-reverse .col-visual { order: unset; }
}

/* FEATURE LIST */
.feat-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feat-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feat-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(99,102,241,0.1);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.feat-text-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.feat-text-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  background: var(--accent-gradient);
  color: #fff;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}

.inline-cta:hover {
  opacity: .88;
  transform: translateY(-2px);
}

/* VISUAL PANEL */
.visual-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* BROWSER MOCKUP */
.browser-wrap {
  background: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.browser-top {
  background: var(--bg-tertiary);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-light);
}

.b-dots { display: flex; gap: 4px; }

.b-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.b-dots span:nth-child(1) { background: #ff5f57; }
.b-dots span:nth-child(2) { background: #ffbd2e; }
.b-dots span:nth-child(3) { background: #28ca42; }

.b-addr {
  font-size: 0.68rem;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
  border-radius: 4px;
  padding: 2px 10px;
  margin-left: 6px;
}

.browser-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bb-hero {
  height: 52px;
  border-radius: 7px;
  background: var(--accent-gradient);
  opacity: 0.25;
  animation: svcbreathe 3s ease-in-out infinite;
}

.bb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.bb-card {
  height: 44px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  animation: svcbreathe 3s ease-in-out infinite;
}

.bb-card:nth-child(2) { animation-delay: .25s; }
.bb-card:nth-child(3) { animation-delay: .5s; }

.bb-lines { display: flex; flex-direction: column; gap: 5px; }

.bb-line {
  height: 5px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  animation: svcbreathe 3s ease-in-out infinite;
}

@keyframes svcbreathe {
  0%, 100% { opacity: .4; }
  50% { opacity: .9; }
}

.web-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.score-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.score-val {
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-lbl {
  font-size: 0.65rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* SEO PANEL */
.seo-ranks { display: flex; flex-direction: column; gap: 8px; }

.rank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px 14px;
}

.rank-top {
  border-color: rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.04);
}

.rank-pos {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-primary);
  min-width: 26px;
}

.rank-mid { flex: 1; }

.rank-kw {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.rank-bar-bg {
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 99px;
  overflow: hidden;
}

.rank-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--accent-gradient);
  animation: svcrankgrow 1.8s ease forwards;
}

@keyframes svcrankgrow {
  from { width: 0; }
  to { width: var(--w); }
}

.rank-up {
  font-size: 0.7rem;
  font-weight: 700;
  color: #10b981;
}

.rank-mid-up { color: #f59e0b; }

.seo-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 10px;
  padding: 10px 14px;
}

.ssl { font-size: 0.8rem; color: var(--text-secondary); }
.ssv { font-size: 1rem; font-weight: 800; color: #10b981; }

/* ECOM PANEL */
.ecom-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.ecom-metric {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 11px;
}

.em-val {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

.em-lbl { font-size: 0.68rem; color: var(--text-tertiary); }

.ecom-orders-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 120px;
}

.eorder {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 12px;
  animation: svcslideup .5s ease forwards;
  opacity: 0;
}

@keyframes svcslideup {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.eo-name { font-size: 0.78rem; font-weight: 600; color: var(--text-primary); }
.eo-detail { font-size: 0.68rem; color: var(--text-tertiary); }

.eo-status {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
}

.st-g { background: rgba(16,185,129,0.1); color: #10b981; }
.st-b { background: rgba(99,102,241,0.1); color: #6366f1; }
.st-y { background: rgba(245,158,11,0.1); color: #f59e0b; }

.channel-row { display: flex; gap: 6px; flex-wrap: wrap; }

.ch {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 7px;
  padding: 4px 11px;
  font-size: 0.7rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.ch-on {
  border-color: rgba(99,102,241,0.35);
  color: var(--accent-primary);
  background: rgba(99,102,241,0.06);
}

/* SÜREÇ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
}

@media(max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

.process-step {
  background: var(--bg-primary);
  padding: 1.75rem 1.5rem;
}

.ps-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.ps-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.ps-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA */
.svc-cta-section {
  padding: 5rem 2rem;
  text-align: center;
}

.svc-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
}

.svc-cta-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.svc-cta-inner p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}

.wa-cta:hover { opacity: .88; }