/*
Theme Name: Farklı Bir Fikir
Theme URI: https://www.farklibirfikir.com/
Author: Farklı Bir Fikir
Author URI: https://www.farklibirfikir.com/
Description: Farklı Bir Fikir reklam ve yazılım ajansı için çok sayfalı kurumsal tema. Kurulumda tüm sayfalar ve menü otomatik oluşturulur.
Version: 1.0.0
Requires at least: 5.5
Tested up to: 6.6
Requires PHP: 7.2
License: GNU General Public License v2 or later
Text Domain: farkli-bir-fikir
*/

/* ============================================================================
   FARKLI BİR FİKİR — style.css
   Ana stil dosyası (tüm sayfalarda ortak)
   WORDPRESS: style.css / theme stylesheet
   ============================================================================ */

/* ------------------------------------------------------------------
   1. DEĞİŞKENLER
   ------------------------------------------------------------------ */
:root {
  /* Renkler */
  --white: #ffffff;
  --off-white: #f6f5f2;
  --light-gray: #ecebe7;
  --line: #e3e1dc;
  --gray: #8a8a86;
  --text-soft: #55565a;
  --ink: #14161a;
  --ink-2: #23262b;

  --accent: #ff4a1c;
  --accent-dark: #e23c11;
  --accent-soft: rgba(255, 74, 28, 0.10);

  --shadow-sm: 0 1px 2px rgba(20, 22, 26, 0.04);
  --shadow: 0 10px 30px rgba(20, 22, 26, 0.06);
  --shadow-lg: 0 24px 60px rgba(20, 22, 26, 0.10);

  --radius: 16px;
  --radius-sm: 10px;
  --max: 1200px;
  --nav-h: 74px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------
   2. RESET & TEMEL
   ------------------------------------------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.14; font-weight: 700; letter-spacing: -0.02em; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 92px 0; position: relative; }
.section-alt { background: var(--off-white); }

/* Görsel gizleme (erişilebilir) */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 2000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ------------------------------------------------------------------
   3. BAŞLIK BLOKLARI
   ------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); display: inline-block; }

.section-title { font-size: clamp(1.8rem, 4vw, 2.9rem); max-width: 22ch; margin-bottom: 18px; }
.section-lead { font-size: 1.08rem; color: var(--text-soft); max-width: 62ch; margin-bottom: 52px; }

.section-head-center { text-align: center; }
.section-head-center .section-title,
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------------
   4. BUTONLAR
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-align: center; -webkit-tap-highlight-color: transparent;
  transition: transform .2s var(--ease), background .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,74,28,.30); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* ------------------------------------------------------------------
   5. NAVBAR (header)
   ------------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 1000; display: flex; align-items: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled { background: rgba(255,255,255,.94); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
  font-weight: 800; font-size: 1.06rem; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 10px; color: var(--ink); white-space: nowrap;
}
.logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: inline-block; flex: none; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: .94rem; font-weight: 500; color: var(--text-soft);
  padding: 9px 14px; border-radius: 8px; position: relative;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--accent);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--white); border-radius: 10px; cursor: pointer; position: relative; flex: none;
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobil menü */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  z-index: 999; transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu ul { padding: 12px 24px 22px; }
.mobile-menu a { display: block; padding: 14px 6px; font-size: 1.05rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu .mm-sub { font-size: .95rem; color: var(--text-soft); padding-left: 16px; }
.mobile-menu .mm-label { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); padding: 16px 6px 6px; font-weight: 700; }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------ */
.hero {
  padding-top: calc(var(--nav-h) + 66px); padding-bottom: 86px;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(255,74,28,.07), transparent 60%),
    linear-gradient(180deg, var(--white), var(--off-white));
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px;
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-badge .live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); letter-spacing: -0.03em; margin-bottom: 22px; }
.hero h1 .hl { color: var(--accent); }
.hero-sub { font-size: 1.14rem; color: var(--text-soft); max-width: 50ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 32px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--gray); font-size: .9rem; }
.hero-trust strong { color: var(--ink); font-weight: 700; }
.hero-trust .divider { width: 1px; height: 22px; background: var(--line); }

/* Hero görsel yer tutucu (gradient) */
.hero-visual { position: relative; }
.media-ph {
  position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(135deg, #14161a, #33373f);
  display: grid; place-items: center; box-shadow: var(--shadow-lg); min-height: 340px;
}
.media-ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 18px 18px; opacity: .55;
}
.media-ph .ph-label {
  position: relative; z-index: 2; color: rgba(255,255,255,.92);
  font-weight: 600; font-size: .92rem; letter-spacing: .03em; display: flex; align-items: center; gap: 9px;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.16);
  padding: 9px 15px; border-radius: 999px; backdrop-filter: blur(4px);
}
.media-ph.accent { background: linear-gradient(135deg, #1c1e23, var(--accent)); }
.media-ph.soft { background: linear-gradient(135deg, #2a2d33, #52565e); }
.media-ph.tall { min-height: 420px; }
.media-ph.wide { min-height: 300px; }

/* ------------------------------------------------------------------
   7. GÜVEN / REFERANS ŞERİDİ
   ------------------------------------------------------------------ */
.trust { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-title { text-align: center; font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); font-weight: 600; margin-bottom: 28px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 42px; }
.logos span { font-size: 1.16rem; font-weight: 700; color: var(--ink-2); opacity: .6; transition: opacity .2s var(--ease), color .2s var(--ease); white-space: nowrap; }
.logos span:hover { opacity: 1; color: var(--ink); }

/* ------------------------------------------------------------------
   8. GENEL KART SİSTEMİ
   ------------------------------------------------------------------ */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d7d5cf; }
.card-ico {
  width: 48px; height: 48px; border-radius: 12px; background: var(--off-white);
  border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 18px; color: var(--ink);
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}
.card:hover .card-ico { background: var(--ink); color: #fff; border-color: var(--ink); }
.card-ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.14rem; margin-bottom: 9px; }
.card p { font-size: .95rem; color: var(--text-soft); margin: 0; }

.card-link { display: flex; flex-direction: column; height: 100%; }
.card-link .arrow {
  margin-top: 16px; color: var(--gray); display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; transition: gap .2s var(--ease), color .2s var(--ease);
}
.card-link:hover .arrow { color: var(--accent); gap: 10px; }

.problem-card .num { position: absolute; top: 20px; right: 24px; font-size: 2.4rem; font-weight: 800; color: var(--light-gray); letter-spacing: -.04em; line-height: 1; }

/* Hizmet grup başlığı */
.group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 8px 0 22px; flex-wrap: wrap; }
.group-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.group-head .count { font-size: .84rem; color: var(--gray); font-weight: 600; }
.service-group { margin-bottom: 56px; }
.service-group:last-child { margin-bottom: 0; }

/* Kompakt hizmet linki listesi */
.link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.link-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 18px; font-weight: 600; font-size: .96rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.link-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.link-item svg { width: 17px; height: 17px; color: var(--gray); flex: none; transition: color .2s var(--ease), transform .2s var(--ease); }
.link-item:hover svg { color: var(--accent); transform: translateX(3px); }

/* ------------------------------------------------------------------
   9. ADIMLAR / SÜREÇ
   ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; position: relative; }
.step .step-no { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; margin-bottom: 20px; }
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--text-soft); font-size: .97rem; margin: 0; }

.timeline { position: relative; margin-top: 18px; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-left: 62px; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .tl-dot { position: absolute; left: 10px; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--white); border: 2px solid var(--ink); color: var(--ink); display: grid; place-items: center; font-size: .72rem; font-weight: 800; z-index: 2; }
.tl-item.accent .tl-dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.tl-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.tl-item p { font-size: .92rem; color: var(--text-soft); margin: 0; }
.timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }

/* ------------------------------------------------------------------
   10. PROJE KARTLARI
   ------------------------------------------------------------------ */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.case-visual { height: 172px; position: relative; display: grid; place-items: center; overflow: hidden; }
.case-visual .cv-label { color: #fff; font-weight: 700; font-size: .92rem; letter-spacing: .03em; z-index: 2; opacity: .96; padding: 0 16px; text-align: center; }
.case-visual::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 16px 16px; opacity: .5; }
.cv-1 { background: linear-gradient(135deg, #14161a, #33373f); }
.cv-2 { background: linear-gradient(135deg, #2a2d33, #52565e); }
.cv-3 { background: linear-gradient(135deg, #1c1e23, var(--accent)); }
.cv-4 { background: linear-gradient(135deg, #3a3d44, #6b6f78); }
.cv-5 { background: linear-gradient(135deg, #101216, #2b2e34); }
.case-tag { position: absolute; top: 14px; left: 14px; z-index: 3; font-size: .72rem; font-weight: 700; color: #fff; background: rgba(0,0,0,.34); border: 1px solid rgba(255,255,255,.2); padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px); }
.case-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.case-body h3 { font-size: 1.16rem; margin-bottom: 8px; }
.case-body p { font-size: .93rem; color: var(--text-soft); margin: 0 0 16px; }
.case-services { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.case-services span { font-size: .74rem; font-weight: 600; color: var(--ink); background: var(--off-white); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; }
.case-body .arrow { margin-top: auto; color: var(--gray); display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; transition: gap .2s var(--ease), color .2s var(--ease); }
.case:hover .arrow { color: var(--accent); gap: 10px; }

/* Filtre butonları */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  font-family: inherit; font-size: .9rem; font-weight: 600; color: var(--text-soft);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 18px; cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.case.hide { display: none; }

/* ------------------------------------------------------------------
   11. FORMLAR
   ------------------------------------------------------------------ */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--off-white);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px; width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 4px var(--accent-soft);
}
.field input::placeholder, .field textarea::placeholder { color: #a7a7a3; }
.field input[type="file"] { padding: 10px 12px; background: var(--white); cursor: pointer; }
.field .err { font-size: .78rem; color: var(--accent-dark); display: none; font-weight: 600; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--accent); background: #fff; }
.field.invalid .err { display: block; }

/* Onay kutuları (çoklu hizmet) */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.check {
  display: flex; align-items: center; gap: 10px; background: var(--off-white); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 11px 13px; cursor: pointer; font-size: .9rem; font-weight: 500;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.check:hover { border-color: #cfcdc7; }
.check input { width: 18px; height: 18px; accent-color: var(--accent); flex: none; cursor: pointer; }
.check:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }

/* Radyo satırı */
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio {
  display: inline-flex; align-items: center; gap: 9px; background: var(--off-white);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 16px; cursor: pointer; font-size: .9rem; font-weight: 500;
}
.radio input { accent-color: var(--accent); cursor: pointer; }
.radio:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }

/* Onay (KVKK) */
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: .86rem; color: var(--text-soft); line-height: 1.5; }
.consent input { width: 18px; height: 18px; accent-color: var(--accent); flex: none; margin-top: 2px; cursor: pointer; }
.consent a { color: var(--accent); font-weight: 600; }
.consent.invalid { color: var(--accent-dark); }

.form-actions { margin-top: 24px; }
.form-actions .btn { width: 100%; }
.form-note { font-size: .8rem; color: var(--gray); margin-top: 14px; text-align: center; }

.form-success { display: none; text-align: center; padding: 34px 12px; }
.form-success.show { display: block; animation: fadeUp .5s var(--ease); }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { font-size: 1.3rem; margin-bottom: 10px; }
.form-success p { color: var(--text-soft); max-width: 42ch; margin: 0 auto; }

/* Alan içi ipucu listesi */
.checkup-list { display: grid; gap: 16px; }
.checkup-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .98rem; }
.checkup-list .tick { width: 24px; height: 24px; border-radius: 50%; flex: none; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 2px; }
.checkup-list strong { display: block; font-weight: 700; }
.checkup-list span { color: var(--text-soft); font-size: .9rem; }

/* ------------------------------------------------------------------
   12. PAGE HERO (iç sayfa başlığı) + BREADCRUMB
   ------------------------------------------------------------------ */
.page-hero {
  padding-top: calc(var(--nav-h) + 56px); padding-bottom: 54px;
  background: radial-gradient(900px 400px at 90% -20%, rgba(255,74,28,.06), transparent 60%), linear-gradient(180deg, var(--white), var(--off-white));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 16px; max-width: 20ch; }
.page-hero p { font-size: 1.1rem; color: var(--text-soft); max-width: 60ch; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray); margin-bottom: 22px; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 600; }
.breadcrumb .sep { color: var(--line); }

/* ------------------------------------------------------------------
   13. HİZMET DETAY
   ------------------------------------------------------------------ */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.detail-main h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 42px 0 16px; }
.detail-main h2:first-child { margin-top: 0; }
.detail-main p { color: var(--text-soft); margin-bottom: 16px; font-size: 1.04rem; }
.detail-lead { font-size: 1.16rem !important; color: var(--ink) !important; }

.tick-list { display: grid; gap: 12px; margin: 8px 0 8px; }
.tick-list.cols { grid-template-columns: 1fr 1fr; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--text-soft); }
.tick-list .tick { width: 22px; height: 22px; border-radius: 50%; flex: none; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 2px; }
.tick-list .tick svg { width: 13px; height: 13px; }

/* Yan kutu (sticky) */
.detail-aside { position: sticky; top: calc(var(--nav-h) + 20px); display: grid; gap: 18px; }
.aside-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.aside-card.dark { background: var(--ink); color: #fff; }
.aside-card.dark p { color: rgba(255,255,255,.72); }
.aside-card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.aside-card p { color: var(--text-soft); font-size: .94rem; margin-bottom: 18px; }
.aside-card .btn { width: 100%; }
.aside-list { display: grid; gap: 10px; }
.aside-list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: .93rem; font-weight: 600; padding: 11px 0; border-bottom: 1px solid var(--line); }
.aside-list a:last-child { border-bottom: none; }
.aside-list a svg { width: 16px; height: 16px; color: var(--gray); transition: transform .2s var(--ease), color .2s var(--ease); }
.aside-list a:hover svg { color: var(--accent); transform: translateX(3px); }

/* SSS Accordion */
.faq { max-width: 100%; }
.faq.narrow { max-width: 820px; margin: 0 auto; }
.acc-item { border: 1px solid var(--line); border-radius: 12px; background: var(--white); margin-bottom: 12px; overflow: hidden; }
.acc-head {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.02rem; font-weight: 600; color: var(--ink); padding: 19px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.acc-head:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; border-radius: 12px; }
.acc-head .ic { width: 28px; height: 28px; border-radius: 50%; flex: none; border: 1.5px solid var(--line); display: grid; place-items: center; position: relative; transition: background .3s var(--ease), border-color .3s var(--ease); }
.acc-head .ic::before, .acc-head .ic::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: opacity .3s var(--ease); }
.acc-head .ic::before { width: 12px; height: 2px; }
.acc-head .ic::after { width: 2px; height: 12px; }
.acc-item.open .acc-head .ic { background: var(--accent); border-color: var(--accent); }
.acc-item.open .acc-head .ic::before, .acc-item.open .acc-head .ic::after { background: #fff; }
.acc-item.open .acc-head .ic::after { opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .34s var(--ease); }
.acc-body-inner { padding: 0 22px 22px; color: var(--text-soft); font-size: .98rem; }

/* ------------------------------------------------------------------
   14. PROJE DETAY GALERİ
   ------------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery .media-ph { min-height: 200px; border-radius: 14px; }
.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 8px 0; }
.info-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.info-block .k { font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.info-block p { font-size: .96rem; color: var(--text-soft); margin: 0; }

.editable-note {
  font-size: .82rem; color: var(--gray); background: var(--off-white); border: 1px dashed var(--line);
  border-radius: 8px; padding: 10px 14px; margin: 6px 0 14px; display: flex; align-items: center; gap: 8px;
}
.editable-note svg { width: 15px; height: 15px; flex: none; color: var(--accent); }

/* ------------------------------------------------------------------
   15. HAKKIMIZDA / İSTATİSTİK
   ------------------------------------------------------------------ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.about-text h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 18px; }
.about-text p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 16px; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.about-values span { font-size: .85rem; font-weight: 600; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; background: var(--white); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.stat b { display: block; font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; }
.stat span { font-size: .9rem; color: var(--text-soft); }

/* ------------------------------------------------------------------
   16. FARK / DEĞER KARTLARI
   ------------------------------------------------------------------ */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.diff { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.diff:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.diff .di { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 14px; }
.diff h3 { font-size: 1rem; margin-bottom: 6px; }
.diff p { font-size: .88rem; color: var(--text-soft); margin: 0; }

/* ------------------------------------------------------------------
   17. ÜRÜN / ÇÖZÜM TANITIM (promosyon & onfik)
   ------------------------------------------------------------------ */
.promo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.promo-split.rev .promo-visual { order: -1; }
.promo-text h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 16px; }
.promo-text p { color: var(--text-soft); font-size: 1.06rem; margin-bottom: 22px; }
.promo-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.promo-badges span { font-size: .85rem; font-weight: 600; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; }

/* ------------------------------------------------------------------
   18. CTA ŞERİDİ
   ------------------------------------------------------------------ */
.cta-band { background: var(--ink); color: #fff; }
.cta-inner {
  background:
    radial-gradient(700px 300px at 15% 20%, rgba(255,74,28,.22), transparent 60%),
    radial-gradient(700px 320px at 90% 90%, rgba(255,74,28,.12), transparent 60%);
  border-radius: 26px; padding: 64px 48px; text-align: center; border: 1px solid rgba(255,255,255,.08);
}
.cta-band .eyebrow { color: #ff7a55; }
.cta-band .eyebrow::before { background: #ff7a55; }
.cta-inner h2 { font-size: clamp(1.8rem, 4.5vw, 2.9rem); margin-bottom: 14px; max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-inner p { color: rgba(255,255,255,.72); max-width: 56ch; margin: 0 auto 30px; font-size: 1.06rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------------
   19. İLETİŞİM
   ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-methods { display: grid; gap: 14px; margin-top: 8px; }
.cm { display: flex; align-items: center; gap: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.cm:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: #d7d5cf; }
.cm .cm-ic { width: 44px; height: 44px; border-radius: 11px; flex: none; background: var(--off-white); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); }
.cm .cm-ic svg { width: 22px; height: 22px; }
.cm b { display: block; font-size: .98rem; }
.cm span { font-size: .86rem; color: var(--text-soft); }
.map-embed { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-ph { min-height: 320px; border-radius: var(--radius); }

/* ------------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------------ */
footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand .logo { color: #fff; margin-bottom: 16px; }
.foot-brand p { font-size: .92rem; max-width: 36ch; margin-bottom: 20px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.foot-social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.foot-social a svg { width: 19px; height: 19px; }
.foot-col h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col ul { display: grid; gap: 10px; }
.foot-col a { font-size: .92rem; color: rgba(255,255,255,.66); transition: color .2s var(--ease); }
.foot-col a:hover { color: #fff; }
.foot-col a .ext { font-size: .7rem; opacity: .7; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-size: .85rem; color: rgba(255,255,255,.5); }
.foot-bottom .legal { display: flex; flex-wrap: wrap; gap: 20px; }
.foot-bottom .legal a { color: rgba(255,255,255,.6); transition: color .2s var(--ease); }
.foot-bottom .legal a:hover { color: #fff; }

/* ------------------------------------------------------------------
   21. MOBİL SABİT BUTONLAR + WHATSAPP
   ------------------------------------------------------------------ */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px); padding: 10px 14px; gap: 10px;
}
.mobile-bar .btn { flex: 1; padding: 14px; }
.mobile-bar .btn-wa { background: #25D366; color: #fff; }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.4); transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ------------------------------------------------------------------
   22. SCROLL ANİMASYONLARI
   ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   EK: AI ANALİZ ARACI (ana sayfa hero)
   ============================================================ */
.analiz-tool { margin: 6px 0 26px; max-width: 560px; }
.analiz-form .analiz-row {
  display: flex; gap: 8px; background: var(--white);
  border: 1.5px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow-sm); flex-wrap: wrap;
}
.analiz-form .analiz-row input {
  flex: 1 1 180px; min-width: 0; border: none; background: transparent;
  font-family: inherit; font-size: .98rem; color: var(--ink); padding: 11px 12px;
}
.analiz-form .analiz-row input:focus { outline: none; }
.analiz-form .analiz-row input::placeholder { color: #a7a7a3; }
.analiz-form .analiz-row .btn { flex: 0 0 auto; }
.analiz-form:focus-within .analiz-row { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.analiz-note { font-size: .84rem; color: var(--gray); margin: 10px 2px 0; }

.analiz-ok, .an-note {
  margin-top: 12px; padding: 14px 16px; border-radius: 12px; font-size: .92rem;
  background: var(--accent-soft); border: 1px solid rgba(255,74,28,.25); color: var(--ink);
}
.an-note.err { background: #fff3f0; border-color: #ffd2c7; }
.an-note.ok { background: rgba(27,138,75,.08); border-color: rgba(27,138,75,.25); }

.an-loading { margin-top: 14px; display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--text-soft); }
.an-spin {
  width: 20px; height: 20px; border-radius: 50%; flex: none;
  border: 2.5px solid var(--light-gray); border-top-color: var(--accent);
  animation: an-rot .8s linear infinite;
}
@keyframes an-rot { to { transform: rotate(360deg); } }

/* AI sonuç kartı */
.analiz-sonuc { margin-top: 18px; }
.an-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px; animation: fadeUp .5s var(--ease);
}
.an-head { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.an-gauge {
  --val: 0; width: 92px; height: 92px; border-radius: 50%; flex: none; position: relative;
  background: radial-gradient(closest-side, #fff 76%, transparent 77% 100%),
              conic-gradient(var(--accent) calc(var(--val) * 1%), var(--light-gray) 0);
  display: grid; place-items: center;
}
.an-gauge b { font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; }
.an-gauge small { position: absolute; bottom: 20px; font-size: .6rem; color: var(--gray); }
.an-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.an-head-txt h3 { font-size: 1.15rem; margin-bottom: 4px; }
.an-head-txt p { font-size: .93rem; color: var(--text-soft); margin: 0; }
.an-metrics { display: grid; gap: 12px; margin-bottom: 20px; }
.an-mlbl { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: 6px; }
.an-mlbl span:last-child { font-weight: 700; }
.an-bar { height: 8px; border-radius: 999px; background: var(--light-gray); overflow: hidden; }
.an-bar i { display: block; height: 100%; border-radius: 999px; background: var(--ink); transition: width .9s var(--ease); }
.an-bar.accent i { background: var(--accent); }
.an-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.an-col h4 { font-size: .95rem; margin-bottom: 8px; }
.an-col ul { display: grid; gap: 6px; }
.an-col li { font-size: .9rem; color: var(--text-soft); padding-left: 18px; position: relative; }
.an-good li::before { content: "+"; position: absolute; left: 0; color: #1b8a4b; font-weight: 800; }
.an-bad li::before { content: "!"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.an-reco { background: var(--off-white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 18px; }
.an-reco h4 { font-size: .95rem; margin-bottom: 8px; }
.an-reco ul { display: grid; gap: 6px; }
.an-reco li { font-size: .9rem; color: var(--text-soft); padding-left: 18px; position: relative; }
.an-reco li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.an-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.an-disc { font-size: .78rem; color: var(--gray); margin: 0; }

/* ============================================================
   EK: İLETİŞİM SAYFASI YENİ DÜZEN (harita odaklı + dengeli)
   ============================================================ */
.contact-map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); margin-bottom: 40px; line-height: 0;
}
.contact-map iframe { width: 100%; height: 460px; border: 0; display: block; }
.contact-map .media-ph { border-radius: 0; }

.contact-mini { display: grid; gap: 12px; margin-bottom: 24px; }
.cmini {
  display: flex; align-items: center; gap: 13px; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
a.cmini:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: #d7d5cf; }
.cmini .ic {
  width: 38px; height: 38px; border-radius: 10px; flex: none; background: var(--off-white);
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink);
}
.cmini .ic svg { width: 19px; height: 19px; }
.cmini .tx { display: flex; flex-direction: column; line-height: 1.35; }
.cmini .tx b { font-size: .95rem; }
.cmini .tx span { font-size: .86rem; color: var(--text-soft); }

.social-block {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.social-label { display: block; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gray); font-weight: 600; margin-bottom: 12px; }
.social-row { display: flex; gap: 10px; margin-bottom: 18px; }
.social-btn {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--off-white); border: 1px solid var(--line); color: var(--ink);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { transform: translateY(-2px); background: var(--ink); color: #fff; border-color: var(--ink); }
.social-btn.wa:hover { background: #25D366; border-color: #25D366; }
.social-block .btn { width: 100%; }

@media (max-width: 760px) {
  .contact-map iframe { height: 340px; }
  .an-cols { grid-template-columns: 1fr; }
  .an-head { flex-direction: row; }
}
