/*
 * OFFICIAL SITE ONLY: https://shield.tokdijital.com
 * Bu stil dosyası izinsiz kopyalanmıştır / Unauthorized copy.
 * Resmi site / Official: https://shield.tokdijital.com
 */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --bg-warm: #fff8f3;
  --text: #1e1f24;
  --muted: #667085;
  --line: #e7e8ec;
  --orange: #e85d04;
  --orange-dark: #c94d00;
  --orange-soft: rgba(232, 93, 4, 0.10);
  --ok: #168a45;
  --dark: #17181c;
  --shadow: 0 12px 32px rgba(23, 24, 28, 0.07);
  --radius: 14px;
  --font: "Poppins", system-ui, sans-serif;
  --display: "Poppins", system-ui, sans-serif;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
h1, h2, h3, strong { color: var(--text); }

.wrap {
  width: min(var(--container), calc(100% - 2.3rem));
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

/* —— NAV —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: max(1.15rem, calc((100% - var(--container)) / 2));
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.nav.is-solid {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(23,24,28,.04);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-weight: 700;
  color: var(--text);
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.nav-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(232, 93, 4, 0.18);
}
.nav-brand small {
  display: block;
  margin-top: .12rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 500;
  font-size: .92rem;
  color: var(--muted);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--text); }
.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .72rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-fill,
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(232, 93, 4, 0.25);
}
.btn-fill:hover,
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: #cfd2d9; }
.btn-lg { padding: .9rem 1.4rem; font-size: .98rem; }

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
}
.nav-end {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.lang-switch-mobile { display: none; }
.nav-burger span {
  width: 16px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* CRITICAL: never let drawer show on desktop / when hidden */
.nav-drawer {
  display: none;
}
.nav-drawer:not([hidden]) {
  display: none;
}
@media (max-width: 900px) {
  .nav-drawer:not([hidden]) {
    display: grid;
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 12px;
    right: 12px;
    z-index: 60;
    gap: 4px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-drawer a {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text);
  }
  .nav-drawer a:hover { background: var(--bg-soft); }
  .nav-drawer .nav-cta { text-align: center; margin-top: 4px; }
  .nav-links { display: none; }
  .nav-end { display: inline-flex; }
  .lang-switch-mobile { display: inline-flex; }
  .nav-burger { display: inline-flex; }
}

/* —— HERO —— */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(900px 420px at 90% -10%, var(--orange-soft), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  overflow-x: clip;
  overflow-y: visible;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 -40% 35%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(232,93,4,.08), transparent 70%);
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

/* Shield Intel compact badge — pill-stack ile aynı hiza/aralık */
.intel-orbit {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: .48rem;
  padding: .4rem .48rem .4rem .4rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #17181c 0%, #25272e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 6px 16px rgba(23, 24, 28, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  animation: intelOrbitIn .75s var(--ease) both;
}
.intel-orbit:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 93, 4, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 18px rgba(232, 93, 4, 0.16);
}
.intel-orbit:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.intel-beta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .2rem .4rem;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #17181c;
  background: linear-gradient(135deg, #ffb020, #e85d04);
}
.intel-orbit-copy {
  display: grid;
  gap: .02rem;
  min-width: 0;
  flex: 1 1 auto;
}
.intel-orbit-copy strong {
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  white-space: nowrap;
}
.intel-orbit-copy small {
  color: rgba(255,255,255,.55);
  font-size: .64rem;
  line-height: 1.3;
  white-space: nowrap;
}

/* Sağ uç: küçük “akıllı AI” nabız / radar */
.intel-ai {
  position: relative;
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  margin-right: .08rem;
}
.intel-ai-core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd28a, #e85d04 70%);
  box-shadow: 0 0 8px rgba(232, 93, 4, 0.65);
  animation: intelAiPulse 1.8s ease-in-out infinite;
}
.intel-ai-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 93, 4, 0.55);
  animation: intelAiRipple 2.2s ease-out infinite;
}
.intel-ai-ring-2 {
  inset: 0;
  border-color: rgba(255, 176, 32, 0.35);
  animation-delay: 1.1s;
}
.intel-ai-scan {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 260deg,
    rgba(255, 208, 128, 0.75) 300deg,
    transparent 340deg
  );
  animation: intelAiScan 2.4s linear infinite;
  opacity: .85;
  mask-image: radial-gradient(circle, transparent 42%, #000 48%, #000 72%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle, transparent 42%, #000 48%, #000 72%, transparent 78%);
}
@keyframes intelAiPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.88); opacity: .85; }
}
@keyframes intelAiRipple {
  0% { transform: scale(.72); opacity: .7; }
  100% { transform: scale(1.15); opacity: 0; }
}
@keyframes intelAiScan {
  to { transform: rotate(360deg); }
}
@keyframes intelOrbitIn {
  from { opacity: 0; transform: translateY(6px) scale(.98); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 560px) {
  .intel-orbit {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: center;
    gap: .55rem;
    padding: .55rem .6rem .55rem .55rem;
    border-radius: 18px;
  }
  .intel-orbit-copy {
    flex: 1 1 auto;
    min-width: 0;
    gap: .15rem;
  }
  .intel-orbit-copy strong,
  .intel-orbit-copy small {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
  }
  .intel-orbit-copy strong {
    font-size: .82rem;
    line-height: 1.3;
  }
  .intel-orbit-copy small {
    font-size: .7rem;
    line-height: 1.35;
    color: rgba(255,255,255,.62);
  }
}
@media (prefers-reduced-motion: reduce) {
  .intel-ai-core,
  .intel-ai-ring,
  .intel-ai-scan,
  .intel-orbit { animation: none; }
}

.hero-grid,
.hero-stack {
  position: relative;
  display: grid;
  gap: clamp(1.35rem, 3.2vw, 1.85rem);
  max-width: 760px;
}
.hero-copy { display: grid; gap: 1rem; }
.hero-copy-after { display: grid; gap: 1rem; margin-top: .15rem; }
.hero-lead { margin-bottom: .35rem; }

/* Hero social proof pill */
.hero-social-proof {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .65rem;
  width: fit-content;
  max-width: 100%;
  margin-top: .15rem;
  padding: .55rem .85rem .55rem .65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(232, 93, 4, 0.14);
  box-shadow:
    0 1px 2px rgba(20, 22, 30, 0.04),
    0 8px 24px rgba(20, 22, 30, 0.07);
}
.hero-sp-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.hero-sp-google {
  display: block;
}
.hero-sp-verified {
  position: absolute;
  right: -4px;
  bottom: -3px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(26, 115, 232, 0.35);
}
.hero-sp-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #f4b400;
  flex-shrink: 0;
}
.hero-sp-stars svg {
  display: block;
  filter: drop-shadow(0 1px 0 rgba(180, 120, 0, 0.15));
}
.hero-sp-copy {
  display: grid;
  gap: .1rem;
  min-width: 0;
  line-height: 1.35;
}
.hero-sp-copy strong {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text, #1e1f24);
  letter-spacing: -0.01em;
}
.hero-sp-copy span {
  font-size: .78rem;
  color: var(--muted, #667085);
  font-weight: 500;
}
@media (max-width: 520px) {
  .hero-social-proof {
    padding: .65rem .75rem;
    border-radius: 16px;
    width: 100%;
  }
  .hero-sp-copy strong { font-size: .82rem; }
  .hero-sp-copy span { font-size: .76rem; }
}

.hero-stage-wrap { margin-top: .85rem; }
.hero-inner {
  position: relative;
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
}

/* Language picker (dropdown) */
.lang-picker {
  position: relative;
  display: inline-block;
  z-index: 120;
}
.lang-picker-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}
.lang-picker-btn:hover { border-color: rgba(232, 93, 4, .45); }
.lang-picker-flag { font-size: 1rem; line-height: 1; }
.lang-picker-name { max-width: 9rem; overflow: hidden; text-overflow: ellipsis; }
.lang-picker-chevron { opacity: .55; flex-shrink: 0; transition: transform .15s; }
.lang-picker.is-open .lang-picker-chevron { transform: rotate(180deg); }
.lang-picker-menu[hidden] { display: none !important; }
.lang-picker-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 210px;
  max-height: min(340px, 70vh);
  overflow: auto;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, .14);
}
.lang-picker.is-open .lang-picker-menu { display: block; }
.lang-picker-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  font-size: .84rem;
  text-decoration: none;
}
.lang-picker-opt:hover { background: rgba(232, 93, 4, .08); }
.lang-picker-opt.is-on {
  background: rgba(232, 93, 4, .12);
  font-weight: 700;
}
.lang-picker-opt-label { flex: 1; }
.lang-picker-opt-code {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .03em;
}
.lang-switch-mobile.lang-picker { display: none; }
.lang-switch-drawer.lang-picker { margin: 8px 14px; width: fit-content; }
@media (max-width: 900px) {
  .nav-links .lang-picker { display: none; }
  .lang-switch-mobile.lang-picker { display: inline-block; }
  .lang-picker-name { display: none; }
  .lang-picker-btn { padding: 6px 8px; }
}

/* Legacy pill switch (fallback) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}
.lang-switch a {
  min-width: 36px;
  text-align: center;
  padding: .35rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
}
.lang-switch a.is-on {
  background: var(--orange);
  color: #fff;
}
.lang-switch-drawer { margin: 6px 14px; width: fit-content; }

/* Hero battle stage — warm slate + brand frame */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 268px;
  margin-top: .55rem;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 58% 64% at 50% 52%, rgba(232, 93, 4, 0.32), transparent 70%),
    radial-gradient(ellipse 95% 85% at 8% 0%, rgba(255, 176, 100, 0.16), transparent 58%),
    linear-gradient(155deg, #4a3d35 0%, #3a322c 45%, #2f2925 100%);
  border: 1.5px solid rgba(255, 176, 100, 0.55);
  box-shadow:
    0 0 0 1px rgba(232, 93, 4, 0.28),
    0 0 0 7px rgba(232, 93, 4, 0.1),
    0 0 0 8px rgba(23, 24, 28, 0.55),
    0 22px 48px rgba(40, 22, 10, 0.28),
    inset 0 1px 0 rgba(255, 245, 230, 0.22),
    inset 0 0 0 1px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  isolation: isolate;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 230, 200, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 230, 200, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 72% 72% at 50% 55%, #000 18%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 55%, #000 18%, transparent 80%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 200, 140, 0.22),
    inset 0 -28px 40px rgba(20, 12, 8, 0.22);
}
.hero-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.stage-stats {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.budget-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .55rem;
  border-radius: 999px;
  background: rgba(10,11,16,.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 176, 100, 0.22);
  color: rgba(255,255,255,.92);
  font-size: .66rem;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
  flex: 0 1 auto;
  max-width: 100%;
  box-sizing: border-box;
}
.budget-pill > span:not(.budget-dot) {
  white-space: nowrap;
}
.budget-pill strong {
  color: #7dffa8;
  font-size: .76rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.budget-pill.pill-bad strong { color: #ff9b7a; }
.budget-pill.pill-good strong { color: #7dffa8; }
.budget-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7dffa8;
  box-shadow: 0 0 0 0 rgba(125,255,168,.5);
  animation: pulseDot 1.6s ease infinite;
  flex-shrink: 0;
}
.budget-dot.dot-bad { background: #ff9b7a; box-shadow: 0 0 0 0 rgba(255,155,122,.5); animation-name: pulseDotBad; }
.budget-dot.dot-good { background: #7dffa8; box-shadow: 0 0 0 0 rgba(125,255,168,.5); animation-name: pulseDot; }
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(125,255,168,.55); }
  70% { box-shadow: 0 0 0 8px rgba(125,255,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(125,255,168,0); }
}
@keyframes pulseDotBad {
  0% { box-shadow: 0 0 0 0 rgba(255,155,122,.55); }
  70% { box-shadow: 0 0 0 8px rgba(255,155,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,155,122,0); }
}

@media (max-width: 900px) {
  .hero-stage { height: 270px; max-width: none; }
  .hero h1 { max-width: none; }
  .stage-stats {
    top: 8px;
    left: 8px;
    right: 8px;
    gap: 5px;
    flex-wrap: wrap;
  }
  .budget-pill {
    font-size: .62rem;
    padding: .28rem .48rem;
    gap: .25rem;
    white-space: nowrap;
    flex: 0 0 auto;
    max-width: calc(100% - 2px);
  }
  .budget-pill strong { font-size: .7rem; }
  .budget-dot { width: 5px; height: 5px; }
}

@media (max-width: 520px) {
  .hero-stage { height: 300px; }
  .stage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .budget-pill {
    font-size: .58rem;
    padding: .3rem .45rem;
    width: 100%;
    justify-content: flex-start;
    min-width: 0;
  }
  .budget-pill > span:not(.budget-dot) {
    white-space: normal;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  .budget-pill.pill-live strong { color: #7dffa8; }
}
.hero-pill-stack {
  display: grid;
  gap: .55rem;
  justify-items: start;
}
.hero-claim {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: .4rem .78rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(
    110deg,
    #ff3d00 0%,
    #ff9100 18%,
    #ffd600 36%,
    #00e676 52%,
    #00b0ff 70%,
    #d500f9 88%,
    #ff3d00 100%
  );
  background-size: 220% 220%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 61, 0, 0.12),
    0 6px 16px rgba(213, 0, 249, 0.18),
    0 3px 10px rgba(255, 145, 0, 0.22);
  animation: heroClaimShift 4.5s ease-in-out infinite;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}
@keyframes heroClaimShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-claim { animation: none; }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 16ch;
}
.hero-lead {
  font-size: 1.08rem;
  max-width: 42ch;
  color: var(--muted);
}
.product-def-card {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.88));
  border: 1px solid rgba(234, 88, 12, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.product-def-card h2 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}
.product-def-text {
  margin: 0 auto;
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .35rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin-top: .75rem;
  font-size: .88rem;
  color: var(--muted);
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.trust-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  display: inline-block;
}

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 1.35rem 0 1.5rem;
}
.logo-strip-lead {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1rem;
}
.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.proof-stat {
  text-align: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff8f3, #fff);
}
.proof-stat strong {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1.1;
}
.proof-stat span {
  display: block;
  margin-top: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
@media (max-width: 560px) {
  .proof-stats { grid-template-columns: 1fr; }
}

/* —— SECTIONS —— */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; overflow-x: clip; }
.section-soft { background: var(--bg-soft); }
.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}
.eyebrow {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: .65rem;
}
.section-head p { max-width: 52ch; }

.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.threat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.threat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.threat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 800;
  margin-bottom: .85rem;
}
.threat h3 {
  font-size: 1.02rem;
  margin-bottom: .4rem;
  letter-spacing: -0.02em;
}
.threat p { font-size: .92rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.4rem 1.2rem 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.step-num {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.step p { font-size: .92rem; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.benefit {
  padding: 1.15rem 0;
  border-top: 2px solid var(--text);
}
.benefit h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.benefit p { font-size: .92rem; }

.cta-band {
  background: var(--dark);
  color: rgba(255,255,255,.78);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: .7rem;
}
.cta-band p { max-width: 42ch; margin-bottom: 1.25rem; }
.cta-band .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

.footer {
  padding: 3.2rem 0 1.5rem;
  border-top: 1px solid rgba(232, 93, 4, 0.14);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(232, 93, 4, 0.07), transparent 55%),
    linear-gradient(180deg, #fffaf6 0%, #fff 48%, #f7f7f8 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand-block { max-width: 32ch; }
.footer-brand {
  display: flex;
  gap: .85rem;
  align-items: center;
  color: var(--text);
  margin-bottom: .85rem;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(232, 93, 4, 0.16);
}
.footer-brand strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.footer-brand span {
  display: block;
  margin-top: .15rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-blurb {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--muted);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col h4 {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .35rem;
}
.footer-col a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
  width: fit-content;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.15rem;
  font-size: .84rem;
  color: var(--muted);
}
.footer-bottom-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: var(--muted);
  font-weight: 500;
}
.footer-bottom-links a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand-block { grid-column: 1 / -1; max-width: none; }
  .nav-brand { font-size: 1.25rem; gap: .7rem; }
  .nav-brand img { width: 44px; height: 44px; border-radius: 12px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .wrap {
    width: calc(100% - 1.5rem);
  }
  .hero-claim,
  .pill,
  .intel-orbit {
    max-width: 100%;
  }
  .hero h1 {
    max-width: none;
    overflow-wrap: anywhere;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }
}

/* Subpages */
.subpage { padding-top: 0.5rem; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.price-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .price-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .price-grid-4 { grid-template-columns: 1fr; }
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.price-card-featured {
  border-color: rgba(232,93,4,.45);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff8f3, #fff);
}
.price-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
}
.price-trial {
  display: inline-block;
  width: fit-content;
  margin: 0 0 .35rem;
  padding: .28rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #e85d04, #f48c06);
}
.price-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.price-amount span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}
.price-desc { font-size: .92rem; min-height: 2.6em; }
.price-card ul {
  margin: .4rem 0 1rem;
  padding-left: 1.05rem;
  flex: 1;
  font-size: .9rem;
}
.price-card li {
  margin: .42rem 0;
  padding-left: 1.15rem;
  position: relative;
  line-height: 1.4;
}
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ok);
  font-weight: 700;
  font-size: .85rem;
}
.price-card .btn { align-self: flex-start; margin-top: auto; }
.price-note { margin-top: 1.25rem; font-size: .9rem; }

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: .65rem;
  max-width: 760px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .15rem 1rem;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  color: var(--text);
  padding: .95rem 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { border-bottom: 1px solid var(--line); }
.faq-list p { padding: .8rem 0 1rem; font-size: .95rem; }
.faq-list a { color: var(--orange); font-weight: 600; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.quote-grid-6 {
  margin-top: 1.25rem;
}
.review-brands {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: .65rem;
  margin: .25rem 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: .15rem .1rem .35rem;
}
.review-brands::-webkit-scrollbar {
  display: none;
}
.review-brands span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  white-space: nowrap;
  min-height: 42px;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.quote-card {
  box-shadow: 0 8px 24px rgba(20, 22, 28, .04);
}
.quote-stars {
  color: #e85d04;
  letter-spacing: .08em;
  font-size: .95rem;
  margin-bottom: .55rem;
  line-height: 1;
}
.quote-text,
.quote p {
  color: var(--text);
  font-size: .96rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.quote-head,
.quote footer {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  color: var(--muted);
  font-style: normal;
  border-bottom: 1px solid var(--line);
  padding-bottom: .9rem;
  margin-bottom: .65rem;
}
.quote footer {
  border-bottom: none;
  border-top: 1px solid var(--line);
  padding-bottom: 0;
  padding-top: .9rem;
  margin-bottom: 0;
  margin-top: auto;
}
.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #fff3e8, #ffe0c8);
  color: #c44500;
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid rgba(232, 93, 4, .22);
}
.quote-meta {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  min-width: 0;
}
.quote-meta strong {
  color: var(--text);
  font-size: .9rem;
  font-weight: 650;
}
.quote-meta span {
  font-size: .78rem;
  color: var(--muted);
}
.quote-co {
  color: var(--orange) !important;
  font-weight: 600;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .5rem;
}
.compare-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.3rem;
}
.compare-col-bad {
  background: linear-gradient(180deg, #fffafa, #fff);
  border-color: rgba(220, 38, 38, .18);
}
.compare-col-hot {
  border-color: rgba(232,93,4,.4);
  background: linear-gradient(180deg, #fff8f3, #fff);
  box-shadow: var(--shadow);
}
.compare-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  margin-bottom: .85rem;
  letter-spacing: -0.02em;
}
.compare-title-hot {
  color: var(--text);
}
.compare-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 9px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232, 93, 4, .18);
}
.compare-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.compare-mark-x {
  background: rgba(220, 38, 38, .1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, .25);
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .6rem 0;
  border-top: 1px solid var(--line);
  font-size: .93rem;
  color: var(--muted);
}
.compare-list-ok li { color: var(--text); }
.compare-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .05rem;
  line-height: 1;
}
.compare-ico-x {
  background: rgba(220, 38, 38, .1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, .22);
}
.compare-ico-minus {
  background: rgba(220, 38, 38, .08);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, .2);
  font-size: .95rem;
  font-weight: 700;
}
.compare-ico-ok {
  background: rgba(22, 163, 74, .12);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, .28);
}

/* Default visible so Google brand/OAuth crawlers (no JS) see Shield name + purpose */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
/* Hero üst bölüm — ilk boyamada gizlenmesin (FOUC önleme) */
html.js .hero-stack .reveal,
html.js .hero-social-proof {
  opacity: 1;
  transform: none;
  transition: none;
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@keyframes floatGlow {
  from { transform: translate3d(0,0,0); opacity: .7; }
  to { transform: translate3d(-4%, -3%, 0); opacity: 1; }
}

@media (max-width: 900px) {
  .threat-grid,
  .steps,
  .benefit-grid,
  .price-grid,
  .quote-grid,
  .compare { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .review-brands {
    justify-content: flex-start;
    margin-left: -.25rem;
    margin-right: -.25rem;
    padding-left: .25rem;
    padding-right: .25rem;
  }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .quote-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before { animation: none; }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: .5rem;
}
.contact-about-card,
.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.45rem 1.35rem;
  box-shadow: var(--shadow);
}
.contact-form-card {
  background: linear-gradient(180deg, #fff8f3, #fff);
  border-color: rgba(232,93,4,.28);
}
.contact-about-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.contact-about-brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
}
.contact-about-brand strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.contact-about-brand span {
  color: var(--muted);
  font-size: .88rem;
}
.contact-about-card h3 {
  font-size: 1.02rem;
  margin: 1rem 0 .45rem;
  letter-spacing: -0.02em;
}
.contact-about-card p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
  margin: 0;
}
.contact-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.contact-points li {
  position: relative;
  padding: .45rem 0 .45rem 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: .92rem;
}
.contact-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .85rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}
.contact-mail-note {
  margin-top: 1.1rem !important;
}
.contact-mail-note a {
  color: var(--orange);
  font-weight: 600;
}
.contact-form-card h3 {
  font-size: 1.15rem;
  margin: 0 0 .25rem;
  letter-spacing: -0.02em;
}
.contact-form .form-row {
  margin-bottom: .85rem;
}
.contact-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin: 0 0 .35rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem .9rem;
  font: inherit;
  background: #fff;
  color: var(--text);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange-soft);
  border-color: var(--orange);
}
.contact-form .hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.captcha-row input {
  max-width: 140px;
}
.contact-page .flash {
  padding: .8rem 1rem;
  border-radius: 12px;
  margin: 0 0 1rem;
  font-size: .92rem;
}
.contact-page .flash.ok { background: #eaf7ef; color: var(--ok); }
.contact-page .flash.bad { background: #fdecec; color: #c63a3a; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.footer-addr { display:block; color: var(--muted,#667085); font-size:.9rem; margin:.35rem 0; }
