/* =========================================================
   EFE SİGORTA - Tasarım Sistemi
   Instagram marka kimliği: canlı yeşil + beyaz, organik yaprak dili
   ========================================================= */

:root {
  /* Marka renkleri */
  --green:       #18b84a;
  --green-600:   #129a3c;
  --green-700:   #0c7a2f;
  --green-800:   #0a5f25;
  --green-900:   #073f19;
  --lime:        #57e08a;
  --lime-soft:   #d6f8e2;
  --mint:        #effbf3;

  --ink:         #0d1f14;
  --ink-soft:    #34463b;
  --muted:       #6b7d72;
  --line:        #e4ece7;
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-soft:     #f5faf6;

  --blue:        #1e63d8;   /* "Hemen Teklif Al" rozetlerinde kullanılan mavi */

  /* Efektler */
  --radius:      18px;
  --radius-lg:   26px;
  --radius-sm:   12px;
  --shadow-sm:   0 2px 10px rgba(13,31,20,.06);
  --shadow:      0 14px 40px rgba(13,31,20,.10);
  --shadow-lg:   0 30px 80px rgba(10,95,37,.18);
  --shadow-green:0 18px 50px rgba(24,184,74,.35);

  --grad:        linear-gradient(135deg, #18b84a 0%, #0c7a2f 100%);
  --grad-soft:   linear-gradient(135deg, #effbf3 0%, #d6f8e2 100%);
  --grad-radial: radial-gradient(1200px 600px at 80% -10%, rgba(87,224,138,.35), transparent 60%);

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --header-h: 76px;
}

/* ============ Reset ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; }
.section-soft { background: var(--bg-soft); }

/* ============ Tipografi yardımcıları ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-700); background: var(--lime-soft);
  padding: 7px 14px; border-radius: 100px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.section-head h2 .hl { color: var(--green); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* ============ Butonlar ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 15px 26px; border-radius: 100px;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-green); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px rgba(24,184,74,.45); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--green-700); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 14px 36px rgba(37,211,102,.4); }
.btn-wa:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ============ Header ============ */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(13,31,20,.06);
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 13px; background: var(--grad);
  display: grid; place-items: center; box-shadow: var(--shadow-green); flex: 0 0 auto;
}
.brand-logo svg { width: 24px; height: 24px; }
.brand small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color .2s; }
.nav a:hover { color: var(--green-700); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: 15px; }
.header-phone svg { width: 17px; height: 17px; color: var(--green); }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--mint); }
.menu-toggle svg { width: 22px; height: 22px; margin: auto; color: var(--green-800); }

/* ============ Hero ============ */
.hero { position: relative; padding: calc(var(--header-h) + 56px) 0 70px; overflow: hidden; background: var(--bg); }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-radial); pointer-events: none; }
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 5.2vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -.03em;
}
.hero-copy h1 .hl {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy .lead { font-size: 18px; color: var(--ink-soft); margin: 22px 0 30px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-size: 26px; font-weight: 800; color: var(--green-700); line-height: 1; }
.hero-trust .t span { font-size: 13px; color: var(--muted); margin-top: 5px; }
.hero-trust .sep { width: 1px; background: var(--line); }

/* Hero görsel / maskot */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-blob {
  position: absolute; width: 108%; aspect-ratio: 1; border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%;
  background: var(--grad); filter: blur(2px); opacity: .96;
  box-shadow: var(--shadow-lg); animation: morph 9s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%; }
  50%     { border-radius: 58% 42% 44% 56% / 42% 56% 44% 58%; }
}
.hero-mascot {
  position: relative; width: 90%; max-width: 440px; z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(10,63,25,.35));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } }

/* Maskot placeholder (gerçek PNG gelene kadar) */
.mascot-placeholder {
  position: relative; width: 90%; max-width: 420px; aspect-ratio: 3/4; z-index: 2;
  border-radius: 30px; background: rgba(255,255,255,.16);
  border: 2px dashed rgba(255,255,255,.6); backdrop-filter: blur(4px);
  display: grid; place-items: center; text-align: center; color: #fff; padding: 24px;
  animation: floaty 6s ease-in-out infinite;
}
.mascot-placeholder .ico { font-size: 54px; margin-bottom: 10px; }
.mascot-placeholder b { font-size: 17px; }
.mascot-placeholder span { font-size: 13px; opacity: .9; margin-top: 6px; }

/* yüzen kartlar */
.float-card {
  position: absolute; z-index: 3; background: #fff; border-radius: 16px; padding: 13px 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 700;
}
.float-card .fc-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; }
.float-card small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; }
.float-card.fc-1 { top: 14%; left: -6%; animation: floaty 5s ease-in-out infinite; }
.float-card.fc-2 { bottom: 16%; right: -4%; animation: floaty 7s ease-in-out infinite .5s; }
.float-card.fc-3 { bottom: 38%; left: -10%; animation: floaty 6.5s ease-in-out infinite .2s; }

/* ============ Hero mesh + badges ============ */
.hero-mesh { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .9;
  background:
    radial-gradient(40% 50% at 85% 5%, rgba(87,224,138,.35), transparent 70%),
    radial-gradient(45% 55% at 70% 90%, rgba(24,184,74,.18), transparent 70%),
    radial-gradient(35% 45% at 10% 20%, rgba(30,99,216,.08), transparent 70%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
.hero-badges .hb { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.hero-badges .hb svg { width: 18px; height: 18px; color: #fff; background: var(--grad); border-radius: 50%; padding: 3px; box-shadow: var(--shadow-green); }

/* ============ Organik hero (Instagram yaprak/blob dili) ============ */
.hero { background: linear-gradient(180deg, #eafaf0 0%, #f3fbf6 45%, #ffffff 100%); padding-bottom: 110px; }
.hero > .container { position: relative; z-index: 2; }
.blob { position: absolute; z-index: 0; pointer-events: none; }
.blob-a { width: 540px; height: 540px; top: -150px; right: -130px;
  background: radial-gradient(circle at 32% 30%, rgba(87,224,138,.6), rgba(24,184,74,.16) 58%, transparent 72%);
  border-radius: 42% 58% 56% 44% / 50% 48% 52% 50%; animation: morph 13s ease-in-out infinite; }
.blob-b { width: 380px; height: 380px; bottom: 40px; left: -140px;
  background: radial-gradient(circle at 60% 40%, rgba(214,248,226,.95), transparent 70%);
  border-radius: 58% 42% 44% 56% / 42% 56% 44% 58%; animation: morph 16s ease-in-out infinite reverse; }
.leaf { position: absolute; z-index: 1; opacity: .45; pointer-events: none; user-select: none; }
.leaf-1 { top: 20%; left: 5%; font-size: 30px; animation: floaty 7s ease-in-out infinite; }
.leaf-2 { bottom: 30%; right: 7%; font-size: 24px; animation: floaty 9s ease-in-out infinite .6s; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 92px; z-index: 1; display: block; }

/* Bölüm geçişlerinde organik blob aksanları */
.section-soft { position: relative; overflow: hidden; }
.section-soft::before { content: ""; position: absolute; width: 320px; height: 320px; right: -120px; top: -120px;
  background: radial-gradient(circle at 50% 50%, rgba(87,224,138,.18), transparent 70%);
  border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%; pointer-events: none; }

/* ============ Yeni hero düzeni (metin + organik figür + yatay bar) ============ */
.hero-top { display: grid; grid-template-columns: 1.08fr .92fr; gap: 36px; align-items: center; }
.hero-figure { position: relative; min-height: 400px; display: grid; place-items: center; }
.hf-ring { position: absolute; width: 370px; height: 370px; z-index: 0;
  border-radius: 46% 54% 56% 44% / 52% 48% 52% 48%; background: var(--grad);
  box-shadow: var(--shadow-lg); animation: morph 11s ease-in-out infinite; }
.hf-stage { position: relative; z-index: 2; width: 330px; height: 380px; display: grid; place-items: center; }
.hf-mascot { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 28px 38px rgba(10,63,25,.4)); animation: floaty 6s ease-in-out infinite; }
.hf-emoji { font-size: 132px; line-height: 1; filter: drop-shadow(0 16px 24px rgba(10,63,25,.3)); animation: floaty 6s ease-in-out infinite; }
.hero-figure .fc-3 .fc-ico { font-size: 13px; font-weight: 800; }

/* Yatay hızlı teklif barı */
.quote-bar { background: #fff; border-radius: 24px; box-shadow: var(--shadow-lg); padding: 18px; margin-top: 26px; position: relative; z-index: 3; border: 1px solid rgba(255,255,255,.7); }
.qb-fields { display: grid; grid-template-columns: 1.3fr 1fr 1fr auto auto; gap: 12px; align-items: end; }
.qb-field label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin: 0 0 5px 6px; }
.qb-field input, .qb-field select { width: 100%; padding: 14px 15px; border: 1.5px solid var(--line); border-radius: 14px; font-family: inherit; font-size: 15px; background: var(--bg-soft); transition: border-color .2s, background .2s; }
.qb-field input:focus, .qb-field select:focus { outline: none; border-color: var(--green); background: #fff; }
.qb-photo { width: 54px; height: 50px; border-radius: 14px; background: var(--mint); color: var(--green-700); display: grid; place-items: center; cursor: pointer; transition: background .2s, color .2s; align-self: end; }
.qb-photo:hover { background: var(--lime-soft); }
.qb-photo.has { background: var(--grad); color: #fff; }
.qb-photo svg { width: 22px; height: 22px; }
.qb-submit { height: 50px; white-space: nowrap; align-self: end; }
.qb-foot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 13px; padding: 0 6px; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.qb-done { text-align: center; padding: 18px 10px; }
.qb-done .success-check { margin: 0 auto 12px; width: 64px; height: 64px; }
.qb-done h3 { font-size: 21px; font-weight: 800; }
.qb-done p { color: var(--muted); margin-top: 6px; }

/* ============ Hero - Hızlı Teklif kartı ============ */
.hero-quote {
  position: relative; background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px; overflow: hidden;
}
.hq-glow { position: absolute; inset: -40% -30% auto auto; width: 280px; height: 280px;
  background: var(--grad); opacity: .14; filter: blur(40px); border-radius: 50%; pointer-events: none; }
.hq-head { display: flex; align-items: center; gap: 12px; position: relative; margin-bottom: 16px; }
.hq-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; flex: 0 0 auto; box-shadow: var(--shadow-green); overflow: hidden; }
.hq-emoji { font-size: 26px; }
.hq-ttl b { font-size: 18px; font-weight: 800; display: block; line-height: 1.1; }
.hq-ttl span { font-size: 12.5px; color: var(--muted); }
.hq-online { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--green-700); background: var(--mint); padding: 6px 11px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px; }
.hq-online::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(24,184,74,.6); animation: pulse 2s infinite; }
.hq-tabs { display: flex; gap: 6px; background: var(--bg-soft); padding: 5px; border-radius: 13px; margin-bottom: 18px; position: relative; }
.hq-tab { flex: 1; padding: 11px; border-radius: 9px; font-weight: 700; font-size: 14px; color: var(--muted); transition: all .2s; }
.hq-tab.active { background: #fff; color: var(--green-700); box-shadow: var(--shadow-sm); }
.hq-pane { display: none; animation: fadeUp .35s ease; position: relative; }
.hq-pane.active { display: block; }
.hq-pane .field { margin-bottom: 13px; }
.hq-kvkk { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: var(--muted); margin: 4px 0 16px; cursor: pointer; }
.hq-kvkk input { width: auto; margin-top: 2px; accent-color: var(--green); }
.hq-submit { width: 100%; }
.hq-foot { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 11.5px; color: var(--muted); font-weight: 600; }

/* belge fotoğrafı yükleme */
.hq-photo-info { font-size: 13px; color: var(--ink-soft); background: var(--mint); padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; line-height: 1.45; }
.hq-upload { display: block; border: 2px dashed var(--line); border-radius: 14px; padding: 22px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; margin-bottom: 14px; position: relative; overflow: hidden; }
.hq-upload:hover { border-color: var(--green); background: var(--bg-soft); }
.hq-upload.has-img { padding: 0; border-style: solid; border-color: var(--green); }
.hq-upload-empty { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--muted); }
.hq-upload-empty svg { width: 40px; height: 40px; color: var(--green); margin-bottom: 4px; }
.hq-upload-empty b { font-size: 15px; color: var(--ink); }
.hq-upload-empty span { font-size: 12.5px; }
.hq-preview { width: 100%; max-height: 220px; object-fit: cover; display: block; border-radius: 12px; }

/* ============ İstatistik bandı ============ */
.statsband { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.statsband-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.stat-ico { width: 54px; height: 54px; border-radius: 46% 54% 56% 44% / 52% 48% 52% 48%; background: var(--mint); color: var(--green-700); display: grid; place-items: center; }
.stat-ico svg { width: 26px; height: 26px; }
.stat b { font-size: 30px; font-weight: 800; color: var(--green-700); line-height: 1; }
.stat span { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ============ Çözüm ortakları ============ */
.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.partner {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; height: 86px;
  display: grid; place-items: center; padding: 14px; text-align: center;
  font-weight: 800; font-size: 15px; color: var(--ink-soft); letter-spacing: -.01em;
  transition: transform .25s, box-shadow .25s, border-color .25s; filter: grayscale(1); opacity: .72;
}
.partner:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--lime); filter: none; opacity: 1; color: var(--green-700); }
.partner small { display: block; font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* ============ Marka şeridi ============ */
.marquee { background: var(--green-900); color: #fff; padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 50px; white-space: nowrap; animation: scrollx 26s linear infinite; width: max-content; }
.marquee-track span { font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 12px; opacity: .92; }
.marquee-track span::before { content: "●"; color: var(--lime); font-size: 9px; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============ Ürünler (bento ızgara) ============ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 206px; gap: 18px; grid-auto-flow: dense; }
.product-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.product-card .pc-body { margin-top: auto; }
.product-card::after {
  content: ""; position: absolute; inset: auto -40% -60% auto; width: 200px; height: 200px;
  background: var(--grad-soft); border-radius: 50%; opacity: 0; transition: opacity .3s; z-index: 0;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.product-card:hover::after { opacity: 1; }
.product-card > * { position: relative; z-index: 1; }

/* bento boyutları */
.product-card.wide { grid-column: span 2; }
.product-card.feat { grid-column: span 2; grid-row: span 2; background: var(--grad); border: none; color: #fff; justify-content: flex-end; }
.product-card.feat::after { display: none; }
.product-card.feat::before { content: ""; position: absolute; inset: -30% -20% auto auto; width: 260px; height: 260px; background: rgba(255,255,255,.12); border-radius: 50%; }
.product-card.feat .product-ico { background: #fff; color: var(--green-700); width: 70px; height: 70px; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.product-card.feat h3 { font-size: 30px; }
.product-card.feat p { color: rgba(255,255,255,.92); font-size: 15.5px; max-width: 90%; }
.product-card.feat .product-link { color: #fff; }
.product-card.feat:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-ico {
  width: 60px; height: 60px; border-radius: 46% 54% 56% 44% / 52% 48% 52% 48%; background: var(--grad); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-green);
  transition: border-radius .5s ease, transform .3s ease;
}
.product-card:hover .product-ico { border-radius: 54% 46% 44% 56% / 48% 52% 48% 52%; transform: rotate(-4deg); }
.product-ico svg { width: 30px; height: 30px; }
.product-card h3 { font-size: 20px; font-weight: 800; }
.product-card p { color: var(--muted); font-size: 14.5px; margin: 9px 0 16px; }
.product-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--green-700); font-size: 14px; }
.product-link svg { width: 16px; height: 16px; transition: transform .2s; }
.product-card:hover .product-link svg { transform: translateX(4px); }

/* ============ Kampanyalar ============ */
.campaign-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.campaign-card {
  position: relative; border-radius: var(--radius); overflow: hidden; padding: 26px 22px;
  color: #fff; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--grad); box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.campaign-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.campaign-card::before { content:""; position:absolute; inset:-40% -30% auto auto; width:200px; height:200px; background:rgba(255,255,255,.14); border-radius:50%; }
.campaign-card.alt { background: linear-gradient(135deg, #0c7a2f 0%, #073f19 100%); }
.campaign-card.dark { background: linear-gradient(135deg, #102a1b 0%, #0a5f25 100%); }
.campaign-tag { position: relative; align-self: flex-start; font-size: 12px; font-weight: 700; background: rgba(255,255,255,.18); padding: 5px 12px; border-radius: 100px; margin-bottom: auto; backdrop-filter: blur(4px); }
.campaign-card .price { position: relative; font-size: 34px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.campaign-card .price small { font-size: 15px; font-weight: 600; opacity: .85; }
.campaign-card h4 { position: relative; font-size: 18px; font-weight: 800; line-height: 1.2; }
.campaign-card p { position: relative; font-size: 13.5px; opacity: .9; margin-top: 6px; }
.campaign-card .c-cta { position: relative; margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13.5px; }
.campaign-card .c-cta svg { width: 15px; height: 15px; transition: transform .2s; }
.campaign-card:hover .c-cta svg { transform: translateX(4px); }

/* ============ Müşteri yorumları ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .25s, box-shadow .25s; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-stars { display: flex; gap: 3px; color: #ffb800; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; }
.review-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 17px; flex: 0 0 auto; }
.review-author b { display: block; font-size: 15px; }
.review-author span { font-size: 13px; color: var(--muted); }

/* ============ Neden biz ============ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: grid; gap: 18px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; transition: box-shadow .25s, transform .25s; }
.why-item:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.why-item .ico { width: 46px; height: 46px; border-radius: 13px; background: var(--mint); color: var(--green-700); display: grid; place-items: center; flex: 0 0 auto; }
.why-item .ico svg { width: 24px; height: 24px; }
.why-item h4 { font-size: 17px; font-weight: 800; }
.why-item p { color: var(--muted); font-size: 14.5px; margin-top: 3px; }
.why-visual { position: relative; border-radius: var(--radius-lg); background: var(--grad); padding: 44px; color: #fff; box-shadow: var(--shadow-lg); overflow: hidden; }
.why-visual::before { content: ""; position: absolute; inset: -40% -30% auto auto; width: 320px; height: 320px; background: rgba(255,255,255,.12); border-radius: 50%; }
.why-visual h3 { position: relative; font-size: 26px; font-weight: 800; line-height: 1.2; }
.why-visual p { position: relative; opacity: .92; margin: 14px 0 26px; }
.why-stats { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-stats .s { background: rgba(255,255,255,.14); border-radius: 14px; padding: 18px; backdrop-filter: blur(4px); }
.why-stats .s b { font-size: 30px; font-weight: 800; display: block; }
.why-stats .s span { font-size: 13px; opacity: .9; }

/* ============ Teklif Sihirbazı ============ */
.wizard-section { position: relative; }
.wizard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; overflow: hidden;
}
.wizard-head { background: var(--grad); color: #fff; padding: 26px 32px; position: relative; overflow: hidden; }
.wizard-head::before { content:""; position:absolute; inset:-50% -20% auto auto; width:240px; height:240px; background:rgba(255,255,255,.12); border-radius:50%; }
.wizard-head h3 { position: relative; font-size: 22px; font-weight: 800; }
.wizard-head p { position: relative; opacity: .9; font-size: 14px; margin-top: 4px; }
.wizard-progress { display: flex; gap: 8px; margin-top: 18px; position: relative; }
.wizard-progress .dot { height: 6px; flex: 1; border-radius: 100px; background: rgba(255,255,255,.3); overflow: hidden; }
.wizard-progress .dot i { display: block; height: 100%; width: 0; background: #fff; border-radius: 100px; transition: width .4s ease; }
.wizard-progress .dot.done i { width: 100%; }
.wizard-progress .dot.active i { width: 100%; }
.wizard-body { padding: 32px; }
.wizard-step { display: none; animation: fadeUp .4s ease; }
.wizard-step.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.step-label { font-size: 13px; font-weight: 700; color: var(--green-700); text-transform: uppercase; letter-spacing: .06em; }
.step-q { font-size: 22px; font-weight: 800; margin: 6px 0 22px; letter-spacing: -.01em; }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.choice {
  border: 1.5px solid var(--line); border-radius: 14px; padding: 18px 14px; text-align: center;
  transition: all .2s; background: #fff; position: relative;
}
.choice:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.choice.selected { border-color: var(--green); background: var(--mint); box-shadow: 0 0 0 3px var(--lime-soft); }
.choice .c-ico { width: 46px; height: 46px; margin: 0 auto 10px; border-radius: 13px; background: var(--mint); color: var(--green-700); display: grid; place-items: center; transition: all .2s; }
.choice.selected .c-ico { background: var(--grad); color: #fff; }
.choice .c-ico svg { width: 24px; height: 24px; }
.choice b { font-size: 14.5px; font-weight: 700; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--bg-soft); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 5px; }
.field.err input, .field.err select { border-color: #e5484d; background: #fff5f5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.wizard-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 14px; }
.wizard-foot .btn-back { color: var(--muted); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.wizard-foot .btn-back:hover { color: var(--ink); }

/* özet / başarı */
.summary-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 20px; margin-bottom: 8px; }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--muted); }
.summary-row b { font-weight: 700; }

.wizard-success { text-align: center; padding: 16px 0; }
.success-check { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: var(--shadow-green); animation: pop .5s cubic-bezier(.2,1.4,.4,1); }
.success-check svg { width: 44px; height: 44px; color: #fff; }
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.wizard-success h3 { font-size: 26px; font-weight: 800; }
.wizard-success p { color: var(--muted); margin: 10px auto 0; max-width: 420px; }
.notif-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; padding: 11px 18px; border-radius: 100px; background: var(--mint); color: var(--green-800); font-weight: 700; font-size: 14px; }
.notif-status .spin { width: 16px; height: 16px; border: 2px solid var(--lime); border-top-color: var(--green-700); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.notif-status.ok { background: #e7f9ee; }
.notif-status.fail { background: #fff0f0; color: #c5292d; }

/* ============ Beni Arayın ============ */
.callback-band { background: var(--green-900); color: #fff; border-radius: var(--radius-lg); padding: 50px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.callback-band::before { content:""; position:absolute; inset:auto auto -50% -10%; width:340px; height:340px; background: var(--grad); opacity:.5; filter: blur(50px); border-radius:50%; }
.callback-band h3 { position: relative; font-size: clamp(24px,3vw,32px); font-weight: 800; line-height: 1.15; }
.callback-band p { position: relative; opacity: .85; margin-top: 12px; }
.callback-form { position: relative; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 24px; backdrop-filter: blur(6px); }
.callback-form .field input, .callback-form .field select { background: rgba(255,255,255,.95); border-color: transparent; }
.callback-form .field label { color: rgba(255,255,255,.9); }

/* ============ SSS ============ */
.faq-grid { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; padding: 20px 22px; font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { width: 28px; height: 28px; border-radius: 8px; background: var(--mint); color: var(--green-700); display: grid; place-items: center; flex: 0 0 auto; transition: transform .3s, background .2s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--grad); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ============ Footer ============ */
.footer { background: var(--ink); color: #cdd8d0; padding: 64px 0 28px; position: relative; }
.footer-wave { position: absolute; left: 0; right: 0; top: -1px; transform: translateY(-99%); width: 100%; height: 80px; display: block; }
.footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p { font-size: 14.5px; line-height: 1.7; }
.footer h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a { font-size: 14.5px; color: #aebbb2; transition: color .2s; }
.footer ul a:hover { color: var(--lime); }
.footer-contact li { display: flex; gap: 11px; font-size: 14.5px; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--lime); flex: 0 0 auto; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--grad); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #8b9990; }

/* ============ Yüzen aksiyonlar (WhatsApp + chatbot) ============ */
.fab-stack { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-lg); transition: transform .2s; position: relative;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
.fab-wa { background: #25d366; color: #fff; }
.fab-chat { background: var(--grad); color: #fff; }
.fab-badge { position: absolute; top: -3px; right: -3px; width: 22px; height: 22px; border-radius: 50%; background: #ff4757; color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; border: 2px solid #fff; }
.fab-pulse::after { content:""; position:absolute; inset:0; border-radius:50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ============ Chatbot penceresi ============ */
.chat-window {
  position: fixed; right: 22px; bottom: 96px; z-index: 95; width: 380px; max-width: calc(100vw - 44px);
  height: 560px; max-height: calc(100vh - 130px); background: #fff; border-radius: 22px;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none; transform-origin: bottom right;
  transition: transform .28s cubic-bezier(.2,1,.3,1), opacity .25s;
}
.chat-window.open { transform: none; opacity: 1; pointer-events: auto; }
.chat-head { background: var(--grad); color: #fff; padding: 18px 20px; display: flex; align-items: center; gap: 13px; }
.chat-avatar { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; font-size: 24px; border: 2px solid rgba(255,255,255,.4); flex:0 0 auto; }
.chat-head .ci b { font-size: 16px; display: block; }
.chat-head .ci span { font-size: 12.5px; opacity: .9; display: flex; align-items: center; gap: 6px; }
.chat-head .ci span::before { content:""; width:8px; height:8px; border-radius:50%; background:#7CFFB0; box-shadow:0 0 0 0 rgba(124,255,176,.6); animation: pulse 2s infinite; }
.chat-close { margin-left: auto; width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.15); display: grid; place-items: center; color: #fff; }
.chat-close svg { width: 18px; height: 18px; }
.chat-body { flex: 1; overflow-y: auto; padding: 20px; background: var(--bg-soft); display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 84%; padding: 12px 15px; border-radius: 16px; font-size: 14.5px; line-height: 1.5; animation: fadeUp .3s ease; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; align-self: flex-start; box-shadow: var(--shadow-sm); }
.chat-msg.user { background: var(--grad); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.chat-typing { display: inline-flex; gap: 4px; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; border-bottom-left-radius: 5px; align-self: flex-start; }
.chat-typing i { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
.chat-typing i:nth-child(2) { animation-delay: .2s; }
.chat-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,60%,100% { opacity: .25; } 30% { opacity: 1; } }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--line); background: #fff; }
.chat-chip { border: 1.5px solid var(--green); color: var(--green-700); background: #fff; border-radius: 100px; padding: 9px 15px; font-size: 13.5px; font-weight: 700; transition: all .18s; }
.chat-chip:hover { background: var(--grad); color: #fff; border-color: transparent; }
.chat-input { display: flex; gap: 9px; padding: 12px 14px; border-top: 1px solid var(--line); background: #fff; align-items: center; }
.chat-attach { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; cursor: pointer; flex: 0 0 auto; color: var(--green-700); transition: background .2s; }
.chat-attach:hover { background: var(--mint); }
.chat-attach svg { width: 20px; height: 20px; }
.chat-msg.photo { padding: 6px; }
.chat-msg.photo img { width: 180px; max-width: 100%; border-radius: 12px; display: block; }
.chat-input input[type="text"] { flex: 1; border: 1.5px solid var(--line); border-radius: 100px; padding: 12px 16px; font-family: inherit; font-size: 14px; background: var(--bg-soft); }
.chat-input input:focus { outline: none; border-color: var(--green); background: #fff; }
.chat-send { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.chat-send svg { width: 20px; height: 20px; }

/* ============ Toast ============ */
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 120%); z-index: 200; background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 100px; font-weight: 600; font-size: 14.5px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; transition: transform .4s cubic-bezier(.2,1,.3,1); }
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: var(--lime); }

/* ============ Reveal animasyonu ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ Mobil menü ============ */
.mobile-nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; z-index: 99; box-shadow: var(--shadow); padding: 16px 22px 24px; display: none; flex-direction: column; gap: 4px; transform: translateY(-12px); opacity: 0; transition: opacity .25s, transform .25s; }
.mobile-nav.open { display: flex; opacity: 1; transform: none; }
.mobile-nav a { padding: 14px 8px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 14px; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .header-cta > .btn-primary { display: none; }
  .brand small { white-space: nowrap; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-quote { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-top { grid-template-columns: 1fr; gap: 24px; }
  .hero-figure { min-height: 300px; }
  .hf-ring { width: 290px; height: 290px; }
  .hf-stage { width: 250px; height: 290px; }
  .hf-emoji { font-size: 104px; }
  .qb-fields { grid-template-columns: 1fr 1fr; }
  .qb-submit { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; gap: 34px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
  .product-card.feat h3 { font-size: 24px; }
  .campaign-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .callback-band { grid-template-columns: 1fr; padding: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .products-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .product-card.feat, .product-card.wide { grid-column: auto; grid-row: auto; }
  .product-card { min-height: 180px; }
  .campaign-grid { grid-template-columns: 1fr; }
  .statsband-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .hq-pane .field-row, .photo-form .field-row { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-badges { gap: 8px 14px; }
  .qb-fields { grid-template-columns: 1fr; }
  .qb-photo { width: 100%; height: 46px; }
  .qb-submit { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .wizard-body { padding: 22px; }
  .callback-band { padding: 26px; }
  .float-card { display: none; }
}
