/* ===========================
   TB MEDYA - MAIN STYLESHEET
   Kurumsal tema — vurgu #f7be18, siyah #000000
   =========================== */

:root {
  --primary: #fafafa;
  --secondary: #f0f0f0;
  --card-bg: #ffffff;
  --black: #000000;
  --accent: #f7be18;
  --accent-dark: #d4a312;
  --accent2: #000000;
  --accent3: #c99710;
  --text: #0a0a0a;
  --heading: #000000;
  --text-muted: rgba(0, 0, 0, 0.7);
  --border: rgba(0, 0, 0, 0.1);
  --border-accent: rgba(247, 190, 24, 0.45);
  --glass: rgba(255, 255, 255, 0.65);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  /* Footer: açık zemin, koyu metin (topbar ayrı renk kullanır) */
  --footer-bg: #ffffff;
  --footer-top: #f2f2f4;
  --footer-muted: rgba(0, 0, 0, 0.72);
  --footer-border: rgba(0, 0, 0, 0.1);
  --radius: 14px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -120px;
  z-index: 100001;
  background: var(--black);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
}
.skip-link:focus-visible {
  top: 12px;
  opacity: 1;
  pointer-events: auto;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(247, 190, 24, 0.85);
  outline-offset: 2px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }

/* ---- UTILITIES ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
/* Render maliyetini azaltır (özellikle mobilde uzun sayfalarda) */
.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.section:first-of-type {
  content-visibility: visible;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--black); background: rgba(247, 190, 24, 0.2);
  border: 1px solid var(--border-accent); padding: 6px 18px; border-radius: 50px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.02em; line-height: 1.15; color: var(--heading); margin-bottom: 16px; font-weight: 800;
}
.section-title span { color: var(--accent); }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--black); border-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(247, 190, 24, 0.45); color: var(--black); }
.btn-outline {
  border-color: var(--black); color: var(--black); background: transparent;
}
.btn-outline:hover { background: var(--accent); color: var(--black); transform: translateY(-2px); border-color: var(--accent); }
.btn-accent {
  background: var(--black);
  color: var(--accent); border: 2px solid var(--black);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 15px 36px rgba(0, 0, 0, 0.25); color: var(--accent); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--black);
  border-bottom: 2px solid var(--accent);
  padding: 10px 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.82);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left a, .topbar-right a {
  color: rgba(255, 255, 255, 0.82); display: flex; align-items: center; gap: 7px;
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--accent); }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a { font-size: 0.9rem; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); color: #fff; }
.topbar-right a:hover { border-color: var(--accent); background: rgba(247, 190, 24, 0.2); color: var(--accent); }

/* ---- HEADER ---- */
.main-header {
  position: sticky; top: 0; z-index: 1000;
  /* backdrop-filter: fixed menü + bazı mobil tarayıcılarda çakışır; kaldırıldı */
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.main-header.scrolled { box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.main-header .container { display: flex; align-items: center; gap: 32px; padding: 0 24px; height: 72px; }
@media (min-width: 901px) {
  .main-header { overflow: visible; }
  .main-header .container.header-bar { overflow: visible; }
}

.logo { display: flex; align-items: center; line-height: 0; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; max-width: min(220px, 52vw); object-fit: contain; }
@media (min-width: 901px) { .logo-img { height: 52px; } }

.main-nav { margin-left: auto; overflow: visible; }
/* Sadece ana menü satırı — .dropdown iç listeyi yatay flex yapma */
.main-nav > ul {
  display: flex;
  gap: 4px;
  align-items: center;
  overflow: visible;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li.has-dropdown { z-index: 1; }
.main-nav > ul > li.has-dropdown:hover { z-index: 200; }
.main-nav > ul > li > a,
.main-nav > ul > li.has-dropdown > .has-dropdown__shell > .has-dropdown__row > .has-dropdown__main {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  color: rgba(0, 0, 0, 0.72); font-weight: 600; font-size: 0.9rem; border-radius: 8px;
  transition: var(--transition);
}
.main-nav > ul > li.has-dropdown > .has-dropdown__shell > .has-dropdown__row {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
}
.main-nav > ul > li.has-dropdown > .has-dropdown__shell > .has-dropdown__row > .has-dropdown__main {
  flex: 1;
  min-width: 0;
}
@media (min-width: 901px) {
  .main-nav > ul > li.has-dropdown > .has-dropdown__shell {
    position: relative;
    display: inline-block;
    vertical-align: middle;
  }
}
@media (min-width: 901px) {
  .has-dropdown__toggle { display: none !important; }
}
@media (max-width: 900px) {
  .mn-chevron--desktop { display: none !important; }
}
.main-nav .mn-lead {
  display: inline-flex; align-items: center; gap: 10px; flex: 1; min-width: 0;
}
.main-nav .mn-text { line-height: 1.25; }
.main-nav .mn-icon {
  width: 1.35rem;
  display: inline-flex;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 0.95rem;
  flex-shrink: 0;
}
@media (min-width: 901px) {
  .main-nav .mn-icon,
  .main-nav .mn-icon--sub { display: none !important; }
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active,
.main-nav > ul > li.has-dropdown > .has-dropdown__shell > .has-dropdown__row > .has-dropdown__main:hover,
.main-nav > ul > li.has-dropdown > .has-dropdown__shell > .has-dropdown__row > .has-dropdown__main.active {
  color: var(--black); background: rgba(247, 190, 24, 0.18);
}
.main-nav .mn-chevron--desktop { font-size: 0.65rem; opacity: 0.55; transition: var(--transition); }
.has-dropdown:hover .has-dropdown__main .mn-chevron--desktop {
  transform: rotate(180deg);
}

/* Dropdown — masaüstünde shell (tetik satırı) altına mutlak konum */
.dropdown {
  min-width: 240px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 901px) {
  .main-nav > ul > li.has-dropdown > .has-dropdown__shell > .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    display: block;
    width: max-content;
    max-width: min(360px, 94vw);
    flex-direction: unset;
    flex-wrap: nowrap;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
  }
  .main-nav > ul > li.has-dropdown > .has-dropdown__shell > .dropdown > li {
    display: list-item;
    width: 100%;
  }
  .main-nav > ul > li.has-dropdown:hover > .has-dropdown__shell > .dropdown,
  .main-nav > ul > li.has-dropdown:focus-within > .has-dropdown__shell > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav > ul > li.has-dropdown > .has-dropdown__shell::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
    z-index: 99;
  }
}
.dropdown li a {
  display: flex; align-items: center; gap: 10px; padding: 11px 18px;
  color: var(--text-muted); font-size: 0.88rem; border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--black); background: rgba(247, 190, 24, 0.15); padding-left: 24px; }
.dropdown li a i { color: var(--accent); font-size: 0.75rem; }

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
}
.header-cta { margin-left: 0; padding: 10px 22px; font-size: 0.88rem; }
.header-cta--jobs {
  background: var(--heading);
  color: #fff;
  border: 2px solid var(--heading);
  font-weight: 600;
}
.header-cta--jobs:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  position: relative; z-index: 10060; background: transparent;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span { width: 24px; height: 2px; background: var(--heading); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil çekmece kökü — stiller @media (max-width: 900px) içinde */

/* ---- HERO / SLIDER ---- */
.hero {
  position: relative; min-height: calc(100vh - 120px);
  display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(247, 190, 24, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(0, 0, 0, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #fff9e6 0%, var(--primary) 55%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f7be18' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-slides { position: relative; width: 100%; }
.hero-slide { display: none; animation: fadeSlide 0.8s ease; }
.hero-slide.active { display: block; }
@keyframes fadeSlide { from { opacity:0; transform: translateX(30px); } to { opacity:1; transform:translateX(0); } }
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black); background: rgba(247, 190, 24, 0.22); border: 1px solid var(--border-accent);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  letter-spacing: -0.03em; line-height: 1.08; color: var(--heading); margin-bottom: 20px; font-weight: 800;
}
.hero-title span { color: var(--accent); display: block; }
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem); color: var(--text-muted);
  max-width: 560px; margin-bottom: 40px; font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats-section {
  padding: 20px 0 12px;
  background: var(--primary);
}
.hero-stats {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}
.stat {
  border-left: 1px solid var(--border);
  padding-left: 18px;
}
.stat:first-child {
  border-left: 0;
  padding-left: 0;
}
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 2.8vw, 2.45rem); color: var(--accent); letter-spacing: -0.02em; line-height: 1; font-weight: 800; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 5px; }

.hero-nav {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(0, 0, 0, 0.15);
  cursor: pointer; transition: var(--transition); border: none;
}
.hero-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }
.hero-scroll {
  position: absolute; right: 40px; bottom: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--accent), transparent); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1)} 100%{transform:scaleY(0);transform-origin:bottom} }
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
  }
  .stat {
    border-left: 0;
    padding-left: 0;
    text-align: center;
  }
}

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.service-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px; position: relative; overflow: hidden; transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--black));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-accent); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; background: rgba(247, 190, 24, 0.1);
  border: 1px solid var(--border-accent); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  font-size: 1.6rem; color: var(--black); transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); color: var(--black); transform: scale(1.06); border-color: var(--accent); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.service-link { color: var(--black); font-weight: 600; font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.service-link:hover { gap: 14px; color: var(--accent-dark); }

/* ---- HİZMET DETAY (kurumsal, mobil uyumlu) ---- */
.section.service-detail {
  padding-block: clamp(40px, 7vw, 96px);
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 18%, var(--primary) 100%);
  border-block: 1px solid var(--border);
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.service-detail__main {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  padding: clamp(22px, 4vw, 44px);
  min-width: 0;
}
.service-detail__hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  padding-bottom: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--border);
}
.service-detail__hero-badge {
  flex-shrink: 0;
}
.service-detail__hero .service-detail__icon {
  width: clamp(72px, 12vw, 88px);
  height: clamp(72px, 12vw, 88px);
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(247, 190, 24, 0.25);
}
.service-detail__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 10px;
}
.service-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 12px;
}
.service-detail__lead {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
}
.service-detail__media {
  margin: 0 0 clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: var(--secondary);
}
.service-detail__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.service-detail__prose {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 2vw, 1.06rem);
  line-height: 1.88;
  max-width: 68ch;
}
.service-detail__prose > p { margin-bottom: 1.1rem; }
.service-detail__prose > p:last-child { margin-bottom: 0; }
.service-detail__prose a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.service-detail__prose a:hover { color: var(--black); }
.service-detail__prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 800;
  color: var(--heading);
  margin: 2.1rem 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.service-detail__prose h2:first-child { margin-top: 0; }
.service-detail__prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin: 1.45rem 0 0.45rem;
}
.service-detail__prose ul,
.service-detail__prose ol {
  margin: 0.5rem 0 1.2rem 1.25rem;
  padding: 0;
}
.service-detail__prose ul { list-style: disc; }
.service-detail__prose ol { list-style: decimal; }
.service-detail__prose li { margin-bottom: 0.45rem; }
.service-detail__prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1rem 0;
}
.service-detail__cta-bar {
  margin-top: clamp(28px, 5vw, 44px);
  padding-top: clamp(22px, 4vw, 32px);
  border-top: 1px solid var(--border);
}
.service-detail__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.service-detail__cta-label {
  margin: 0;
  font-weight: 700;
  color: var(--heading);
  font-size: 1.02rem;
  max-width: 280px;
  line-height: 1.4;
}
.service-detail__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-detail__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 92px;
  min-width: 0;
}
.service-detail__panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.service-detail__panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(247, 190, 24, 0.12), transparent 65%);
}
.service-detail__panel-head--accent {
  background: linear-gradient(90deg, rgba(247, 190, 24, 0.22), rgba(0, 0, 0, 0.02));
}
.service-detail__panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 190, 24, 0.2);
  color: var(--black);
  font-size: 1rem;
}
.service-detail__panel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.service-detail__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-detail__nav-list li { border-bottom: 1px solid var(--border); }
.service-detail__nav-list li:last-child { border-bottom: none; }
.service-detail__nav-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}
.service-detail__nav-link:hover {
  background: rgba(247, 190, 24, 0.1);
  color: var(--heading);
  padding-left: 22px;
}
.service-detail__nav-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 190, 24, 0.14);
  color: var(--black);
  font-size: 0.85rem;
}
.service-detail__nav-arrow {
  font-size: 0.65rem;
  opacity: 0.35;
  transition: var(--transition);
}
.service-detail__nav-link:hover .service-detail__nav-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: var(--accent-dark);
}
.service-detail__all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--secondary);
  border-top: 1px solid var(--border);
  transition: var(--transition);
}
.service-detail__all-link:hover {
  background: rgba(247, 190, 24, 0.12);
  color: var(--black);
}
.service-detail__panel--contact {
  padding: 20px 18px 22px;
  background: linear-gradient(165deg, rgba(247, 190, 24, 0.1), var(--card-bg) 55%);
}
.service-detail__panel--contact .service-detail__panel-head {
  border-bottom: none;
  padding: 0 0 14px;
  background: none;
}
.service-detail__contact-desc {
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.service-detail__contact-btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
.service-detail__contact-btn:first-of-type { margin-top: 0; }

@media (max-width: 640px) {
  .service-detail__hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-detail__hero-badge { justify-self: center; }
  .service-detail__hero-copy { text-align: center; }
  .service-detail__lead { margin-left: auto; margin-right: auto; }
  .service-detail__prose { max-width: none; }
  .service-detail__cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .service-detail__cta-label { max-width: none; }
  .service-detail__cta-actions {
    justify-content: center;
  }
  .service-detail__cta-actions .btn { flex: 1 1 auto; min-width: 0; }
}

/* ─── Web Tasarım + SEO Landing (hizmet/web-tasarim-seo) ─── */
.wtseo-hero {
  padding: 86px 0 72px;
  background: radial-gradient(1000px 600px at 18% 12%, rgba(247, 190, 24, 0.22), transparent 60%),
    radial-gradient(900px 540px at 84% 10%, rgba(247, 190, 24, 0.14), transparent 62%),
    linear-gradient(180deg, #030303 0%, #0b0b0b 52%, #030303 100%);
  color: rgba(255, 255, 255, 0.9);
}
.wtseo-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.wtseo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 190, 24, 0.95);
  font-weight: 800;
}
.wtseo-hero__title {
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.wtseo-hero__lead {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
}
.wtseo-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.wtseo-btn-wa {
  background: #25d366;
  border: 2px solid #25d366;
  color: #fff;
}
.wtseo-btn-wa:hover {
  background: #1fae53;
  border-color: #1fae53;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}
.wtseo-hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wtseo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(247, 190, 24, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.82rem;
}
.wtseo-hero__media-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(247, 190, 24, 0.36);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}
.wtseo-hero__media-card img {
  width: 100%;
  height: auto;
  display: block;
}

.wtseo-section {
  padding: 78px 0;
}
.wtseo-section--muted {
  background: #f8fafc;
}
.wtseo-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}
.wtseo-h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  color: var(--heading);
  font-family: var(--font-display);
}
.wtseo-sub {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.wtseo-featuregrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.wtseo-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
}
.wtseo-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(247, 190, 24, 0.16);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.wtseo-feature h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
  color: var(--heading);
}
.wtseo-feature p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.wtseo-packgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.wtseo-pack {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
}
.wtseo-pack.is-accent {
  border-color: rgba(247, 190, 24, 0.55);
  box-shadow: 0 22px 56px rgba(247, 190, 24, 0.24);
  transform: translateY(-6px);
}
.wtseo-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(247, 190, 24, 0.18);
}
.wtseo-pack__title {
  margin: 12px 0 8px;
  font-size: 1.25rem;
  color: var(--heading);
  font-family: var(--font-display);
}
.wtseo-pack__desc {
  margin: 0 0 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.wtseo-pack__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.wtseo-pack__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(2, 6, 23, 0.72);
  line-height: 1.55;
}
.wtseo-pack__list li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 900;
  margin-top: 1px;
}
.wtseo-pack__cta {
  margin-top: auto;
}

.wtseo-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.wtseo-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.wtseo-why__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.06);
}
.wtseo-why__card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wtseo-why__card h3 i {
  color: var(--accent-dark);
}
.wtseo-why__card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}
.wtseo-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wtseo-step__n {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(247, 190, 24, 0.18);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.wtseo-step h3 {
  margin: 0 0 6px;
  color: var(--heading);
  font-size: 1.05rem;
}
.wtseo-step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.wtseo-faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.wtseo-faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.wtseo-faq__item summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  color: var(--heading);
  list-style: none;
}
.wtseo-faq__item summary::-webkit-details-marker {
  display: none;
}
.wtseo-faq__body {
  padding: 0 16px 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.wtseo-prose {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
}
.wtseo-cta__box {
  background: linear-gradient(135deg, rgba(247, 190, 24, 0.22), rgba(247, 190, 24, 0.08));
  border: 1px solid rgba(247, 190, 24, 0.45);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.wtseo-cta__box h2 {
  margin: 0 0 8px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.55rem;
}
.wtseo-cta__box p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}
.wtseo-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wtseo-hero__stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 540px;
}
.wtseo-stat {
  border: 1px solid rgba(247, 190, 24, 0.35);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wtseo-stat strong {
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1.2;
}
.wtseo-stat span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .wtseo-hero__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .wtseo-featuregrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wtseo-packgrid {
    grid-template-columns: 1fr;
  }
  .wtseo-pack.is-accent {
    transform: none;
  }
  .wtseo-steps {
    grid-template-columns: 1fr;
  }
  .wtseo-why {
    grid-template-columns: 1fr;
  }
  .wtseo-cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
  .wtseo-hero__stats {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .wtseo-featuregrid {
    grid-template-columns: 1fr;
  }
  .wtseo-hero {
    padding: 70px 0 56px;
  }
  .wtseo-hero__stats {
    grid-template-columns: 1fr;
  }
}

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--card-bg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: linear-gradient(135deg, var(--card-bg), var(--secondary));
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--black);
  padding: 24px 28px; border-radius: var(--radius); text-align: center;
  font-family: var(--font-display); box-shadow: var(--shadow);
}
.about-badge-num { font-size: 3rem; letter-spacing: 2px; line-height: 1; }
.about-badge-text { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; opacity: 0.8; font-family: var(--font-body); font-weight: 700; }
.about-features { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
  transition: var(--transition);
}
.about-feature:hover { border-color: var(--border-accent); }
.about-feature-icon { width: 36px; height: 36px; min-width: 36px; background: rgba(247, 190, 24, 0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 0.9rem; }
.about-feature h4 { font-size: 0.9rem; font-weight: 600; color: var(--heading); margin-bottom: 2px; }
.about-feature p { font-size: 0.78rem; color: var(--text-muted); }

/* ---- PORTFOLIO ---- */
.portfolio-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-muted); background: transparent;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--black); background: rgba(247, 190, 24, 0.18); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--card-bg); }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:3rem; background:linear-gradient(135deg, var(--card-bg), var(--secondary)); }
.portfolio-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-cat { font-size: 0.75rem; color: var(--accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.portfolio-overlay h3 { font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.portfolio-overlay a { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); border-color: var(--border-accent); box-shadow: var(--shadow); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--secondary); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 28px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-cat { background: rgba(247, 190, 24, 0.22); color: var(--black); padding: 3px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.blog-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--accent-dark); }
.blog-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.blog-more { color: var(--black); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 7px; }
.blog-more:hover { gap: 14px; }

/* ---- ANASAYFA — BİZ KİMİZ / HİZMET ALT CTA ---- */
.section-about-home { background: var(--card-bg); border-block: 1px solid var(--border); }
.about-lead { color: var(--text); margin-bottom: 16px; line-height: 1.9; font-size: 1.02rem; }
.about-lead strong { color: var(--heading); font-weight: 700; }
.about-lead-muted { color: var(--text-muted); margin-bottom: 32px; }
.about-cta-row { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.section-services-home { background: var(--primary); }
.section-footer-cta { text-align: center; margin-top: 48px; }

/* ---- ANASAYFA — WEB & YAZILIM (site_yazilimlari) ---- */
.section-software-home {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--card-bg) 45%);
  border-block: 1px solid var(--border);
  padding-block: clamp(48px, 8vw, 88px);
}
.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 28px);
  margin-top: 8px;
}
.software-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
a.software-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.software-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
}
.software-card__media {
  aspect-ratio: 16 / 9;
  background: var(--primary);
  overflow: hidden;
}
.software-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.software-card__body {
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.software-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  background: rgba(247, 190, 24, 0.15);
  border: 1px solid var(--border-accent);
  color: var(--black);
}
.software-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.software-card__lead {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.software-card__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
}
.software-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 8px;
}
.software-card__list li i {
  margin-top: 3px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.software-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(247, 190, 24, 0.2), rgba(247, 190, 24, 0.05));
  transition: var(--transition);
}
.software-card__btn:hover {
  gap: 12px;
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
}
.software-card--pro {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 20px 50px -24px rgba(15, 23, 42, 0.18);
}
.software-card--pro::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 190, 24, 0.35));
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}
.software-card--pro:hover {
  border-color: rgba(247, 190, 24, 0.45);
}
.software-card__headrow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.software-card__kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  padding-top: 4px;
}
.software-card--pro .software-card__headrow .software-card__icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  font-size: 1.05rem;
  border-radius: 12px;
  flex-shrink: 0;
}
.software-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1e2430 0%, var(--primary) 55%, #11151c 100%);
  min-height: 140px;
}
.software-card__ph-inner {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
}
.software-card__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 10px;
  letter-spacing: -0.025em;
  line-height: 1.22;
}
.software-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--black);
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(247, 190, 24, 0.22), rgba(247, 190, 24, 0.04));
  transition: var(--transition);
}
.software-card--pro:hover .software-card__cta {
  border-color: var(--accent);
  background: var(--accent);
  gap: 14px;
}
.software-grid--page {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.section-software-page {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--card-bg) 50%);
  border-block: 1px solid var(--border);
  padding-block: clamp(40px, 6vw, 72px);
}
.software-page-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 20px;
  max-width: 520px;
  margin: 32px auto 0;
  line-height: 1.7;
}
.software-page-empty a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.software-page-footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
.software-home-more {
  margin-top: 28px;
}
.software-card__price-row {
  margin-top: 4px;
  margin-bottom: 14px;
}
.software-card__price {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--heading);
  padding: 6px 0 0;
}
.software-card__price--teklif {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.software-card__price-row--paket {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.software-card__paket-meta {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark, #b8860b);
}

.software-card__price-itibaren {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-muted);
}

.software-card__price-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---- WEB & YAZILIM — ÜRÜN DETAY ---- */
.yazilim-detay {
  padding-block: clamp(32px, 5vw, 56px);
}
.yazilim-detay__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 960px) {
  .yazilim-detay__grid {
    grid-template-columns: 1fr;
  }
}
.yazilim-detay__main {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}
.yazilim-detay__hero {
  margin-bottom: 28px;
}
.yazilim-detay__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yazilim-detay__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.yazilim-detay__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.yazilim-detay__price-box {
  margin-bottom: 28px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(247, 190, 24, 0.12), var(--secondary));
}
.yazilim-detay__price-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.yazilim-detay__price-main--teklif {
  gap: 14px;
}
.yazilim-detay__price-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.yazilim-detay__price-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.1;
}
.yazilim-detay__price-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.yazilim-detay__price-teklif {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  max-width: 36ch;
  line-height: 1.45;
}
.yazilim-detay__price-btn {
  margin-top: 4px;
}
.yazilim-detay__about {
  margin-bottom: 32px;
}
.yazilim-detay__prose {
  color: var(--text);
  line-height: 1.75;
  font-size: 0.98rem;
}
.yazilim-detay__prose p {
  margin: 0 0 1rem;
}
.yazilim-detay__prose p:last-child {
  margin-bottom: 0;
}
.yazilim-detay__demos {
  margin-bottom: 32px;
}
.yazilim-detay__demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.yazilim-detay__demo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  min-height: 100px;
}
.yazilim-detay__demo-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.yazilim-detay__demo-ico {
  font-size: 0.85rem;
  color: var(--accent-dark);
  opacity: 0.9;
}
.yazilim-detay__demo-label {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--heading);
  line-height: 1.25;
}
.yazilim-detay__demo-url {
  font-size: 0.72rem;
  color: var(--text-muted);
  word-break: break-all;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yazilim-detay__media {
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--secondary);
}
.yazilim-detay__media img {
  width: 100%;
  height: auto;
  display: block;
}
.yazilim-detay__h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--heading);
}
.yazilim-detay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.yazilim-detay__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}
.yazilim-detay__list li i {
  margin-top: 3px;
  color: var(--accent-dark);
  flex-shrink: 0;
}
.yazilim-detay__cta-bar {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.yazilim-detay__cta-label {
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--heading);
  font-size: 0.95rem;
}
.yazilim-detay__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.yazilim-detay__aside {
  position: sticky;
  top: 100px;
}
.yazilim-detay__panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}
.yazilim-detay__panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--heading);
}
.yazilim-detay__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.yazilim-detay__nav li {
  border-bottom: 1px solid var(--border);
}
.yazilim-detay__nav li:last-child {
  border-bottom: none;
}
.yazilim-detay__nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.yazilim-detay__nav-link:hover {
  color: var(--black);
  padding-left: 6px;
}
.yazilim-detay__nav-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 190, 24, 0.14);
  border: 1px solid var(--border-accent);
  color: var(--black);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.yazilim-detay__nav-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.45;
}
.yazilim-detay__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
  text-decoration: none;
}
.yazilim-detay__all:hover {
  gap: 12px;
}
@media (max-width: 960px) {
  .yazilim-detay__aside {
    position: static;
  }
}

/* ---- ANASAYFA — NEDEN BİZ ---- */
.why-pro { background: var(--secondary); border-block: 1px solid var(--border); position: relative; }
.why-pro::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0.9;
}
.why-pro-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px;
}
.why-pro-grid--six {
  grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.why-pro-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; transition: var(--transition); position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.why-pro-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: var(--accent); border-radius: 0 0 4px 4px; opacity: 0.95;
}
.why-pro-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-accent); }
.why-pro-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  background: rgba(247, 190, 24, 0.18); color: var(--black); border: 1px solid var(--border-accent);
}
.why-pro-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--heading); margin-bottom: 12px; letter-spacing: -0.02em; }
.why-pro-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin: 0; }
.why-pro-card--rich p { font-size: 0.875rem; line-height: 1.78; }
.why-pro-card--rich h3 { font-size: 1.08rem; }
@media (max-width: 1024px) {
  .why-pro-grid { grid-template-columns: repeat(2, 1fr); }
  .why-pro-grid--six { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-pro-grid, .why-pro-grid--six { grid-template-columns: 1fr; }
}

/* ---- ANASAYFA — REFERANSLAR ---- */
.references-pro { background: var(--card-bg); border-block: 1px solid var(--border); }
.references-pro-head .section-title { position: relative; display: inline-block; }
.references-pro-head .section-title::after {
  content: ''; display: block; width: 48px; height: 4px; background: var(--accent); border-radius: 2px;
  margin: 16px auto 0;
}
.references-pro-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 16px;
}
.reference-pro-card {
  background: var(--primary); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px 26px; display: flex; flex-direction: column; min-height: 100%;
  transition: var(--transition); box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.reference-pro-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.reference-pro-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.reference-pro-logo {
  height: 44px; max-width: 140px; display: flex; align-items: center;
}
.reference-pro-logo img { max-height: 44px; max-width: 140px; width: auto; object-fit: contain; filter: none; }
.reference-pro-avatar {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--black), #222); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem;
  border: 2px solid var(--accent);
}
.reference-pro-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; flex-shrink: 0; }
.reference-pro-quote {
  flex: 1; margin: 0 0 22px; padding: 0; border: none; font-style: italic;
  font-size: 0.98rem; line-height: 1.8; color: var(--text-muted);
}
.reference-pro-meta { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--border); }
.reference-pro-name { font-weight: 800; color: var(--heading); font-size: 0.95rem; }
.reference-pro-co { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.references-pro-empty {
  text-align: center; color: var(--text-muted); padding: 48px 24px; font-size: 1rem;
  background: var(--secondary); border-radius: var(--radius); border: 1px dashed var(--border);
  margin-top: 16px;
}
@media (max-width: 1024px) { .references-pro-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .references-pro-grid { grid-template-columns: 1fr; } }

/* Anasayfa / referanslar sayfası — başlık hiyerarşisi: İş ortaklarımız üstte, Referanslarımız altta */
.references-home-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.references-home-head .section-title {
  margin-top: 0;
  margin-bottom: 14px;
}
.references-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(247, 190, 24, 0.2);
  border: 1px solid var(--border-accent);
  padding: 8px 18px;
  border-radius: 50px;
}
.references-home-kicker i {
  color: var(--accent-dark);
  font-size: 0.95rem;
}
.references-home-cta {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .references-home-head {
    margin-bottom: 32px;
  }
  .references-home-cta {
    margin-top: 28px;
  }
}

/* Anasayfa — sadece referans logoları (kart / yorum yok) */
.references-pro--logos .references-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 20px 28px;
  align-items: stretch;
  justify-items: stretch;
  margin-top: 20px;
}
.reference-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px 20px;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.reference-logo-cell:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.reference-logo-cell img {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.82);
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.reference-logo-cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Anasayfa referanslar — son hücre: sabit “size ayırdık” alanı */
.reference-logo-cell--reserved {
  padding: 14px 16px;
  background: linear-gradient(145deg, rgba(247, 190, 24, 0.08) 0%, var(--primary) 55%);
  border: 1px dashed var(--border-accent);
}
.reference-logo-cell--reserved:hover {
  border-color: var(--accent-dark);
  border-style: solid;
}
.reference-reserved-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  min-height: 64px;
  width: 100%;
}
.reference-reserved-icon {
  color: var(--accent-dark);
  font-size: 1.35rem;
  line-height: 1;
}
.reference-reserved-title {
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--heading);
}
.reference-reserved-hint {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
  max-width: 11em;
}
.reference-logo-cell--reserved:hover .reference-reserved-title {
  color: var(--black);
}
.reference-logo-cell--reserved:hover .reference-reserved-hint {
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .references-pro--logos .references-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .reference-logo-cell { min-height: 80px; padding: 14px; }
  .reference-logo-cell img { max-height: 64px; }
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 24px; font-family: var(--font-display); font-size: 5rem; color: rgba(247, 190, 24, 0.12); line-height: 1; }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--black), #1f1f1f); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--accent); font-size: 1.2rem; border: 2px solid var(--accent); }
.testimonial-name { font-weight: 700; color: var(--heading); font-size: 0.95rem; }
.testimonial-company { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-stars .far.fa-star { opacity: 0.38; }
.home-testimonials {
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(64px, 9vw, 100px);
  border-top: 1px solid var(--border);
}
.home-testimonials .testimonials-grid {
  margin-top: 8px;
}
@media (max-width: 640px) {
  .home-testimonials .testimonial-card { padding: 24px 20px; }
}

/* ---- COUNTER ---- */
.counter-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
  padding: 60px 0;
  border-block: 3px solid var(--accent);
}
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.counter-item { color: rgba(255, 255, 255, 0.88); }
.counter-num { font-family: var(--font-display); font-size: 3.5rem; letter-spacing: -0.02em; line-height: 1; font-weight: 800; color: var(--accent); }
.counter-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 8px; color: rgba(255, 255, 255, 0.75); }
@media (max-width: 768px) { .counter-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- CTA SECTION ---- */
.cta-section {
  background: radial-gradient(ellipse at center, rgba(247, 190, 24, 0.12) 0%, transparent 65%), var(--secondary);
  text-align: center; padding: 100px 0;
}
.cta-section .section-title { font-size: clamp(2rem, 5vw, 3rem); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ---- CONTACT SECTION ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
  transition: var(--transition);
}
.contact-info-item:hover { border-color: var(--border-accent); }
.ci-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(247, 190, 24, 0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--black); }
.ci-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ci-value { color: var(--heading); font-weight: 500; font-size: 0.95rem; }

/* ---- FORM ---- */
.contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; background: #f8fafc;
  border: 1px solid var(--border); border-radius: 10px; color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(247, 190, 24, 0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.form-success { display: none; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: 10px; padding: 16px; color: #10b981; text-align: center; margin-bottom: 20px; }
.form-error { color: #ef4444; font-size: 0.8rem; margin-top: 4px; }

/* ---- BREADCRUMB ---- */
.breadcrumb-section {
  padding: 32px 0; background: var(--secondary); border-bottom: 1px solid var(--border);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--black); font-weight: 700; }

/* ---- SEO açılış sayfaları ---- */
.seo-landing .seo-article {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.88;
  text-align: left;
}
.seo-landing .seo-article > p { margin-bottom: 1.1rem; }
.seo-landing .seo-article a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.seo-landing .seo-article a:hover { color: var(--black); }
.seo-landing .seo-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--heading);
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.02em;
}
.seo-landing .seo-article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin: 1.5rem 0 0.5rem;
}
.seo-landing .seo-article ul {
  margin: 0.5rem 0 1.25rem 1.25rem;
  list-style: disc;
  color: var(--text-muted);
}
.seo-landing .seo-article li { margin-bottom: 0.45rem; }

/* ---- Uzun SEO açılış (Rize Web / Rize Grafik vb.) ---- */
.seo-lp .rw-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.seo-lp .rw-article--wide {
  max-width: none;
  margin: 0;
}
.seo-lp .rw-block-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.seo-lp .rw-block-top { margin-top: 3.5rem; }
.seo-lp .rw-title-center {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 800;
  color: var(--heading);
  text-align: center;
  letter-spacing: -0.02em;
  margin: 2.75rem 0 1rem;
  line-height: 1.25;
}
.seo-lp .rw-title-center:first-of-type { margin-top: 0; }
.seo-lp .rw-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.seo-lp .rw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-top: 2rem;
}
.seo-lp .rw-split__media {
  margin: 0;
}
.seo-lp .rw-split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  display: block;
}
.seo-lp .rw-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0.5rem;
}
.seo-lp .rw-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: var(--transition);
}
.seo-lp .rw-feature-card:hover {
  border-color: rgba(247, 190, 24, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
.seo-lp .rw-feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(247, 190, 24, 0.2);
  color: var(--black);
  font-size: 1.35rem;
}
.seo-lp .rw-feature-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 8px;
}
.seo-lp .rw-feature-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.seo-lp .rw-faq {
  max-width: 820px;
  margin: 1.25rem auto 0;
}
.seo-lp .rw-faq__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--card-bg);
  overflow: hidden;
}
.seo-lp .rw-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
  position: relative;
  user-select: none;
}
.seo-lp .rw-faq__item summary::-webkit-details-marker { display: none; }
.seo-lp .rw-faq__item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 0.75rem;
  color: var(--accent-dark);
  transition: transform 0.25s ease;
}
.seo-lp .rw-faq__item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.seo-lp .rw-faq__item summary:hover {
  background: rgba(247, 190, 24, 0.08);
}
.seo-lp .rw-faq__body {
  padding: 0 18px 18px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}
.seo-lp .rw-faq__body p:last-child { margin-bottom: 0; }
.seo-lp .rw-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 3rem;
  padding-bottom: 8px;
}
@media (max-width: 900px) {
  .seo-lp .rw-split {
    grid-template-columns: 1fr;
  }
  .seo-lp .rw-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- PAGINATION ---- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 60px; flex-wrap: wrap; }
.pagination a, .pagination span {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 10px; color: var(--text-muted);
  font-weight: 600; transition: var(--transition); font-size: 0.9rem;
}
.pagination a:hover, .pagination .current { border-color: var(--accent); color: var(--black); background: rgba(247, 190, 24, 0.22); }

/* ---- CARD (hizmet / içerik kutuları) ---- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #f8fafc 0%, var(--secondary) 100%);
}
.card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-body { padding: 0; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: #fff; padding: 14px 20px;
  border-radius: 50px; display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem; box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 40px rgba(37,211,102,0.5); color: #fff; }
.whatsapp-float i { font-size: 1.3rem; }
@media (max-width: 600px) { .whatsapp-float span { display: none; } .whatsapp-float { padding: 14px; border-radius: 50%; } }

/* ---- FOOTER ---- */
.main-footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--accent);
  color: var(--footer-muted);
}
.footer-top {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--footer-top) 0%, var(--footer-bg) 100%);
  border-bottom: 1px solid var(--footer-border);
}
.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 20px;
}
.footer-logo-img { height: 50px; width: auto; max-width: 220px; object-fit: contain; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand p { color: var(--footer-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact p { color: var(--footer-muted); font-size: 0.87rem; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--accent-dark); margin-top: 3px; min-width: 14px; }
.footer-contact a:hover { color: var(--heading); }
.footer-heading { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--heading); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--footer-muted); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a i { font-size: 0.7rem; color: var(--accent-dark); opacity: 0; transition: var(--transition); }
.footer-links a:hover { color: var(--heading); padding-left: 6px; }
.footer-links a:hover i { opacity: 1; }
.footer-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.social-btn { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 10px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); border: 1px solid var(--footer-border); color: var(--footer-muted); }
.social-btn:hover { transform: translateX(4px); }
.social-btn.instagram:hover { border-color: #e1306c; color: #e1306c; background: rgba(225,48,108,0.08); }
.social-btn.facebook:hover { border-color: #1877f2; color: #1877f2; background: rgba(24,119,242,0.08); }
.social-btn.youtube:hover { border-color: #ff0000; color: #ff0000; background: rgba(255,0,0,0.08); }
.social-btn.linkedin:hover { border-color: #0a66c2; color: #0a66c2; background: rgba(10,102,194,0.08); }
.footer-cta p { color: var(--footer-muted); font-size: 0.85rem; margin-bottom: 14px; }
.footer-bottom {
  background: #ececee;
  border-top: 1px solid var(--footer-border);
  padding: 24px 0;
}
.footer-bottom .container { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; flex-direction: column; text-align: center; }
.footer-bottom p { color: var(--footer-muted); font-size: 0.82rem; margin: 0; }
.footer-bottom strong { color: var(--heading); }
.footer-bottom a { color: var(--footer-muted); }
.footer-bottom a:hover { color: var(--accent-dark); }

/* ---- ADMIN LINK ---- */
.admin-bar { background: var(--black); color: var(--accent); text-align: center; padding: 8px; font-size: 0.8rem; font-weight: 700; border-bottom: 2px solid var(--accent); }
.admin-bar a { color: var(--accent); margin-left: 12px; font-weight: 800; text-decoration: underline; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  /*
   * Çekmece kökü (site-drawer) kapalı olsa bile z-index: 100000 ile header'ın (1000) üstünde kalıyor.
   * Bazı mobil tarayıcılarda alt öğeler tıklamayı yakalayıp hamburgeri ölü bırakabiliyor.
   * Kapalıyken header'ı üstte tut; menü açıkken çekmece yine üstte olsun.
   */
  .main-header {
    z-index: 100050;
    overflow: visible;
  }
  body.drawer-open .main-header { z-index: 998; }

  body.drawer-open { overflow: hidden; touch-action: none; }
  .header-cta-group { display: none !important; }
  .topbar {
    display: block;
    padding: 8px 0;
    border-bottom-width: 1px;
  }
  .topbar .container {
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .topbar-left {
    gap: 10px;
    min-width: 0;
  }
  .topbar-left a {
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .topbar-left a:nth-child(2) {
    display: none;
  }
  .topbar-right {
    gap: 8px;
    flex-shrink: 0;
  }
  .topbar-right a {
    width: 26px;
    height: 26px;
    font-size: 0.78rem;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 100002;
  }

  /* JS çalışana kadar yatay menü taşmasın; taşındıktan sonra çekmede */
  .header-bar > .main-nav {
    display: none !important;
  }

  /* —— Mobil çekmece: sağdan, kurumsal siyah / sarı —— */
  .site-drawer .site-drawer__nav-host .main-nav {
    margin: 0;
    display: block;
    width: 100%;
    overflow: visible;
  }
  .site-drawer .site-drawer__nav-host .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .site-drawer .site-drawer__nav-host .main-nav > ul > li {
    border-bottom: 1px solid var(--border);
  }
  .site-drawer .site-drawer__nav-host .main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 6px;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading);
    justify-content: flex-start;
  }
  .site-drawer .site-drawer__nav-host .main-nav > ul > li > a .mn-icon {
    display: inline-flex !important;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(247, 190, 24, 0.18);
    color: var(--black);
    font-size: 1rem;
  }
  .site-drawer .site-drawer__nav-host .main-nav > ul > li > a:hover,
  .site-drawer .site-drawer__nav-host .main-nav > ul > li > a.active {
    background: rgba(247, 190, 24, 0.12);
    color: var(--black);
  }

  /* Hizmetler satırı + aç/kapa */
  .site-drawer .has-dropdown__row {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 52px;
  }
  .site-drawer .has-dropdown__main {
    flex: 1;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 8px 14px 6px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    font-weight: 600;
    color: var(--heading) !important;
    background: transparent !important;
    min-width: 0;
  }
  .site-drawer .has-dropdown__main .mn-icon {
    display: inline-flex !important;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(247, 190, 24, 0.18);
    color: var(--black);
    font-size: 1rem;
  }
  .site-drawer .has-dropdown__main:hover,
  .site-drawer .has-dropdown__main.active {
    background: rgba(247, 190, 24, 0.1) !important;
    color: var(--black) !important;
  }
  .site-drawer .has-dropdown__toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    flex-shrink: 0;
    border: none;
    border-left: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.75rem;
    transition: transform 0.25s ease, color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .site-drawer .has-dropdown__toggle:hover {
    color: var(--black);
    background: rgba(247, 190, 24, 0.12);
  }
  .site-drawer .has-dropdown.is-open .has-dropdown__toggle {
    color: var(--black);
    background: rgba(247, 190, 24, 0.15);
  }
  .site-drawer .has-dropdown.is-open .has-dropdown__toggle i {
    transform: rotate(180deg);
  }
  .site-drawer .has-dropdown__shell {
    display: block;
    width: 100%;
  }
  .site-drawer .has-dropdown:not(.is-open) .dropdown {
    display: none !important;
  }
  .site-drawer .has-dropdown.is-open .dropdown {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    margin: 0;
    padding: 0 0 8px 0;
    background: #fafafa;
    border: none;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 0;
    max-height: none;
    overflow: visible;
  }
  .site-drawer .has-dropdown.is-open .dropdown > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.72);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .site-drawer .has-dropdown.is-open .dropdown > li:last-child > a {
    border-bottom: none;
  }
  .site-drawer .has-dropdown.is-open .dropdown > li > a .mn-icon--sub {
    display: inline-flex !important;
    width: 1.5rem;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 0.8rem;
  }
  .site-drawer .has-dropdown.is-open .dropdown > li > a:hover {
    background: rgba(247, 190, 24, 0.14);
    color: var(--black);
  }

  .site-drawer {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 100000;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.28s ease, visibility 0.28s;
  }
  .site-drawer:not(.is-open) .site-drawer__scrim,
  .site-drawer:not(.is-open) .site-drawer__panel {
    pointer-events: none !important;
  }
  .site-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }
  .site-drawer__scrim {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.48);
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .site-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 90vw);
    max-width: 100%;
    background: #fff;
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  .site-drawer.is-open .site-drawer__panel {
    transform: translate3d(0, 0, 0);
  }
  .site-drawer__head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px 14px 18px;
    border-bottom: 1px solid var(--border);
    min-height: 64px;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  }
  .site-drawer__brand {
    display: flex;
    align-items: center;
    line-height: 0;
    max-width: calc(100% - 52px);
  }
  .site-drawer__brand img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
  }
  .site-drawer__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--heading);
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
  }
  .site-drawer__close:hover {
    background: rgba(247, 190, 24, 0.22);
    color: var(--black);
  }
  .site-drawer__scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .site-drawer__nav-host {
    flex-shrink: 0;
    padding: 0 16px;
  }
  .site-drawer__block {
    padding: 18px 16px;
    border-top: 1px solid var(--border);
  }
  .site-drawer__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  .site-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 8px 24px rgba(247, 190, 24, 0.35);
  }
  .site-drawer__cta:hover {
    transform: translateY(-1px);
    color: var(--black);
  }
  .site-drawer__block--cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .site-drawer__cta--jobs {
    background: var(--heading);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  }
  .site-drawer__cta--jobs:hover {
    color: #fff;
    background: #0a0a0a;
  }
  .site-drawer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .site-drawer__soc {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--heading);
    border: 1px solid var(--border);
    font-size: 1.05rem;
    transition: var(--transition);
  }
  .site-drawer__soc:hover {
    background: var(--accent);
    color: var(--black);
  }
  .site-drawer__spacer { flex: 1; min-height: 16px; }
  .site-drawer__block--foot {
    padding-bottom: 28px;
  }
  .site-drawer__contact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
  }
  .site-drawer__contact:last-of-type { border-bottom: none; }
  .site-drawer__contact i {
    margin-top: 3px;
    color: var(--accent-dark);
    width: 1.1rem;
    flex-shrink: 0;
  }
  .site-drawer__contact--tel {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    border-bottom: 1px solid var(--border);
  }
  .site-drawer__contact--tel i { color: var(--black); }
  .site-drawer__hours {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 14px;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .site-drawer__hours i {
    margin-top: 3px;
    color: var(--accent-dark);
  }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 901px) {
  .site-drawer { display: none !important; visibility: hidden !important; pointer-events: none !important; }
}

/* ---- SSS & süreç sayfaları ---- */
.page-legal-head {
  padding-bottom: 24px;
}
.page-faq {
  max-width: 820px;
  margin: 0 auto;
}
.page-faq__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--card-bg);
  overflow: hidden;
}
.page-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
  position: relative;
  user-select: none;
}
.page-faq__item summary::-webkit-details-marker { display: none; }
.page-faq__item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 0.75rem;
  color: var(--accent-dark);
  transition: transform 0.25s ease;
}
.page-faq__item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.page-faq__item summary:hover {
  background: rgba(247, 190, 24, 0.08);
}
.page-faq__body {
  padding: 0 18px 18px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}
.page-faq__body p { margin: 0 0 10px; }
.page-faq__body p:last-child { margin-bottom: 0; }
.page-sss-cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px 20px;
  border-radius: 16px;
  background: var(--secondary);
  border: 1px solid var(--border);
}
.page-sss-cta p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 1rem;
}
.page-sss-cta .btn { margin: 4px 6px; }

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(247, 190, 24, 0.2));
  border-radius: 2px;
}
.process-timeline__step {
  position: relative;
  padding-left: 64px;
  margin-bottom: 28px;
}
.process-timeline__step:last-child { margin-bottom: 0; }
.process-timeline__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(247, 190, 24, 0.35);
  z-index: 1;
}
.process-timeline__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}
.process-timeline__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  font-family: var(--font-display);
}
.process-timeline__text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.process-timeline__text p {
  margin: 0 0 10px;
}
.process-timeline__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 24px;
  }
  .hero-stats-section {
    padding-top: 12px;
  }
  .hero-stats {
    margin-top: 0;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat {
    border-left: 0;
    padding-left: 0;
    text-align: center;
  }
  .stat-num {
    font-size: 1.65rem;
  }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }
  .hero-nav,
  .hero-scroll {
    display: none;
  }
  .process-timeline::before { left: 17px; }
  .process-timeline__step { padding-left: 52px; }
  .process-timeline__marker {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .section { padding: 64px 0; }
  .hero-content { padding: 54px 0 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: -16px; right: -8px; padding: 16px 20px; }
  .contact-form { padding: 28px 20px; }
}

/* ─── Canlı chatbot (SSS tabanlı, sol alt, mobil sheet) ─── */
html.tb-chatbot-scroll-lock,
html.tb-chatbot-scroll-lock body {
  overflow: hidden;
  touch-action: none;
}
.tb-chatbot {
  --tb-cb-accent: var(--accent);
  --tb-cb-accent-dark: var(--accent-dark);
  --tb-cb-dark: #111111;
  --tb-cb-panel: rgba(16, 16, 16, 0.96);
  position: fixed;
  z-index: 99990;
  left: max(16px, env(safe-area-inset-left));
  right: auto;
  bottom: max(16px, env(safe-area-inset-bottom));
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.tb-chatbot__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.tb-chatbot--open .tb-chatbot__backdrop {
  opacity: 1;
  pointer-events: auto;
}
.tb-chatbot__backdrop[hidden] {
  display: none;
}
.tb-chatbot__toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34), 0 2px 0 rgba(255, 255, 255, 0.14) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.tb-chatbot__toggle-glow {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(247, 190, 24, 0.95), rgba(201, 151, 16, 0.92), rgba(0, 0, 0, 0.9));
  opacity: 0.55;
  filter: blur(10px);
  z-index: 0;
  animation: tb-cb-pulse 3.2s ease-in-out infinite;
}
@keyframes tb-cb-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.03);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tb-chatbot__toggle-glow {
    animation: none;
  }
  .tb-chatbot__toggle {
    transition: none;
  }
}
.tb-chatbot__toggle-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: inherit;
  background: linear-gradient(145deg, #0c0c0c 0%, #1a1a1a 55%, #262626 100%);
  border: 1px solid rgba(247, 190, 24, 0.35);
}
.tb-chatbot__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 2px 0 rgba(255, 255, 255, 0.15) inset;
}
.tb-chatbot__toggle:active {
  transform: translateY(0);
}
.tb-chatbot__ico {
  flex-shrink: 0;
  display: block;
}
.tb-chatbot__panel {
  position: absolute;
  z-index: 2;
  left: 0;
  right: auto;
  bottom: calc(100% + 14px);
  width: min(100vw - 32px, 420px);
  height: min(72vh, 540px);
  max-height: min(72vh, 540px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  background: var(--tb-cb-panel);
  color: #e2e8f0;
  border-radius: 20px;
  border: 1px solid rgba(247, 190, 24, 0.24);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  transform-origin: bottom left;
  transform: translateY(8px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.tb-chatbot--open .tb-chatbot__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.tb-chatbot__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, rgba(247, 190, 24, 0.2) 0%, rgba(16, 16, 16, 0.24) 100%);
  border-bottom: 1px solid rgba(247, 190, 24, 0.18);
}
.tb-chatbot__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.tb-chatbot__brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tb-cb-accent);
  box-shadow: 0 0 0 4px rgba(247, 190, 24, 0.24);
  flex-shrink: 0;
}
.tb-chatbot__brand-text strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.tb-chatbot__brand-text span {
  display: block;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.82);
  margin-top: 2px;
}
.tb-chatbot__iconbtn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.tb-chatbot__iconbtn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.tb-chatbot__messages {
  flex: 1 1 0%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.08) 100%);
}
.tb-chatbot__messages-inner {
  flex: 1 1 auto;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.tb-chatbot__messages-inner::-webkit-scrollbar {
  width: 6px;
}
.tb-chatbot__messages-inner::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 99px;
}
.tb-chatbot__composer {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(247, 190, 24, 0.2);
  background: rgba(10, 10, 10, 0.72);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.25);
}
.tb-chatbot__row {
  display: flex;
  flex-shrink: 0;
}
.tb-chatbot__row--user {
  justify-content: flex-end;
}
.tb-chatbot__row--bot {
  justify-content: flex-start;
}
.tb-chatbot__bubble {
  max-width: 94%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.58;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.tb-chatbot__row--user .tb-chatbot__bubble {
  background: linear-gradient(145deg, #f9c93c, var(--tb-cb-accent-dark));
  color: #141414;
  border-bottom-right-radius: 5px;
  font-weight: 500;
}
.tb-chatbot__row--bot .tb-chatbot__bubble {
  background: rgba(28, 28, 28, 0.95);
  color: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom-left-radius: 5px;
}
.tb-chatbot__bubble--typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 14px 18px;
}
.tb-chatbot__bubble--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94a3b8;
  animation: tb-cb-dot 1.1s ease-in-out infinite;
}
.tb-chatbot__bubble--typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.tb-chatbot__bubble--typing span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes tb-cb-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .tb-chatbot__bubble--typing span {
    animation: none;
    opacity: 0.7;
  }
}
.tb-chatbot-msg__q {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--tb-cb-accent);
  font-size: 0.8rem;
  line-height: 1.35;
}
.tb-chatbot-msg__a p {
  margin: 0 0 8px;
}
.tb-chatbot-msg__a p:last-child {
  margin-bottom: 0;
}
.tb-chatbot-msg--nomatch {
  margin-bottom: 12px;
  line-height: 1.55;
}
.tb-chatbot__wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.38);
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
}
.tb-chatbot__wa-cta:hover {
  filter: brightness(1.05);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.45);
}
.tb-chatbot__wa-cta:active {
  transform: scale(0.98);
}
.tb-chatbot__wa-cta-ico {
  display: flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.tb-chatbot__wa-cta-ico svg {
  width: 22px;
  height: 22px;
}
.tb-chatbot__wa-cta-txt {
  flex: 1;
  text-align: center;
}
.tb-chatbot__chips {
  padding: 10px 0 8px;
  flex: 0 0 auto;
}
.tb-chatbot__chips-rail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 14px;
  min-height: 0;
}
.tb-chatbot__chips-label {
  flex: 0 0 auto;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #64748b;
  white-space: nowrap;
}
.tb-chatbot__chips-scroll {
  flex: 1 1 0%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 8px 0;
  margin-right: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.4) transparent;
  mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
}
.tb-chatbot__chips-scroll::-webkit-scrollbar {
  height: 5px;
}
.tb-chatbot__chips-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 99px;
}
.tb-chatbot__chips-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: max-content;
  padding-right: 12px;
}
.tb-chatbot__chip {
  flex: 0 0 auto;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(30, 41, 59, 0.92);
  color: #e2e8f0;
  font-size: 0.78rem;
  line-height: 1.3;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}
.tb-chatbot__chip:hover {
  border-color: rgba(247, 190, 24, 0.6);
  background: rgba(247, 190, 24, 0.2);
  box-shadow: 0 4px 14px rgba(247, 190, 24, 0.22);
}
.tb-chatbot__chip:active {
  transform: scale(0.98);
}
.tb-chatbot__form {
  display: flex;
  gap: 10px;
  padding: 4px 14px 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  background: transparent;
}
.tb-chatbot__input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 16px;
  background: rgba(30, 41, 59, 0.85);
  color: #f8fafc;
}
.tb-chatbot__input::placeholder {
  color: #64748b;
}
.tb-chatbot__input:focus {
  outline: none;
  border-color: rgba(247, 190, 24, 0.62);
  box-shadow: 0 0 0 3px rgba(247, 190, 24, 0.2);
}
.tb-chatbot__send {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(145deg, #111111, #2b2b2b);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.12s ease, filter 0.12s ease;
}
.tb-chatbot__send:hover {
  filter: brightness(1.06);
}
.tb-chatbot__send:active {
  transform: scale(0.96);
}
.tb-chatbot__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 0 14px 14px;
  font-size: 0.78rem;
}
.tb-chatbot__footlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f8e6a3;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 4px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.tb-chatbot__footlink:hover {
  color: #fff3cd;
  background: rgba(247, 190, 24, 0.12);
}
.tb-chatbot__footlink--wa {
  color: #4ade80;
}
.tb-chatbot__footlink--wa:hover {
  color: #86efac;
}
.tb-chatbot__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .tb-chatbot {
    display: none !important;
  }
  .tb-chatbot {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
  }
  .tb-chatbot__toggle {
    position: fixed;
    left: max(14px, env(safe-area-inset-left));
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 5;
  }
  .tb-chatbot__toggle-label {
    display: none;
  }
  .tb-chatbot__toggle-inner {
    padding: 16px;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    justify-content: center;
  }
  .tb-chatbot__panel {
    position: fixed;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: none;
    height: min(90vh, 680px);
    max-height: min(90vh, 680px);
    min-height: 360px;
    border-radius: 22px 22px 0 0;
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateY(104%);
    transform-origin: bottom center;
  }
  .tb-chatbot--open .tb-chatbot__panel {
    transform: translateY(0);
  }
  .tb-chatbot__brand-text strong {
    max-width: min(68vw, 260px);
  }
  .tb-chatbot__messages-inner {
    padding: 14px 12px 14px;
  }
  .tb-chatbot__form {
    padding: 6px 12px 12px;
  }
  .tb-chatbot__input {
    min-height: 46px;
  }
}

/* Blog Detail */
.blog-detail__container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.blog-detail__article {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.blog-detail__category {
  margin-bottom: 16px;
  background: rgba(247, 190, 24, 0.2);
  color: var(--black);
  border: 1px solid rgba(247, 190, 24, 0.45);
}
.blog-detail__title {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.18;
  margin-bottom: 18px;
  font-family: var(--font-display);
  color: #0b0b0b;
  letter-spacing: -0.01em;
}
.blog-detail__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.blog-detail__cover {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 22px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.blog-detail__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff8e2;
  color: #4b4b4b;
  font-size: .82rem;
}
.blog-detail__body {
  color: #404040;
  line-height: 1.85;
  font-size: 1.05rem;
}
.blog-detail__body h2,
.blog-detail__body h3 {
  color: #111111;
  margin-top: 32px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.blog-detail__body p + p { margin-top: 12px; }
.blog-detail__body a {
  color: var(--accent-dark);
  font-weight: 600;
}
.blog-detail__body a:hover {
  color: var(--black);
}
.blog-detail__share {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-detail__share-title {
  font-weight: 700;
  margin-right: 6px;
}
.blog-detail__sticky {
  position: sticky;
  top: 110px;
}
.blog-detail__cta-card {
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: linear-gradient(155deg, #0f0f0f 0%, #1d1d1d 62%, #2b2b2b 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.blog-detail__cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(247, 190, 24, 0.28), transparent 45%);
  pointer-events: none;
}
.blog-detail__cta-eyebrow {
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.blog-detail__cta-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.blog-detail__cta-card p {
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.blog-detail__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.blog-detail__related {
  grid-column: 1 / -1;
  margin-top: 20px;
}
.blog-detail__related h2 {
  font-size: 1.45rem;
  margin-bottom: 22px;
}
@media (max-width: 1024px) {
  .blog-detail__container {
    grid-template-columns: 1fr;
  }
  .blog-detail__sticky {
    position: static;
    top: auto;
  }
}
@media (max-width: 768px) {
  .blog-detail__article {
    padding: 20px;
  }
  .blog-detail__body {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
