/* ===================================================
   SIGORTA — Aydınlık Beyaz & Yeşil Tema
   =================================================== */
:root {
  --white:      #ffffff;
  --bg:         #f7fbf9;
  --bg-alt:     #f2f7fd;
  --card:       #ffffff;
  --border:     #d4ece2;
  --text:       #213864;
  --muted:      #3c527f;
  --brand:      #213864;        /* ana yeşil */
  --brand-dark: #213864;
  --brand-light:#e4effb;
  --accent:     #35508a;        /* turkuaz aksan */
  --accent2:    #34c78a;
  --shadow-sm:  0 2px 12px rgba(33,56,100,.10);
  --shadow:     0 8px 32px rgba(33,56,100,.13);
  --shadow-lg:  0 20px 60px rgba(33,56,100,.16);
  --radius:     20px;
  --radius-sm:  14px;
  --radius-xs:  10px;
  --container:  1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--white);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(33,56,100,.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(33,56,100,.30);
}
.brand-mark svg { width: 24px; height: 24px; fill: #fff; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 1rem; font-weight: 800; color: var(--text); }
.brand-copy small { font-size: .76rem; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: .2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--brand);
  background: var(--brand-light);
}
.nav-cta {
  padding: 10px 22px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--brand), var(--accent)) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(33,56,100,.30);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(33,56,100,.38) !important; }
.nav-cta:hover, .nav-cta.active { background: linear-gradient(135deg, var(--brand), var(--accent)) !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 99px; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #ecf2fa 0%, #f5f9ff 40%, #e4effb 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,80,138,.15), transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,56,100,.12), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left { }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(33,56,100,.12);
  border: 1px solid rgba(33,56,100,.25);
  color: var(--brand-dark);
  font-size: .85rem; font-weight: 700;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  color: var(--text);
}
h1 span { color: var(--brand); }
h2, h3, h4 { margin: 0 0 12px; color: var(--text); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -.02em; }
h3 { font-size: 1.15rem; }

.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 28px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  font-weight: 700; font-size: .97rem; border: 2px solid transparent;
  transition: all .22s ease; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 8px 24px rgba(33,56,100,.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(33,56,100,.40); }
.btn-secondary {
  background: var(--white);
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.btn-outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: #fff; }

.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: .88rem; font-weight: 600;
}
.trust-item svg { width: 18px; height: 18px; color: var(--brand); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%; max-width: 520px;
}
/* Eski SVG hero - artık kullanılmıyor ama kalsın */
.hero-illustration {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #c8f0e0 0%, #a8e6d0 50%, #90d8c0 100%);
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
/* Float Cards on Hero */
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 700; color: var(--text);
  white-space: nowrap;
  z-index: 2;
}
.hero-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.hero-float.f1 { top: 14%; left: -6%; }
.hero-float.f2 { bottom: 24%; right: -6%; }
.hero-float.f3 { top: 8%; right: -4%; }

/* Hero Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; margin-top: 10px;
}
.hero-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.hero-stat strong { display: block; font-size: 1.5rem; color: var(--brand); font-weight: 800; }
.hero-stat span { font-size: .82rem; color: var(--muted); }

/* ─── SECTIONS ────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-green {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
}
.section-green h2, .section-green p { color: #fff; }
.section-green .muted { color: rgba(255,255,255,.80); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin: 10px 0 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: var(--brand-light);
  border: 1px solid rgba(33,56,100,.20);
  color: var(--brand-dark);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}

/* ─── SERVICE CARDS ───────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--brand-light);
  display: grid; place-items: center;
  transition: all .25s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
.service-icon svg {
  width: 36px; height: 36px;
  color: var(--brand);
  transition: color .25s;
}
.service-card:hover .service-icon svg { color: #fff; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin: 0; text-align: center; }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; margin: 0; text-align: center; }
.card-link {
  color: var(--brand);
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex; align-items: center; gap: 4px;
}
.card-link:hover { color: var(--brand-dark); }

/* ─── FEATURE / WHY CARDS ─────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--brand-light);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--brand); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ─── MARQUEE / BRANDS ────────────────────────────── */
.marquee-section {
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .10em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.marquee-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  width: 100%;
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-outer:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .2s, color .2s, background .2s;
  cursor: default;
}
.logo-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

/* ─── STATS ────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--brand-light);
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.stat-icon svg { width: 28px; height: 28px; color: var(--brand); }
.stat-card strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--brand); margin-bottom: 4px; }
.stat-card span { color: var(--muted); font-size: .9rem; }

/* ─── HOW IT WORKS ─────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 16.66%; right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 99px;
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(33,56,100,.30);
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ─── TESTIMONIALS ─────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: var(--muted); line-height: 1.75; font-size: .93rem; margin: 0 0 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center;
  font-weight: 800; font-size: .85rem; color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { font-size: .9rem; font-weight: 700; }
.testimonial-author span { font-size: .8rem; color: var(--muted); }

/* ─── BLOG ─────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brand); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--brand-light) 100%);
  overflow: hidden;
  display: grid; place-items: center;
  position: relative;
}
.blog-thumb svg { width: 80px; height: 80px; color: var(--brand); opacity: .35; }
.blog-body { padding: 22px; }
.meta { color: var(--muted); font-size: .83rem; display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.meta .tag {
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.5; }
.blog-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; margin: 0 0 16px; }

/* ─── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin: 0 0 8px; font-size: clamp(1.4rem,2.5vw,2rem); }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; font-size: 1rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
}
.btn-white:hover { background: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.60);
  color: #fff;
  font-weight: 700;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ─── FAQ ──────────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: var(--text);
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
  transition: all .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ─── CONTACT ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-list { display: grid; gap: 14px; }
.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex; align-items: flex-start; gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.contact-item:hover { border-color: var(--brand); transform: translateX(4px); }
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--brand-light);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 24px; height: 24px; color: var(--brand); }
.contact-item h3 { font-size: .9rem; color: var(--muted); font-weight: 600; margin: 0 0 4px; }
.contact-item a, .contact-item p { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0; }
.contact-item a:hover { color: var(--brand); }
.map { min-height: 400px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* ─── FORM ─────────────────────────────────────────── */
.form-shell { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .88rem; color: var(--text); font-weight: 600; }
input, select, textarea {
  width: 100%; padding: 13px 16px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit; font-size: .95rem;
  outline: none;
  transition: .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(33,56,100,.12);
}
textarea { min-height: 140px; resize: vertical; }
.note { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.alert {
  padding: 14px 18px; border-radius: 12px; margin-bottom: 16px; font-weight: 600; font-size: .92rem;
}
.alert.success { background: #e8faf0; border: 1px solid #a3e7c0; color: #166534; }
.alert.error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ─── PAGE HERO ────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, #ecf2fa 0%, #f5f9ff 100%); padding: 52px 0; border-bottom: 1px solid var(--border); }
.page-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.page-banner h1 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 12px; }
.breadcrumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
  color: var(--muted); font-size: .87rem; margin-bottom: 14px;
}
.breadcrumbs a { color: var(--brand); font-weight: 600; }
.breadcrumbs a:hover { color: var(--brand-dark); }
.breadcrumbs a::after { content: '/'; margin-left: 8px; color: var(--muted); font-weight: 400; }

/* ─── ABOUT ────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt), var(--brand-light));
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.story-img svg { width: 60%; height: 60%; color: var(--brand); opacity: .6; }
.timeline { display: grid; gap: 14px; }
.timeline-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.timeline-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center;
  font-weight: 800; font-size: .82rem; color: #fff;
  flex-shrink: 0;
}
.timeline-item strong { display: block; font-size: .97rem; font-weight: 700; margin-bottom: 4px; }
.timeline-item p { color: var(--muted); font-size: .88rem; line-height: 1.65; margin: 0; }

/* ─── TEAM ─────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  overflow: hidden;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.team-photo-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
.team-card:hover .team-photo { transform: scale(1.05); }
.team-card h3,
.team-card span,
.team-card p { padding: 0 20px; }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center;
  margin: 0 auto 14px;
  font-weight: 800; font-size: 1.1rem; color: #fff;
}
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card span { color: var(--muted); font-size: .85rem; }

/* ─── BLOG DETAIL ──────────────────────────────────── */
.prose { color: var(--muted); line-height: 1.9; font-size: .97rem; }
.prose h2, .prose h3 { color: var(--text); margin-top: 32px; }
.prose ul { padding-left: 18px; }
.prose a { color: var(--brand); text-decoration: underline; }
.prose img { border-radius: var(--radius-sm); margin: 20px 0; }

/* ─── PILL / BADGE ─────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--brand-light);
  border: 1px solid rgba(33,56,100,.20);
  color: var(--brand-dark); font-size: .8rem; font-weight: 700;
}
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 12px; border-radius: 999px;
  background: var(--brand-light);
  border: 1px solid rgba(33,56,100,.20);
  color: var(--brand-dark); font-size: .8rem; font-weight: 700;
}
.badge.green { background: #e8faf0; border-color: #a3e7c0; color: #166534; }

/* ─── SPLIT / PANEL ────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.panel-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* ─── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: #213864;
  color: rgba(255,255,255,.85);
  padding: 56px 0 24px;
  margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand-name { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-about { color: rgba(255,255,255,.60); font-size: .9rem; line-height: 1.75; margin: 0 0 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  display: grid; place-items: center;
  color: rgba(255,255,255,.70);
  transition: .2s;
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-list a { color: rgba(255,255,255,.60); font-size: .88rem; transition: .2s; }
.footer-list a:hover { color: var(--accent); }
.footer-list li { color: rgba(255,255,255,.60); font-size: .88rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.45); font-size: .85rem;
}

/* ─── WHATSAPP FLOAT ───────────────────────────────── */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  background: #25d366;
  color: #fff; font-weight: 700; font-size: .92rem;
  box-shadow: 0 8px 28px rgba(37,211,102,.40);
  transition: all .25s;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37,211,102,.50); }
.whatsapp-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

/* ─── UTILITIES ─────────────────────────────────────── */
.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; }
.is-hidden { display: none !important; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-auto { margin-top: auto; }
main { display: block; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1080px) {
  .service-grid, .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 32px; }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute; left: 16px; right: 16px; top: 76px;
    display: none; flex-direction: column; align-items: stretch;
    padding: 12px; border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .story-grid, .form-shell, .contact-grid, .split { grid-template-columns: 1fr; }
  .service-grid, .feature-grid, .blog-grid, .testimonial-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-float { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .cta-banner { padding: 36px 28px; }
  .steps-grid::before { display: none; }
  /* Neden biz iç grid */
  .feature-grid[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 20px, var(--container)); }
  .hero { padding: 48px 0 40px; }
  .section { padding: 52px 0; }
  .service-grid, .feature-grid, .blog-grid, .testimonial-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 10px; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; }
}

/* ─── GÜVEN BARI ─────────────────────────────────── */
.trust-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.trust-badge-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border-radius: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  flex: 1; min-width: 180px;
}
.trust-badge-item > svg { flex-shrink: 0; }
.trust-badge-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); }
.trust-badge-item span { font-size: .78rem; color: var(--muted); }

/* ─── WHY GRID ───────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.why-visual {
  display: flex; justify-content: center; align-items: center;
}
.why-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.why-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.why-feat-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand-light);
  display: grid; place-items: center; flex-shrink: 0;
}
.why-feat-icon svg { width: 20px; height: 20px; color: var(--brand); }
.why-feature strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.why-feature p { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ─── RATING SUMMARY ─────────────────────────────── */
.rating-summary {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 36px;
  box-shadow: var(--shadow-sm); margin-bottom: 36px;
}
.rating-big { text-align: center; flex-shrink: 0; }
.rating-big strong { display: block; font-size: 3.5rem; font-weight: 800; color: var(--brand); line-height: 1; }
.stars-big { color: #f59e0b; font-size: 1.3rem; letter-spacing: 3px; margin: 6px 0; }
.rating-big span { font-size: .82rem; color: var(--muted); }
.rating-bars { flex: 1; min-width: 200px; display: grid; gap: 7px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--muted); }
.rating-bar-row > span:first-child { width: 28px; flex-shrink: 0; text-align: right; font-weight: 600; color: var(--text); }
.rating-bar-row > span:last-child { width: 30px; flex-shrink: 0; font-weight: 600; }
.rating-bar { flex: 1; height: 8px; background: var(--bg-alt); border-radius: 999px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--brand), var(--accent)); border-radius: 999px; }
.rating-platforms { display: flex; gap: 14px; flex-wrap: wrap; }
.platform-badge {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 14px 20px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border);
  min-width: 80px;
}
.platform-badge span { font-size: .78rem; color: var(--muted); font-weight: 600; }
.platform-badge strong { font-size: 1rem; font-weight: 800; color: var(--brand); }

/* ─── TESTIMONIALS SLIDER ────────────────────────── */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 28px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  cursor: pointer; display: grid; place-items: center;
  color: var(--text); transition: .2s;
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: .2s;
  border: none; padding: 0;
}
.slider-dot.active { background: var(--brand); width: 22px; border-radius: 999px; }

/* ─── STEP ICON WRAP ────────────────────────────── */
.step-icon-wrap {
  width: 72px; height: 72px; margin: 0 auto 18px;
}
.step-icon-wrap svg { width: 72px; height: 72px; }

/* ─── POLİÇE YENİLEME BANNER ─────────────────────── */
.renewal-banner {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: var(--radius); padding: 48px 52px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.renewal-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.renewal-banner::after {
  content: ''; position: absolute; bottom: -60px; left: 25%;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.renewal-visual { flex-shrink: 0; width: 140px; position: relative; z-index: 1; }
.renewal-content { flex: 1; position: relative; z-index: 1; }

/* ─── FAQ LAYOUT ─────────────────────────────────── */
.faq-layout {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start;
}
.faq-left { position: sticky; top: 100px; }

/* ─── RESPONSIVE EKLENTİLER ──────────────────────── */
@media (max-width: 1080px) {
  .why-grid { gap: 32px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-left { position: static; }
  .trust-badge-item { min-width: 150px; }
  .renewal-banner { padding: 36px 32px; }
}
@media (max-width: 860px) {
  .why-grid, .faq-layout { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .why-features { grid-template-columns: 1fr 1fr; }
  .rating-summary { padding: 22px 20px; gap: 24px; }
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .renewal-banner { flex-direction: column; padding: 32px 24px; gap: 24px; }
  .trust-bar { gap: 10px; }
  .trust-badge-item { min-width: 140px; padding: 10px 14px; }
}
@media (max-width: 540px) {
  .why-features { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; align-items: flex-start; }
  .trust-badge-item { min-width: 100%; }
  .renewal-banner { padding: 28px 20px; }
}

/* ─── HERO FOTOĞRAF ──────────────────────────────── */
.hero-photo-wrap {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}
.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  display: block;
  box-shadow: 0 24px 64px rgba(33,56,100,.18), 0 8px 24px rgba(0,0,0,.10);
}
/* Hero float kartları fotoğrafın üzerine konumlanır */
.hero-photo-wrap .hero-float { position: absolute; }

/* F4: Alt müşteri sayaç kartı */
.hero-float.f4 {
  bottom: -18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}
.hero-float-avatars {
  display: flex;
}
.hero-float-avatars img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}
.hero-float-avatars img:first-child { margin-left: 0; }
.hero-float.f4 strong { display: block; font-size: .95rem; font-weight: 800; color: var(--brand); }
.hero-float.f4 span   { font-size: .75rem; color: var(--muted); }

/* ─── WHY FOTOĞRAF ───────────────────────────────── */
.why-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.why-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
}
.why-photo-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  min-width: 160px;
}
.why-photo-card.top  { top: 20px; right: -20px; }
.why-photo-card.bottom { bottom: 20px; left: -20px; display: flex; align-items: center; gap: 12px; }
.why-photo-avatars { display: flex; }
.why-photo-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}
.why-photo-avatars img:first-child { margin-left: 0; }

/* ─── TESTİMONİAL FOTOĞRAF ───────────────────────── */
.testimonial-photo {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

/* ─── RENEWAL FOTOĞRAF ───────────────────────────── */
.renewal-photo {
  width: 220px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
  border: 3px solid rgba(255,255,255,.25);
}

/* ─── FAQ FOTOĞRAF ───────────────────────────────── */
.faq-photo-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.faq-photo-wrap:hover .faq-photo { transform: scale(1.03); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 860px) {
  .hero-photo { height: 400px; }
  .why-photo  { height: 360px; }
  .why-photo-card.top    { right: -10px; }
  .why-photo-card.bottom { left: -10px; }
  .renewal-photo { width: 160px; height: 150px; }
  .faq-photo { height: 200px; }
  .hero-float.f4 { left: 10px; bottom: -14px; }
}
@media (max-width: 540px) {
  .hero-photo { height: 320px; }
  .why-photo  { height: 280px; }
  .why-photo-card { display: none; }
  .renewal-photo { width: 120px; height: 110px; }
  .hero-float.f4 { display: none; }
}

/* ════════════════════════════════════════════════
   HİZMETLER SAYFASI
   ════════════════════════════════════════════════ */

/* ─── SVC HERO ───────────────────────────────────── */
.svc-hero { background: linear-gradient(135deg, #ecf2fa 0%, #f5f9ff 50%, #e4effb 100%); padding: 56px 0 0; }
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
}
.svc-hero-text { padding-bottom: 52px; }
.svc-hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.svc-hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--brand); line-height: 1; }
.svc-hero-stat span   { font-size: .82rem; color: var(--muted); }
.svc-hero-photo {
  position: relative;
  align-self: flex-end;
}
.svc-hero-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px 24px 0 0;
  display: block;
  box-shadow: 0 -8px 40px rgba(33,56,100,.12);
}
.svc-hero-badge {
  position: absolute;
  bottom: 20px; left: -20px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 32px rgba(33,56,100,.30);
}
.svc-hero-badge strong { display: block; font-size: .92rem; font-weight: 700; }
.svc-hero-badge span   { font-size: .76rem; opacity: .85; }

/* ─── SVC CARD RICH ──────────────────────────────── */
.svc-card-rich {
  position: relative;
  border-top: 3px solid var(--svc-color, var(--brand));
  text-align: center;
}
.svc-badge {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--svc-color, var(--brand));
  color: white;
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 0 0 8px 8px;
  letter-spacing: .04em; text-transform: uppercase;
}
.svc-price {
  font-size: .8rem; font-weight: 700;
  color: var(--svc-color, var(--brand));
  background: color-mix(in srgb, var(--svc-color, var(--brand)) 10%, transparent);
  padding: 5px 12px; border-radius: 999px;
  margin: 4px auto 12px;
  display: inline-block;
}
.svc-cta-btn {
  width: 100%; min-height: 44px;
  font-size: .88rem;
  background: var(--svc-color, var(--brand)) !important;
  box-shadow: none !important;
  margin-top: auto;
}
.svc-cta-btn:hover { opacity: .88; transform: translateY(-2px); }

/* ─── SVC SHOWCASE ───────────────────────────────── */
.svc-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.svc-showcase:last-of-type { border-bottom: none; }
.svc-showcase-reverse { direction: rtl; }
.svc-showcase-reverse > * { direction: ltr; }

.svc-showcase-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.svc-showcase-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
}
.svc-showcase-price-badge {
  position: absolute;
  bottom: -16px; right: 20px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(33,56,100,.28);
  white-space: nowrap;
}

.svc-showcase-content { }
.svc-showcase-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.svc-showcase-icon svg { width: 30px; height: 30px; }

.svc-benefits {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.svc-benefits li {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: var(--text);
}
.svc-benefits li svg { flex-shrink: 0; }

/* ─── SVC ADVANTAGES ─────────────────────────────── */
.svc-advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.svc-adv-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
}
.svc-adv-list { display: grid; gap: 20px; }
.svc-adv-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all .22s;
}
.svc-adv-item:hover { border-color: var(--brand); transform: translateX(4px); }
.svc-adv-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 13px;
  background: var(--brand-light);
  display: grid; place-items: center;
}
.svc-adv-icon svg { width: 22px; height: 22px; color: var(--brand); }
.svc-adv-item strong { display: block; font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.svc-adv-item p { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1080px) {
  .svc-showcase { gap: 36px; }
  .svc-advantages { gap: 36px; }
  .svc-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .svc-hero-inner   { grid-template-columns: 1fr; }
  .svc-hero-text    { padding-bottom: 0; }
  .svc-hero-photo img { height: 320px; border-radius: 20px; }
  .svc-hero-badge   { left: 10px; bottom: 10px; }
  .svc-showcase, .svc-showcase-reverse,
  .svc-advantages   { grid-template-columns: 1fr; direction: ltr; }
  .svc-showcase-photo img { height: 280px; }
  .svc-adv-photo img { height: 300px; }
  .svc-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .svc-benefits { grid-template-columns: 1fr; }
  .svc-hero-stats { gap: 18px; }
  .svc-hero-badge { display: none; }
  .svc-showcase-price-badge { right: 10px; bottom: -12px; font-size: .78rem; }
}

/* ════════════════════════════════════════════════
   BLOG SAYFASI
   ════════════════════════════════════════════════ */

/* ─── BLOG HERO ──────────────────────────────── */
.blog-hero { background: linear-gradient(135deg,#ecf2fa,#f5f9ff); padding: 56px 0 0; }
.blog-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-end; }
.blog-hero-text   { padding-bottom: 52px; }
.blog-hero-photo  { align-self: flex-end; }
.blog-hero-photo img {
  width: 100%; height: 380px; object-fit: cover; object-position: center;
  border-radius: 20px 20px 0 0; display: block;
  box-shadow: 0 -6px 32px rgba(33,56,100,.10);
}

/* ─── BLOG FILTER BAR ────────────────────────── */
.blog-filter-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 18px 0; position: sticky; top: 76px; z-index: 10; }
.blog-filter-inner { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.blog-filter-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--muted); font-weight: 600; font-size: .85rem;
  transition: .18s; cursor: pointer;
}
.blog-filter-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.blog-filter-btn.active { background: var(--filter-color, var(--brand)); border-color: var(--filter-color, var(--brand)); color: white; }
.blog-filter-count {
  background: rgba(0,0,0,.10); color: inherit;
  padding: 1px 7px; border-radius: 999px; font-size: .75rem; font-weight: 700;
}
.blog-filter-btn.active .blog-filter-count { background: rgba(255,255,255,.25); }

/* ─── BLOG LAYOUT ────────────────────────────── */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.blog-main    { min-width: 0; }

/* ─── BLOG FEATURED ──────────────────────────── */
.blog-featured {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 32px;
}
.blog-featured-photo { position: relative; }
.blog-featured-photo img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block; }
.blog-featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.3), transparent 50%); }
.blog-featured-overlay .blog-cat-tag { position: absolute; top: 16px; left: 16px; }
.blog-featured-body { padding: 28px 28px 28px 32px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.blog-featured-body h2 { font-size: 1.25rem; line-height: 1.4; margin: 0; }
.blog-featured-body h2 a:hover { color: var(--brand); }
.blog-featured-body p { color: var(--muted); font-size: .93rem; line-height: 1.75; margin: 0; }

/* ─── BLOG GRID ──────────────────────────────── */
.blog-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─── BLOG CARD ──────────────────────────────── */
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.blog-thumb-link { position: relative; display: block; overflow: hidden; }
.blog-thumb-link img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-card:hover .blog-thumb-link img { transform: scale(1.05); }
.blog-cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--brand); color: white;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
}
.blog-body { padding: 20px; }
.blog-body h3 { font-size: .97rem; line-height: 1.5; margin-bottom: 8px; }
.blog-body h3 a:hover { color: var(--brand); }
.blog-body p { color: var(--muted); font-size: .87rem; line-height: 1.65; margin: 0 0 14px; }

/* ─── PAGINATION ─────────────────────────────── */
.blog-pagination { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.blog-page-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text); font-weight: 600; font-size: .88rem; transition: .18s;
}
.blog-page-btn:hover   { border-color: var(--brand); color: var(--brand); }
.blog-page-btn.active  { background: var(--brand); border-color: var(--brand); color: white; }

/* ─── BLOG SIDEBAR ───────────────────────────── */
.blog-sidebar        { display: grid; gap: 20px; position: sticky; top: 130px; }
.blog-sidebar-card   { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px; box-shadow: var(--shadow-sm); }
.blog-sidebar-card h4 { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 14px; }

.blog-sidebar-cta { text-align: center; background: linear-gradient(135deg,var(--brand-light),#f5f9ff); }
.blog-sidebar-cta-icon { width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(135deg,var(--brand),var(--accent)); display: grid; place-items: center; margin: 0 auto 14px; }
.blog-sidebar-cta-icon svg { width: 26px; height: 26px; }
.blog-sidebar-cta h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.blog-sidebar-cta p  { color: var(--muted); font-size: .85rem; margin: 0 0 16px; }

.blog-sidebar-cats { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.blog-sidebar-cats a {
  display: flex; align-items: center; gap: 8px; justify-content: space-between;
  padding: 9px 12px; border-radius: 10px; font-size: .88rem; font-weight: 600;
  color: var(--muted); transition: .15s;
}
.blog-sidebar-cats a:hover, .blog-sidebar-cats a.active { background: var(--brand-light); color: var(--brand-dark); }
.blog-sidebar-cats a .count { font-size: .75rem; background: var(--bg-alt); padding: 2px 8px; border-radius: 999px; }
.blog-sidebar-cats a span { margin-left: auto; font-size: .75rem; background: var(--bg-alt); padding: 2px 8px; border-radius: 999px; }

.blog-sidebar-recent { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.blog-sidebar-recent a { display: flex; align-items: center; gap: 12px; }
.blog-sidebar-recent img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.blog-sidebar-recent strong { display: block; font-size: .85rem; line-height: 1.4; color: var(--text); }
.blog-sidebar-recent strong:hover { color: var(--brand); }
.blog-sidebar-recent span { font-size: .78rem; color: var(--muted); }

.sidebar-social {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--bg-alt);
  display: grid; place-items: center; color: var(--muted);
  transition: .2s;
}
.sidebar-social svg { width: 18px; height: 18px; }
.sidebar-social:hover { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }

/* ─── POST HERO ──────────────────────────────── */
.post-hero { position: relative; height: 420px; }
.post-hero-img { position: absolute; inset: 0; }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,15,.70) 0%, rgba(10,20,15,.30) 60%, transparent 100%); }
.post-hero-content { position: relative; z-index: 1; padding-bottom: 40px; padding-top: 40px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.post-hero-content .breadcrumbs { font-size: .82rem; }
.post-cat-badge { display: inline-block; background: var(--brand); color: white; font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin: 10px 0 12px; text-transform: uppercase; letter-spacing: .04em; }
.post-title { font-size: clamp(1.6rem, 3.5vw, 2.8rem); color: white; margin: 0 0 14px; line-height: 1.2; max-width: 70ch; }
.post-meta-bar { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.75); font-size: .85rem; }
.post-meta-bar span { display: flex; align-items: center; gap: 6px; }

/* ─── POST ARTICLE ───────────────────────────── */
.post-article { min-width: 0; }
.post-lead { font-size: 1.05rem; line-height: 1.8; color: var(--muted); background: var(--bg-alt); border-left: 4px solid var(--brand); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 28px; }
.post-content { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 36px; box-shadow: var(--shadow-sm); margin-bottom: 28px; }

/* ─── SHARE BUTTONS ──────────────────────────── */
.post-share { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--border); }
.post-share > span { font-size: .88rem; font-weight: 700; color: var(--muted); }
.share-btn { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; transition: .18s; }
.share-btn svg { width: 18px; height: 18px; }
.share-btn.facebook { background: rgba(66,103,178,.10); color: #4267B2; }
.share-btn.facebook:hover { background: #4267B2; color: white; }
.share-btn.twitter   { background: rgba(0,0,0,.06); color: #000; }
.share-btn.twitter:hover { background: #000; color: white; }
.share-btn.whatsapp  { background: rgba(37,211,102,.10); color: #25d366; }
.share-btn.whatsapp:hover { background: #25d366; color: white; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1080px) {
  .blog-layout       { grid-template-columns: 1fr 280px; gap: 24px; }
  .blog-grid-3       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .blog-hero-inner   { grid-template-columns: 1fr; }
  .blog-hero-text    { padding-bottom: 0; }
  .blog-hero-photo img { height: 280px; border-radius: 16px; }
  .blog-layout       { grid-template-columns: 1fr; }
  .blog-sidebar      { position: static; }
  .blog-featured     { grid-template-columns: 1fr; }
  .blog-featured-photo img { min-height: 220px; }
  .blog-grid-3       { grid-template-columns: 1fr 1fr; }
  .post-hero         { height: 340px; }
  .post-content      { padding: 22px 20px; }
}
@media (max-width: 540px) {
  .blog-grid-3       { grid-template-columns: 1fr; }
  .blog-filter-bar   { top: 74px; }
  .post-hero         { height: 280px; }
  .post-content      { padding: 18px 16px; }
}
