/* ═══════════════════════════════════════════
   KENTDEKS HOME — Harvey.ai Referanslı v3
   Hero: Pitch-black · Content: White/Light
   Tipografi: Büyük · Boşluk: Cömert
═══════════════════════════════════════════ */

/* NAVBAR — tanım artık tek kaynak: css/vars.css. Burada ikinci bir
   .navbar/.nav-* tanımı YAZMA (bkz. vars.css NAVBAR — TEK KAYNAK notu). */

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 120%);
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Grain texture overlay */
.hero::before {
  content: '';
  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.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: .45;
}

.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59,122,191,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(14,165,233,.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero > .wrap { position: relative; z-index: 2; width: 100%; }

/* ── HERO LAYOUT: centered like Harvey ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items: center;
  padding: 40px 0 56px;
}

/* Pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r999);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.hero-pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(56,189,248,.2);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(56,189,248,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(56,189,248,.06); }
}

/* H1 — Harvey editorial serif */
.hero-h1 {
  font-family: 'Cormorant Garamond', 'Bodoni Moda', Georgia, serif;
  font-size: clamp(56px, 7.5vw, 112px);
  font-weight: 300;
  color: #F5F5F5;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: rgba(245,245,245,.45); font-weight: 300; }
.hero-accent {
  display: block;
  background: linear-gradient(90deg, var(--white) 0%, rgba(168,204,236,.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-p {
  font-size: 17px; color: rgba(255,255,255,.45);
  line-height: 1.75; max-width: 460px; margin-bottom: 36px;
  font-weight: 400;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-feats {
  display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 32px;
}
.hero-feats > div {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500;
}
.hero-feats i {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(56,189,248,.15); color: var(--teal-400);
  font-size: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hb-item {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r8);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5);
}
.hb-item i { font-size: 14px; color: rgba(168,204,236,.6); }

/* ── FORM CARD — Harvey'nin clean card stili ── */
.hero-form-wrap { position: relative; }
.hero-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r20);
  padding: 32px 28px;
  backdrop-filter: blur(24px);
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 32px 80px rgba(0,0,0,.6);
}
.hero-form-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,204,236,.4), transparent);
  border-radius: var(--r999);
}

.hfc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.hfc-head-icon {
  width: 40px; height: 40px; border-radius: var(--r10);
  background: rgba(59,122,191,.2);
  border: 1px solid rgba(59,122,191,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--blue-300); flex-shrink: 0;
}
.hfc-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); }
.hfc-sub   { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 20px; }

/* Form fields on dark */
.hero-form-card .field label { color: rgba(255,255,255,.35); }
.hero-form-card .field input,
.hero-form-card .field select {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: var(--white);
}
.hero-form-card .field select option { background: #111; color: var(--white); }
.hero-form-card .field input:focus,
.hero-form-card .field select:focus {
  background: rgba(255,255,255,.09);
  border-color: rgba(59,122,191,.5);
  box-shadow: 0 0 0 3px rgba(59,122,191,.12);
}
.hero-form-card .field input::placeholder { color: rgba(255,255,255,.2); }

.hfc-submit {
  width: 100%; padding: 14px;
  background: var(--white); color: var(--navy-800);
  border: none; border-radius: var(--r10);
  font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--t-md);
  box-shadow: 0 1px 0 rgba(255,255,255,.1);
}
.hfc-submit:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.4); }

.hfc-note { font-size: 11.5px; color: rgba(255,255,255,.25); text-align: center; margin-top: 10px; line-height: 1.6; }
.hfc-note a { color: rgba(168,204,236,.5); }

/* Badge above form title */
.hfc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-400); background: rgba(20,184,166,.1); border: 1px solid rgba(20,184,166,.2);
  border-radius: var(--r999); padding: 4px 12px; margin-bottom: 14px;
}
.hero-form-card .hfc-title {
  font-size: 22px; font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 8px;
  font-family: var(--font-display);
}
.hero-form-card .hfc-sub {
  font-size: 13.5px; color: rgba(255,255,255,.4); margin-bottom: 24px; line-height: 1.6;
}
.hfc-trust {
  font-size: 11.5px; color: rgba(255,255,255,.25);
  text-align: center; margin-top: 14px; display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.hfc-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 22px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hfc-stat { text-align: center; flex: 1; }
.hfc-stat-n { display: block; font-size: 18px; font-weight: 800; color: var(--white); }
.hfc-stat-l { display: block; font-size: 10.5px; color: rgba(255,255,255,.3); margin-top: 2px; }
.hfc-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* WhatsApp Floating Button */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  border-radius: var(--r999); padding: 14px 20px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.wa-float i { font-size: 22px; }
.wa-float-label { font-size: 14px; }
@media (max-width: 600px) { .wa-float-label { display: none; } .wa-float { padding: 14px; } }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,.2);
  letter-spacing: .12em; text-transform: uppercase; transition: opacity .4s;
}
.hsh-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0%    { transform:scaleY(0); transform-origin:top; }
  50%   { transform:scaleY(1); transform-origin:top; }
  50.1% { transform:scaleY(1); transform-origin:bottom; }
  100%  { transform:scaleY(0); transform-origin:bottom; }
}

/* ═══ LOGO CAROUSEL (Açık sosyal kanıt) ═══ */
.logo-carousel-sec {
  background: var(--white);
  border-top: 1px solid var(--n100);
  border-bottom: 1px solid var(--n100);
  padding: 40px 0;
  overflow: hidden;
}
.lc-label {
  text-align: center;
  font-size: 11px; font-weight: 700;
  color: var(--n300);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 28px;
}
.lc-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.lc-track {
  display: flex; gap: 56px; align-items: center;
  animation: carouselScroll 28s linear infinite;
  width: max-content;
}
.lc-track:hover { animation-play-state: paused; }
@keyframes carouselScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lc-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--n150);
  border-radius: var(--r8);
  background: var(--bg-2);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--n300);
  letter-spacing: .04em;
  transition: var(--t);
  flex-shrink: 0;
  min-width: 140px;
}
.lc-logo:hover { color: var(--navy-700); border-color: var(--n200); background: var(--white); }
.lc-logo i { font-size: 16px; margin-right: 8px; }

/* ═══ STATS BAR — Beyaz / Harvey sayı stili ═══ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--n100);
  padding: 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px 16px; text-align: center;
  border-right: 1px solid var(--n100);
  position: relative; transition: background var(--t);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--bg-2); }
.stat::after {
  content: ''; position: absolute; bottom: 0; left: 25%; right: 25%;
  height: 2px; background: var(--navy-700);
  border-radius: var(--r999); opacity: 0; transition: opacity var(--t);
}
.stat:hover::after { opacity: 1; }
.stat-n {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800; color: var(--navy-900);
  line-height: 1; margin-bottom: 6px;
}
.stat-l { font-size: 12px; font-weight: 500; color: var(--n400); }

/* ═══ SERVICES — Beyaz section ═══ */
.services-sec { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card {
  background: var(--white);
  padding: 32px 28px;
  transition: var(--t-md);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--n100);
  border-radius: var(--r16);
  box-shadow: 0 1px 2px rgba(10,16,30,.03);
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--navy-700); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.svc-card:hover {
  background: var(--bg-2);
  border-color: var(--n150);
  box-shadow: 0 10px 24px rgba(10,16,30,.08);
  transform: translateY(-3px);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-card--featured {
  background: var(--navy-900);
  grid-column: span 2;
  border-color: var(--navy-900);
}
.svc-card--featured:hover { background: var(--navy-800); }
.svc-card--featured h3 { color: var(--white); }
.svc-card--featured p  { color: rgba(255,255,255,.45); }
.svc-card--featured .svc-link { color: var(--blue-300); }
.svc-card--featured .svc-icon { background: rgba(255,255,255,.08); color: rgba(168,204,236,.7); border-color: rgba(255,255,255,.1); }
.svc-card--featured::after { background: var(--teal-400); }

.svc-icon-wrap { margin-bottom: 20px; }
.svc-icon {
  width: 44px; height: 44px; border-radius: var(--r10);
  background: var(--bg-2); color: var(--navy-700); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--n100);
  transition: var(--t-md);
}
.svc-card:hover .svc-icon { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.svc-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.svc-card p  { font-size: 14px; color: var(--n500); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.svc-link {
  display: inline-flex; align-items: center;
  gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--navy-800);
  transition: gap .25s ease, color .25s ease;
  align-self: flex-start;
}
.svc-card:hover .svc-link { gap: 11px; color: var(--blue-600); }
.svc-card--featured:hover .svc-link { color: var(--blue-300); }
.svc-link:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 2px; }
.svc-link i { font-size: 14px; }

/* ═══ HOW IT WORKS — Açık section ═══ */
.hiw-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--n100);
}
.hiw-sec .eyebrow { color: var(--blue-500); }
.hiw-sec .eyebrow::before { background: var(--teal-500); }
.hiw-sec .section-h { color: var(--navy-800); }
.hiw-sec .section-p { color: var(--n500); }

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hiw-step {
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--n100);
  border-radius: var(--r16);
  box-shadow: 0 1px 2px rgba(10,16,30,.03);
  transition: var(--t-md);
  position: relative;
}
.hiw-step::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--navy-700);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.hiw-step:hover {
  background: var(--bg-2);
  border-color: var(--n150);
  box-shadow: 0 10px 24px rgba(10,16,30,.07);
  transform: translateY(-3px);
}
.hiw-step:hover::after { transform: scaleX(1); }
.hiw-num {
  font-family: var(--font-display); font-size: 10px; font-weight: 800;
  color: var(--n300); letter-spacing: .12em; margin-bottom: 16px;
}
.hiw-icon {
  width: 52px; height: 52px; border-radius: var(--r12);
  background: var(--bg-2);
  border: 1px solid var(--n100);
  color: var(--navy-600); font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: var(--t-md);
}
.hiw-step:hover .hiw-icon {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}
.hiw-step h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.hiw-step p  { font-size: 13.5px; color: var(--n500); line-height: 1.65; }
.hiw-connector { display: none; }

/* ═══ ANALYSIS — Beyaz section ═══ */
.analysis-sec { background: var(--white); }
.an-grid { display: grid; grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.result-card {
  background: var(--white); border: 1px solid var(--n100);
  border-radius: var(--r16); padding: 24px; box-shadow: var(--s1);
}
.rc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 8px; flex-wrap: wrap;
}
.rc-addr { font-size: 13px; font-weight: 600; color: var(--n500); display: flex; align-items: center; gap: 5px; }
.rc-addr i { color: var(--navy-600); }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.metric {
  background: var(--bg-2); border: 1px solid var(--n100);
  border-radius: var(--r10); padding: 14px;
}
.metric-lbl {
  font-size: 10px; font-weight: 700; color: var(--n400);
  text-transform: uppercase; letter-spacing: .07em;
  display: flex; align-items: center; gap: 4px; margin-bottom: 7px;
}
.metric-v { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy-900); }
.metric-s { font-size: 11.5px; color: var(--n400); margin-top: 2px; }
.rsb-label { font-size: 11.5px; font-weight: 600; color: var(--n500); margin-bottom: 7px; }
.rsb-track { height: 6px; background: var(--n100); border-radius: var(--r999); overflow: hidden; margin-bottom: 5px; }
.rsb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-700), var(--blue-500));
  border-radius: var(--r999);
  animation: fillBar 1.2s ease .4s both;
}
@keyframes fillBar { from { width:0 !important; } }
.rsb-val { font-size: 12px; font-weight: 700; color: var(--navy-700); text-align: right; }
.an-right {
  background: var(--white); border: 1px solid var(--n100);
  border-radius: var(--r16); padding: 28px; box-shadow: var(--s1);
}
.score-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  background: var(--bg-2); border: 1px solid var(--n100); border-radius: var(--r12); padding: 16px;
}
.score-ring { stroke-dasharray:226; stroke-dashoffset:226; animation:ringFill 1.4s ease .5s forwards; }
@keyframes ringFill { to { stroke-dashoffset:34; } }
.cmp-tbl { width:100%; border-collapse:collapse; font-size:13px; }
.cmp-tbl th {
  font-size:10px; font-weight:700; color:var(--n400);
  text-transform:uppercase; letter-spacing:.07em;
  padding:0 10px 8px; text-align:left; border-bottom:1px solid var(--n100);
}
.cmp-tbl td { padding:10px; border-bottom:1px solid var(--n75); color:var(--n700); }
.cmp-tbl tr:last-child td { border-bottom:none; }
.cmp-tbl tr:hover td { background:var(--bg-2); }

/* ═══ DISTRICT — Açık section ═══ */
.dist-sec {
  background: var(--white);
  border-top: 1px solid var(--n100);
}
.dist-sec .eyebrow { color: var(--blue-500); }
.dist-sec .eyebrow::before { background: var(--teal-500); }
.dist-sec .section-h { color: var(--navy-800); }
.dist-sec .section-p { color: var(--n500); }
.dist-head-row { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:28px; gap:16px; flex-wrap:wrap; }
.dist-tabs {
  display:flex; gap:3px;
  background:var(--n75); border:1px solid var(--n100);
  border-radius:var(--r10); padding:3px; margin-bottom:20px; flex-wrap:wrap;
}
.dist-tab { flex:1; min-width:max-content; padding:9px 18px; border-radius:var(--r8); font-size:13px; font-weight:600; color:var(--n400); cursor:pointer; transition:var(--t); }
.dist-tab:hover { color:var(--n700); background:var(--white); }
.dist-tab.on { background:var(--white); color:var(--navy-800); box-shadow:var(--s1); }
.dist-panel { display:none; grid-template-columns:repeat(3,1fr); gap:12px; }
.dist-panel.is-active { display:grid; }
.dc {
  background:var(--bg-2); border:1px solid var(--n100);
  border-radius:var(--r12); padding:18px 20px;
  transition:var(--t-md); text-decoration:none; display:block;
}
.dc:hover { border-color:var(--navy-400); background:var(--white); transform:translateY(-2px); box-shadow:var(--s2); }
.dc-n { font-size:14px; font-weight:700; color:var(--navy-800); margin-bottom:7px; display:flex; align-items:center; gap:7px; }
.dc-r { font-family:var(--font-display); font-size:24px; font-weight:800; color:var(--navy-900); margin-bottom:9px; }
.dc-r span { font-size:12px; font-weight:500; color:var(--n400); }
.dc-rows { display:flex; gap:7px; flex-wrap:wrap; }
.dc-rows span { font-size:11px; font-weight:500; color:var(--n500); background:var(--white); border:1px solid var(--n150); border-radius:var(--r999); padding:2px 8px; }

/* ═══ DANIŞMAN SECTION — Beyaz ═══ */
.ai-sec { background: var(--white); border-top:1px solid var(--n100); }
.ai-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.ai-feats { display:flex; flex-direction:column; gap:20px; margin-top:8px; }
.ai-feat { display:flex; align-items:flex-start; gap:14px; }
.ai-feat-icon {
  width:40px; height:40px; border-radius:var(--r10);
  background:var(--bg-2); color:var(--navy-700); font-size:20px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--n100); flex-shrink:0; transition:var(--t-md);
}
.ai-feat:hover .ai-feat-icon { background:var(--navy-800); color:var(--white); border-color:var(--navy-800); }
.ai-feat b   { display:block; font-size:14px; font-weight:700; color:var(--navy-900); margin-bottom:3px; }
.ai-feat span{ font-size:13px; color:var(--n500); line-height:1.55; }
.ai-widget { background:var(--white); border:1px solid var(--n100); border-radius:var(--r20); overflow:hidden; box-shadow:var(--s2); }
.ai-w-head {
  display:flex; align-items:center; justify-content:space-between; padding:18px 20px;
  background: var(--navy-900); border-bottom:1px solid rgba(255,255,255,.07);
}
.ai-w-ident { display:flex; align-items:center; gap:12px; }
.ai-av { width:36px; height:36px; border-radius:var(--r8); background:rgba(255,255,255,.08); color:rgba(168,204,236,.7); font-size:18px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.1); }
.ai-w-name  { font-size:14px; font-weight:700; color:var(--white); display:flex; align-items:center; }
.ai-w-status{ font-size:11px; color:rgba(255,255,255,.35); display:flex; align-items:center; gap:5px; margin-top:2px; }
.ai-dot { width:6px; height:6px; border-radius:50%; background:var(--teal-400); animation:pulse 2s ease infinite; }
.ai-msgs { height:260px; overflow-y:auto; padding:16px; background:var(--bg-2); display:flex; flex-direction:column; gap:12px; scroll-behavior:smooth; }
.ai-input-row { display:flex; gap:8px; padding:14px 16px; border-top:1px solid var(--n100); background:var(--white); }
.ai-input-row input { flex:1; padding:10px 14px; border:1.5px solid var(--n150); border-radius:var(--r8); font-size:13.5px; background:var(--bg-2); color:var(--n800); transition:var(--t); }
.ai-input-row input:focus { border-color:var(--navy-500); background:var(--white); box-shadow:0 0 0 3px rgba(15,28,63,.08); }
.ai-send { width:40px; height:40px; border-radius:var(--r8); background:var(--navy-800); color:var(--white); font-size:18px; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--t-md); border:none; cursor:pointer; }
.ai-send:hover { background:var(--navy-700); transform:scale(1.06); }
/* Chat bubbles */
.cmsg { display:flex; flex-direction:column; max-width:84%; }
.cmsg-ai   { align-self:flex-start; }
.cmsg-user { align-self:flex-end; }
.cmsg-name { font-size:10px; font-weight:700; color:var(--n400); text-transform:uppercase; margin-bottom:3px; letter-spacing:.05em; }
.cmsg-bubble { padding:10px 14px; border-radius:14px; font-size:13px; line-height:1.6; }
.cmsg-ai   .cmsg-bubble { background:var(--white); border:1px solid var(--n100); border-bottom-left-radius:3px; color:var(--n800); box-shadow:var(--s1); }
.cmsg-user .cmsg-bubble { background:var(--navy-800); color:white; border-bottom-right-radius:3px; }
.cmsg-typing .cmsg-bubble { display:flex; gap:4px; align-items:center; }
.cmsg-typing .cmsg-bubble span { width:7px; height:7px; border-radius:50%; background:var(--n300); animation:dot 1.2s infinite; }
.cmsg-typing .cmsg-bubble span:nth-child(2){animation-delay:.2s}
.cmsg-typing .cmsg-bubble span:nth-child(3){animation-delay:.4s}
@keyframes dot{0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-6px)}}

/* ═══ UZMAN EKİBİ ═══ */
.expert-sec { background: var(--bg-2); border-top: 1px solid var(--n100); }

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

.expert-card {
  background: var(--white);
  border: 1px solid var(--n100);
  border-radius: var(--r16);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--t-md);
  position: relative;
  overflow: hidden;
}
.expert-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.expert-card:hover { box-shadow: var(--s2); transform: translateY(-3px); }
.expert-card:hover::after { transform: scaleX(1); }

.expert-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--n150);
  color: var(--navy-600);
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.expert-info { flex: 1; }
.expert-name  { font-size: 15px; font-weight: 700; color: var(--navy-900); margin-bottom: 3px; }
.expert-title { font-size: 12.5px; color: var(--n500); margin-bottom: 12px; }

.expert-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.expert-tags span {
  font-size: 11px; font-weight: 600;
  color: var(--navy-600);
  background: var(--bg-2);
  border: 1px solid var(--n150);
  border-radius: var(--r999);
  padding: 3px 10px;
}

.expert-cta {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 18px;
  background: var(--navy-800);
  color: white;
  border: none; border-radius: var(--r8);
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--t-md);
  width: 100%; justify-content: center;
}
.expert-cta:hover { background: var(--navy-700); transform: translateY(-1px); }
.expert-cta i { font-size: 15px; }

.expert-cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--n100);
  border-radius: var(--r16);
  padding: 24px 32px;
  box-shadow: var(--s1);
}
.expert-cta-bar-copy {
  display: flex; align-items: center; gap: 14px;
}
.expert-cta-bar-copy i {
  font-size: 28px;
  color: var(--teal-500);
  flex-shrink: 0;
}
.expert-cta-bar-copy b {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 3px;
}
.expert-cta-bar-copy span {
  font-size: 13px;
  color: var(--n500);
}

@media (max-width: 900px) {
  .expert-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .expert-cta-bar { flex-direction: column; align-items: flex-start; }
  .expert-cta-bar .btn { width: 100%; justify-content: center; }
}

/* ═══ BLOG — Açık section ═══ */
.blog-prev-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--n100);
}
.blog-prev-sec .eyebrow { color: var(--blue-500); }
.blog-prev-sec .eyebrow::before { background: var(--teal-500); }
.blog-prev-sec .section-h { color: var(--navy-800); }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.blog-card {
  background:var(--white); overflow:hidden; transition:var(--t-md);
  text-decoration:none; display:block;
  border:1px solid var(--n100); border-radius:var(--r16);
  box-shadow:0 1px 2px rgba(10,16,30,.03);
}
.blog-card:hover {
  background:var(--bg-2); border-color:var(--n150);
  box-shadow:0 10px 24px rgba(10,16,30,.08); transform:translateY(-3px);
}
.blog-img { height:160px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; border-bottom:1px solid var(--n100); }
.blog-body { padding:24px; }
.blog-cat { display:inline-block; font-size:10px; font-weight:700; color:var(--blue-600); background:var(--blue-50); border:1px solid var(--blue-100); border-radius:var(--r999); padding:3px 10px; margin-bottom:12px; letter-spacing:.06em; text-transform:uppercase; }
.blog-card h3 { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--navy-900); margin-bottom:8px; line-height:1.35; }
.blog-card p  { font-size:13px; color:var(--n500); line-height:1.65; margin-bottom:14px; }
.blog-meta { font-size:11px; color:var(--n400); font-weight:500; display:flex; align-items:center; gap:6px; }

/* ═══ CONTRACTOR — Harvey'nin feature section stili ═══ */
.ct-section { background: var(--white); padding:60px 0; }
.ct-banner {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r24); padding:64px 56px;
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap; position:relative; overflow:hidden;
}
.ct-deco {
  position:absolute; top:-80px; right:-80px; width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(59,122,191,.1) 0%, transparent 70%);
  pointer-events:none;
}
.ct-h { font-family:var(--font-display); font-size:28px; font-weight:800; color:var(--white); margin-bottom:10px; line-height:1.2; }
.ct-p { font-size:15px; color:rgba(255,255,255,.4); margin-bottom:22px; line-height:1.7; max-width:440px; }
.ct-feats { display:flex; gap:18px; flex-wrap:wrap; }
.ct-feats span { display:flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:rgba(255,255,255,.45); }
.ct-feats i { color:rgba(168,204,236,.6); }
.ct-actions { display:flex; flex-direction:column; gap:10px; flex-shrink:0; }

/* ═══ TRUST — Beyaz section ═══ */
.trust-sec { background:var(--bg-2); border-top:1px solid var(--n100); padding:56px 0; }
.trust-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.trust-item {
  display:flex; flex-direction:column; align-items:flex-start; padding:26px 22px;
  background:var(--white); transition:var(--t-md); gap:12px;
  border:1px solid var(--n100); border-radius:var(--r16);
  box-shadow:0 1px 2px rgba(10,16,30,.03);
}
.trust-item:hover {
  background:var(--bg-2); border-color:var(--n150);
  box-shadow:0 10px 24px rgba(10,16,30,.08); transform:translateY(-3px);
}
.trust-icon { width:40px; height:40px; border-radius:var(--r10); background:var(--bg-2); color:var(--navy-700); font-size:18px; display:flex; align-items:center; justify-content:center; border:1px solid var(--n100); }
.trust-item b    { font-size:14px; font-weight:700; color:var(--navy-900); }
.trust-item span { font-size:12.5px; color:var(--n500); line-height:1.55; }

/* ═══ TESTIMONIALS — Açık section ═══ */
.testi-sec {
  background: var(--white);
  border-top: 1px solid var(--n100);
}
.testi-sec .eyebrow { color: var(--blue-500); }
.testi-sec .eyebrow::before { background: var(--teal-500); }
.testi-sec .section-h { color: var(--navy-800); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card {
  background:var(--white); padding:32px; transition:var(--t-md);
  border:1px solid var(--n100); border-radius:var(--r16);
  box-shadow:0 1px 2px rgba(10,16,30,.03);
}
.testi-card:hover {
  background:var(--bg-2); border-color:var(--n150);
  box-shadow:0 10px 24px rgba(10,16,30,.08); transform:translateY(-3px);
}
.testi-stars { font-size:14px; color:var(--blue-400); margin-bottom:16px; letter-spacing:3px; }
.testi-card p { font-size:15px; color:var(--n600); line-height:1.8; margin-bottom:22px; font-style:italic; font-weight:400; }
.testi-user { display:flex; align-items:center; gap:12px; }
.testi-av { width:36px; height:36px; border-radius:50%; background:var(--bg-2); border:1px solid var(--n150); color:var(--navy-600); font-size:12px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.testi-user b    { font-size:13px; font-weight:700; color:var(--navy-800); display:block; }
.testi-user span { font-size:12px; color:var(--n400); }

/* ═══ CTA BAND — Harvey'nin final CTA tarzı ═══ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--blue-700) 60%, var(--blue-500) 130%);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 50% 100%, rgba(59,122,191,.12) 0%, transparent 70%);
  pointer-events:none;
}
.cta-inner { text-align:center; position:relative; }
.cta-inner h2 { font-family:var(--font-display); font-size:clamp(36px,4vw,60px); font-weight:800; color:var(--white); margin-bottom:16px; letter-spacing:-.02em; line-height:1.1; }
.cta-inner p  { font-size:17px; color:rgba(255,255,255,.38); margin-bottom:40px; }
.cta-btns { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }

/* ═══ FOOTER — Koyu ═══ */
.footer { background: var(--navy-950); border-top:1px solid rgba(255,255,255,.06); }

/* ═══ HOW IT WORKS MODAL ═══ */
.hiw-m-num { width:34px; height:34px; border-radius:50%; background:var(--navy-700); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; flex-shrink:0; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 440px; gap: 32px; }
  .svc-grid  { grid-template-columns: repeat(2,1fr); }
  .svc-card--featured { grid-column:span 1; }
  .ai-grid { grid-template-columns:1fr; gap:40px; }
  .hiw-grid  { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .hero-form-wrap { max-width:480px; }
  .dist-panel { grid-template-columns:repeat(2,1fr); }
  .blog-grid  { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .hero { padding:90px 0 52px; }
  .hero-grid { gap:32px; }
  .hero-h1 { font-size: clamp(44px,11vw,72px); margin-bottom:20px; }
  .hero-p  { font-size:15px; margin-bottom:28px; }
  .hero-btns { flex-direction:column; }
  .hero-btns .btn { width:100%; justify-content:center; }
  .hero-badges { gap:6px; }
  .hb-item { font-size:11px; padding:5px 10px; }
  .hero-form-wrap { max-width:100%; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(5) { grid-column:span 2; }
  .stat-n { font-size:24px; }
  /* Kentdeks Farkı + 4 Adımda Dönüşüm — mobilde dikey yığın yerine
     yatay kaydırmalı (swipe) şerit: sonraki kart kenardan gözükür. */
  .svc-grid, .hiw-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -18px;
    padding: 4px 18px 10px;
  }
  .svc-grid::-webkit-scrollbar, .hiw-grid::-webkit-scrollbar { display: none; }
  .svc-card, .hiw-step {
    scroll-snap-align: start;
    flex: 0 0 80%;
    min-width: 80%;
  }
  .svc-card--featured { grid-column: unset; flex: 0 0 80%; }
  /* Güncel Yazılar, Güven rozetleri, Kullanıcı Deneyimleri, İlçe kartları —
     aynı yatay kaydırmalı şerit deseni. */
  .blog-grid, .trust-grid, .testi-grid, .dist-panel.is-active {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -18px;
    padding: 4px 18px 10px;
  }
  .blog-grid::-webkit-scrollbar, .trust-grid::-webkit-scrollbar,
  .testi-grid::-webkit-scrollbar, .dist-panel::-webkit-scrollbar { display: none; }
  .blog-card, .testi-card { scroll-snap-align: start; flex: 0 0 80%; min-width: 80%; }
  .trust-item { scroll-snap-align: start; flex: 0 0 60%; min-width: 60%; }
  .dist-panel.is-active .dc { scroll-snap-align: start; flex: 0 0 72%; min-width: 72%; }
  .ct-banner  { padding:32px 24px; flex-direction:column; }
  .ct-h { font-size:22px; }
  .ct-actions { width:100%; }
  .ct-actions .btn { width:100%; justify-content:center; }
  .cta-btns  { flex-direction:column; align-items:center; }
  .cta-btns .btn { width:100%; justify-content:center; max-width:320px; }
  .lc-logo { min-width:120px; font-size:12px; }
  .section-h { font-size:clamp(28px,7vw,42px); }
}
@media (max-width: 400px) {
  .hero-h1 { font-size:clamp(38px,10vw,56px); }
  .trust-grid { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  [data-anim] { opacity:1 !important; transform:none !important; }
  .lc-track { animation:none !important; }
}

/* Kullanıcı çipi stili artık vars.css'te (tek kaynak) */
