/* ============================================
   Hukuk Bilgi Sistemi — landing page styles
   ============================================ */

:root {
  --navy: #0B1E3F;
  --navy-700: #122a52;
  --navy-50: #f3f5fa;
  --gold: #C9A24B;
  --gold-dark: #a8862f;
  --ink: #14181f;
  --muted: #5a6478;
  --line: #e5e8ee;
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --success: #2A7F3B;
  --danger: #b3261e;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(11,30,63,.06), 0 1px 3px rgba(11,30,63,.04);
  --shadow-md: 0 4px 12px rgba(11,30,63,.08), 0 2px 4px rgba(11,30,63,.04);
  --shadow-lg: 0 20px 40px -10px rgba(11,30,63,.18), 0 8px 16px -8px rgba(11,30,63,.08);
  --container: 1200px;
  --container-narrow: 820px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -.02em; }
h3 { font-size: 1.15rem; }
h4 { font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 1em; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.lead { font-size: 1.125rem; }
ul { padding: 0; margin: 0; list-style: none; }

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

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 1em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: inherit;
  font-weight: 600;
  font-size: .95rem;
  padding: .7em 1.4em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: transparent; }
.btn-ghost:hover { background: var(--navy-50); }
.btn-lg { padding: .9em 1.7em; font-size: 1rem; }
.btn-sm { padding: .5em 1.1em; font-size: .88rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; font-size: .98rem; }
.brand-sub { font-size: .72rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { font-size: .94rem; font-weight: 500; color: var(--ink); }
.primary-nav a:hover { color: var(--navy); }
.primary-nav .btn { color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px; cursor: pointer;
  flex-direction: column; gap: 5px; width: 40px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s; }
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.mobile-nav a { padding: 8px 0; font-weight: 500; }
.mobile-nav[hidden] { display: none; }
.mobile-nav.open { display: flex; }

/* Hero */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(48px, 8vw, 80px);
  background: linear-gradient(180deg, #fff 0%, var(--navy-50) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy .lead { font-size: 1.2rem; color: var(--muted); margin-bottom: 2em; max-width: 32em; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2em; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  font-size: .92rem; color: var(--muted);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--success); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Problem band */
.problem-band {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--navy);
  color: #fff;
}
.problem-band h2 { color: #fff; }
.problem-band p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0; }
.problem-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: center;
}
.problem-stat {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 28px; border-left: 3px solid var(--gold);
}
.problem-stat .big { font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.02em; }
.problem-stat .muted { color: rgba(255,255,255,.75); font-size: .95rem; }

/* Sections */
.section { padding: clamp(64px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-alt); }
.section-cta { background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head .eyebrow { color: var(--gold-dark); }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 12px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .4em; }
.feature-card p { color: var(--muted); margin: 0; font-size: .94rem; }

/* Process list */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-list li {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-list h3 { font-size: 1.05rem; }
.process-list p { color: var(--muted); margin: 0; font-size: .94rem; }

/* Roles grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.role-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s, transform .2s;
}
.role-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.role-card-featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.role-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 14px;
  margin-bottom: 20px;
}
.role-card-featured .role-icon { background: var(--navy); color: #fff; }
.role-card h3 { font-size: 1.2rem; margin-bottom: .6em; }
.role-card ul { margin: 0 0 18px; }
.role-card ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: .94rem;
  color: #2a2f3a;
}
.role-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1E3F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.role-card .muted {
  margin: auto 0 0;
  font-size: .88rem;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.roles-note {
  text-align: center;
  margin: 32px auto 0;
  max-width: 620px;
  font-size: .92rem;
}

/* Task grid */
.task-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.task-grid article {
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.task-grid h3 { font-size: 1.05rem; margin-bottom: .5em; }
.task-grid p { color: var(--muted); font-size: .94rem; margin: 0; }

/* Contact direct phone */
.contact-direct {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}
.contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  text-decoration: none;
}
.contact-tel:hover { background: var(--gold-dark); color: #fff; }

/* Nav phone */
.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy) !important;
  white-space: nowrap;
}
.nav-tel svg { color: var(--gold-dark); }
.nav-tel:hover { color: var(--gold-dark) !important; }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.why-card {
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: .5em; }
.why-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.price-card-featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card header { margin-bottom: 20px; }
.price-card h3 { font-size: 1.35rem; margin-bottom: .15em; }
.price-card .muted { font-size: .9rem; margin: 0; }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.price .currency { font-size: 1.4rem; font-weight: 600; margin-right: 2px; }
.price .period { color: var(--muted); font-size: 1rem; }
.price-yearly { font-size: .9rem; color: var(--muted); margin-bottom: 24px; }
.price-yearly strong { color: var(--ink); }
.price-features { margin: 0 0 28px; }
.price-features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: .93rem;
  border-bottom: 1px dashed var(--line);
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: "";
  position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A7F3B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.price-card .btn { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 32px; font-size: .95rem; }

/* FAQ */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 24px;
  margin-bottom: 12px;
  transition: box-shadow .2s, border-color .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--navy-50); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 16px; color: var(--muted); margin: 0; }

/* Contact form */
.contact-form {
  background: #fff;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-size: .9rem;
  font-weight: 500;
}
.contact-form label.block { margin-bottom: 18px; }
.contact-form label > span { display: block; margin-bottom: 6px; }
.contact-form label em { color: var(--danger); font-style: normal; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,30,63,.12);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.field-hint {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}
.contact-form .checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem;
  color: var(--muted);
  margin: 8px 0 20px;
  font-weight: 400;
}
.contact-form .checkbox input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-form .checkbox a { color: var(--navy); text-decoration: underline; }
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}
.form-status { margin: 16px 0 0; min-height: 1.4em; font-size: .95rem; text-align: center; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid h4 { color: #fff; font-size: .8rem; margin-bottom: 1em; }
.footer-grid a { color: rgba(255,255,255,.78); font-size: .93rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid li { padding: 4px 0; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand .brand:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.6); }
.footer-brand .muted { color: rgba(255,255,255,.65); font-size: .9rem; max-width: 22em; }
.footer-bottom { padding-top: 24px; }
.footer-bottom .muted { color: rgba(255,255,255,.55); font-size: .85rem; margin: 0; }
.footer-bottom .footer-disclaimer { margin-top: 12px; font-size: .8rem; color: rgba(255,255,255,.45); max-width: 60em; }

/* Blog */
.blog-page { padding: 64px 0 96px; }
.blog-head { margin-bottom: 48px; text-align: center; }
.blog-head h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .4em; }
.blog-head .lead { color: var(--muted); max-width: 36em; margin: 0 auto; }

.blog-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 20px; }
.blog-card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: transparent; }
.blog-card-link {
  display: block;
  padding: 26px 28px;
  color: inherit;
  text-decoration: none;
}
.blog-card-link:hover { color: inherit; }
.blog-card h2 { font-size: 1.25rem; margin: 8px 0 10px; color: var(--ink); }
.blog-card p { color: var(--muted); font-size: .95rem; margin: 0 0 12px; }
.blog-meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: .82rem; color: var(--muted);
}
.blog-meta .tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-read-more {
  display: inline-block;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 4px;
}
.blog-cta { text-align: center; margin-top: 48px; }

/* Blog controls (search + filters) */
.blog-controls { margin: 0 0 24px; display: flex; flex-direction: column; gap: 14px; }
.blog-search {
  position: relative;
  display: flex; align-items: center;
  background: var(--bg-card, #fff);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color .15s, box-shadow .15s;
}
.blog-search:focus-within { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(30,64,175,.08); }
.blog-search svg { color: var(--muted); flex-shrink: 0; }
.blog-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 14px 10px;
  background: transparent;
  font-size: .98rem;
  font-family: inherit;
  color: var(--ink);
  min-width: 0;
}
.blog-search input::placeholder { color: var(--muted); }
.blog-search button {
  background: var(--line);
  border: 0;
  color: var(--ink);
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blog-search button:hover { background: var(--muted); color: #fff; }

.blog-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.filter-chip {
  background: var(--bg-card, #fff);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .12s, border-color .12s, color .12s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}
.filter-chip:hover { border-color: var(--navy); }
.filter-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.filter-chip .chip-count {
  display: inline-block;
  background: rgba(0,0,0,.06);
  color: inherit;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.4;
}
.filter-chip.active .chip-count { background: rgba(255,255,255,.22); }

.blog-results-info {
  font-size: .85rem;
  margin: 0 0 12px;
  padding-left: 4px;
}

.blog-empty {
  text-align: center;
  padding: 48px 20px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  margin-top: 12px;
}
.blog-empty p { color: var(--muted); margin: 0 0 16px; }
.blog-empty button {
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: .9rem;
}
.blog-empty button:hover { background: var(--navy-700, #1e3a8a); }

/* Free tools — hub + calculator pages */
.araclar-hub, .tool-page { padding: 0 0 80px; }
.tool-head { margin: 24px 0 32px; }
.tool-head h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .4em; }
.tool-head .eyebrow { color: var(--gold-dark); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.tool-card {
  display: block;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  position: relative;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.tool-card-icon {
  width: 56px; height: 56px;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tool-card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.tool-card h2 { font-size: 1.15rem; margin: 0 0 8px; }
.tool-card p { color: var(--muted); font-size: .92rem; margin: 0 0 14px; line-height: 1.5; }
.tool-card-arrow { color: var(--navy); font-weight: 600; font-size: .9rem; }

/* Calculator form */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin: 24px 0 32px;
}
@media (max-width: 760px) { .calc-wrap { grid-template-columns: 1fr; } }

.calc-form, .calc-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.calc-result {
  background: var(--bg-alt);
  position: sticky;
  top: 84px;
  min-height: 180px;
}
.calc-fieldset { border: 0; padding: 0 0 18px; margin: 0 0 18px; border-bottom: 1px solid var(--line); }
.calc-fieldset:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.calc-fieldset legend {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.calc-field { display: block; margin-bottom: 12px; }
.calc-field span { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 5px; }
.calc-field input, .calc-field select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: 0;
  background: #fff;
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--navy); }
.calc-field .field-hint { display: block; font-size: .78rem; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .calc-row { grid-template-columns: 1fr; } }

.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-group label, .calc-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .92rem;
  cursor: pointer;
  padding: 8px 0;
}
.radio-group input, .calc-check input { margin-top: 3px; flex-shrink: 0; }

.calc-result h3 {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--navy);
}
.result-label { font-size: .85rem; margin: 0 0 8px; }
.result-big { font-size: 1.4rem; font-weight: 700; margin: 0 0 16px; color: var(--ink); }
.result-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0;
}
.result-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.result-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.result-table .result-total td {
  padding-top: 12px;
  font-size: 1rem;
  border-bottom: 0;
  border-top: 2px solid var(--navy);
  color: var(--navy);
}
.result-notes {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: .85rem;
  color: var(--muted);
  list-style: none;
}
.result-notes li { padding: 3px 0; }
.calc-breakdown {
  margin-top: 14px;
  font-size: .85rem;
}
.calc-breakdown summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 0;
}
.calc-breakdown ul { margin: 8px 0 0 20px; color: var(--muted); }
.calc-breakdown li { padding: 2px 0; }

.calc-disclaimer {
  margin: 24px 0;
  padding: 14px 18px;
  background: #fff8e6;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: .85rem;
  color: var(--ink);
  line-height: 1.55;
}
.calc-disclaimer a { color: var(--navy); text-decoration: underline; }

.tool-info {
  margin: 32px 0;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.tool-info h2 { font-size: 1.15rem; margin: 0 0 10px; }
.tool-info h3 { font-size: .98rem; margin: 16px 0 6px; }
.tool-info ul { padding-left: 22px; margin: 6px 0 0; }
.tool-info li { margin: 3px 0; font-size: .93rem; }
.tool-info .data { width: 100%; border-collapse: collapse; font-size: .9rem; margin-top: 12px; }
.tool-info .data th, .tool-info .data td { padding: 8px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.tool-info .data .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }

/* Checklist landing page */
.checklist-page { padding-bottom: 80px; }
.checklist-head { margin: 24px 0 32px; }
.checklist-head h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.checklist-head .eyebrow { color: var(--gold-dark); }

.checklist-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin: 24px 0;
}
@media (max-width: 760px) { .checklist-grid { grid-template-columns: 1fr; gap: 28px; } }

.pdf-mockup {
  width: 100%;
  aspect-ratio: 210 / 297;
  border-radius: 8px;
  box-shadow: 0 16px 48px -12px rgba(11,30,63,.25), 0 4px 16px rgba(11,30,63,.08);
  background: linear-gradient(135deg, #0B1E3F 0%, #122a52 100%);
  position: relative;
  overflow: hidden;
}
.pdf-mockup-cover {
  position: absolute; inset: 0;
  padding: 28px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.pdf-mockup-brand { font-size: 11px; opacity: .8; font-weight: 600; }
.pdf-mockup-icon {
  width: 44px; height: 44px;
  border: 2px solid #C9A24B;
  color: #C9A24B;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  margin: auto 0 12px;
}
.pdf-mockup-title {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}
.pdf-mockup-line { width: 50px; height: 3px; background: #C9A24B; margin: 8px 0 12px; }
.pdf-mockup-year { color: #C9A24B; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.pdf-mockup-caption {
  text-align: center;
  margin: 12px 0 0;
  font-size: .8rem;
}

.checklist-form-wrap h2 { font-size: 1.25rem; margin: 0 0 16px; }
.checklist-items {
  padding-left: 0;
  list-style: none;
  margin: 0 0 28px;
}
.checklist-items li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.checklist-items li strong {
  display: inline-block;
  width: 24px;
  color: var(--navy);
}

.checklist-form {
  background: var(--bg-alt);
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.checklist-form h3 {
  font-size: 1.05rem;
  margin: 0 0 14px;
}
.checklist-form label { display: block; margin-bottom: 12px; }
.checklist-form label > span {
  display: block; font-size: .85rem; font-weight: 600;
  margin-bottom: 5px;
}
.checklist-form input[type=email] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: 0;
}
.checklist-form input[type=email]:focus { border-color: var(--navy); }
.checklist-check {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin: 8px 0 16px !important;
  line-height: 1.45;
}
.checklist-check input { margin-top: 3px; flex-shrink: 0; }
.checklist-check a { color: var(--navy); text-decoration: underline; }
.checklist-status {
  font-size: .88rem; margin: 12px 0 0;
  text-align: center;
}
.checklist-status.success { color: var(--success); font-weight: 600; }
.checklist-status.error { color: var(--danger); }
.checklist-foot {
  font-size: .76rem;
  text-align: center;
  margin: 12px 0 0;
}

.checklist-success {
  background: #f0fdf4;
  border: 2px solid var(--success);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  animation: slideUp .3s ease;
}
.checklist-success-icon {
  width: 56px; height: 56px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px; font-weight: 800;
  margin: 0 auto 16px;
}
.checklist-success h3 { font-size: 1.3rem; margin: 0 0 8px; color: var(--success); }
.checklist-success p { color: var(--ink); margin: 0 0 18px; }
.checklist-success-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.checklist-success-actions .btn-secondary {
  background: #25D366; /* WhatsApp green */
  color: #fff;
  border: 0;
}
.checklist-success-actions .btn-secondary:hover { background: #1faa54; color: #fff; }

/* AAÜT Karşılaştırma tablo */
.aaut-controls { margin: 20px 0 16px; }
.aaut-search-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  outline: 0;
}
.aaut-search-input:focus { border-color: var(--navy); }
.aaut-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.aaut-table th, .aaut-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.aaut-table th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--ink);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.aaut-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.aaut-table tr.hide { display: none; }
.pct-badge {
  display: inline-block;
  padding: 2px 10px;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
}

/* HowTo (Mernis rehber) */
.howto-steps { padding-left: 0; list-style: none; }
.howto-steps > li {
  margin-bottom: 20px;
  padding-left: 0;
}
.howto-steps h3 {
  color: var(--navy);
  margin: 0 0 6px;
  font-size: 1.05rem;
}

/* Content upgrade — blog article inline lead magnet */
.content-upgrade {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(135deg, #f3f5fa 0%, #ffffff 100%);
  border: 1px solid var(--navy-50);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  margin: 28px 0;
}
@media (max-width: 600px) {
  .content-upgrade { flex-direction: column; gap: 16px; }
  .content-upgrade-mockup { max-width: 120px; margin: 0 auto; }
}
.content-upgrade-mockup {
  flex: 0 0 140px;
  width: 140px;
  background: linear-gradient(135deg, #0B1E3F 0%, #122a52 100%);
  border-radius: 6px;
  aspect-ratio: 210 / 297;
  box-shadow: 0 6px 20px -6px rgba(11,30,63,.25);
  position: relative;
  overflow: hidden;
}
.content-upgrade-body {
  flex: 1 1 auto;
  min-width: 0;
}
.content-upgrade-mockup-inner {
  padding: 14px 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content-upgrade-mockup-brand { font-size: 9px; opacity: .7; font-weight: 600; }
.content-upgrade-mockup-icon {
  margin: auto 0 8px;
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.content-upgrade-mockup-title { font-size: 11px; font-weight: 800; line-height: 1.15; margin: 0 0 6px; letter-spacing: -.01em; }
.content-upgrade-mockup-year { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.content-upgrade-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 6px;
}
.content-upgrade-body h3 { font-size: 1.1rem; margin: 0 0 8px; line-height: 1.3; }
.content-upgrade-body p { font-size: .92rem; color: var(--muted); margin: 0 0 14px; }

.content-upgrade-form { margin-top: 12px; }
.content-upgrade-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.content-upgrade-row input[type=email] {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  outline: 0;
  min-width: 0;
  background: #fff;
}
.content-upgrade-row input[type=email]:focus { border-color: var(--navy); }
.content-upgrade-row button { flex-shrink: 0; }
@media (max-width: 480px) {
  .content-upgrade-row { flex-direction: column; }
  .content-upgrade-row button { width: 100%; }
}
.content-upgrade-check {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.45;
}
.content-upgrade-check input { margin-top: 2px; flex-shrink: 0; }
.content-upgrade-check a { color: var(--navy); text-decoration: underline; }

/* Feedback link & modal */
.feedback-link {
  display: inline-block;
  margin-top: 10px;
  font-size: .85rem;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}
.feedback-link:hover { color: var(--navy); }

.feedback-modal {
  position: fixed; inset: 0;
  background: rgba(11,30,63,.55);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200; padding: 16px;
}
.feedback-modal.open { display: flex; animation: fadeIn .2s ease; }
.feedback-modal-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 520px; width: 100%;
  padding: 28px 26px 22px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh; overflow-y: auto;
}
.feedback-modal-close {
  position: absolute; top: 10px; right: 12px;
  background: transparent; border: 0;
  font-size: 26px; line-height: 1; cursor: pointer;
  color: var(--muted);
  width: 32px; height: 32px; border-radius: 50%;
}
.feedback-modal-close:hover { background: var(--bg-alt); color: var(--ink); }
.feedback-modal-eyebrow {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold-dark);
  font-weight: 700; margin: 0 0 4px;
}
.feedback-modal h3 {
  font-size: 1.25rem; margin: 0 0 8px;
  line-height: 1.3;
}
.feedback-modal-desc {
  color: var(--muted); font-size: .9rem;
  margin: 0 0 18px;
}
.feedback-field { display: block; margin-bottom: 14px; }
.feedback-field span {
  display: block; font-size: .82rem;
  font-weight: 600; margin-bottom: 5px;
  color: var(--ink);
}
.feedback-field span em { color: var(--danger); font-style: normal; }
.feedback-field input,
.feedback-field textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  outline: 0;
  resize: vertical;
}
.feedback-field input:focus,
.feedback-field textarea:focus { border-color: var(--navy); }
.feedback-status {
  font-size: .88rem; margin: 12px 0 0;
  text-align: center;
}
.feedback-status.success { color: var(--success); font-weight: 600; }
.feedback-status.error { color: var(--danger); }
.feedback-modal-foot {
  font-size: .76rem; text-align: center;
  margin: 12px 0 0;
}

/* Exit-intent 3 gün deneme modal */
.trial-modal {
  position: fixed;
  inset: 0;
  background: rgba(11,30,63,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 16px;
}
.trial-modal.open { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.trial-modal-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 32px 28px 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.trial-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  width: 32px; height: 32px;
  border-radius: 50%;
}
.trial-modal-close:hover { background: var(--bg-alt); color: var(--ink); }
.trial-modal-eyebrow {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin: 0 0 4px;
}
.trial-modal h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.trial-modal-desc {
  color: var(--muted);
  font-size: .95rem;
  margin: 0 0 20px;
}
.trial-field {
  display: block;
  margin-bottom: 14px;
}
.trial-field span {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--ink);
}
.trial-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: 0;
  transition: border-color .15s;
}
.trial-field input:focus { border-color: var(--navy); }
.trial-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin: 8px 0 18px;
  line-height: 1.45;
}
.trial-checkbox input { margin-top: 3px; flex-shrink: 0; }
.trial-checkbox a { color: var(--navy); text-decoration: underline; }
.trial-modal .btn {
  font-size: 1rem;
  padding: 12px 20px;
}
.trial-status {
  font-size: .88rem;
  margin: 12px 0 0;
  padding: 0;
  text-align: center;
}
.trial-status.success { color: var(--success); font-weight: 600; }
.trial-status.error { color: var(--danger); }
.trial-modal-foot {
  font-size: .76rem;
  text-align: center;
  margin: 14px 0 0;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* Mobile sticky CTA — sadece mobilde scroll'da görünür */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    transform: translateY(120%);
    transition: transform .25s ease;
    pointer-events: none;
  }
  .mobile-sticky-cta.visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-sticky-cta a {
    display: block;
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(11,30,63,.25);
    font-size: .95rem;
  }
  .mobile-sticky-cta a:hover {
    background: var(--navy-700);
    color: #fff;
  }
}

/* Article disclaimer (yasal uyarı) */
.article-disclaimer {
  margin: 32px 0 20px;
  padding: 14px 18px;
  background: #f9fafb;
  border-left: 3px solid #cbd5e1;
  border-radius: 6px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}
.article-disclaimer strong {
  color: var(--ink);
  font-weight: 600;
}

/* Related articles in article footer */
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.article-related-card {
  display: block;
  padding: 16px 18px;
  background: var(--bg-card, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: box-shadow .15s, transform .15s, border-color .15s;
}
.article-related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-related-card .tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 600;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.article-related-card h5 {
  font-size: .98rem;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1.35;
}
.article-related-card p {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
}

/* Article toolbar (top of article) */
.article-toolbar {
  background: var(--bg-card, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .88rem;
}
.article-toolbar a.back-to-blog {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-toolbar a.back-to-blog:hover { text-decoration: underline; }
.article-toolbar form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 400px;
  position: relative;
}

/* Article toolbar autocomplete dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
  max-height: 380px;
  overflow-y: auto;
  z-index: 50;
  padding: 6px 0;
}
.search-dropdown[hidden] { display: none; }
.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.35;
  border-left: 3px solid transparent;
  transition: background .1s, border-color .1s;
}
.search-dropdown-item:hover,
.search-dropdown-item.active,
.search-dropdown-item:focus {
  background: var(--navy-50, #eef2ff);
  border-left-color: var(--navy);
  color: var(--ink);
}
.search-dropdown-item .tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--navy-50, #eef2ff);
  color: var(--navy);
  flex-shrink: 0;
}
.search-dropdown-item .title { flex: 1; min-width: 0; }
.search-dropdown-item mark {
  background: rgba(250, 204, 21, .35);
  color: inherit;
  padding: 1px 2px;
  border-radius: 2px;
}
.search-dropdown-footer,
.search-dropdown-empty {
  display: block;
  padding: 10px 14px;
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.search-dropdown-footer:hover,
.search-dropdown-empty:hover {
  background: var(--bg-alt, #f9fafb);
  color: var(--navy);
}
.search-dropdown-empty { border-top: 0; margin-top: 0; }
.article-toolbar input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: .88rem;
  font-family: inherit;
  outline: 0;
  min-width: 0;
}
.article-toolbar input:focus { border-color: var(--navy); }
.article-toolbar button {
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: .85rem;
}

@media (max-width: 640px) {
  .article-toolbar { flex-direction: column; align-items: stretch; }
  .article-toolbar form { max-width: 100%; }
  .filter-chip { padding: 7px 12px; font-size: .82rem; }
}

/* Blog article */
.blog-article { padding: 48px 0 80px; }
.breadcrumbs {
  font-size: .85rem;
  margin-bottom: 14px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs span { color: var(--muted); }
.article-head h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: .4em;
  color: var(--ink);
}
.article-meta {
  font-size: .9rem;
  margin-bottom: 36px;
}
.article-body { font-size: 1.05rem; line-height: 1.75; color: #2a2f3a; }
.article-body .lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1.4em;
}
.article-body p { margin: 0 0 1.2em; }
.article-body h2 {
  font-size: 1.45rem;
  margin: 2.2em 0 .7em;
  color: var(--ink);
  padding-top: .4em;
  border-top: 1px solid var(--line);
}
.article-body h2:first-of-type { border-top: 0; padding-top: 0; }
.article-body h3 {
  font-size: 1.1rem;
  margin: 1.6em 0 .5em;
  color: var(--ink);
}
.article-body ul, .article-body ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.article-body li { padding: 4px 0; }
.article-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--gold-dark); }
.article-body strong { color: var(--ink); font-weight: 600; }

.article-cta {
  margin-top: 56px;
  padding: 32px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
}
.article-cta h3 { font-size: 1.2rem; margin-bottom: .5em; color: var(--ink); }
.article-cta p { color: var(--muted); margin-bottom: 18px; }

.article-related {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.article-related h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 14px;
}
.article-related ul { padding: 0; list-style: none; margin: 0; }
.article-related li { padding: 6px 0; }
.article-related a {
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
}

@media (max-width: 720px) {
  .blog-card-link { padding: 20px 18px; }
  .blog-card h2 { font-size: 1.1rem; }
  .article-body { font-size: 1rem; line-height: 1.7; }
  .article-body .lead { font-size: 1.05rem; }
  .article-body h2 { font-size: 1.25rem; }
}

/* Legal pages */
.legal-page { padding: 64px 0 96px; }
.legal-page h1 { font-size: 2rem; margin-bottom: .4em; }
.legal-page .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2.5em; }
.legal-page h2 { font-size: 1.3rem; margin: 2em 0 .8em; }
.legal-page h3 { font-size: 1.05rem; margin: 1.6em 0 .5em; }
.legal-page p, .legal-page li { color: #2a2f3a; font-size: 1rem; line-height: 1.7; }
.legal-page ul { padding-left: 1.5em; list-style: disc; margin-bottom: 1em; }
.legal-page li { padding: 4px 0; }

/* 404 */
.notfound { padding: 96px 0; text-align: center; }
.notfound h1 { font-size: 4rem; margin: 0 0 .2em; }
.notfound p { color: var(--muted); margin-bottom: 2em; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card-featured { transform: none; }
  .roles-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .task-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  h1 { font-size: 2.1rem; }
  .hero-copy .lead { font-size: 1.05rem; }
  .hero-trust { flex-direction: column; gap: 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Intro video section — hero altı */
.intro-video {
  padding: 48px 0 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.intro-video .video-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(11, 30, 63, 0.35);
  background: #0F2A4D;
  aspect-ratio: 16 / 9;
}
.intro-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0F2A4D;
}
.intro-video .video-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}
@media (max-width: 640px) {
  .intro-video { padding: 32px 0 16px; }
  .intro-video .video-wrap { border-radius: var(--radius); }
}
