/* ============================================================
   Otomatik Dümenleme CMS - Ana Stil Dosyası
   ============================================================ */

/* --- Değişkenler --- */
:root {
  --navy: #06253d;
  --navy-2: #092f4d;
  --deep: #031a2e;
  --green: #18a94d;
  --green-2: #0f8e3d;
  --green-light: #e8f8ef;
  --text: #0b2942;
  --muted: #617284;
  --soft: #f4f9fc;
  --line: #e6edf2;
  --white: #fff;
  --shadow: 0 18px 45px rgba(8,35,58,.12);
  --shadow-sm: 0 6px 18px rgba(8,35,58,.07);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Roboto', Arial, Helvetica, sans-serif; color: var(--text); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; padding: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Utility --- */
.container { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.text-green { color: var(--green); }

/* ============================================================
   TOPBAR / HEADER
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(90deg, #041d31, #073153);
  height: 62px; box-shadow: 0 4px 20px rgba(2,21,35,.22);
}
.nav {
  height: 62px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; color: #fff; font-size: 18px;
  letter-spacing: -.3px; flex-shrink: 0;
}
.brand-logo { height: 36px; width: auto; }
.brand-mark {
  width: 34px; height: 34px; border: 2.5px solid rgba(231,255,240,.7);
  border-radius: 50%; position: relative; flex-shrink: 0;
}
.brand-mark::before {
  content: ''; position: absolute; background: var(--green);
  border-radius: 9px; width: 8px; height: 8px; left: 10px; top: 10px;
}
.brand-mark::after {
  content: ''; position: absolute; background: var(--green);
  border-radius: 9px; width: 20px; height: 3px;
  left: 4px; top: 14px; transform: rotate(-45deg);
}
.menu {
  display: flex; align-items: center; gap: 16px;
  color: #ecf7ff; font-size: 12.5px; font-weight: 700;
  flex: 1; justify-content: center; flex-wrap: nowrap; min-width: 0;
}
.menu a { opacity: .88; transition: opacity var(--transition); }
.menu a:hover { opacity: 1; color: #fff; }
.menu a.active {
  color: #fff; opacity: 1; position: relative;
}
.menu a.active::after {
  content: ''; position: absolute; height: 3px;
  background: #95cf4f; border-radius: 10px;
  left: 0; right: 0; bottom: -22px;
}

/* WhatsApp Butonu */
.wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; background: linear-gradient(180deg, #22c65b, #119640);
  color: #fff; border: none; border-radius: 8px;
  padding: 11px 18px; font-weight: 800; font-size: 13.5px;
  box-shadow: 0 8px 20px rgba(22,159,70,.28); white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  flex-shrink: 0;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(22,159,70,.35); filter: brightness(1.06); color: #fff; }
.wa-btn svg { flex-shrink: 0; }

/* Header'daki WA butonu küçük — sığdır */
.topbar .wa-btn {
  padding: 9px 14px; font-size: 12.5px; gap: 6px;
}
.topbar .wa-btn .wa-icon { width: 15px; height: 15px; }

/* Mobil toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: 6px;
}
.mobile-toggle span { display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: all var(--transition); }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobil menü */
.mobile-menu {
  background: linear-gradient(180deg, #052a46, #041e34);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0 20px;
}
.mobile-menu.visible { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  color: #dce9f4; font-size: 14px; font-weight: 700;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color: #fff; }
.mobile-menu a.active { color: #95cf4f; }

/* ============================================================
   HERO
   ============================================================ */
.hero-wrap {
  padding: 32px 0 0;
  background: #f4f9fc;
}
.hero {
  position: relative; min-height: 420px; overflow: hidden;
  border-radius: 20px;
  background-color: #eef6ff;
  box-shadow: 0 12px 40px rgba(7,39,65,.10);
}
/* Hero arkaplan görseli — LCP için <img> olarak render ediliyor */
.hero-bg-img {
  position: absolute; top: 0; right: 0;
  height: 100%; width: auto; max-width: 60%;
  object-fit: cover; object-position: right center;
  z-index: 0; pointer-events: none;
  /* Gradient overlay (sol taraf metin okunabilirliği) */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
}
.hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 60%; z-index: 1;
  background: linear-gradient(90deg, rgba(249,252,255,1) 0%, rgba(238,246,250,.95) 60%, transparent 100%);
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 100px; background: linear-gradient(0deg, rgba(238,246,255,.95), rgba(238,246,255,0));
  border-radius: 0 0 20px 20px; z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 64px 48px 60px; }
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: 54px; line-height: 1.02; margin: 0 0 18px;
  letter-spacing: -2px; color: #082742; font-weight: 950;
}
.hero p {
  font-size: 16px; margin: 0 0 26px; color: #2a4560; max-width: 540px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 13px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.dark-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #052a46; color: #fff; padding: 14px 24px;
  border-radius: 8px; font-weight: 800; font-size: 14px;
  transition: background var(--transition), transform var(--transition);
}
.dark-btn:hover { background: #073a62; transform: translateY(-1px); color: #fff; }
.mini-metrics { display: flex; gap: 22px; flex-wrap: wrap; }
.metric {
  display: flex; align-items: center; gap: 9px;
  color: #1a3d58; font-size: 12px; font-weight: 800; line-height: 1.2;
}
.metric .circle {
  width: 30px; height: 30px; border: 2px solid #d0e2ed;
  border-radius: 50%; display: grid; place-items: center;
  background: #fff; font-size: 15px; flex-shrink: 0;
}

/* ============================================================
   FEATURE CARDS (Ana sayfa - 6 kart)
   ============================================================ */
.features { position: relative; z-index: 3; margin-top: 0; padding: 32px 0 0; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(6, 1fr); overflow: hidden;
}
.feature {
  min-height: 148px; text-align: center; padding: 26px 20px;
  border-right: 1px solid var(--line); transition: background var(--transition);
}
.feature:hover { background: var(--green-light); }
.feature:last-child { border-right: 0; }
.feature .bigicon {
  margin: 0 auto 12px; width: 44px; height: 44px;
  display: grid; place-items: center; color: var(--green);
}
.feature .bigicon svg { width: 32px; height: 32px; }
.feature h3 { font-size: 14.5px; line-height: 1.2; margin: 0 0 8px; font-weight: 800; }
.feature p { font-size: 12px; line-height: 1.5; color: #607286; margin: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 76px 0; }
.section-light { background: linear-gradient(180deg, #fff, #f4fbff); }
.section-alt { background: linear-gradient(180deg, #eef8ff, #fff); }
.section-dark { background: linear-gradient(135deg, #04223b, #062e50); color: #fff; }

.eyebrow {
  font-size: 11px; letter-spacing: 2.8px; color: #15a64c;
  font-weight: 900; margin-bottom: 6px; text-transform: uppercase;
}
.section-title {
  font-size: 32px; line-height: 1.12; margin: 0 0 18px;
  letter-spacing: -.8px; color: #082742; font-weight: 950;
}
.section-dark .section-title { color: #fff; }
.section-dark .eyebrow { color: #6add88; }
.lead { font-size: 15px; color: #445b70; margin: 0 0 20px; line-height: 1.7; }

/* İki kolon layout */
.two-col { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }

/* Çek listesi */
.checks { display: grid; gap: 11px; margin-top: 20px; }
.checks li {
  display: flex; align-items: center; gap: 11px;
  font-size: 14.5px; color: #263d51; font-weight: 700;
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid;
  place-items: center; flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; }

/* Görsel kutusu */
.visual-box {
  border-radius: var(--radius); overflow: hidden;
  background: #e8f6ff; box-shadow: 0 14px 38px rgba(13,52,82,.14);
}
.visual-box img { width: 100%; height: 100%; object-fit: cover; }

.center { text-align: center; }
.center .eyebrow { text-align: center; }

/* ============================================================
   SCENARIOS
   ============================================================ */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.scenario {
  background: #fff; border-radius: 16px; padding-bottom: 18px;
  box-shadow: 0 10px 26px rgba(7,39,65,.09); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.scenario:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(7,39,65,.14); }
.scenario .thumb {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
}
.scenario .round {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--green); display: grid;
  place-items: center; margin: -22px 0 12px 18px;
  border: 1px solid #e5eef4; box-shadow: 0 8px 18px rgba(8,37,61,.12);
  position: relative; z-index: 1;
}
.scenario .round svg { width: 22px; height: 22px; }
.scenario h3 {
  font-size: 15px; font-weight: 900; line-height: 1.25;
  margin: 0 0 8px; padding: 0 18px;
}
.scenario p {
  font-size: 12.5px; line-height: 1.55; color: #687b8d;
  margin: 0 0 18px; padding: 0 18px;
}

/* Mobil: 2 kolonlu grid */
@media (max-width: 768px) {
  .scenario-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 420px) {
  .scenario-grid { grid-template-columns: 1fr; }
}
.scenario-dots { display: none; }

/* ============================================================
   PRODUCTS — eski .product sınıfı (ürün listesi sayfası için)
   ============================================================ */
.product {
  display: grid; grid-template-columns: 136px 1fr; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 20px; box-shadow: 0 12px 28px rgba(7,39,65,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(7,39,65,.13); }
.product img { height: 116px; object-fit: contain; }
.product h3 { font-size: 17px; line-height: 1.2; margin: 0 0 8px; font-weight: 900; }
.product p { font-size: 13px; color: #5f7080; margin: 0 0 13px; line-height: 1.55; }
.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 900; color: #082742; font-size: 13px;
  transition: color var(--transition);
}
.text-link:hover { color: var(--green); }
.text-link::after { content: '→'; }

/* ============================================================
   TECH PANEL
   ============================================================ */
.tech-panel {
  background: linear-gradient(90deg, #04223b, #062e50);
  border-radius: 14px; padding: 32px 36px 38px;
  color: #fff; box-shadow: 0 18px 44px rgba(4,35,59,.2);
}
.tech-panel .section-title { color: #fff; text-align: center; margin-bottom: 8px; }
.tech-panel .eyebrow { color: #6add88; text-align: center; }
.tech-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; margin-top: 24px; }
.tech { display: flex; gap: 13px; }
.tech .ico {
  background: transparent; border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; flex: 0 0 38px; width: 38px; height: 38px;
  border-radius: 10px; display: grid; place-items: center;
}
.tech .ico svg { width: 20px; height: 20px; }
.tech h4 { font-size: 13px; line-height: 1.2; margin: 0 0 5px; font-weight: 800; color: #fff; }
.tech p { font-size: 12px; line-height: 1.4; color: #c9d8e4; margin: 0; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 26px; }
.why-card {
  border: 1px solid var(--line); border-radius: 13px; background: #fff;
  text-align: center; padding: 24px 14px;
  box-shadow: 0 8px 20px rgba(8,35,58,.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(8,35,58,.1); border-color: var(--green); }
.why-card .bigicon { color: var(--green); margin-bottom: 10px; display: grid; place-items: center; }
.why-card .bigicon svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 14px; margin: 0 0 8px; font-weight: 900; }
.why-card p { font-size: 12px; color: #6a7a89; margin: 0; line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: start; }
.faq-art img { border-radius: var(--radius); box-shadow: var(--shadow); }
.faq-list { display: grid; gap: 11px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 15px 20px; font-size: 14px; font-weight: 800; color: var(--text);
  cursor: pointer; gap: 12px; text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--soft); }
.faq-question.open { color: var(--green); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition);
  color: var(--muted);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-answer {
  display: none; padding: 0 20px 16px; font-size: 13.5px;
  color: #4d6274; line-height: 1.65;
}
.faq-answer.open { display: block; }

/* ============================================================
   CTA PANEL
   ============================================================ */
.cta { padding: 0 0 24px; }
.cta-panel {
  background: linear-gradient(90deg, #149543, #1ab557);
  border-radius: var(--radius); min-height: 120px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; padding: 30px 80px; color: #fff;
  box-shadow: 0 18px 44px rgba(22,159,70,.2);
  position: relative; overflow: hidden;
}
.cta-panel::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 380px; background: linear-gradient(90deg, rgba(22,159,70,0), rgba(9,95,43,.2));
}
.cta-panel h2 { font-size: 28px; line-height: 1.08; margin: 0 0 8px; font-weight: 950; }
.cta-panel p { font-size: 14px; margin: 0; color: #e8fff1; }
.cta-panel .wa-btn {
  position: relative; z-index: 2; border: 2px solid rgba(255,255,255,.4);
  font-size: 16px; padding: 16px 32px;
}
.cta-small { font-size: 12px; text-align: center; margin-top: 9px; color: #e0ffe9; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(90deg, #041d31, #062c4b);
  color: #dbe9f3; padding: 44px 0 20px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr .9fr 1.3fr 1fr 1.25fr;
  gap: 36px; border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 28px;
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer p, .footer li { font-size: 12.5px; color: #bed0dc; }
.footer h4 { color: #fff; margin: 0 0 14px; font-size: 14px; font-weight: 800; }
.footer ul { display: grid; gap: 6px; }
.footer ul li a { color: #bed0dc; transition: color var(--transition); font-size: 12.5px; }
.footer ul li a:hover { color: #fff; }
.footer-contact ul li {
  display: flex; align-items: center; gap: 8px;
  color: #bed0dc; font-size: 12.5px;
}
.footer-contact ul li a { color: #bed0dc; }
.footer-contact ul li a:hover { color: #fff; }
.footer-contact ul { gap: 10px; }
.social { display: flex; gap: 9px; margin-top: 18px; }
.social-link {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: grid; place-items: center;
  color: #bed0dc; transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--green); color: #fff; }
.footer-bottom { padding-top: 16px; }
.copyright { text-align: center; font-size: 12px; color: #a9bdcb; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 14px 0; background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { font-size: 12.5px; color: var(--muted); }
.breadcrumb li a { color: var(--muted); transition: color var(--transition); }
.breadcrumb li a:hover { color: var(--green); }
.breadcrumb li.active { color: var(--text); font-weight: 700; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; opacity: .5; }

/* ============================================================
   PAGE HERO (iç sayfalar)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #062a47, #073a5e);
  color: #fff; padding: 56px 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%; background: radial-gradient(ellipse at center, rgba(24,169,77,.15), transparent 70%);
}
.page-hero h1 { font-size: 38px; font-weight: 950; margin: 0 0 12px; letter-spacing: -1px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 560px; }

/* ============================================================
   ÜRÜN DETAY SAYFASI
   ============================================================ */
.product-detail { padding: 56px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.product-gallery { position: sticky; top: 80px; }

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .product-gallery { position: static; }
  .product-info h1 { font-size: 24px; }
  .product-wa-btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; }
  .product-features-list { grid-template-columns: 1fr; }
  .product-thumbs { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 620px) {
  .product-detail { padding: 32px 0; }
  .product-info h1 { font-size: 21px; }
  .tab-btn { padding: 8px 14px; font-size: 13px; }
  .specs-table th, .specs-table td { padding: 9px 12px; font-size: 12.5px; }
}
.product-main-img { border-radius: var(--radius); overflow: hidden; background: #f0f8ff; box-shadow: var(--shadow); }
.product-main-img img { width: 100%; object-fit: contain; min-height: 320px; max-height: 420px; }
.product-info h1 { font-size: 30px; font-weight: 950; line-height: 1.12; margin: 0 0 14px; }
.product-short-desc { font-size: 15px; color: var(--muted); margin-bottom: 24px; line-height: 1.65; }
.product-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #22c65b, #0f8e3d);
  color: #fff; padding: 16px 32px; border-radius: 10px;
  font-weight: 900; font-size: 16px; margin-bottom: 28px;
  box-shadow: 0 10px 28px rgba(22,159,70,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(22,159,70,.38); color: #fff; }
.product-features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; margin-top: 4px; }
.product-feature-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-light); border-radius: 8px; padding: 9px 14px;
  font-size: 13px; font-weight: 700; color: #1a4f30;
}
.product-feature-tag::before { content: '✓'; color: var(--green); font-weight: 900; }

/* Galeri thumbnail'ları */
.product-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 10px;
}
.thumb-btn {
  border: 2px solid var(--line); border-radius: 8px;
  overflow: hidden; padding: 0; cursor: pointer;
  transition: border-color var(--transition);
  background: none;
}
.thumb-btn:hover, .thumb-btn.active { border-color: var(--green); }
.thumb-btn img { width: 100%; height: 60px; object-fit: cover; display: block; }
body.dark-mode .thumb-btn { border-color: #1e3550; }
body.dark-mode .thumb-btn:hover { border-color: var(--green); }

/* Teknik özellikler tablosu */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.specs-table th, .specs-table td {
  padding: 11px 16px; text-align: left;
  border-bottom: 1px solid var(--line); font-size: 13.5px;
}
.specs-table th {
  background: var(--soft); font-weight: 800; color: var(--text);
  width: 40%;
}
.specs-table td { color: var(--muted); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: 0; }

/* Sekmeler */
.product-tabs { margin-top: 40px; }
.tab-list { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin-bottom: 28px; }
.tab-btn {
  padding: 10px 20px; font-size: 14px; font-weight: 800;
  color: var(--muted); border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: color var(--transition), border-color var(--transition);
}
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-btn:hover { color: var(--text); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane h3 { font-size: 18px; font-weight: 900; margin: 0 0 14px; }
.tab-pane p { font-size: 14.5px; line-height: 1.7; color: #445b70; margin-bottom: 14px; }
.tab-pane ul { display: grid; gap: 8px; margin: 14px 0; }
.tab-pane ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #263d51;
}
.tab-pane ul li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   PAGE CONTENT (genel iç sayfa içeriği)
   ============================================================ */
.page-content { padding: 56px 0; }
.page-content h2 { font-size: 26px; font-weight: 900; margin: 0 0 14px; color: #082742; }
.page-content h3 { font-size: 20px; font-weight: 800; margin: 24px 0 10px; color: #0b2942; }
.page-content p { font-size: 15px; line-height: 1.75; color: #445b70; margin-bottom: 16px; }
.page-content ul { display: grid; gap: 9px; margin: 14px 0 20px; }
.page-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #263d51; }
.page-content ul li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container { width: min(100% - 40px, 960px); }
  .feature-card { grid-template-columns: repeat(3, 1fr); }
  .feature:nth-child(3n) { border-right: 0; }
  .feature:nth-child(n+4) { border-top: 1px solid var(--line); }
  .scenario-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  /* Header sıkışma önleme */
  .menu { gap: 12px; font-size: 11.5px; }
  .brand { font-size: 16px; }
  .topbar .wa-btn { padding: 8px 12px; font-size: 12px; }
  .topbar .wa-btn .wa-icon { display: none; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 32px, 860px); }
  .menu { display: none; }
  .topbar .wa-btn { display: none; }
  .mobile-toggle { display: flex; }
  .hero { background-position: center center !important; background-size: cover !important; }
  .hero h1 { font-size: 40px; }
  .two-col, .faq-wrap, .product-grid, .product-detail-grid { grid-template-columns: 1fr; }
  .faq-wrap { gap: 28px; }
  .faq-art { order: -1; }
  .cta-panel { padding: 28px 32px; flex-direction: column; text-align: center; }
  .cta-panel::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product { grid-template-columns: 120px 1fr; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 28px); }
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .feature-card, .why-grid, .tech-grid, .product-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); }
  .product { grid-template-columns: 1fr; text-align: center; }
  .product img { margin: auto; }
  .section-title { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-features-list { grid-template-columns: 1fr; }
  .mini-metrics { gap: 14px; }
}

/* ============================================================
   HEADER TOOLS — Bildirim & Tema Toggle
   ============================================================ */
.header-tools {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}

/* Tema toggle */
.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center;
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.theme-toggle:hover { background: rgba(255,255,255,.22); transform: rotate(20deg); }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun  { display: block; }
body.dark-mode .theme-toggle .icon-moon { display: block; }
body.dark-mode .theme-toggle .icon-sun  { display: none; }

/* Bildirim */
.notif-wrap { position: relative; }
.notif-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center;
  transition: background var(--transition);
  position: relative;
}
.notif-btn:hover { background: rgba(255,255,255,.22); }
.notif-badge {
  position: absolute; top: -4px; right: -4px;
  background: #e03d3d; color: #fff;
  font-size: 10px; font-weight: 900; line-height: 1;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid #062e50;
}

/* Dropdown */
.notif-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 320px; background: #fff; border-radius: 14px;
  box-shadow: 0 20px 50px rgba(8,35,58,.18);
  border: 1px solid #e6edf2; z-index: 200; overflow: hidden;
}
.notif-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #e6edf2;
  font-size: 13px; font-weight: 800; color: #082742;
}
.notif-read-all {
  font-size: 11px; font-weight: 700; color: #18a94d;
  cursor: pointer; transition: color var(--transition);
}
.notif-read-all:hover { color: #0f8e3d; }
.notif-list { max-height: 320px; overflow-y: auto; }
.notif-empty {
  padding: 28px 16px; text-align: center;
  font-size: 13px; color: #a0aab4;
}
.notif-item {
  display: flex; gap: 10px; padding: 12px 16px;
  border-bottom: 1px solid #f0f4f8;
  transition: background var(--transition); cursor: pointer;
}
.notif-item:last-child { border-bottom: 0; }
.notif-item:hover { background: #f4f9fc; }
.notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0; margin-top: 5px;
  background: #18a94d;
}
.notif-info .notif-dot  { background: #3b82f6; }
.notif-warning .notif-dot { background: #f59e0b; }
.notif-error .notif-dot { background: #e03d3d; }
.notif-success .notif-dot { background: #18a94d; }
.notif-body { flex: 1; min-width: 0; }
.notif-title { font-size: 13px; font-weight: 800; color: #082742; margin-bottom: 2px; }
.notif-msg   { font-size: 12px; color: #617284; line-height: 1.4; margin-bottom: 4px;
               white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-time  { font-size: 11px; color: #a0aab4; }
.notif-footer {
  display: block; text-align: center; padding: 11px 16px;
  font-size: 12px; font-weight: 800; color: #18a94d;
  border-top: 1px solid #e6edf2;
  transition: background var(--transition);
}
.notif-footer:hover { background: #f4faf7; color: #18a94d; }

/* ============================================================
   DARK MODE
   ============================================================ */
body.dark-mode {
  --text: #e2eaf2;
  --muted: #8fa3b4;
  --soft: #0f2236;
  --line: #1e3550;
  background: #0a1929;
  color: #e2eaf2;
}
body.dark-mode .topbar {
  background: linear-gradient(90deg, #020d18, #051826);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
body.dark-mode .hero-wrap { background: #0a1929; }
body.dark-mode .hero { background-color: #0d2035; }
body.dark-mode .feature-card,
body.dark-mode .feature { background: #0f2236; border-color: #1e3550; }
body.dark-mode .feature:hover { background: #0e2d1e; }
body.dark-mode .section-light { background: linear-gradient(180deg, #0a1929, #0d2035); }
body.dark-mode .section-alt   { background: linear-gradient(180deg, #0d2035, #0a1929); }
body.dark-mode .section-title { color: #e2eaf2; }
body.dark-mode .lead { color: #8fa3b4; }
body.dark-mode .visual-box { background: #0d2035; }
body.dark-mode .scenario { background: #0f2236; }
body.dark-mode .scenario .round { background: #0f2236; border-color: #1e3550; }
body.dark-mode .product-card-wa { background: linear-gradient(180deg, #1ab554, #0f7a32); }
body.dark-mode .product  { background: #0f2236; border-color: #1e3550; }
body.dark-mode .why-card { background: #0f2236; border-color: #1e3550; }
body.dark-mode .faq-item { background: #0f2236; border-color: #1e3550; }
body.dark-mode .faq-question { color: #e2eaf2; }
body.dark-mode .faq-question:hover { background: #0a1929; }
body.dark-mode .faq-answer { color: #8fa3b4; }
body.dark-mode .footer { background: linear-gradient(90deg, #020d18, #040f1e); }
body.dark-mode .notif-dropdown { background: #0f2236; border-color: #1e3550; }
body.dark-mode .notif-header { color: #e2eaf2; border-color: #1e3550; }
body.dark-mode .notif-item { border-color: #1a3248; }
body.dark-mode .notif-item:hover { background: #0a1929; }
body.dark-mode .notif-title { color: #e2eaf2; }
body.dark-mode .notif-footer { border-color: #1e3550; }
body.dark-mode .notif-footer:hover { background: #0a1929; }
body.dark-mode .dark-btn { background: #1e3550; }
body.dark-mode .dark-btn:hover { background: #243e5e; }
body.dark-mode .breadcrumb { background: #0d2035; border-color: #1e3550; }
body.dark-mode .page-hero { background: linear-gradient(135deg, #020d18, #040f1e); }
body.dark-mode .page-content { color: #e2eaf2; }
body.dark-mode .page-content h2 { color: #e2eaf2; }
body.dark-mode .page-content h3 { color: #d0dde8; }
body.dark-mode .page-content p  { color: #8fa3b4; }
body.dark-mode .page-content ul li { color: #c5d5e2; }
body.dark-mode .eyebrow { color: #6add88; }
body.dark-mode .section-alt .eyebrow { color: #6add88; }

/* ---- Genel inline style dark mode overrides (tüm sayfalar) ---- */

/* Yazı renkleri */
body.dark-mode [style*="color:#263d51"]  { color: #c5d5e2 !important; }
body.dark-mode [style*="color:#445b70"]  { color: #8fa3b4 !important; }
body.dark-mode [style*="color:#082742"]  { color: #e2eaf2 !important; }
body.dark-mode [style*="color:#0b2942"]  { color: #d0dde8 !important; }
body.dark-mode [style*="color:#1a3d58"]  { color: #c5d5e2 !important; }
body.dark-mode [style*="color:#2a4560"]  { color: #8fa3b4 !important; }
body.dark-mode [style*="color:#1a4f30"]  { color: #6add88 !important; }
body.dark-mode [style*="color:#4d6274"]  { color: #8fa3b4 !important; }
body.dark-mode [style*="color:#5f7080"]  { color: #8fa3b4 !important; }
body.dark-mode [style*="color:#607286"]  { color: #8fa3b4 !important; }
body.dark-mode [style*="color:#687b8d"]  { color: #8fa3b4 !important; }
body.dark-mode [style*="color:#6a7a89"]  { color: #8fa3b4 !important; }
body.dark-mode [style*="color:var(--text)"]  { color: #e2eaf2 !important; }
body.dark-mode [style*="color:var(--muted)"] { color: #8fa3b4 !important; }

/* Arka planlar */
body.dark-mode [style*="background:#fff"]     { background: #0f2236 !important; }
body.dark-mode [style*="background: #fff"]    { background: #0f2236 !important; }
body.dark-mode [style*="background:#f0f8ff"]  { background: #0d2035 !important; }
body.dark-mode [style*="background:#f4fbff"]  { background: #0d2035 !important; }
body.dark-mode [style*="background:#f4f9fc"]  { background: #0d2035 !important; }
body.dark-mode [style*="background:#eef8ff"]  { background: #0d2035 !important; }
body.dark-mode [style*="background:#e8f6ff"]  { background: #0d2035 !important; }
body.dark-mode [style*="background:#e8f8ef"]  { background: #0e2d1e !important; }
body.dark-mode [style*="background:var(--soft)"] { background: #0f2236 !important; }
body.dark-mode [style*="background:var(--green-light)"] { background: #0e2d1e !important; }

/* Border renkleri */
body.dark-mode [style*="border:1px solid var(--line)"]   { border-color: #1e3550 !important; }
body.dark-mode [style*="border:1.5px solid var(--line)"] { border-color: #1e3550 !important; }
body.dark-mode [style*="border-bottom:1px solid var(--line)"] { border-color: #1e3550 !important; }

/* Font weight 700/800/900 başlıklar (dark mode için renk override) */
body.dark-mode [style*="font-weight:950"], body.dark-mode [style*="font-weight: 950"],
body.dark-mode [style*="font-weight:900"], body.dark-mode [style*="font-weight: 900"] {
  color: #e2eaf2;
}
/* Green text korunur */
body.dark-mode [style*="color:#18a94d"], body.dark-mode [style*="color:#15a64c"] {
  color: #6add88 !important;
}

/* Kart/container arka planlar */
body.dark-mode .product-main-img { background: #0d2035; }
body.dark-mode .specs-table th   { background: #0f2236; color: #e2eaf2; }
body.dark-mode .specs-table td   { color: #8fa3b4; }
body.dark-mode .specs-table th,
body.dark-mode .specs-table td   { border-color: #1e3550; }
body.dark-mode .tab-pane p       { color: #8fa3b4; }
body.dark-mode .tab-pane ul li   { color: #c5d5e2; }
body.dark-mode .product-feature-tag { background: #0e2d1e; color: #6add88; }
body.dark-mode .product-short-desc  { color: #8fa3b4; }
body.dark-mode .product-info h1     { color: #e2eaf2; }

/* Sayfaların ortak elementleri */
body.dark-mode .checks li     { color: #c5d5e2; }
body.dark-mode .section-title { color: #e2eaf2; }
body.dark-mode .two-col p     { color: #8fa3b4; }
body.dark-mode .feature h3    { color: #e2eaf2; }
body.dark-mode .feature p     { color: #8fa3b4; }
body.dark-mode .scenario h3   { color: #e2eaf2; }
body.dark-mode .scenario p    { color: #8fa3b4; }
body.dark-mode .product h3    { color: #e2eaf2; }
body.dark-mode .product p     { color: #8fa3b4; }
body.dark-mode .why-card h3   { color: #e2eaf2; }
body.dark-mode .why-card p    { color: #8fa3b4; }
body.dark-mode .text-link     { color: #e2eaf2; }

/* Hero yazıları */
body.dark-mode .hero h1  { color: #e2eaf2; }
body.dark-mode .hero p   { color: #8fa3b4; }
body.dark-mode .metric   { color: #c5d5e2; }
body.dark-mode .metric .circle { background: #0f2236; border-color: #1e3550; }

/* Dark mode responsive */
@media (max-width: 900px) {
  .header-tools { gap: 4px; }
}
@media (max-width: 620px) {
  .notif-dropdown { width: calc(100vw - 32px); right: -60px; }
}

/* ============================================================
   FLASH MESAJLARI (Admin & Frontend)
   ============================================================ */
.flash {
  padding: 14px 20px; border-radius: 10px; margin: 16px 0;
  font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.flash-success { background: #e8f8ef; color: #1a5c35; border: 1px solid #a5dab8; }
.flash-error   { background: #fff0f0; color: #8b2020; border: 1px solid #f5b0b0; }
.flash-info    { background: #eef5ff; color: #1a3d82; border: 1px solid #b0c8f5; }

/* ============================================================
   ÜRÜN KARTI (YENİ — product-card)
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(7,39,65,.07);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(7,39,65,.13); }

.product-card-img-wrap {
  display: block;
  background: #f0f8ff;
  padding: 28px;
  display: flex; justify-content: center; align-items: center;
  min-height: 200px;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}
.product-card:hover .product-card-img-wrap { background: #e2f0fb; }
.product-card-img-wrap img {
  height: 150px; width: auto; max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.04); }

.product-card-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.product-card-brand {
  font-size: 11px; letter-spacing: 2px; font-weight: 900;
  color: var(--green); text-transform: uppercase; margin-bottom: 8px;
}
.product-card-title {
  font-size: 18px; font-weight: 900; line-height: 1.2;
  margin: 0 0 10px; color: var(--text);
}
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--green); }
.product-card-desc {
  font-size: 13.5px; line-height: 1.6; color: var(--muted);
  margin: 0 0 20px; flex: 1;
}
.product-card-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  padding: 11px 20px; border-radius: 10px;
  font-weight: 800; font-size: 13.5px;
  align-self: flex-start;
  transition: background var(--transition), transform var(--transition), gap var(--transition);
}
.product-card-btn:hover {
  background: #073a62; color: #fff;
  transform: translateY(-1px); gap: 12px;
}

/* Dark mode overrides */
body.dark-mode .product-card { background: #0f2236; border-color: #1e3550; }
body.dark-mode .product-card-img-wrap { background: #0d2035; border-color: #1e3550; }
body.dark-mode .product-card:hover .product-card-img-wrap { background: #0a2030; }
body.dark-mode .product-card-title { color: #e2eaf2; }
body.dark-mode .product-card-title a { color: #e2eaf2; }
body.dark-mode .product-card-btn { background: #1e3550; }
body.dark-mode .product-card-btn:hover { background: #243e5e; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ESKİ ÜRÜN KARTI — CTA ACTIONS (product-card-actions / product-card-wa) */
.product-card-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.product-card-wa {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(180deg, #22c65b, #119640);
  color: #fff; border-radius: 6px; padding: 6px 12px;
  font-size: 12px; font-weight: 800;
  transition: filter var(--transition), transform var(--transition);
  white-space: nowrap;
}
.product-card-wa:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff; }

/* ============================================================
   MOBİL MENÜ — ARAMA ALANI
   ============================================================ */
.mobile-search {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-search-wrap {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color var(--transition), background var(--transition);
}
.mobile-search-wrap:focus-within {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
}
.mobile-search-wrap > svg { color: rgba(255,255,255,.6); flex-shrink: 0; }
.mobile-search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: 14px; font-weight: 500;
  caret-color: #95cf4f;
}
.mobile-search-wrap input::placeholder { color: rgba(255,255,255,.5); }
.mobile-search-wrap button[type="submit"] {
  background: rgba(255,255,255,.15); border: none;
  border-radius: 6px; padding: 5px 8px;
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.mobile-search-wrap button[type="submit"]:hover { background: rgba(255,255,255,.28); }

/* ============================================================
   MOBİL MENÜ — KAPATMA BUTONU
   ============================================================ */
.mobile-close {
  display: none;
  align-self: flex-end;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 8px;
  line-height: 1;
}
.mobile-close:hover { background: rgba(255,255,255,.22); }
@media (max-width: 900px) {
  .mobile-close { display: block; }
}

/* Metric circle SVG boyutlandırma */
.metric .circle svg { display: block; }

/* ============================================================
   ÜRÜN LİSTESİ SAYFASI (plist-*)
   ============================================================ */
.products-empty {
  text-align: center; color: var(--muted); padding: 60px 0; font-size: 15px;
}
.plist-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.plist-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 10px 28px rgba(7,39,65,.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.plist-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(7,39,65,.14); }
.plist-img-wrap {
  background: #f0f8ff; padding: 24px;
  display: flex; justify-content: center; align-items: center;
  min-height: 180px; text-decoration: none;
  transition: background var(--transition);
}
.plist-img-wrap:hover { background: #e2f0fb; }
.plist-img-wrap img { height: 160px; object-fit: contain; transition: transform var(--transition); }
.plist-img-wrap:hover img { transform: scale(1.04); }
.plist-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.plist-brand {
  font-size: 11px; letter-spacing: 2px; color: var(--green);
  font-weight: 900; text-transform: uppercase; margin-bottom: 6px;
}
.plist-title { font-size: 18px; font-weight: 950; margin: 0 0 10px; line-height: 1.2; color: var(--text); }
.plist-desc  { font-size: 13px; color: var(--muted); margin: 0 0 16px; line-height: 1.6; flex: 1; }
.plist-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.plist-tag {
  background: var(--green-light); color: #1a4f30;
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}
.plist-actions { display: flex; gap: 10px; align-items: center; margin-top: auto; }
.plist-detail-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border: 2px solid #082742; color: #082742;
  border-radius: 8px; font-weight: 800; font-size: 13px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.plist-detail-btn:hover { background: #052a46; color: #fff; border-color: #052a46; }
.plist-wa-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 8px; font-weight: 800; font-size: 13px;
  background: linear-gradient(180deg, #22c65b, #119640); color: #fff;
  transition: filter var(--transition), transform var(--transition);
  white-space: nowrap;
}
.plist-wa-btn:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff; }

/* Dark mode overrides */
body.dark-mode .plist-card { background: #0f2236; border-color: #1e3550; }
body.dark-mode .plist-img-wrap { background: #0d2035; }
body.dark-mode .plist-title { color: #e2eaf2; }
body.dark-mode .plist-tag  { background: #0e2d1e; color: #6add88; }
body.dark-mode .plist-detail-btn { border-color: #3a5570; color: #c5d5e2; }
body.dark-mode .plist-detail-btn:hover { background: #1e3550; color: #fff; border-color: #1e3550; }

@media (max-width: 620px) {
  .plist-grid { grid-template-columns: 1fr; }
  .plist-img-wrap { min-height: 140px; }
  .plist-img-wrap img { height: 120px; }
}

/* ============================================================
   TEKNİK BİLGİLER SAYFASI (tspec-*)
   ============================================================ */
.tspec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 32px 0;
}
.tspec-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 20px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 8px 24px rgba(7,39,65,.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.tspec-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(7,39,65,.12); border-color: var(--green); }
.tspec-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--green-light); border-radius: 12px;
  display: grid; place-items: center; color: var(--green);
}
.tspec-icon svg { width: 26px; height: 26px; }
.tspec-body h3 { font-size: 15px; font-weight: 900; margin: 0 0 6px; color: var(--text); line-height: 1.2; }
.tspec-body p  { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Ek bilgi kartları */
.tspec-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.tspec-info-card {
  background: linear-gradient(135deg, #f4fbff, #eef6ff);
  border: 1px solid #d8eef8; border-radius: 14px;
  padding: 28px 24px;
}
.tspec-info-icon {
  width: 52px; height: 52px; background: #fff; border-radius: 12px;
  border: 1px solid #d0e8f4; display: grid; place-items: center;
  color: var(--green); margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(7,39,65,.08);
}
.tspec-info-card h3 { font-size: 16px; font-weight: 900; margin: 0 0 10px; color: var(--text); }
.tspec-info-card p  { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.65; }

/* Vurgulu bilgi kutusu */
.tspec-highlight {
  background: linear-gradient(135deg, #eef8ff, #f4fbff);
  border-radius: 16px; padding: 32px; margin-top: 48px;
  border: 1px solid #d0e8f4;
}
.tspec-highlight h2 { font-size: 20px; font-weight: 900; margin: 0 0 12px; color: var(--text); }
.tspec-highlight p  { font-size: 14.5px; color: #445b70; margin: 0; line-height: 1.7; }

/* Dark mode */
body.dark-mode .tspec-card { background: #0f2236; border-color: #1e3550; }
body.dark-mode .tspec-card:hover { border-color: var(--green); }
body.dark-mode .tspec-icon { background: #0e2d1e; }
body.dark-mode .tspec-body h3 { color: #e2eaf2; }
body.dark-mode .tspec-info-card { background: linear-gradient(135deg, #0d2035, #0a1929); border-color: #1e3550; }
body.dark-mode .tspec-info-icon { background: #0f2236; border-color: #1e3550; }
body.dark-mode .tspec-info-card h3 { color: #e2eaf2; }
body.dark-mode .tspec-highlight { background: linear-gradient(135deg, #0d2035, #0a1929); border-color: #1e3550; }
body.dark-mode .tspec-highlight h2 { color: #e2eaf2; }
body.dark-mode .tspec-highlight p  { color: #8fa3b4; }

@media (max-width: 900px) {
  .tspec-grid, .tspec-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .tspec-grid, .tspec-info-grid { grid-template-columns: 1fr; }
  .tspec-card { flex-direction: column; }
}

/* ============================================================
   İLETİŞİM SAYFASI (contact-*)
   ============================================================ */
.contact-list { display: grid; gap: 14px; margin-top: 24px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-item:hover { border-color: var(--green); box-shadow: 0 6px 18px rgba(8,37,61,.07); }
.contact-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: var(--green-light); border-radius: 10px;
  display: grid; place-items: center; color: var(--green);
}
.contact-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.contact-value { font-weight: 800; font-size: 15px; color: var(--text); }
a.contact-value:hover { color: var(--green); }

.contact-wa-panel {
  background: linear-gradient(135deg, #18a94d, #0f8e3d);
  border-radius: 18px; padding: 36px 28px;
  color: #fff; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
}
.contact-wa-panel h3 { font-size: 22px; font-weight: 950; margin: 0 0 12px; }
.contact-wa-panel p  { font-size: 14px; opacity: .9; margin: 0 0 24px; line-height: 1.6; }
.contact-wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; background: #fff; color: #18a94d;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 900; font-size: 15px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.15); color: #18a94d; }

/* Dark mode */
body.dark-mode .contact-item { border-color: #1e3550; }
body.dark-mode .contact-icon { background: #0e2d1e; }
body.dark-mode .contact-value { color: #e2eaf2; }

/* ============================================================
   TRAKTÖR UYUMLULUĞU SAYFASI
   ============================================================ */
.tc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tc-intro .lead { font-size: 16px; line-height: 1.7; color: var(--muted); }
.tc-stats-box { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 28px; background: var(--soft); border-radius: var(--radius); }
.tc-stat { text-align: center; padding: 16px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.tc-stat-number { display: block; font-size: 28px; font-weight: 900; color: var(--green); line-height: 1; }
.tc-stat-label { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 600; }

.tc-brand-grid { display: flex; flex-direction: column; gap: 12px; max-width: 900px; margin: 0 auto; }
.tc-brand-card { border: 2px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.tc-brand-card.open,
.tc-brand-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.tc-brand-header { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; background: none; text-align: left; }
.tc-brand-left { display: flex; align-items: center; gap: 14px; }
.tc-brand-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--soft); border-radius: 8px; color: var(--navy); flex-shrink: 0; }
.tc-brand-logo { width: 60px; height: 40px; object-fit: contain; border-radius: 6px; }
.tc-brand-name { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.tc-brand-country { font-size: 12px; color: var(--muted); margin-top: 2px; display: block; }
.tc-brand-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.tc-system-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.tc-sys-badge { font-size: 11px; font-weight: 700; color: var(--green); background: var(--green-light); padding: 3px 8px; border-radius: 20px; }
.tc-chevron { color: var(--muted); transition: transform var(--transition); flex-shrink: 0; }
.tc-brand-card.open .tc-chevron { transform: rotate(180deg); }
.tc-brand-body { border-top: 1px solid var(--line); }
.tc-brand-detail { padding: 20px; background: var(--soft); }
.tc-brand-detail p { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 14px; }
.tc-note { display: flex; align-items: flex-start; gap: 8px; background: #fff8e0; border: 1px solid #f5d060; border-radius: 8px; padding: 10px 14px; font-size: 13px; color: #7a5a00; margin-bottom: 14px; }
.tc-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tc-not-found { text-align: center; padding: 40px 24px; background: var(--soft); border-radius: var(--radius); margin-top: 32px; }
.tc-not-found h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.tc-not-found p { color: var(--muted); font-size: 14px; max-width: 480px; margin: 0 auto 16px; }

@media (max-width: 768px) {
  .tc-intro { grid-template-columns: 1fr; }
  .tc-system-badges { display: none; }
  .tc-brand-right { gap: 8px; }
}

/* ============================================================
   HİZMET İLLERİ SAYFASI
   ============================================================ */
.sc-intro { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.sc-stats-wrap { display: flex; gap: 20px; background: var(--soft); padding: 24px; border-radius: var(--radius); }
.sc-stat { text-align: center; min-width: 80px; }
.sc-stat-number { display: block; font-size: 26px; font-weight: 900; color: var(--green); line-height: 1; }
.sc-stat-label { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; font-weight: 600; }

.sc-region-block { margin-bottom: 36px; }
.sc-region-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 2px solid var(--line); }
.sc-region-icon { font-size: 18px; }
.sc-region-count { font-size: 12px; color: var(--muted); font-weight: 600; }
.sc-city-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); gap: 10px; }
.sc-city-card { border: 2px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition); }
.sc-city-card.open,
.sc-city-card:hover { border-color: var(--green); }
.sc-city-header { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 16px; background: none; text-align: left; }
.sc-city-left { display: flex; align-items: center; gap: 8px; }
.sc-city-pin { color: var(--green); flex-shrink: 0; }
.sc-city-name { font-size: 14px; font-weight: 800; color: var(--navy); }
.sc-city-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sc-crops-preview { font-size: 11px; color: var(--muted); max-width: 160px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-chevron { color: var(--muted); transition: transform var(--transition); flex-shrink: 0; }
.sc-city-card.open .sc-chevron { transform: rotate(180deg); }
.sc-city-body { border-top: 1px solid var(--line); }
.sc-city-detail { padding: 16px 18px; background: var(--soft); font-size: 13px; color: var(--muted); line-height: 1.6; }
.sc-crops { margin-top: 12px; }
.sc-crop-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.sc-crop-tag { font-size: 11px; font-weight: 700; background: var(--green-light); color: var(--green); padding: 3px 9px; border-radius: 20px; }
.sc-not-found { text-align: center; padding: 40px 24px; background: var(--soft); border-radius: var(--radius); margin-top: 32px; }
.sc-not-found h3 { font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.sc-not-found p { color: var(--muted); font-size: 14px; max-width: 480px; margin: 0 auto 16px; }

@media (max-width: 768px) {
  .sc-intro { grid-template-columns: 1fr; }
  .sc-stats-wrap { justify-content: center; }
  .sc-city-list { grid-template-columns: 1fr; }
  .sc-crops-preview { display: none; }
}

/* ============================================================
   MAKALELER / BLOG
   ============================================================ */
/* Kategori filtre butonları */
.article-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.article-cat-btn { display: inline-flex; align-items: center; gap: 5px; padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; background: var(--soft); color: var(--muted); border: 2px solid var(--line); transition: all var(--transition); }
.article-cat-btn:hover,
.article-cat-btn.active { background: var(--green); color: #fff; border-color: var(--green); }
.article-cat-count { font-size: 11px; opacity: .75; }

/* Öne çıkan makale */
.article-featured-row { display: flex; flex-direction: column; gap: 28px; }
.article-featured-card { display: grid; grid-template-columns: 480px 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.article-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-featured-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--muted); }
.article-cat-tag { display: inline-flex; background: var(--green-light); color: var(--green); padding: 2px 10px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.article-author { display: flex; align-items: center; gap: 4px; }
.article-featured-body h2 { font-size: 22px; font-weight: 900; line-height: 1.3; margin: 0; }
.article-featured-body h2 a { color: var(--navy); }
.article-featured-body h2 a:hover { color: var(--green); }
.article-featured-body p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* Makale grid */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: box-shadow var(--transition), transform var(--transition); }
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.article-card-thumb img { width: 100%; height: 200px; object-fit: cover; display: block; }
.article-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card-body h3 { font-size: 15px; font-weight: 800; line-height: 1.35; }
.article-card-body h3 a { color: var(--navy); }
.article-card-body h3 a:hover { color: var(--green); }
.article-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }

/* Makale detay */
.article-detail-wrap { padding: 40px 0; }
.article-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-main { min-width: 0; }
.article-header { margin-bottom: 28px; }
.article-header h1 { font-size: 28px; font-weight: 900; line-height: 1.3; margin: 12px 0 0; }
.article-summary { font-size: 16px; color: var(--muted); line-height: 1.7; margin-top: 12px; border-left: 3px solid var(--green); padding-left: 16px; }
.article-cover { margin-bottom: 28px; }
.article-content.prose { font-size: 15px; line-height: 1.8; color: #1e3a52; }
.article-content.prose h2 { font-size: 20px; font-weight: 900; margin: 28px 0 12px; color: var(--navy); }
.article-content.prose h3 { font-size: 17px; font-weight: 800; margin: 22px 0 10px; color: var(--navy); }
.article-content.prose p { margin-bottom: 16px; }
.article-content.prose ul,
.article-content.prose ol { padding-left: 22px; margin-bottom: 16px; }
.article-content.prose ul { list-style: disc; }
.article-content.prose ol { list-style: decimal; }
.article-content.prose li { margin-bottom: 6px; }
.article-content.prose strong { font-weight: 800; color: var(--navy); }
.article-content.prose a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; }
.article-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.article-tag { font-size: 12px; font-weight: 700; background: var(--soft); color: var(--muted); padding: 4px 10px; border-radius: 20px; }
.article-cta-inline { background: linear-gradient(135deg, var(--green), #0f8e3d); border-radius: var(--radius-sm); padding: 24px 28px; margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.article-cta-inline p { color: #fff; font-size: 14px; font-weight: 700; margin: 0; }

/* Sidebar */
.article-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget { background: var(--soft); border-radius: var(--radius-sm); padding: 20px; }
.sidebar-widget h4 { font-size: 14px; font-weight: 900; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.sidebar-product-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-product-list li a { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--navy); }
.sidebar-product-list li a:hover { color: var(--green); }
.sidebar-product-list img { border-radius: 6px; object-fit: cover; flex-shrink: 0; }

@media (max-width: 900px) {
  .article-featured-card { grid-template-columns: 1fr; }
  .article-featured-body { padding: 20px; }
  .article-detail-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-header h1 { font-size: 22px; }
}
@media (max-width: 540px) {
  .article-grid { grid-template-columns: 1fr; }
}

/* Dark mode — yeni sayfalar */
body.dark-mode .tc-brand-card { border-color: #1e3550; background: #0e1f2f; }
body.dark-mode .tc-brand-card.open,
body.dark-mode .tc-brand-card:hover { border-color: var(--green); }
body.dark-mode .tc-brand-name { color: #c8ddef; }
body.dark-mode .tc-brand-detail { background: #091725; }
body.dark-mode .tc-brand-detail p { color: #8eaabf; }
body.dark-mode .tc-stats-box { background: #091725; }
body.dark-mode .tc-stat { background: #0e1f2f; }
body.dark-mode .sc-city-card { border-color: #1e3550; background: #0e1f2f; }
body.dark-mode .sc-city-card.open { border-color: var(--green); }
body.dark-mode .sc-city-name { color: #c8ddef; }
body.dark-mode .sc-city-detail { background: #091725; color: #8eaabf; }
body.dark-mode .article-card { border-color: #1e3550; background: #0e1f2f; }
body.dark-mode .article-card-body h3 a { color: #c8ddef; }
body.dark-mode .article-featured-card { border-color: #1e3550; background: #0e1f2f; }
body.dark-mode .article-featured-body h2 a { color: #c8ddef; }
body.dark-mode .article-content.prose { color: #b0c8da; }
body.dark-mode .article-content.prose h2,
body.dark-mode .article-content.prose h3,
body.dark-mode .article-content.prose strong { color: #c8ddef; }
body.dark-mode .sidebar-widget { background: #091725; }
body.dark-mode .sidebar-product-list li a { color: #c8ddef; }

/* Search and lead forms */
.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  max-width: 760px;
}
.site-search-form input,
.quote-form-card input,
.quote-form-card textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}
.site-search-form input:focus,
.quote-form-card input:focus,
.quote-form-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 169, 77, .12);
}
.search-results {
  display: grid;
  gap: 14px;
  max-width: 900px;
}
.search-result-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}
.search-result-card h2 {
  font-size: 18px;
  line-height: 1.3;
  margin: 7px 0 6px;
}
.search-result-card h2 a { color: var(--text); }
.search-result-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px;
}
.search-result-thumb img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: start;
}
.quote-form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}
.product-quote-link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  font-weight: 800;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}
body.dark-mode .search-result-card,
body.dark-mode .quote-form-card { border-color: #1e3550; background: #0e1f2f; }
body.dark-mode .search-result-card h2 a { color: #c8ddef; }
body.dark-mode .site-search-form input,
body.dark-mode .quote-form-card input,
body.dark-mode .quote-form-card textarea {
  border-color: #1e3550;
  background: #091725;
  color: #c8ddef;
}

@media (max-width: 900px) {
  .quote-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-search-form { grid-template-columns: 1fr; }
  .search-result-card { grid-template-columns: 1fr; }
  .search-result-thumb img { width: 100%; height: auto; aspect-ratio: 3 / 2; }
}
