/* ==========================================================================
   Softmed Yazılım — Kurumsal Sağlık Bilişimi Teması
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0b4f9e;
  --primary-dark: #083b78;
  --primary-light: #e6f0fb;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --teal: #0d9488;
  --amber: #d97706;
  --rose: #e11d48;
  --violet: #6d28d9;
  --green: #16a34a;

  --bg: #ffffff;
  --bg-alt: #f6f9fd;
  --bg-deep: #0a1f3d;
  --card: #ffffff;

  --text: #0f172a;
  --text-sub: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --sh-sm: 0 1px 3px rgba(15, 23, 42, .06);
  --sh-md: 0 8px 24px -8px rgba(15, 23, 42, .12);
  --sh-lg: 0 24px 56px -20px rgba(11, 79, 158, .28);
  --tr: all .25s cubic-bezier(.4, 0, .2, 1);

  --wrap: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--tr); }
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.22; font-weight: 700; color: var(--text); }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------------------------------------------------------------- Topbar */
.topbar {
  background: var(--bg-deep);
  color: #cbd5e1;
  font-size: .84rem;
  padding: .5rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar i { color: var(--accent); margin-right: .35rem; }
.topbar-contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-contact a:hover { color: #fff; }

/* ---------------------------------------------------------------- Navbar */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.navbar.scrolled { box-shadow: var(--sh-md); }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }

.logo { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff; font-size: 1.15rem; box-shadow: 0 6px 16px -6px rgba(11, 79, 158, .6);
}
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; color: var(--primary-dark); }
.logo-text span { color: var(--accent-dark); font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .8rem; border-radius: var(--r-sm);
  font-size: .93rem; font-weight: 600; color: var(--text-sub); white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-link.active { color: var(--primary); background: var(--primary-light); }
.dropdown-toggle i { font-size: .68rem; transition: var(--tr); }

.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: calc(100% + .5rem); left: 0;
  min-width: 330px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--tr);
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown.open .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-panel a { display: flex; gap: .8rem; align-items: flex-start; padding: .7rem .8rem; border-radius: var(--r-sm); }
.dropdown-panel a:hover { background: var(--primary-light); }
.dropdown-panel a i { color: var(--primary); width: 22px; text-align: center; margin-top: .2rem; }
.dropdown-panel span { display: flex; flex-direction: column; font-size: .8rem; color: var(--text-muted); line-height: 1.4; }
.dropdown-panel strong { font-size: .93rem; color: var(--text); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.menu-toggle { display: none; font-size: 1.35rem; color: var(--primary); padding: .4rem; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent; text-align: center;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .87rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.03rem; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px -12px rgba(11, 79, 158, .9); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #062c3a; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--border-strong); color: var(--text-sub); background: #fff; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-ghost { color: var(--text-sub); background: var(--bg-alt); }
.btn-ghost:hover { color: var(--primary); background: var(--primary-light); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-onDark { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-onDark:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ----------------------------------------------------------- Breadcrumbs */
.breadcrumbs { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: .8rem 0; font-size: .85rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; color: var(--text-muted); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .5rem; }
.breadcrumbs a { color: var(--primary); font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs i { font-size: .6rem; color: var(--border-strong); }

/* ------------------------------------------------------------- Section UI */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-deep); color: #cbd5e1; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-header { text-align: center; max-width: 780px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block; padding: .4rem 1rem; border-radius: var(--r-pill);
  background: var(--primary-light); color: var(--primary);
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-dark .section-tag { background: rgba(6, 182, 212, .16); color: var(--accent); }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; letter-spacing: -.02em; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; }
.section-dark .section-desc { color: #94a3b8; }

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #0a1f3d 0%, #0b4f9e 58%, #0e7490 100%);
  color: #fff; padding: 5rem 0 6rem;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(6, 182, 212, .32), transparent 45%),
    radial-gradient(circle at 12% 82%, rgba(109, 40, 217, .28), transparent 45%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1.1rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-badge i { color: #67e8f9; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; letter-spacing: -.03em;
  max-width: 900px; margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: #67e8f9; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.2rem); color: #cbd5e1; max-width: 720px; margin-bottom: 2.25rem; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-note { font-size: .87rem; color: #94a3b8; }
.hero-note i { color: #4ade80; margin-right: .3rem; }

/* Hero: metin + görsel */
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-split .hero h1, .hero-copy h1 { max-width: none; }
.hero-art img { width: 100%; height: auto; filter: drop-shadow(0 24px 48px rgba(2, 20, 40, .45)); }

.hero-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem;
  margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-stats h3 { font-size: 2.1rem; color: #67e8f9; margin-bottom: .2rem; }
.hero-stats p { font-size: .88rem; color: #94a3b8; }

/* Sayfa üstü kompakt hero (iç sayfalar) */
.page-hero {
  background: linear-gradient(160deg, #0a1f3d 0%, #0b4f9e 100%);
  color: #fff; padding: 4rem 0 4.5rem; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(6, 182, 212, .3), transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.85rem, 4vw, 3rem); max-width: 900px; margin-bottom: 1rem; letter-spacing: -.02em; }
.page-hero p { color: #cbd5e1; max-width: 760px; font-size: 1.05rem; }
.page-hero .hero-cta { margin: 2rem 0 0; }

/* Sayfa içi diyagram görseli */
.page-figure { margin: 3rem auto 0; max-width: 900px; }
.page-figure img {
  width: 100%; height: auto;
  filter: drop-shadow(0 22px 44px rgba(2, 20, 40, .42));
}
.page-figure figcaption {
  margin-top: 1rem; text-align: center; font-size: .88rem; color: #94a3b8; line-height: 1.6;
}

/* ----------------------------------------------------------------- Cards */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.9rem 1.6rem; transition: var(--tr); height: 100%;
}
.card:hover { border-color: var(--primary); box-shadow: var(--sh-md); transform: translateY(-4px); }
.card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.card p { color: var(--text-muted); font-size: .94rem; }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.35rem; margin-bottom: 1.15rem;
  background: var(--primary-light); color: var(--primary);
}
.card-icon.teal  { background: #ccfbf1; color: var(--teal); }
.card-icon.amber { background: #fef3c7; color: var(--amber); }
.card-icon.rose  { background: #ffe4e6; color: var(--rose); }
.card-icon.violet{ background: #ede9fe; color: var(--violet); }
.card-icon.green { background: #dcfce7; color: var(--green); }
.card-icon.cyan  { background: #cffafe; color: var(--accent-dark); }

/* Ürün kartı */
.product-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--tr);
}
.product-card:hover { border-color: var(--primary); box-shadow: var(--sh-md); transform: translateY(-4px); }
.product-card .pc-top { padding: 1.5rem 1.5rem .5rem; display: flex; align-items: center; gap: .9rem; }
.product-card .pc-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; color: #fff; flex-shrink: 0; }
.product-card h3 { font-size: 1.08rem; margin: 0; }
.product-card .pc-domain { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.product-card .pc-body { padding: .75rem 1.5rem 1.25rem; flex: 1; }
.product-card .pc-body p { font-size: .9rem; color: var(--text-muted); }
.product-card .pc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.pc-tag { font-size: .72rem; font-weight: 600; padding: .25rem .6rem; border-radius: var(--r-pill); background: var(--bg-alt); color: var(--text-muted); border: 1px solid var(--border); }
.product-card .pc-foot { padding: 1rem 1.5rem; border-top: 1px solid var(--border); background: var(--bg-alt); display: flex; justify-content: space-between; align-items: center; }
.product-card .pc-foot a { font-size: .87rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: .4rem; }
.product-card .pc-foot a:hover { gap: .7rem; }
.pc-sector { font-size: .74rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }

/* Sektör filtresi */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.15rem; border-radius: var(--r-pill); border: 1px solid var(--border);
  background: #fff; font-size: .87rem; font-weight: 600; color: var(--text-muted); transition: var(--tr);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* --------------------------------------------------------------- Showcase */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 5rem; }
.showcase:last-child { margin-bottom: 0; }
.showcase:nth-child(even) .showcase-visual { order: 2; }
.showcase h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 1rem; }
.showcase > div > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; padding: .45rem 0; font-size: .95rem; color: var(--text-sub); }
.check-list i { color: var(--green); margin-top: .35rem; flex-shrink: 0; }

.showcase-visual {
  background: linear-gradient(150deg, #0b4f9e 0%, #0e7490 100%);
  border-radius: var(--r-lg); padding: 2.5rem; color: #fff; box-shadow: var(--sh-lg);
}
.visual-list { display: grid; gap: .85rem; }
.visual-row {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255, 255, 255, .11); border: 1px solid rgba(255, 255, 255, .17);
  border-radius: var(--r-sm); padding: .85rem 1rem; font-size: .9rem;
}
.visual-row i { color: #67e8f9; width: 20px; text-align: center; }
.visual-row strong { display: block; font-weight: 600; font-size: .93rem; }
.visual-row small { color: #94a3b8; font-size: .78rem; }

/* -------------------------------------------------------------- Süreç adımları */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2.4rem 1.4rem 1.6rem; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -18px; left: 1.4rem;
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.step h4 { font-size: 1.02rem; margin-bottom: .5rem; }
.step p { font-size: .89rem; color: var(--text-muted); }

/* ---------------------------------------------------------------- Tablolar */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-md); }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 560px; background: #fff; }
table.data th, table.data td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border); }
table.data th { background: var(--bg-alt); font-family: var(--font-head); font-weight: 600; color: var(--text); }
table.data tr:last-child td { border-bottom: none; }
table.data td i.fa-check { color: var(--green); }
table.data td i.fa-xmark { color: var(--rose); }

/* -------------------------------------------------------------------- SSS */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: .85rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--tr); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--text);
}
.faq-q i { color: var(--primary); font-size: .85rem; transition: var(--tr); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--text-muted); font-size: .95rem; }

/* ------------------------------------------------------------------- Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.6rem; }
.blog-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--tr);
}
.blog-card:hover { border-color: var(--primary); box-shadow: var(--sh-md); transform: translateY(-4px); }
.blog-thumb { display: block; overflow: hidden; background: var(--bg-alt); }
.blog-thumb img {
  width: 100%; aspect-ratio: 1200 / 630; object-fit: cover;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; font-size: .78rem; color: var(--text-muted); margin-bottom: .75rem; }
.tag { background: var(--primary-light); color: var(--primary); font-weight: 700; padding: .22rem .65rem; border-radius: var(--r-pill); font-size: .72rem; }
.blog-title { font-size: 1.07rem; line-height: 1.4; margin-bottom: .6rem; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: .89rem; color: var(--text-muted); flex: 1; }
.blog-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--text-muted); }
.read-more { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.read-more:hover { gap: .6rem; }

.search-bar {
  display: flex; align-items: center; gap: .7rem; max-width: 620px; margin: 2rem auto 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); padding: .3rem .3rem .3rem 1.2rem;
  box-shadow: var(--sh-sm);
}
.search-bar input { flex: 1; border: none; outline: none; padding: .75rem 0; font-size: .95rem; font-family: inherit; background: transparent; color: var(--text); }
.search-bar i { color: var(--text-muted); }
.no-result { text-align: center; padding: 3rem 1rem; color: var(--text-muted); display: none; }

/* Blog detay */
.article-wrap { padding: 3rem 0 5rem; }
.article-head { max-width: 820px; margin: 0 auto 2.5rem; }
.article-head h1 { font-size: clamp(1.7rem, 3.6vw, 2.55rem); margin: 1rem 0; letter-spacing: -.02em; }
.article-lede { font-size: 1.12rem; color: var(--text-sub); line-height: 1.7; }
.article-cover {
  width: 100%; max-width: 1080px; margin: 0 auto 3rem; display: block;
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  aspect-ratio: 1200 / 630; object-fit: cover;
}
.article-layout { display: grid; grid-template-columns: 250px 1fr; gap: 3rem; max-width: 1080px; margin: 0 auto; align-items: start; }
.article-aside { position: sticky; top: 100px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.4rem; }
.toc-title { font-size: .95rem; margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem; color: var(--primary); }
.toc-list { display: grid; gap: .1rem; }
.toc-list a { display: block; font-size: .86rem; color: var(--text-muted); padding: .4rem .5rem; border-radius: var(--r-sm); border-left: 2px solid transparent; }
.toc-list a:hover, .toc-list a.active { color: var(--primary); background: #fff; border-left-color: var(--primary); }
.share-row { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.share-row p { font-size: .78rem; color: var(--text-muted); margin-bottom: .6rem; }
.share-row div { display: flex; gap: .8rem; font-size: 1.15rem; color: var(--primary); }

.article-body { font-size: 1.02rem; color: var(--text-sub); line-height: 1.8; min-width: 0; }
.article-body h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin: 2.6rem 0 1rem; scroll-margin-top: 100px; }
.article-body h3 { font-size: 1.18rem; margin: 1.9rem 0 .75rem; }
.article-body p { margin-bottom: 1.15rem; }
.article-body ul, .article-body ol { margin: 0 0 1.4rem; padding-left: 0; }
.article-body ul li { position: relative; padding-left: 1.6rem; margin-bottom: .6rem; }
.article-body ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: .1rem; color: var(--accent-dark); font-size: .85rem; }
.article-body ol { counter-reset: li; }
.article-body ol li { position: relative; padding-left: 2.1rem; margin-bottom: .7rem; }
.article-body ol li::before {
  counter-increment: li; content: counter(li);
  position: absolute; left: 0; top: .15rem; width: 24px; height: 24px; border-radius: 7px;
  background: var(--primary-light); color: var(--primary); display: grid; place-items: center;
  font-size: .78rem; font-weight: 700; font-family: var(--font-head);
}
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--primary); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.article-body blockquote {
  border-left: 4px solid var(--accent); background: var(--bg-alt);
  padding: 1.2rem 1.5rem; margin: 1.8rem 0; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 1.02rem; color: var(--text); font-style: italic;
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: .93rem; }
.article-body table th, .article-body table td { border: 1px solid var(--border); padding: .75rem .9rem; text-align: left; }
.article-body table th { background: var(--bg-alt); font-weight: 600; color: var(--text); font-family: var(--font-head); }
.article-body .table-scroll { overflow-x: auto; margin: 1.6rem 0; }
.article-body .table-scroll table { margin: 0; min-width: 520px; }

/* Makale içi konu diyagramı */
.article-figure { margin: 2.2rem 0 2.6rem; }
.article-figure img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-md);
  box-shadow: 0 6px 20px -8px rgba(15, 23, 42, .14);
}

.note-box {
  background: var(--primary-light); border: 1px solid #bfdbfe; border-radius: var(--r-md);
  padding: 1.25rem 1.5rem; margin: 1.8rem 0; font-size: .95rem;
}
.note-box strong { color: var(--primary-dark); }

/* ---------------------------------------------------------------- CTA kutusu */
.cta-box {
  background: linear-gradient(140deg, #0a1f3d 0%, #0b4f9e 65%, #0e7490 100%);
  border-radius: var(--r-lg); padding: 3.2rem 2.5rem; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-box::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, .32), transparent 55%);
}
.cta-box > * { position: relative; z-index: 2; }
.cta-box h3 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: .9rem; }
.cta-box p { color: #cbd5e1; max-width: 640px; margin: 0 auto 1.8rem; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------- İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-card i { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--primary-light); color: var(--primary); flex-shrink: 0; }
.contact-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.contact-card p, .contact-card a { font-size: .92rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--primary); }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 2rem; box-shadow: var(--sh-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .87rem; font-weight: 600; margin-bottom: .4rem; color: var(--text-sub); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--border-strong); border-radius: var(--r-sm);
  font-family: inherit; font-size: .95rem; color: var(--text); background: #fff; transition: var(--tr);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11, 79, 158, .12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.form-consent input { width: auto; margin-top: .2rem; }
.form-alert { display: none; padding: .9rem 1.1rem; border-radius: var(--r-sm); font-size: .9rem; margin-bottom: 1rem; background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

/* ------------------------------------------------------------- Logo şeridi */
.trust-strip { padding: 2.5rem 0; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.trust-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.5rem; text-align: center; }
.trust-item i { font-size: 1.5rem; color: var(--primary); margin-bottom: .5rem; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: .96rem; }
.trust-item span { font-size: .8rem; color: var(--text-muted); }

/* ----------------------------------------------------------------- Footer */
.footer { background: var(--bg-deep); color: #94a3b8; padding: 4rem 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer .logo-text { color: #fff; }
.footer .logo-text span { color: var(--accent); }
.footer-brand p { margin: 1.2rem 0 1.4rem; font-size: .89rem; line-height: 1.75; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 255, 255, .08); color: #cbd5e1; }
.footer-social a:hover { background: var(--accent); color: #062c3a; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { font-size: .88rem; color: #94a3b8; }
.footer-links a:hover { color: var(--accent); }
.contact-links i { color: var(--accent); width: 16px; margin-right: .35rem; }
.footer-address { font-size: .83rem; line-height: 1.6; color: #94a3b8; margin-top: .3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .84rem;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--accent); }

/* ------------------------------------------------------------ Yüzen butonlar */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; font-size: 1.7rem; box-shadow: 0 10px 26px -8px rgba(37, 211, 102, .8);
}
.whatsapp-float:hover { transform: scale(1.08); }
.to-top {
  position: fixed; right: 24px; bottom: 90px; z-index: 150;
  width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff;
  display: grid; place-items: center; box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transition: var(--tr);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--primary-dark); }

/* ------------------------------------------------------------- Duyarlılık */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-art { max-width: 620px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; gap: 2rem; }
  .showcase:nth-child(even) .showcase-visual { order: 0; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: min(88vw, 340px); height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; gap: .2rem;
    padding: 5.5rem 1.25rem 2rem; box-shadow: -12px 0 40px rgba(15, 23, 42, .18);
    overflow-y: auto; transition: right .3s ease; z-index: 210;
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; justify-content: space-between; padding: .85rem 1rem; font-size: 1rem; }
  .dropdown-panel {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-left: 2px solid var(--border); border-radius: 0; margin-left: 1rem;
    padding: .25rem 0 .5rem; display: none; min-width: 0;
  }
  .has-dropdown.open .dropdown-panel { display: block; }
  .has-dropdown:hover .dropdown-panel { display: none; }
  .has-dropdown.open:hover .dropdown-panel { display: block; }
  .menu-toggle { display: block; }
  .nav-actions .btn-ghost { display: none; }
  .topbar-inner { justify-content: center; font-size: .78rem; }
  .topbar-contact { gap: 1rem; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 2.2rem 1.4rem; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; right: 16px; bottom: 16px; }
  .to-top { right: 18px; bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media print {
  .topbar, .navbar, .footer, .whatsapp-float, .to-top, .article-aside, .cta-box { display: none !important; }
  body { color: #000; }
}
