/*
Theme Name: Turgay İşler Fayans
Theme URI: https://turgayisler.biz.tr/
Author: Turgay İşler
Description: Modern, premium görünümlü, hesaplama odaklı, tema içine gömülü SEO ve schema altyapılı fayans ustası WordPress teması.
Version: 3.0.0
License: GPLv2 or later
Text Domain: turgayisler-fayans
*/

:root {
  --container: 1400px;
  --gap: 18px;
  --radius: 16px;
  --shadow: 0 10px 25px rgba(0,0,0,.05);
  --text: #111;
  --muted: #666;
  --line: rgba(0,0,0,.06);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: #fcfcfc; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 980px) { .container { padding-left: 20px; padding-right: 20px; } }

/* ==========================================================================
   1. PREMIUM HEADER (GLASSMORPHISM) & NAVİGASYON
   ========================================================================== */
.site-header {
  position: sticky; 
  top: 0; 
  z-index: 50;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand .title { font-weight: 900; letter-spacing: -0.5px; font-size: 22px; color: #111; }
.brand .tagline { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 500; }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; align-items: center; }
.primary-nav li { margin: 0; }
.primary-nav a { display: inline-block; padding: 8px 14px; border-radius: 10px; font-weight: 600; color: #444; transition: all 0.2s; }
.primary-nav a:hover { background: rgba(0,0,0,.04); color: #000; }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { background: rgba(0,0,0,.06); color: #000; font-weight: 700; }

/* Masaüstü CTA Butonu */
.header-cta-btn { 
  display: inline-block; 
  background: #111; 
  color: #fff !important; 
  padding: 10px 18px; 
  border-radius: 8px; 
  font-weight: 800; 
  font-size: 14px; 
  transition: 0.2s; 
  margin-left: 15px; 
}
.header-cta-btn:hover { background: #333; transform: translateY(-2px); }

.nav-toggle { display: none; }

/* Mobil Menü Animasyonları */
@media (max-width: 900px) {
  .header-cta-btn { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; border: none; background: rgba(0,0,0,0.04); border-radius: 8px; padding: 10px 14px; cursor: pointer; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,.05); display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
  .primary-nav.open { display: block; animation: slideDown 0.3s ease forwards; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px; }
  .primary-nav a { width: 100%; padding: 12px; border-radius: 8px; }
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   2. GENEL DÜZEN VE KART ANİMASYONLARI
   ========================================================================== */
.layout { display: flex; gap: var(--gap); padding: 24px 0; }
.main { flex: 1 1 auto; min-width: 0; }
.sidebar { flex: 0 0 28%; max-width: 28%; }
@media (max-width: 900px) { .layout { flex-direction: column; } .sidebar { flex: 1 1 auto; max-width: 100%; } }

.widget { border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); background: #fff; margin-bottom: var(--gap); }
.widget-title { font-weight: 900; margin: 0 0 14px; font-size: 15px; letter-spacing: .2px; }

/* Premium Uçan Kart Efektleri (Hover) */
.post-card, .what-card, .service-card, .hero-card, .video-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.post-card:hover, .what-card:hover, .service-card:hover, .video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}

/* ==========================================================================
   3. ANA SAYFA: NELER YAPIYORUZ & SON İŞLER
   ========================================================================== */
/* Neler Yapıyoruz Kartları (Kusursuz 4'lü Izgara ve 16:9 Oran) */
.what-grid--cards { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 16px; 
}
@media (max-width: 900px) { .what-grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .what-grid--cards { grid-template-columns: 1fr; } }

.what-card img { 
  width: 100%; 
  aspect-ratio: 16/9; 
  height: auto; 
  object-fit: cover; 
  display: block; 
}
.what-card-title { padding: 14px; font-weight: 800; text-align: center; font-size: 15px; }

/* Son İşler Kartları */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--gap); }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 680px) { .card-grid { grid-template-columns: 1fr; } }

.post-card .thumb { display: block; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f3f3f3;}
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .cap { padding: 14px; font-weight: 800; font-size: 16px; line-height: 1.3; }

/* ==========================================================================
   4. TEKİL YAZI (SINGLE) VE KUSURSUZ GALERİ ORANLARI
   ========================================================================== */
.single-title { font-size: 28px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 16px; }

.single-media-card {
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Tekil Sayfa: Küçük Resimler (Thumbnails) */
.single .gallery4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}
.single .gallery4 a { 
  display: block;
  border-radius: 12px; 
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}
/* Thumbnails TAM KARE (1:1) Oranında Sabitlendi */
.single .gallery4 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.single .gallery4 a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.1);
}
.single .gallery4 a:hover img { transform: scale(1.08); }

@media (max-width: 980px) {
  .single .gallery4 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 640px) {
  .single .gallery4 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px; }
  .single .gallery4 a { border-radius: 10px; }
}

/* Galeri Sayfasındaki Şehir Filtresini Gizle */
.tist-filter,
.page-template-gallery .tist-filter,
select[name="sehir_filtresi"] { display: none !important; }

/* ==========================================================================
   5. YILDIZ OYLAMA (PREMIUM) VE YORUMLAR
   ========================================================================== */
.tist-rating {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.tist-rating-stars { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.tist-star {
  appearance: none; border: 0; background: rgba(0,0,0,.04); border-radius: 10px;
  padding: 8px 12px; cursor: pointer; font-size: 20px; line-height: 1;
  color: #ccc; transition: all 0.2s ease;
}
.tist-star:hover { background: #fff; color: #f5b301; transform: scale(1.15); box-shadow: 0 4px 10px rgba(0,0,0,0.05);}
.tist-rating-meta { margin-top: 10px; font-size: 14px; color: var(--muted); font-weight: 600;}

/* ==========================================================================
   6. VİDEOLAR
   ========================================================================== */
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; } }
.video-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.video-card .cap { padding: 12px 14px; font-weight: 800; }

/* ==========================================================================
   7. WHATSAPP YÜZEN BUTON VE LIGHTBOX
   ========================================================================== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 9999; display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 999px; background: #25D366; color: #fff !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.wa-float__icon { font-size: 20px; line-height: 1; }
.wa-float__text { font-weight: 800; font-size: 14px; letter-spacing: 0.2px;}
@media (max-width: 480px){
  .wa-float__text { display: none; }
  .wa-float { padding: 14px; right: 16px; bottom: 16px; }
}

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; align-items: center; justify-content: center; padding: 18px; z-index: 9999; backdrop-filter: blur(5px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 85vh; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,.4); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; border: 0; background: rgba(255,255,255,.15); color: #fff; width: 46px; height: 46px; border-radius: 999px;
  cursor: pointer; font-size: 28px; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lightbox .lb-close { top: 20px; right: 20px; font-size: 24px; }
.lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox button:hover { background: rgba(255,255,255,.3); }

/* WebP <picture> wrapper */
.tist-picture { display: block; }
.tist-picture > img { display: block; width: 100%; height: auto; }

/* ==========================================================================
   8. ANA SAYFA: PREMIUM HESAPLAMA BANNER'I (YENİ EKLENEN BÖLÜM)
   ========================================================================== */
.premium-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px 32px;
  margin: 10px 0 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  gap: 20px;
}

.premium-cta-banner .cta-content h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.5px;
}

.premium-cta-banner .cta-content p {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.premium-btn:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 760px) {
  .premium-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .premium-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   3. ANA SAYFA: NELER YAPIYORUZ & SON İŞLER (PREMIUM KARTLAR)
   ========================================================================== */

/* --- Sayfa İçi Genel Başlık (H2) Stilleri (Nefes Payı) --- */
main h2, .neler-yapiyoruz-baslik h2, .wp-block-heading {
  font-size: 32px !important;
  font-weight: 900 !important;
  letter-spacing: -1px !important;
  color: #111 !important;
  margin-top: 50px !important; /* Üstteki öğe ile arayı açar */
  margin-bottom: 12px !important;
}

/* --- Neler Yapıyoruz Kartları --- */
.what-grid--cards { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px; /* Kartlar arası boşluk arttı */
  margin-top: 24px; 
  margin-bottom: 60px; /* Alt bölümle araya nefes payı eklendi */
}
@media (max-width: 900px) { .what-grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .what-grid--cards { grid-template-columns: 1fr; } }

.what-card { 
  background: #fff; 
  border-radius: 16px; 
  overflow: hidden; 
  border: 1px solid rgba(0,0,0,0.06); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.02); 
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.what-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.1);
}
.what-card img { 
  width: 100%; 
  aspect-ratio: 16/9; 
  height: auto; 
  object-fit: cover; 
  display: block; 
  border-bottom: 1px solid rgba(0,0,0,0.03); /* Resim ile yazı arasına ince zarif çizgi */
}
.what-card-title { 
  padding: 18px 14px; /* Yazı etrafındaki boşluk (padding) arttı */
  font-weight: 800; 
  text-align: center; 
  font-size: 16px; /* Yazı biraz büyüdü */
  color: #111;
  background: linear-gradient(to bottom, #ffffff, #fdfdfd);
}

/* --- Son İşler Kartları --- */
.card-grid { 
  display: grid; 
  grid-template-columns: repeat(3, minmax(0,1fr)); 
  gap: 24px; /* Kartlar arası ferahlık */
  margin-top: 24px; 
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 680px) { .card-grid { grid-template-columns: 1fr; } }

.post-card { 
  background: #fff; 
  border: 1px solid rgba(0,0,0,0.06); 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.02); 
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.1);
}
.post-card .thumb { 
  display: block; 
  width: 100%; 
  aspect-ratio: 4/3; 
  overflow: hidden; 
  background: #f3f3f3;
}
.post-card .thumb img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); 
}
.post-card:hover .thumb img { 
  transform: scale(1.08); /* Kartın içindeki resim çok daha akıcı bir şekilde yakınlaşacak */
}
.post-card .cap { 
  padding: 20px; /* İçerik boşluğu genişletildi */
  flex-grow: 1; 
}
.post-card .cap a { 
  font-weight: 800; 
  font-size: 18px; /* Proje başlıkları daha okunaklı yapıldı */
  line-height: 1.4; 
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}
.post-card:hover .cap a {
  color: #555;
} 

/* ==========================================================================
   8. SAYFALAMA (PAGINATION) STİLLERİ
   ========================================================================== */
.tist-pagination { margin-top: 50px; text-align: center; }
.tist-pagination ul { list-style: none; padding: 0; margin: 0; display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.tist-pagination ul li { margin: 0; }
.tist-pagination ul li a, 
.tist-pagination ul li span {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 18px; background: #fff; border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px; font-weight: 700; font-size: 15px; color: #111;
    text-decoration: none; transition: all 0.2s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.tist-pagination ul li a:hover { background: #f3f3f3; transform: translateY(-2px); }
.tist-pagination ul li span.current {
    background: #111; color: #fff; border-color: #111; box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}


/* ==========================================================================
   8. YENİ GÜÇLÜ ANA SAYFA BÖLÜMLERİ
   ========================================================================== */
.hero-pro{padding:40px 0 10px;background:linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%)}
.hero-pro__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:28px;align-items:center}
.hero-pro__eyebrow{display:inline-flex;padding:8px 12px;border-radius:999px;background:#eef6ff;color:#0f4c81;font-size:13px;font-weight:700;margin-bottom:14px}
.hero-pro h1{font-size:52px;line-height:1.03;letter-spacing:-1.6px;margin:0 0 16px;font-weight:900;max-width:14ch}
.hero-pro p{font-size:18px;line-height:1.7;color:#475569;max-width:62ch;margin:0}
.hero-pro__badges{display:flex;gap:10px;flex-wrap:wrap;margin:20px 0}
.hero-pro__badges span{background:#fff;border:1px solid rgba(0,0,0,.08);padding:10px 14px;border-radius:999px;font-size:14px;font-weight:700;box-shadow:0 8px 20px rgba(0,0,0,.03)}
.hero-pro__actions,.bottom-cta__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.btn-primary,.premium-btn{display:inline-flex;align-items:center;justify-content:center;padding:14px 22px;border-radius:14px;background:#111;color:#fff!important;font-weight:800;box-shadow:0 12px 28px rgba(17,17,17,.14)}
.btn-secondary{display:inline-flex;align-items:center;justify-content:center;padding:14px 22px;border-radius:14px;border:1px solid rgba(0,0,0,.12);background:#fff;color:#111!important;font-weight:800}
.hero-pro__mini-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:22px}
.hero-pro__mini-stats div{background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:18px;padding:16px;box-shadow:0 10px 24px rgba(0,0,0,.03)}
.hero-pro__mini-stats strong{display:block;font-size:13px;color:#64748b;margin-bottom:8px}
.hero-pro__mini-stats span{display:block;font-size:15px;font-weight:800;line-height:1.4}
.hero-pro__visual{display:grid;grid-template-columns:1fr .72fr;gap:14px;align-items:stretch}
.hero-pro__stack{display:grid;gap:14px}
.hero-pro__card{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:24px;padding:10px;box-shadow:0 18px 44px rgba(15,23,42,.08)}
.hero-pro__card img{display:block;width:100%;height:100%;object-fit:cover;border-radius:18px;aspect-ratio:4/5}
.hero-pro__card--main img{aspect-ratio:3/4}
.home-section{padding:26px 0}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:18px;margin-bottom:18px}
.section-head--center{display:block;text-align:center;max-width:760px;margin:0 auto 22px}
.section-title{font-size:34px;line-height:1.1;font-weight:900;letter-spacing:-1px;margin:0 0 8px}
.section-subtitle{font-size:17px;color:#64748b;line-height:1.7;margin:0 auto;max-width:64ch}
.section-subtitle--left{max-width:none}
.section-more{font-weight:800;color:#0f172a}
.premium-cta-banner{padding:8px 0 10px}
.premium-cta-banner__inner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px 24px;background:#0f172a;color:#fff;border-radius:24px;box-shadow:0 18px 45px rgba(15,23,42,.18)}
.premium-cta-banner h3{margin:0 0 6px;font-size:30px;letter-spacing:-.7px}
.premium-cta-banner p{margin:0;color:rgba(255,255,255,.78);max-width:58ch;line-height:1.7}
.home-section--trust{padding-top:34px}
.trust-grid,.process-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.trust-card,.process-card{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:22px;padding:22px;box-shadow:0 12px 30px rgba(0,0,0,.04)}
.trust-card h3,.process-card h3{margin:0 0 10px;font-size:20px;line-height:1.2}
.trust-card p,.process-card p{margin:0;color:#64748b;line-height:1.7}
.process-card strong{display:inline-flex;width:42px;height:42px;border-radius:999px;align-items:center;justify-content:center;background:#111;color:#fff;font-size:18px;margin-bottom:14px}
.what-grid--services{grid-template-columns:repeat(4,minmax(0,1fr))}
.what-card--service .what-card-body{padding:14px 16px 18px}
.what-card--service p{margin:0;color:#64748b;line-height:1.65;font-size:14px}
.faq-wrap{display:grid;grid-template-columns:.82fr 1.18fr;gap:18px;align-items:start}
.faq-list details{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:18px;padding:18px 18px 10px;margin-bottom:12px;box-shadow:0 10px 24px rgba(0,0,0,.03)}
.faq-list summary{cursor:pointer;font-weight:800;font-size:17px;list-style:none}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list p{margin:12px 0 4px;color:#64748b;line-height:1.7}
.bottom-cta{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:28px;background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:24px;box-shadow:0 16px 36px rgba(0,0,0,.04)}
.bottom-cta h2{margin:0 0 10px;font-size:34px;line-height:1.08;letter-spacing:-1px}
.bottom-cta p{margin:0;color:#64748b;line-height:1.75;max-width:64ch}
.cap-rating{display:flex;align-items:center;gap:8px;font-size:14px;color:#64748b;margin-top:10px;font-weight:700}
.cap-rating .stars{color:#f5b301;letter-spacing:1px}
@media (max-width:1100px){
  .hero-pro__grid,.faq-wrap{grid-template-columns:1fr}
  .hero-pro__content{order:1}
  .hero-pro__visual{order:2}
  .trust-grid,.process-grid,.what-grid--services{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:840px){
  .hero-pro h1{font-size:38px;max-width:none}
  .premium-cta-banner__inner,.bottom-cta{flex-direction:column;align-items:flex-start}
  .hero-pro__mini-stats{grid-template-columns:1fr}
}
@media (max-width:640px){
  .hero-pro{padding-top:26px}
  .hero-pro__visual{grid-template-columns:1fr}
  .hero-pro__stack{grid-template-columns:1fr 1fr;display:grid}
  .section-title{font-size:28px}
  .premium-cta-banner h3{font-size:24px}
  .trust-grid,.process-grid,.what-grid--services{grid-template-columns:1fr}
  .bottom-cta h2{font-size:28px}
}


/* =========================
   MODERN ANA SAYFA REVİZYONU
   ========================= */
:root {
  --brand-blue: #0f3f86;
  --brand-blue-dark: #082551;
  --brand-gold: #d8a11d;
  --surface: #f5f7fb;
  --surface-2: #eef2f8;
  --card: #ffffff;
  --radius-xl: 26px;
}
body { background: #f6f8fc; color: #0f172a; }
#ana-icerik { overflow: hidden; }
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94) !important; border-bottom: 1px solid rgba(15, 23, 42, .06) !important; box-shadow: 0 10px 30px rgba(15, 23, 42, .04); }
.header-inner { min-height: 88px; padding: 16px 0; gap: 18px; }
.brand { min-width: 0; }
.brand .title { font-size: 20px; line-height: 1.05; }
.brand .tagline { font-size: 13px; margin-top: 6px; }
.header-actions { display:flex; align-items:center; gap: 14px; margin-left: auto; }
.primary-nav ul { gap: 8px; }
.primary-nav a { padding: 12px 16px; border-radius: 14px; font-weight: 700; color: #1f2937; }
.primary-nav a:hover { background: #edf2fb; color: var(--brand-blue); }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { background: #eef2f8; color: #111827; }
.header-cta-btn { background: #101010; color: #fff !important; padding: 15px 22px; border-radius: 14px; font-size: 15px; margin-left: 0; box-shadow: 0 12px 24px rgba(0,0,0,.10); }
.header-cta-btn:hover { background: #0f3f86; }
.nav-toggle { color: #111827; }

.home-section { padding: 78px 0; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap: 20px; margin-bottom: 28px; }
.section-head--center { display:block; text-align:center; max-width: 860px; margin: 0 auto 34px; }
.section-kicker { display:inline-block; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-gold); margin-bottom: 10px; }
.section-kicker--light { color: #f5d27a; }
.section-title { font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.03em; margin: 0; font-weight: 900; color: #07152f; }
.section-title--left { font-size: clamp(28px, 3vw, 42px); }
.section-subtitle { font-size: 20px; line-height: 1.7; color: #64748b; margin: 14px auto 0; max-width: 860px; }
.section-subtitle--left { margin-left: 0; max-width: 560px; }
.section-more { font-weight: 800; color: var(--brand-blue); }
.section-more:hover { color: var(--brand-blue-dark); }

.hero-modern { padding: 42px 0 34px; background: linear-gradient(180deg, #f5f7fb 0%, #f7f8fc 100%); }
.hero-modern__grid { display:grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 46px; align-items:center; }
.hero-modern__eyebrow { display:inline-block; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; color: var(--brand-gold); font-weight: 900; margin-bottom: 18px; }
.hero-modern__copy h1 { margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: .96; letter-spacing: -0.045em; font-weight: 900; color: #07152f; max-width: 640px; }
.hero-modern__copy h1 span { color: var(--brand-gold); }
.hero-modern__copy p { font-size: 19px; line-height: 1.7; color: #475569; max-width: 640px; margin: 24px 0 30px; }
.hero-modern__features { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-bottom: 30px; }
.hero-feature { background: rgba(255,255,255,.78); border: 1px solid rgba(15, 23, 42, .06); border-radius: 18px; padding: 18px 16px; box-shadow: 0 14px 34px rgba(15, 23, 42, .04); }
.hero-feature strong { display:block; font-size: 17px; margin-bottom: 6px; color:#0f172a; }
.hero-feature span { display:block; font-size: 14px; line-height: 1.6; color:#64748b; }
.hero-modern__actions { display:flex; flex-wrap:wrap; gap: 14px; }
.btn-primary, .btn-secondary, .band-btn { display:inline-flex; align-items:center; justify-content:center; min-height: 56px; padding: 0 24px; border-radius: 16px; font-weight: 800; transition: .22s ease; }
.btn-primary { background: var(--brand-blue); color:#fff !important; box-shadow: 0 18px 32px rgba(15,63,134,.18); }
.btn-primary:hover { transform: translateY(-2px); background: var(--brand-blue-dark); }
.btn-primary--large, .btn-secondary--large { min-height: 62px; padding: 0 26px; font-size: 18px; }
.btn-primary--light { background: #fff; color: var(--brand-blue) !important; }
.btn-primary--light:hover { background: #f8fbff; }
.btn-secondary { background: #fff; color:#0f172a !important; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 12px 30px rgba(15,23,42,.05); }
.btn-secondary:hover { transform: translateY(-2px); border-color: rgba(15,63,134,.18); color: var(--brand-blue) !important; }
.btn-secondary--ghost { background: transparent; color:#fff !important; border-color: rgba(255,255,255,.28); box-shadow: none; }
.btn-secondary--ghost:hover { background: rgba(255,255,255,.08); color:#fff !important; }
.hero-modern__image-wrap { position:relative; border-radius: 34px; overflow:hidden; box-shadow: 0 28px 60px rgba(15,23,42,.14); background:#dfe6ee; }
.hero-modern__image-wrap img { display:block; width:100%; aspect-ratio: 5 / 4; object-fit: cover; }
.hero-rating-card { position:absolute; right: 24px; bottom: 22px; max-width: 260px; background: rgba(7,21,47,.92); color:#fff; border-radius: 20px; padding: 18px 20px; box-shadow: 0 20px 40px rgba(7,21,47,.3); }
.hero-rating-card strong { display:block; font-size: 20px; margin-bottom: 8px; }
.hero-rating-card span { display:block; color: rgba(255,255,255,.8); line-height: 1.5; }

.quick-calc-band { padding: 8px 0 0; }
.quick-calc-band__inner { background: linear-gradient(135deg, #0a1e49 0%, #0f3f86 100%); border-radius: 30px; padding: 34px 38px; display:flex; align-items:center; justify-content:space-between; gap: 26px; box-shadow: 0 20px 50px rgba(15,63,134,.20); }
.quick-calc-band__label { margin: 0 0 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: #f5d27a; font-weight: 800; }
.quick-calc-band h2 { color:#fff; font-size: clamp(28px, 3vw, 40px); line-height:1.12; margin: 0 0 12px; max-width: 740px; }
.quick-calc-band p { margin: 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.65; max-width: 760px; }
.band-btn { background:#111; color:#fff !important; min-width: 250px; }
.band-btn:hover { background:#000; transform: translateY(-2px); }

.trust-section { padding-top: 86px; }
.trust-grid--enhanced { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.trust-card { background: #fff; border:1px solid rgba(15,23,42,.06); border-radius: 24px; padding: 28px; box-shadow: 0 16px 34px rgba(15,23,42,.04); }
.trust-card__icon { width: 58px; height: 58px; border-radius: 18px; display:flex; align-items:center; justify-content:center; font-size: 28px; background: #edf2fb; margin-bottom: 18px; }
.trust-card h3 { margin: 0 0 12px; font-size: 28px; line-height: 1.15; letter-spacing: -.03em; }
.trust-card p { margin:0; font-size: 18px; line-height: 1.7; color:#64748b; }

.services-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.service-box { background:#fff; border:1px solid rgba(15,23,42,.06); border-radius: 24px; overflow:hidden; box-shadow: 0 16px 34px rgba(15,23,42,.04); transition: .25s ease; }
.service-box:hover { transform: translateY(-8px); box-shadow: 0 24px 42px rgba(15,23,42,.09); }
.service-box img { display:block; width:100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service-box__body { padding: 22px; }
.service-box__body h3 { margin:0 0 10px; font-size: 25px; line-height:1.15; }
.service-box__body p { margin:0; font-size: 17px; line-height:1.7; color:#64748b; }

.process-grid--modern { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.process-card { background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%); border:1px solid rgba(15,23,42,.06); border-radius: 24px; padding: 26px; box-shadow: 0 16px 34px rgba(15,23,42,.04); }
.process-card strong { width:58px; height:58px; border-radius:18px; background: #0f3f86; color:#fff; display:flex; align-items:center; justify-content:center; font-size: 24px; margin-bottom: 16px; }
.process-card h3 { margin:0 0 10px; font-size: 24px; }
.process-card p { margin:0; color:#64748b; line-height:1.7; font-size: 17px; }

.post-card--modern { border-radius: 24px; border-color: rgba(15,23,42,.06); box-shadow: 0 16px 34px rgba(15,23,42,.04); }
.post-card--modern .thumb { aspect-ratio: 16/11; }
.post-card--modern .cap { padding: 22px; }
.post-card--modern .cap-title { font-size: 22px; line-height: 1.25; margin-bottom: 12px; }
.post-card--modern .cap-excerpt { margin:0; font-size: 16px; line-height:1.7; color:#64748b; font-weight:500; }

.faq-wrap { display:grid; grid-template-columns: 1fr 1.2fr; gap: 24px; align-items:start; }
.faq-list details { background:#fff; border:1px solid rgba(15,23,42,.06); border-radius: 20px; padding: 20px 22px; box-shadow: 0 12px 30px rgba(15,23,42,.04); }
.faq-list details + details { margin-top: 14px; }
.faq-list summary { cursor:pointer; list-style:none; font-weight: 800; font-size: 19px; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list p { margin: 14px 0 0; color:#64748b; font-size: 17px; line-height:1.7; }

.bottom-cta--modern { display:flex; align-items:center; justify-content:space-between; gap: 26px; background: linear-gradient(135deg, #07152f 0%, #0f3f86 100%); border-radius: 30px; padding: 36px 38px; box-shadow: 0 24px 56px rgba(7,21,47,.22); }
.bottom-cta--modern h2 { margin:0 0 12px; color:#fff; font-size: clamp(30px, 3vw, 42px); line-height:1.1; }
.bottom-cta--modern p { margin:0; color: rgba(255,255,255,.82); font-size: 18px; line-height:1.7; max-width: 760px; }
.bottom-cta__actions { display:flex; flex-wrap:wrap; gap: 14px; }

@media (max-width: 1180px) {
  .hero-modern__grid,
  .faq-wrap { grid-template-columns: 1fr; }
  .hero-modern__copy h1,
  .hero-modern__copy p,
  .section-subtitle,
  .section-subtitle--left { max-width: none; }
  .quick-calc-band__inner,
  .bottom-cta--modern { flex-direction: column; align-items:flex-start; }
}

@media (max-width: 1024px) {
  .trust-grid--enhanced,
  .services-grid,
  .process-grid--modern,
  .hero-modern__features { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .header-inner { min-height: 76px; }
  .header-actions { gap: 8px; }
  .primary-nav { position:absolute; top: calc(100% + 8px); left: 16px; right: 16px; background:#fff; border:1px solid rgba(15,23,42,.06); border-radius: 18px; box-shadow: 0 20px 45px rgba(15,23,42,.10); }
  .primary-nav ul { padding: 14px; }
  .primary-nav a { width:100%; }
  .header-cta-btn { display:none; }
  .nav-toggle { display:inline-flex; align-items:center; justify-content:center; width: 48px; height: 48px; border-radius: 14px; border:1px solid rgba(15,23,42,.08); background:#fff; }
  .home-section { padding: 58px 0; }
  .quick-calc-band__inner,
  .bottom-cta--modern { padding: 28px 24px; }
  .hero-modern { padding-top: 28px; }
}

@media (max-width: 700px) {
  .brand .title { font-size: 17px; }
  .brand .tagline { font-size: 11px; }
  .section-title { font-size: 36px; }
  .hero-modern__copy h1 { font-size: 48px; }
  .hero-modern__copy p,
  .section-subtitle,
  .trust-card p,
  .service-box__body p,
  .process-card p,
  .quick-calc-band p,
  .bottom-cta--modern p { font-size: 16px; }
  .trust-grid--enhanced,
  .services-grid,
  .process-grid--modern,
  .hero-modern__features,
  .card-grid { grid-template-columns: 1fr; }
  .hero-modern__actions,
  .bottom-cta__actions { width:100%; }
  .btn-primary,
  .btn-secondary,
  .band-btn { width:100%; }
  .hero-modern__image-wrap { border-radius: 24px; }
  .hero-rating-card { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .trust-card,
  .service-box,
  .process-card,
  .post-card--modern,
  .faq-list details { border-radius: 20px; }
}

/* =========================================================
   VIDEO REVIZYON FINAL DUZELTMELERI - v2.2.0
   ========================================================= */
body { background: #f7f9fc !important; }
.site-header { background: rgba(255,255,255,.98) !important; }
.header-inner { min-height: 82px !important; }
.brand .title { font-weight: 900 !important; color: #0b1220 !important; letter-spacing: -0.04em; }
.brand .tagline { color:#64748b !important; }
.header-cta-btn { background:#0b1220 !important; color:#fff !important; border-radius: 14px !important; }
.header-cta-btn:hover { background:#0f3f86 !important; }
.hero-modern { padding: 48px 0 30px !important; background: linear-gradient(180deg,#f8fafc 0%,#f3f6fb 100%) !important; }
.hero-modern__copy h1 { color:#07152f !important; text-shadow:none !important; }
.hero-modern__copy h1 span { color:#d8a11d !important; }
.hero-modern__copy > p { color:#334155 !important; }
.hero-feature { background:#fff !important; border:1px solid rgba(15,23,42,.07) !important; }
.hero-feature strong { color:#0f172a !important; }
.hero-feature span { color:#64748b !important; }
.quick-calc-band { padding: 22px 0 6px !important; }
.quick-calc-band__inner { position: relative; overflow: hidden; background: linear-gradient(135deg,#ffffff 0%,#eef6ff 100%) !important; border: 1px solid rgba(15,63,134,.12) !important; border-radius: 30px !important; padding: 32px 38px !important; box-shadow: 0 18px 48px rgba(15,23,42,.08) !important; }
.quick-calc-band__inner:before { content: ''; position:absolute; inset:0 auto 0 0; width:7px; background: linear-gradient(180deg,#0f3f86,#d8a11d); }
.quick-calc-band__inner > * { position:relative; z-index:1; }
.quick-calc-band__label, body .quick-calc-band .quick-calc-band__label { color:#d8a11d !important; opacity:1 !important; text-shadow:none !important; }
.quick-calc-band h2, body .quick-calc-band h2, body .quick-calc-band__inner h2 { color:#07152f !important; opacity:1 !important; text-shadow:none !important; font-weight:900 !important; }
.quick-calc-band p, body .quick-calc-band p, body .quick-calc-band__inner p { color:#475569 !important; opacity:1 !important; text-shadow:none !important; }
.band-btn, body .quick-calc-band .band-btn { background:#0f3f86 !important; color:#fff !important; border:0 !important; box-shadow:0 14px 30px rgba(15,63,134,.22) !important; }
.band-btn:hover { background:#082551 !important; }
.trust-section { padding-top: 72px !important; }
.home-section { padding-top: 70px !important; padding-bottom: 70px !important; }
.section-title { color:#07152f !important; }
.section-subtitle { color:#64748b !important; }
.trust-card, .service-box, .process-card, .post-card--modern, .faq-list details { background:#fff !important; box-shadow:0 18px 44px rgba(15,23,42,.055) !important; }
.trust-card h3, .service-box__body h3, .process-card h3 { color:#0f172a !important; }
.trust-card p, .service-box__body p, .process-card p, .post-card--modern .cap-excerpt, .faq-list p { color:#64748b !important; }
.bottom-cta--modern h2 { color:#fff !important; }
.bottom-cta--modern p { color:rgba(255,255,255,.84) !important; }
.wa-float { box-shadow: 0 12px 34px rgba(37,211,102,.35) !important; }
@media (max-width: 1180px) { .hero-modern__grid { grid-template-columns: 1fr !important; gap: 28px !important; } .quick-calc-band__inner { align-items: stretch !important; } .band-btn { min-width: 0 !important; } }
@media (max-width: 700px) { .hero-modern { padding-top: 28px !important; } .hero-modern__copy h1 { font-size: 42px !important; line-height: 1.02 !important; } .quick-calc-band__inner { padding: 26px 22px !important; border-radius: 24px !important; } .quick-calc-band h2 { font-size: 26px !important; } .quick-calc-band p { font-size: 16px !important; } .home-section { padding-top: 54px !important; padding-bottom: 54px !important; } .wa-float { right: 12px !important; bottom: 12px !important; padding: 12px 14px !important; } }

/* =========================================================
   V6 Premium Modern SEO Theme Refinement
   ========================================================= */
:root{
  --tist-navy:#07162d;
  --tist-blue:#0b3a73;
  --tist-gold:#d9a51d;
  --tist-green:#22c55e;
  --tist-ink:#0b1220;
  --tist-muted:#64748b;
  --tist-soft:#f6f8fb;
  --tist-card:#ffffff;
  --tist-border:#e7edf5;
  --tist-shadow:0 20px 55px rgba(7,22,45,.10);
  --tist-radius:28px;
}
html{scroll-behavior:smooth} body{background:#fff;color:var(--tist-ink);font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;line-height:1.65;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility} .container{width:min(1180px,calc(100% - 44px));margin-inline:auto}.site-header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.92);backdrop-filter:blur(16px);border-bottom:1px solid rgba(231,237,245,.85)}.header-inner{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}.brand{display:flex;flex-direction:column;text-decoration:none;color:var(--tist-ink);line-height:1.1}.brand .title{font-weight:950;font-size:clamp(22px,2.5vw,30px);letter-spacing:-.04em}.brand .tagline{font-size:14px;color:var(--tist-muted);font-weight:650;margin-top:8px}.primary-nav ul{display:flex;align-items:center;gap:8px;list-style:none;margin:0;padding:0}.primary-nav a{display:inline-flex;padding:12px 17px;border-radius:15px;color:#1f2937;text-decoration:none;font-weight:750}.primary-nav .current-menu-item>a,.primary-nav a:hover{background:#f0f4f8;color:var(--tist-blue)}.header-cta-btn{background:var(--tist-navy);color:#fff;text-decoration:none;font-weight:900;border-radius:16px;padding:14px 22px;box-shadow:0 14px 32px rgba(7,22,45,.18)}.header-actions{display:flex;align-items:center;gap:12px}.nav-toggle{width:58px;height:58px;border:1px solid var(--tist-border);background:#fff;border-radius:22px;color:var(--tist-ink);display:none;align-items:center;justify-content:center;box-shadow:0 14px 30px rgba(7,22,45,.06)}

.hero-v6{position:relative;overflow:hidden;background:radial-gradient(circle at 15% 20%,rgba(217,165,29,.15),transparent 26%),linear-gradient(135deg,#f8fbff 0%,#fff 45%,#f4f8fd 100%);padding:76px 0 58px;border-bottom:1px solid var(--tist-border)}.hero-v6__grid{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);gap:54px;align-items:center}.eyebrow,.section-kicker{display:inline-flex;align-items:center;gap:10px;color:var(--tist-gold);font-weight:950;letter-spacing:.16em;text-transform:uppercase;font-size:13px}.hero-v6 h1{font-size:clamp(44px,6vw,78px);line-height:.96;letter-spacing:-.065em;margin:18px 0 20px;color:var(--tist-navy);font-weight:1000}.hero-v6 h1 span{color:var(--tist-gold);display:inline}.hero-lead{font-size:clamp(17px,1.35vw,20px);color:#40506a;max-width:680px;margin:0 0 28px}.hero-proof-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:26px 0 30px}.hero-proof-row div{background:rgba(255,255,255,.78);border:1px solid var(--tist-border);border-radius:22px;padding:16px 18px;box-shadow:0 14px 34px rgba(7,22,45,.06)}.hero-proof-row strong{display:block;color:var(--tist-navy);font-size:15px;font-weight:950}.hero-proof-row span{display:block;color:var(--tist-muted);font-size:13px;margin-top:4px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:56px;padding:0 24px;border-radius:18px;text-decoration:none;font-weight:950;letter-spacing:-.01em;transition:.2s ease;white-space:nowrap}.btn:hover{transform:translateY(-2px)}.btn-gold{background:var(--tist-gold);color:#07162d;box-shadow:0 18px 36px rgba(217,165,29,.25)}.btn-white{background:#fff;color:var(--tist-navy);border:1px solid var(--tist-border);box-shadow:0 16px 34px rgba(7,22,45,.08)}.btn-dark{background:var(--tist-navy);color:#fff;box-shadow:0 18px 36px rgba(7,22,45,.20)}.btn-green{background:var(--tist-green);color:#fff;box-shadow:0 18px 36px rgba(34,197,94,.22)}.hero-v6__actions{display:flex;flex-wrap:wrap;gap:14px}.hero-photo-card{position:relative;border-radius:36px;overflow:hidden;box-shadow:var(--tist-shadow);border:1px solid rgba(255,255,255,.88);background:#fff}.hero-photo-card img{display:block;width:100%;height:510px;object-fit:cover}.hero-mini-card{position:absolute;left:22px;right:auto;background:rgba(7,22,45,.92);color:#fff;border-radius:22px;padding:16px 18px;min-width:210px;box-shadow:0 16px 38px rgba(7,22,45,.24);backdrop-filter:blur(10px)}.hero-mini-card strong{display:block;font-size:17px;font-weight:950}.hero-mini-card span{display:block;font-size:13px;color:#d5dde9}.hero-mini-card--top{top:22px}.hero-mini-card--bottom{bottom:22px;left:auto;right:22px;background:rgba(217,165,29,.94);color:#07162d}.hero-mini-card--bottom span{color:#253245}

.metric-strip{background:#07162d;color:#fff}.metric-strip__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px}.metric-strip__grid div{padding:24px 22px;border-left:1px solid rgba(255,255,255,.08)}.metric-strip strong{display:block;color:var(--tist-gold);font-size:22px;font-weight:1000}.metric-strip span{display:block;color:#d7e0ea;font-weight:700;margin-top:4px}.calc-focus-v6{background:#fff;padding:42px 0}.calc-focus-v6__inner{display:flex;align-items:center;justify-content:space-between;gap:28px;border:1px solid var(--tist-border);border-radius:32px;background:linear-gradient(135deg,#fff 0%,#f6f9fd 100%);box-shadow:var(--tist-shadow);padding:34px}.calc-focus-v6 h2{font-size:clamp(26px,3vw,42px);line-height:1.08;margin:10px 0;color:var(--tist-navy);letter-spacing:-.045em}.calc-focus-v6 p{color:var(--tist-muted);max-width:780px;margin:0}.home-section{padding:86px 0}.section-head{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:36px}.section-head--center{display:block;text-align:center;max-width:860px;margin-inline:auto;margin-bottom:42px}.section-title{font-size:clamp(34px,4vw,56px);line-height:1.03;letter-spacing:-.055em;color:var(--tist-navy);font-weight:1000;margin:12px 0 14px}.section-title--left{text-align:left}.section-subtitle{color:var(--tist-muted);font-size:18px;max-width:780px;margin:0 auto}.section-subtitle--left{margin-left:0}.trust-v6{background:linear-gradient(180deg,#fff,#f7faff)}.trust-v6__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.trust-v6-card{background:#fff;border:1px solid var(--tist-border);border-radius:28px;padding:30px 28px;box-shadow:0 16px 44px rgba(7,22,45,.07);min-height:270px}.trust-icon{display:inline-flex;align-items:center;justify-content:center;width:64px;height:64px;border-radius:22px;background:#f0f5ff;font-size:30px;margin-bottom:24px}.trust-v6-card h3{font-size:22px;line-height:1.15;letter-spacing:-.03em;margin:0 0 13px;color:var(--tist-navy);font-weight:1000}.trust-v6-card p{margin:0;color:var(--tist-muted)}

.services-v6{background:#fff}.service-v6-grid{display:grid;grid-template-columns:1.15fr .85fr .85fr;grid-auto-rows:minmax(270px,auto);gap:22px}.service-v6-card{position:relative;overflow:hidden;border-radius:30px;min-height:280px;background:#07162d;box-shadow:var(--tist-shadow);isolation:isolate}.service-v6-card--big{grid-row:span 2}.service-v6-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;transition:transform .35s ease}.service-v6-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,22,45,.08),rgba(7,22,45,.85));z-index:-1}.service-v6-card:hover img{transform:scale(1.04)}.service-v6-card div{position:absolute;left:0;right:0;bottom:0;padding:28px}.service-v6-card span{display:inline-flex;color:#07162d;background:var(--tist-gold);font-size:12px;font-weight:950;text-transform:uppercase;letter-spacing:.1em;border-radius:999px;padding:7px 11px;margin-bottom:12px}.service-v6-card h3{color:#fff;font-size:clamp(22px,2.2vw,36px);line-height:1.05;margin:0 0 10px;font-weight:1000;letter-spacing:-.045em}.service-v6-card p{color:#e3eaf4;margin:0;max-width:540px}.process-v6{background:#f6f8fb}.process-v6-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;counter-reset:process}.process-v6-grid div{background:#fff;border:1px solid var(--tist-border);border-radius:28px;padding:28px;box-shadow:0 14px 38px rgba(7,22,45,.06)}.process-v6-grid b{display:inline-flex;width:48px;height:48px;align-items:center;justify-content:center;border-radius:16px;background:var(--tist-navy);color:#fff;font-weight:1000;margin-bottom:20px}.process-v6-grid h3{font-size:22px;margin:0 0 10px;color:var(--tist-navy);letter-spacing:-.03em;font-weight:1000}.process-v6-grid p{margin:0;color:var(--tist-muted)}.works-v6{background:#fff}.final-cta-v6{background:#fff;padding-top:30px}.final-cta-v6__inner{display:flex;align-items:center;justify-content:space-between;gap:32px;background:linear-gradient(135deg,#07162d,#0b3a73);color:#fff;border-radius:36px;padding:46px;box-shadow:0 26px 70px rgba(7,22,45,.22);overflow:hidden;position:relative}.final-cta-v6__inner:before{content:"";position:absolute;right:-120px;top:-120px;width:300px;height:300px;border-radius:999px;background:rgba(217,165,29,.18)}.final-cta-v6 h2{font-size:clamp(30px,4vw,52px);line-height:1.03;letter-spacing:-.055em;margin:12px 0;color:#fff;font-weight:1000;max-width:780px}.final-cta-v6 p{color:#dce6f2;max-width:720px;margin:0}.final-cta-v6__actions{position:relative;z-index:2;display:flex;flex-wrap:wrap;gap:12px}.section-more{color:var(--tist-blue);font-weight:900;text-decoration:none}.post-card--modern{border-radius:28px;overflow:hidden;border:1px solid var(--tist-border);box-shadow:0 16px 42px rgba(7,22,45,.07)}.post-card--modern .thumb img{height:230px;object-fit:cover;width:100%}.post-card--modern .cap{padding:20px;background:#fff}.cap-title a{color:var(--tist-navy);font-weight:950;text-decoration:none;font-size:18px}.cap-excerpt{color:var(--tist-muted)}

/* Built-in calculator */
.tist-calc{background:linear-gradient(180deg,#f7faff,#fff);border:1px solid var(--tist-border);border-radius:34px;padding:28px;box-shadow:var(--tist-shadow);margin:28px 0}.tist-calc__head h2{font-size:clamp(30px,4vw,52px);line-height:1.04;letter-spacing:-.055em;margin:0 0 12px;color:var(--tist-navy);font-weight:1000}.tist-calc__head p{color:var(--tist-muted);font-size:18px;margin:0 0 24px}.tist-calc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:18px}.tist-calc label{font-weight:900;color:var(--tist-navy);font-size:13px;display:block;margin-bottom:8px}.tist-calc input,.tist-calc select{width:100%;min-height:50px;border:1px solid var(--tist-border);border-radius:16px;padding:0 14px;background:#fff;color:var(--tist-ink);font-weight:700}.tist-calc-actions{display:flex;gap:12px;flex-wrap:wrap;margin:16px 0}.tist-calc-result{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:22px}.tist-calc-result div{background:#fff;border:1px solid var(--tist-border);border-radius:22px;padding:18px;box-shadow:0 10px 26px rgba(7,22,45,.05)}.tist-calc-result span{display:block;color:var(--tist-muted);font-size:13px;font-weight:800}.tist-calc-result strong{display:block;color:var(--tist-navy);font-size:25px;font-weight:1000;margin-top:4px}.tist-calc-note{color:var(--tist-muted);font-size:13px;margin-top:16px}.tist-calc-wa{display:inline-flex;margin-top:18px;background:var(--tist-green);color:#fff;text-decoration:none;font-weight:1000;border-radius:18px;padding:14px 20px}.tist-seo-service-box{background:#fff;border:1px solid var(--tist-border);border-radius:28px;padding:28px;margin:26px 0;box-shadow:0 12px 34px rgba(7,22,45,.06)}.tist-seo-service-box h2{margin-top:0;color:var(--tist-navy);letter-spacing:-.04em}

@media (max-width: 1040px){.hero-v6__grid{grid-template-columns:1fr;gap:34px}.hero-photo-card img{height:420px}.trust-v6__grid,.process-v6-grid{grid-template-columns:repeat(2,1fr)}.service-v6-grid{grid-template-columns:1fr 1fr}.service-v6-card--big{grid-row:span 1}.metric-strip__grid{grid-template-columns:repeat(2,1fr)}.calc-focus-v6__inner,.final-cta-v6__inner{flex-direction:column;align-items:flex-start}.tist-calc-grid,.tist-calc-result{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 860px){.header-inner{min-height:86px}.primary-nav{position:absolute;top:100%;left:18px;right:18px;background:#fff;border:1px solid var(--tist-border);box-shadow:0 22px 45px rgba(7,22,45,.15);border-radius:24px;padding:12px;display:none}.primary-nav.open{display:block}.primary-nav ul{display:block}.primary-nav a{display:flex;padding:15px 16px}.nav-toggle{display:inline-flex}.header-cta-btn{display:none}.brand .title{font-size:25px}.brand .tagline{font-size:14px}.hero-v6{padding:42px 0 34px}.hero-v6 h1{font-size:44px;line-height:1.02}.hero-proof-row{grid-template-columns:1fr}.hero-photo-card img{height:330px}.hero-mini-card{position:static;margin:0;border-radius:0;min-width:0}.hero-mini-card--bottom{position:static}.trust-v6__grid,.process-v6-grid,.service-v6-grid,.metric-strip__grid,.tist-calc-grid,.tist-calc-result{grid-template-columns:1fr}.home-section{padding:58px 0}.section-title{font-size:38px}.section-subtitle{font-size:17px}.trust-v6-card{min-height:0;padding:26px}.trust-v6-card h3{font-size:24px}.service-v6-card,.service-v6-card--big{min-height:330px}.section-head{display:block}.final-cta-v6__inner,.calc-focus-v6__inner{padding:28px;border-radius:28px}.wa-float{right:14px!important;bottom:14px!important}.wa-float__text{display:none!important}}
@media (max-width: 520px){.container{width:min(100% - 32px,1180px)}.site-header{position:sticky}.header-inner{min-height:76px}.nav-toggle{width:54px;height:54px;border-radius:20px}.brand .title{font-size:22px}.brand .tagline{font-size:13px;margin-top:6px}.hero-v6{padding:34px 0 28px}.eyebrow,.section-kicker{font-size:12px;letter-spacing:.12em}.hero-v6 h1{font-size:36px;letter-spacing:-.045em}.hero-lead{font-size:16px}.btn{width:100%;min-height:54px}.hero-v6__actions{width:100%}.hero-photo-card{border-radius:26px}.hero-photo-card img{height:280px}.metric-strip__grid div{padding:18px}.calc-focus-v6{padding:28px 0}.calc-focus-v6 h2{font-size:28px}.home-section{padding:48px 0}.section-head--center{text-align:left}.section-title{font-size:32px}.section-subtitle{font-size:16px}.trust-v6-card{border-radius:24px;padding:22px}.trust-icon{width:54px;height:54px;border-radius:18px;font-size:25px;margin-bottom:18px}.trust-v6-card h3{font-size:25px}.trust-v6-card p{font-size:16px}.service-v6-card{border-radius:24px;min-height:320px}.service-v6-card div{padding:22px}.process-v6-grid div{padding:22px}.final-cta-v6 h2{font-size:30px}.tist-calc{padding:20px;border-radius:26px}.tist-calc__head h2{font-size:30px}.tist-calc-result strong{font-size:23px}}
.site-footer-v6{background:#07162d;color:#fff;padding:64px 0 26px;margin-top:0}.footer-v6-grid{display:grid;grid-template-columns:1.2fr .8fr 1fr;gap:44px}.site-footer-v6 h3{color:#fff;font-size:20px;font-weight:1000;margin:0 0 16px}.site-footer-v6 p{color:#cbd5e1;margin:0 0 14px}.site-footer-v6 ul{list-style:none;margin:0;padding:0}.site-footer-v6 li{margin:8px 0}.site-footer-v6 a{color:#dce6f2;text-decoration:none;font-weight:750}.site-footer-v6 a:hover{color:#fff}.footer-wa{display:inline-flex!important;background:#22c55e;color:#fff!important;border-radius:16px;padding:12px 18px;font-weight:950!important}.footer-v6-bottom{margin-top:40px;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);color:#94a3b8;font-size:13px;text-align:center}.wa-float{position:fixed;right:20px;bottom:20px;z-index:9999;display:flex;align-items:center;gap:10px;padding:14px 18px;border-radius:999px;background:#22c55e;color:#fff;box-shadow:0 14px 36px rgba(34,197,94,.36);text-decoration:none;font-weight:950}.wa-float__icon{font-size:20px}.wa-float__text{font-size:14px}@media(max-width:860px){.footer-v6-grid{grid-template-columns:1fr;gap:26px}.site-footer-v6{padding:46px 0 22px}}
