/* ============================================================
   RegMachina — Kurumsal RegTech / Compliance Web Sitesi
   Saf HTML/CSS/JS · Modern · Hibrit (koyu hero + açık içerik)
   ============================================================ */

/* ---------- Tasarım Token'ları ---------- */
:root {
  /* Marka renkleri */
  --navy-900: #070b16;
  --navy-800: #0a0f1f;
  --navy-700: #0e1530;
  --navy-600: #131c3d;

  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-soft-2: #eef2fb;

  /* Aksanlar */
  --blue: #2563eb;
  --cyan: #06b6d4;
  --violet: #7c3aed;
  --emerald: #10b981;
  --amber: #f59e0b;

  /* Marka gradyanı */
  --grad-brand: linear-gradient(120deg, #3b82f6 0%, #06b6d4 55%, #6366f1 100%);
  --grad-soft: linear-gradient(120deg, #2563eb, #7c3aed);

  /* Ürün aksanları */
  --acc-fatca: #38bdf8;
  --acc-dpo: #34d399;
  --acc-wexply: #a78bfa;

  /* Tipografi & ölçü */
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, .06);
  --shadow: 0 18px 50px -20px rgba(15, 23, 42, .25);
  --shadow-lg: 0 40px 90px -30px rgba(15, 23, 42, .45);
  --maxw: 1180px;
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
section { position: relative; }

/* ---------- Yardımcılar ---------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--grad-soft); border-radius: 2px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Butonlar ---------- */
.btn {
  --bg: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  cursor: pointer; border: 1px solid transparent; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--grad-soft); color: #fff;
  box-shadow: 0 12px 30px -10px rgba(37, 99, 235, .6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -12px rgba(37, 99, 235, .7); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav.scrolled {
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--line); box-shadow: 0 6px 24px -16px rgba(15,23,42,.4);
}
/* Koyu hero üstündeyken (sayfa tepesinde) açık metin */
.nav:not(.scrolled) .nav-link,
.nav:not(.scrolled) .brand-name { color: #fff; }
.nav:not(.scrolled) .nav-link:hover { color: #fff; }
.nav.scrolled .nav-link, .nav.scrolled .brand-name { color: var(--ink); }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-logo {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--grad-brand); position: relative; overflow: hidden;
  box-shadow: 0 8px 22px -8px rgba(37,99,235,.7);
}
.brand-logo::before, .brand-logo::after {
  content: ""; position: absolute; background: rgba(255,255,255,.92); border-radius: 2px;
}
.brand-logo::before { width: 4px; height: 16px; left: 11px; top: 11px; box-shadow: 7px 0 0 rgba(255,255,255,.92), 14px 0 0 rgba(255,255,255,.55); }
.brand-logo::after { width: 16px; height: 4px; left: 11px; top: 23px; box-shadow: 0 -7px 0 rgba(255,255,255,.55); }
.brand-name { font-size: 1.18rem; letter-spacing: -.02em; }
.brand-name b { font-weight: 800; }
.brand-name span { font-weight: 800; color: var(--cyan); }

/* Logo görseli (beyaz rozet — her zeminde okunaklı) */
.brand-img { height: 42px; width: auto; display: block; border-radius: 10px; box-shadow: 0 6px 20px -10px rgba(0,0,0,.4); }
.footer .brand-img { height: 46px; }
@media (max-width: 560px) { .brand-img { height: 36px; } }

/* Teknogirişim Rozeti görseli */
.badge-img { display: block; height: 66px; width: auto; border-radius: 10px; background: #fff; }
.footer .badge-img { margin-top: 20px; height: 74px; box-shadow: 0 6px 20px -10px rgba(0,0,0,.4); }
.badge-card {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 28px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.badge-card .badge-img { height: 92px; }
.badge-card small { color: var(--muted); font-size: .85rem; font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: .96rem;
  color: var(--ink-soft); transition: color .2s, background .2s;
}
.nav.scrolled .nav-link:hover { background: var(--bg-soft-2); color: var(--blue); }
.nav:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,.12); }

/* Dropdown */
.has-drop { position: relative; }
.drop-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.drop-toggle svg { transition: transform .25s; }
.has-drop:hover .drop-toggle svg { transform: rotate(180deg); }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 340px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transition: .25s;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-item { display: flex; gap: 12px; padding: 12px; border-radius: 12px; transition: background .2s; }
.drop-item:hover { background: var(--bg-soft); }
.drop-ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; color: #fff; font-size: 1.1rem; }
.drop-ic.fatca { background: linear-gradient(135deg,#0ea5e9,#38bdf8); }
.drop-ic.dpo { background: linear-gradient(135deg,#059669,#34d399); }
.drop-ic.wexply { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.drop-item b { display: block; font-size: .95rem; color: var(--ink); }
.drop-item small { color: var(--muted); font-size: .82rem; line-height: 1.4; }

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

/* Mobil menü yalnızca dar ekranda görünür (masaüstünde gizli) */
.nav-menu.mobile { display: none; }

/* Hamburger */
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s; }
.nav:not(.scrolled) .burger { color: #fff; }
.nav.scrolled .burger { color: var(--ink); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding: calc(var(--nav-h) + 70px) 0 110px;
  background: radial-gradient(1200px 600px at 80% -10%, #1e2a52 0%, transparent 60%),
              radial-gradient(900px 500px at 0% 10%, #0e2440 0%, transparent 55%),
              linear-gradient(180deg, var(--navy-900), var(--navy-700));
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(80% 70% at 50% 0%, #000 0%, transparent 75%);
}
.hero .wrap { position: relative; z-index: 2; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 1; pointer-events: none; }
.orb-1 { width: 420px; height: 420px; background: #2563eb; top: -120px; right: -60px; animation: float 14s ease-in-out infinite; }
.orb-2 { width: 360px; height: 360px; background: #06b6d4; bottom: -140px; left: -80px; animation: float 18s ease-in-out infinite reverse; }
.orb-3 { width: 280px; height: 280px; background: #7c3aed; top: 40%; left: 55%; opacity: .35; animation: float 20s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(30px,-40px); } }

.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: .82rem; font-weight: 600; color: #cbd5e1; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(16,185,129,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(16,185,129,.55);} 70%{ box-shadow: 0 0 0 10px rgba(16,185,129,0);} 100%{ box-shadow: 0 0 0 0 rgba(16,185,129,0);} }
.hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); margin-top: 22px; }
.hero h1 .text-grad { background: linear-gradient(120deg,#67e8f9,#a5b4fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #c7d2e4; max-width: 560px; margin: 18px 0 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; color: #9fb0cc; font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--cyan); flex: none; }

/* Hero görsel paneli (cam/dashboard mock) */
.hero-visual { position: relative; }
.glass-card {
  background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16); border-radius: 22px; padding: 22px;
  backdrop-filter: blur(14px); box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
  animation: rise 1s cubic-bezier(.16,.84,.44,1) both;
}
.gc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.gc-dots { display: flex; gap: 6px; }
.gc-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.gc-dots i:nth-child(1){ background:#ff5f57; } .gc-dots i:nth-child(2){ background:#febc2e; } .gc-dots i:nth-child(3){ background:#28c840; }
.gc-title { margin-left: auto; font-size: .78rem; color: #9fb0cc; font-weight: 600; }
.gc-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; background: rgba(255,255,255,.05); margin-bottom: 10px; }
.gc-row .ic { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; font-size: .95rem; }
.gc-row b { color: #fff; font-size: .9rem; }
.gc-row small { display: block; color: #9fb0cc; font-size: .76rem; }
.gc-row .stat { margin-left: auto; font-weight: 800; font-size: 1rem; }
.gc-bar { height: 8px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 14px; }
.gc-bar i { display: block; height: 100%; border-radius: 99px; background: var(--grad-brand); width: 0; transition: width 1.6s ease; }
.float-chip {
  position: absolute; background: #fff; color: var(--ink); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); font-weight: 700; font-size: .85rem; display: flex; align-items: center; gap: 10px;
}
.float-chip small { display: block; color: var(--muted); font-weight: 600; font-size: .72rem; }
.float-chip .badge-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; }
.fc-1 { top: -22px; right: -14px; animation: float 6s ease-in-out infinite; }
.fc-2 { bottom: -24px; left: -18px; animation: float 7s ease-in-out infinite reverse; }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   İSTATİSTİK ŞERİDİ
   ============================================================ */
.stats { background: var(--navy-800); color: #fff; padding: 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat-cell:last-child { border-right: 0; }
.stat-num { font-size: clamp(2rem,3.4vw,2.8rem); font-weight: 800; background: linear-gradient(120deg,#67e8f9,#a5b4fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: #9fb0cc; font-size: .92rem; margin-top: 4px; }

/* ============================================================
   ÜRÜN VİTRİNİ (kartlar)
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.prod-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; overflow: hidden; transition: transform .35s, box-shadow .35s, border-color .35s;
  display: flex; flex-direction: column;
}
.prod-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--accent, var(--grad-brand)); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.prod-card:hover::before { transform: scaleX(1); }
.prod-ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; font-size: 1.5rem; color: #fff; margin-bottom: 18px; box-shadow: var(--shadow); }
.prod-ic.fatca { background: linear-gradient(135deg,#0284c7,#38bdf8); }
.prod-ic.dpo { background: linear-gradient(135deg,#059669,#34d399); }
.prod-ic.wexply { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.prod-kicker { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.prod-card h3 { font-size: 1.35rem; margin: 4px 0 8px; }
.prod-card .pos { color: var(--ink-soft); font-size: .98rem; }
.prod-feat { margin: 18px 0 22px; display: grid; gap: 10px; }
.prod-feat li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.prod-feat svg { flex: none; margin-top: 3px; color: var(--blue); }
.prod-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); }
.prod-link .arr { transition: transform .25s; }
.prod-card:hover .prod-link .arr { transform: translateX(5px); }

/* ============================================================
   ÖZELLİK / DEĞER KARTLARI (genel)
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 22px; }
.feat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feat-ic {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-soft-2); color: var(--blue); margin-bottom: 16px; font-size: 1.2rem;
}
.feat-card h3 { font-size: 1.12rem; }
.feat-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* Numaralı süreç adımları */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-size: 2.4rem; font-weight: 800; background: var(--grad-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 8px;
}
.step h3 { font-size: 1.08rem; }
.step p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ============================================================
   "NEDEN BİZ" — değer maddeleri
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 22px; }
.why-item { display: flex; gap: 16px; }
.why-item .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--grad-soft); color: #fff; }
.why-item h3 { font-size: 1.06rem; margin-bottom: 4px; }
.why-item p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ============================================================
   KARŞILAŞTIRMA TABLOSU
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.compare thead th { background: var(--bg-soft); font-weight: 700; color: var(--ink); }
table.compare thead th:last-child { background: var(--navy-800); color: #fff; }
table.compare td:last-child { background: rgba(37,99,235,.05); font-weight: 600; color: var(--ink); }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare td .yes { color: var(--emerald); font-weight: 700; }
table.compare td .no { color: #ef4444; font-weight: 700; }

/* ============================================================
   SSS (accordion)
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .25s; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-size: 1.02rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 14px; font-family: inherit; }
.faq-q .pm { margin-left: auto; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft-2); color: var(--blue); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; font-size: 1.1rem; }
.faq-item.open .faq-q .pm { transform: rotate(135deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-soft); font-size: .96rem; }

/* ============================================================
   YOL HARİTASI (timeline)
   ============================================================ */
.timeline { position: relative; max-width: 820px; margin-inline: auto; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--blue),var(--violet)); }
.tl-item { position: relative; padding: 0 0 30px 28px; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.tl-item.future::before { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,58,237,.12); }
.tl-date { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.tl-item.future .tl-date { color: var(--violet); }
.tl-item h3 { font-size: 1.05rem; margin: 4px 0; }
.tl-item p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ============================================================
   EKİP
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; transition: transform .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-av { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-size: 1.8rem; font-weight: 800; color: #fff; background: var(--grad-soft); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-role { color: var(--blue); font-weight: 700; font-size: .9rem; margin-bottom: 10px; }
.team-card p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* ============================================================
   ÜRÜN HERO (alt sayfalar)
   ============================================================ */
.phero { position: relative; padding: calc(var(--nav-h) + 80px) 0 90px; color: #fff; overflow: hidden;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-700)); }
.phero::after { content:""; position:absolute; inset:0; background-image:
  linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:46px 46px; -webkit-mask-image: radial-gradient(70% 80% at 30% 0%,#000,transparent 75%); mask-image: radial-gradient(70% 80% at 30% 0%,#000,transparent 75%); }
.phero .wrap { position: relative; z-index: 2; max-width: 820px; }
.phero .crumb { font-size: .85rem; color: #9fb0cc; margin-bottom: 20px; }
.phero .crumb a:hover { color: #fff; }
.phero .tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: 18px;
}
.phero.fatca .tag { background: linear-gradient(135deg,#0284c7,#38bdf8); }
.phero.dpo .tag { background: linear-gradient(135deg,#059669,#34d399); }
.phero.wexply .tag { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.phero h1 { font-size: clamp(2.1rem,4.4vw,3.4rem); }
.phero .lead { font-size: 1.18rem; color: #c7d2e4; max-width: 640px; margin: 14px 0 30px; }
.phero .orb-1 { background:#0ea5e9; } .phero.dpo .orb-1 { background:#10b981; } .phero.wexply .orb-1 { background:#8b5cf6; }

/* Sorun listesi ("tanıdık geldi mi") */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 18px; }
.pain { background: #fff; border: 1px solid var(--line); border-left: 4px solid #ef4444; border-radius: var(--radius-sm); padding: 22px 24px; }
.pain h3 { font-size: 1.02rem; display: flex; gap: 10px; align-items: center; }
.pain p { color: var(--ink-soft); font-size: .92rem; margin: 6px 0 0; }

/* Modül listesi */
.mod-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 18px; }
.mod { display: flex; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .3s, box-shadow .3s; }
.mod:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.mod .ic { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--bg-soft-2); color: var(--blue); }
.mod b { display: block; font-size: 1rem; margin-bottom: 3px; }
.mod p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* Güvenlik şeridi */
.sec-band { background: var(--navy-800); color: #fff; border-radius: var(--radius); padding: 40px; }
.sec-band h2 { color: #fff; }
.sec-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 14px; margin-top: 18px; }
.sec-list li { display: flex; gap: 10px; align-items: flex-start; color: #c7d2e4; font-size: .94rem; }
.sec-list svg { flex: none; margin-top: 3px; color: var(--cyan); }

/* ============================================================
   USP / ÖNE ÇIKAN VURGU KUTUSU
   ============================================================ */
.usp {
  position: relative; overflow: hidden; color: #fff; border-radius: var(--radius);
  background: radial-gradient(600px 300px at 85% -30%, #1e3a8a 0%, transparent 60%),
              linear-gradient(120deg, var(--navy-800), var(--navy-700));
  padding: clamp(30px,4vw,46px); border: 1px solid rgba(255,255,255,.08);
}
.usp .key { display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #67e8f9; }
.usp h2 { color: #fff; font-size: clamp(1.5rem,2.8vw,2.1rem); margin: 14px 0 12px; }
.usp p { color: #c7d2e4; font-size: 1.05rem; margin: 0; max-width: 760px; }
.usp .quote { font-style: normal; }

/* Öne çıkan modül kartları (⭐) */
.feat-mods { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 26px; }
.feat-mod {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; border-top: 4px solid var(--emerald); transition: transform .3s, box-shadow .3s;
}
.feat-mod:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feat-mod .badge-feat {
  position: absolute; top: 18px; right: 18px; display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg,#f59e0b,#fbbf24); color: #4a2c00; font-size: .72rem; font-weight: 800;
  padding: 5px 11px; border-radius: 999px; letter-spacing: .04em;
}
.feat-mod .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; font-size: 1.3rem; color: #fff; background: linear-gradient(135deg,#059669,#34d399); margin-bottom: 14px; }
.feat-mod h3 { font-size: 1.18rem; }
.feat-mod p { color: var(--ink-soft); font-size: .96rem; }
.feat-mod ul { display: grid; gap: 8px; margin-top: 10px; }
.feat-mod ul li { display: flex; gap: 9px; font-size: .92rem; color: var(--ink-soft); }
.feat-mod ul svg { flex: none; margin-top: 3px; color: var(--emerald); }

/* Numaralı modül kartları + fayda satırı */
.mod-num { counter-reset: modn; }
.mod-num .mod { flex-direction: column; gap: 0; }
.mod-num .mod .mhead { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.mod-num .mod .num {
  counter-increment: modn; width: 34px; height: 34px; flex: none; border-radius: 9px;
  display: grid; place-items: center; font-weight: 800; font-size: .95rem; color: #fff;
  background: linear-gradient(135deg,#059669,#34d399);
}
.mod-num .mod .num::before { content: counter(modn); }
.mod-num .mod b { font-size: 1.04rem; }
.mod-num .mod .star { color: #f59e0b; font-size: 1rem; }
.mod-num .mod p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 12px; }
.mod-num .mod .fayda {
  margin-top: auto; display: flex; gap: 8px; align-items: flex-start; font-size: .88rem; color: var(--emerald);
  background: rgba(16,185,129,.07); border-radius: 10px; padding: 10px 12px; font-weight: 600;
}
.mod-num .mod .fayda svg { flex: none; margin-top: 2px; }

/* Dikey akış diyagramı (üç ilke, aşağı oklarla) */
.flow { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 460px; margin: 30px auto 52px; }
.flow-chip {
  width: 100%; text-align: center; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 24px; font-weight: 800; font-size: 1.08rem; color: var(--ink);
  box-shadow: var(--shadow-sm); position: relative; border-top: 4px solid var(--emerald);
  transition: transform .3s, box-shadow .3s;
}
.flow-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.flow-chip small { display: block; font-weight: 600; font-size: .82rem; color: var(--muted); margin-top: 4px; }
.flow-arrow { color: var(--emerald); line-height: 1; display: grid; place-items: center; }
.flow-arrow svg { display: block; }

/* İçi vurgulu callout kutusu */
.callout {
  display: flex; gap: 16px; align-items: flex-start; max-width: 920px; margin: 30px auto 0;
  background: var(--bg-soft-2); border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: var(--radius); padding: 22px 26px;
}
.callout .ic { font-size: 1.4rem; flex: none; }
.callout p { margin: 0; color: var(--ink); font-size: 1rem; }

/* ============================================================
   WEXPLY — "DÖRT MOTOR" KARTLARI
   ============================================================ */
.engine-grid { display: grid; gap: 24px; }
.engine {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  border-left: 4px solid var(--violet); padding: clamp(24px,3vw,34px); transition: transform .3s, box-shadow .3s;
}
.engine:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.engine .ehead { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.engine .enum {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: 1.25rem; background: linear-gradient(135deg,#7c3aed,#a78bfa);
}
.engine h3 { font-size: 1.3rem; margin: 0; }
.engine .parts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.epart .lbl { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); margin-bottom: 5px; }
.epart p { margin: 0; color: var(--ink-soft); font-size: .94rem; line-height: 1.6; }
.epart.result { grid-column: 1 / -1; background: rgba(124,58,237,.07); border-radius: 12px; padding: 16px 18px; }
.epart.result .lbl { color: #6d28d9; }
.epart.result p { color: var(--ink); font-weight: 600; }

/* Kazanım rozetleri */
.wins { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.win {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 11px 18px; font-size: .92rem; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm);
}
.win svg { color: var(--violet); flex: none; }

/* 4 sütunlu kıyas tablosunda Wexply sütununu vurgula */
table.compare.wx thead th:last-child { background: var(--bg-soft); color: var(--ink); }
table.compare.wx thead th:nth-child(2) { background: linear-gradient(135deg,#7c3aed,#a78bfa); color: #fff; }
table.compare.wx td:last-child { background: transparent; font-weight: 400; color: var(--ink-soft); }
table.compare.wx td:nth-child(2) { background: rgba(124,58,237,.06); font-weight: 700; color: var(--ink); }
table.compare.wx td { text-align: center; }
table.compare.wx td:first-child, table.compare.wx th:first-child { text-align: left; }

/* ============================================================
   CTA BÖLÜMÜ
   ============================================================ */
.cta {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: radial-gradient(800px 400px at 50% -20%, #1e3a8a 0%, transparent 60%),
              linear-gradient(120deg, var(--navy-800), var(--navy-700));
  border-radius: 26px; padding: clamp(48px,7vw,80px) 24px;
}
.cta .orb { z-index: 0; }
.cta-inner { position: relative; z-index: 2; max-width: 660px; margin-inline: auto; }
.cta h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); }
.cta p { color: #c7d2e4; font-size: 1.08rem; }
.cta .hero-cta { justify-content: center; margin-top: 26px; }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; transition: transform .3s, box-shadow .3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-card .ic { width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--grad-soft); color: #fff; }
.info-card b { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.info-card a, .info-card span { color: var(--ink); font-weight: 600; font-size: 1.02rem; word-break: break-word; }
.info-card a:hover { color: var(--blue); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: .96rem; background: var(--bg-soft); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.field textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: #9fb0cc; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; margin-bottom: 18px; }
.footer a { display: block; padding: 5px 0; color: #9fb0cc; font-size: .92rem; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer .brand-name { color: #fff; }
.footer .about { font-size: .92rem; line-height: 1.7; max-width: 320px; margin-top: 16px; }
.foot-addr { display: block; padding: 5px 0; font-size: .8rem; line-height: 1.6; color: #9fb0cc; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem; }

/* ============================================================
   SCROLL REVEAL ANİMASYONLARI
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* Scroll ilerleme çubuğu */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-brand); transition: width .1s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats .grid { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 820px) {
  .nav-menu, .nav-cta .btn-outline { display: none; }
  .burger { display: block; }
  .nav-menu.mobile {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: fixed; top: var(--nav-h); left: 0; right: 0; padding: 16px 20px 26px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .28s;
  }
  body.menu-open .nav-menu.mobile { transform: none; opacity: 1; visibility: visible; }
  .nav-menu.mobile .nav-link { color: var(--ink); padding: 14px 16px; border-radius: 12px; }
  .nav-menu.mobile .nav-link:hover { background: var(--bg-soft); }
  .nav-menu.mobile .drop { position: static; width: 100%; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 0 12px; }
  .has-drop .drop-toggle svg { display: none; }
  .prod-grid { grid-template-columns: 1fr; }
  .feat-mods { grid-template-columns: 1fr; }
  .engine .parts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-cta .btn, .cta .btn { width: 100%; }
  .float-chip { display: none; }
}

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