:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alpha: rgba(255, 255, 255, 0.85);
  --text: #0f172a;
  --muted: #475569;
  --brand: #0f172a;
  --brand-light: #2563eb;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --border: #e2e8f0;
  --hero-from: #f1f5f9;
  --hero-to: #ffffff;
  --radius: 16px;
  --shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: clip;
}

a {
  color: var(--brand-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--brand);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-alpha);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--brand);
}

.logo-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.site-nav a {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 500;
  opacity: 0.92;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--brand);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  cursor: pointer;
}

.btn-phone {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
  border: none !important;
  color: #fff !important;
  font-size: 0.85rem;
}

.btn-phone:hover {
  filter: brightness(1.05);
  text-decoration: none;
  color: #fff !important;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 95;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 5rem 1.25rem 1.5rem;
    background: #fff;
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.2);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    visibility: hidden;
    pointer-events: none;
    z-index: 90;
    overflow-y: auto;
  }
  .site-nav a {
    width: 100%;
    position: relative;
    z-index: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .site-nav .btn-phone {
    width: 100%;
    margin-top: 0.35rem;
  }
  .nav-side-left .site-nav {
    left: 0;
    right: auto;
    border-left: 0;
    border-right: 1px solid var(--border);
    box-shadow: 16px 0 40px rgba(15, 23, 42, 0.2);
    transform: translateX(-100%);
  }
  body.nav-open .site-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  /* Header z-index 50 iken backdrop (80) menünün üstünde kalıyordu — tıklama gitmiyordu */
  body.nav-open .site-header {
    z-index: 100;
  }
  body.nav-open .mobile-sticky-cta {
    display: none !important;
  }
  body.nav-open {
    overflow: hidden;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-light), #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.5);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn-outline:hover {
  border-color: var(--brand-light);
  color: var(--brand);
}

.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--hero-from);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
  z-index: -1;
}

.hero-inner h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.12;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero .accent {
  color: var(--brand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-light);
  margin: 0;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 56ch;
}

.hero-note {
  margin-top: 0.5rem;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 680px;
}

.hero-stats div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
  color: var(--brand);
  font-weight: 800;
}

.hero-stats span {
  font-size: 0.86rem;
  color: var(--muted);
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-item strong {
  margin-right: 0.25rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: #eef2f7;
}

.section-title {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.title-strong {
  color: var(--text);
}

.title-soft {
  color: var(--brand);
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 62ch;
  font-size: 1.02rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Neden biz — koyu iki sütun (ana sayfa) */
.why-split {
  --why-bg: #0f1419;
  --why-panel: #1a2230;
  --why-text: #f1f5f9;
  --why-muted: #94a3b8;
  --why-gold: #fbbf24;
  background: linear-gradient(180deg, #0c1118 0%, #0f1419 40%, #121a24 100%);
  color: var(--why-text);
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.why-split a {
  color: var(--why-gold);
}

.why-split a:hover {
  color: #fcd34d;
}

.why-split__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--why-gold);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 999px;
}

.why-split__title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: var(--why-text);
}

.why-split__accent {
  color: var(--why-gold);
}

.why-split__lead {
  margin: 0 0 2rem;
  max-width: 52ch;
  font-size: 1.05rem;
  color: var(--why-muted);
  line-height: 1.6;
}

.why-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

@media (max-width: 960px) {
  .why-split__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.why-split__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--why-panel);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.why-feature__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  font-size: 1.35rem;
  line-height: 1;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.why-feature__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--why-text);
}

.why-feature__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--why-muted);
  line-height: 1.55;
}

.why-split__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-stat {
  background: var(--why-panel);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.why-stat--hero {
  padding: 1.75rem 1.5rem;
}

.why-stat--hero .why-stat__value {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--why-gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.why-stat--hero .why-stat__label {
  font-size: 0.95rem;
  color: var(--why-muted);
  font-weight: 600;
}

.why-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .why-stat-row {
    grid-template-columns: 1fr;
  }
}

.why-stat--mini {
  padding: 0.9rem 0.65rem;
}

.why-stat--mini .why-stat__value {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--why-gold);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.why-stat--mini .why-stat__label {
  font-size: 0.72rem;
  color: var(--why-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.why-quote {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--why-panel);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.why-quote__stars {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--why-gold);
  line-height: 1;
}

.why-quote__text {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  font-style: italic;
  color: var(--why-text);
  line-height: 1.6;
}

.why-quote__author {
  font-size: 0.88rem;
  font-weight: 600;
  font-style: normal;
  color: var(--why-gold);
}

.why-split__more {
  margin: 0.25rem 0 0;
}

.btn-why-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--why-gold) !important;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-why-outline:hover {
  text-decoration: none;
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.7);
  color: #fde68a !important;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.card-link {
  color: inherit;
  display: flex;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.2s ease;
}

.card-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 99, 235, 0.3);
  text-decoration: none;
}

.card-image-wrap {
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-link:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card h2,
.card h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.card-icon {
  font-size: 1.85rem;
  display: inline-block;
}

.card-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--brand-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

.cta-strip {
  background: linear-gradient(90deg, rgba(12, 74, 110, 0.06), rgba(234, 88, 12, 0.07));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.cta-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.85rem 0 0;
}

.breadcrumbs a {
  color: var(--brand-light);
}

.bc-sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}

.bc-current {
  color: var(--text);
  font-weight: 600;
}

.page-hero {
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card-icon-inline {
  margin-right: 0.35rem;
}

.prose {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--brand);
}

.prose ul {
  padding-left: 1.2rem;
}

.content-narrow {
  max-width: 760px;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.check-list li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-light);
  font-weight: 800;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.portfolio-thumb {
  height: 168px;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-thumb .placeholder {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.portfolio-card h2 {
  font-size: 1.12rem;
  margin: 0.75rem 1rem 0.25rem;
}

.portfolio-card p {
  margin: 0.35rem 1rem 1rem;
  font-size: 0.92rem;
}

.badge {
  display: inline-block;
  margin: 0.75rem 1rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(3, 105, 161, 0.12);
  color: var(--brand);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.ref-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.ref-top {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ref-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: #fff;
}

.ref-card .stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
  margin: 0.25rem 0;
}

.tag {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-block {
  margin-bottom: 1.5rem;
}

.contact-block h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--brand);
}

.contact-form-wrap {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.flash.ok {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  color: #065f46;
}

.flash.err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  color: #991b1b;
}

.site-logo-img {
  display: block;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo--image .site-logo-img {
  max-width: min(220px, 55vw);
}

.footer-logo-wrap {
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  display: block;
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.recaptcha-wrap {
  margin: 1rem 0;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  margin-top: 3rem;
  padding: 2.5rem 0 1.25rem;
  font-size: 0.93rem;
}

.site-footer a {
  color: #e2e8f0;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand {
  color: #fff;
  font-size: 1.05rem;
}

.footer-note {
  font-size: 0.88rem;
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-grid h4 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 80;
  display: none;
}

.nav-drawer-backdrop.is-active {
  display: block;
  pointer-events: auto;
}

.nav-drawer-backdrop:not(.is-active) {
  pointer-events: none;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  display: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  gap: 0.5rem;
  padding: 0.55rem max(0.65rem, env(safe-area-inset-left)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-right));
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1 1 0;
  min-width: 0;
  min-height: 46px;
  padding: 0.55rem 0.45rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(0.78rem, 3.1vw, 0.9rem);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  transform: none;
}

.mobile-sticky-cta a:hover {
  text-decoration: none;
  transform: none;
  filter: brightness(1.05);
}

.mobile-sticky-cta__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}

.mobile-sticky-cta__label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-sticky-cta:not(.has-wa) a {
  flex: 1 1 100%;
}

.mobile-sticky-cta__call {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff !important;
}

.mobile-sticky-cta__wa {
  background: #16a34a;
  color: #fff !important;
}

@media (max-width: 900px) {
  .mobile-sticky-cta {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .site-footer {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .mobile-sticky-cta__label {
    font-size: 0.74rem;
  }
}

.lead-muted {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48ch;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.blog-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.blog-card-media {
  display: block;
  margin: -0.5rem -0.5rem 0.75rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--border);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card:has(.blog-card-media) {
  padding-top: 0.5rem;
}

.section--flush-top {
  padding-top: 0;
}

.blog-featured-figure {
  margin: 0;
}

.blog-featured-img {
  width: 100%;
  max-height: min(70vh, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.blog-date {
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
}

.region-sublist {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
}

.region-sublist li {
  margin: 0.35rem 0;
}

.region-directory-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.region-directory-block:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.region-directory-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--brand);
}

.region-directory-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.local-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1.25rem;
}

.local-link-chip {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.local-link-chip:hover {
  border-color: var(--brand-light);
  color: var(--brand);
  text-decoration: none;
}

.local-link-chip--sm {
  font-size: 0.82rem;
  padding: 0.35rem 0.7rem;
  font-weight: 500;
}

.region-mahalle-sub {
  margin-top: 1.35rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--brand-light);
}

.region-mahalle-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}
