/* Lock Teknoloji — kurumsal site stilleri
   Renk paleti logodan türetildi: altın + gece lacivert + beyaz */

/* ============ Tokens ============ */
:root {
  --gold: #D4A24C;
  --gold-dark: #A87E2D;
  --gold-soft: #F4E4BC;
  --navy: #0E1A2B;
  --navy-soft: #1F3247;
  --navy-line: #243A55;
  --white: #FFFFFF;
  --bg-soft: #F6F7F9;
  --border: #E5E7EB;
  --text: #1A1A1A;
  --text-soft: #5B6470;
  --success: #16A34A;
  --error: #DC2626;
  --shadow-sm: 0 1px 2px rgba(14,26,43,.06);
  --shadow-md: 0 6px 24px rgba(14,26,43,.08);
  --shadow-lg: 0 14px 48px rgba(14,26,43,.14);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1200px;
  --gap: clamp(16px, 3vw, 32px);
  --section-y: clamp(56px, 8vw, 100px);
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  --ff-head: 'Manrope', var(--ff-sans);
  --t: 220ms cubic-bezier(.2,.7,.3,1);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}
/* Uzun kelime/URL kırılma korumaları (mobilde overflow'a karşı) */
p, li, td, th, h1, h2, h3, h4, summary { overflow-wrap: anywhere; word-break: break-word; }
img, video, table, pre, iframe { max-width: 100%; }

/* Article content — blog yazıları için */
.article-content { overflow-wrap: anywhere; word-break: break-word; }
.article-content table { font-size: .92rem; }
.article-content h2 { margin-top: 1.8em; margin-bottom: .5em; }
.article-content h3 { margin-top: 1.4em; margin-bottom: .4em; color: var(--gold-dark); }
.article-content ul, .article-content ol { padding-left: 1.4em; }
.article-content ul li::marker { color: var(--gold); }

/* Tablo scroll wrapper — taşan tablolar kendi içlerinde kayar, sayfa değil */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 8px;
}
.table-scroll table { margin: 0; min-width: 540px; }
@media (max-width: 720px) {
  .article-content table { font-size: .85rem; }
  .article-content table th, .article-content table td { padding: 8px 10px !important; }
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold); }
h1, h2, h3, h4, h5 { font-family: var(--ff-head); color: var(--navy); font-weight: 800; line-height: 1.18; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { padding-left: 1.2em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============ Layout helpers ============ */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-y) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #E2E8F0; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--gap); }
.section-head .eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold-soft); color: var(--gold-dark);
  margin-bottom: 14px;
}
.section--navy .eyebrow { background: rgba(212,162,76,.15); color: var(--gold); }
.section-head p { color: var(--text-soft); font-size: 1.05rem; }
.section--navy .section-head p { color: #B7C3D2; }
.grid { display: grid; gap: var(--gap); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 12px; font-weight: 700;
  text-decoration: none; line-height: 1; transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn svg { width: 18px; height: 18px; }

/* ============ Top bar ============ */
.topbar {
  background: var(--navy);
  color: #B7C3D2;
  font-size: .85rem;
  border-bottom: 1px solid var(--navy-line);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.topbar a { color: #B7C3D2; }
.topbar a:hover { color: var(--gold); }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__left span, .topbar__left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__right { display: flex; gap: 14px; align-items: center; }
.topbar__right a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; opacity: .9; flex-shrink: 0; }
@media (max-width: 720px) { .topbar { display: none; } }

/* ============ Header ============ */
.header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow var(--t);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand__text { font-family: var(--ff-head); font-weight: 800; color: var(--navy); font-size: 1.1rem; line-height: 1; }
.brand__text span { display: block; color: var(--gold-dark); font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 480px) { .brand__text { display: none; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 10px 14px; border-radius: 10px;
  color: var(--navy); font-weight: 600; font-size: .96rem;
  transition: background var(--t), color var(--t);
  position: relative;
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-dark); background: var(--gold-soft); }
.nav__has-sub { position: relative; }
.nav__has-sub > .nav__link::after { content: ''; display: inline-block; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 8px; vertical-align: 2px; }
.nav__sub {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 12px; min-width: 280px; display: none;
  border: 1px solid var(--border);
}
.nav__has-sub:hover .nav__sub, .nav__has-sub:focus-within .nav__sub { display: grid; gap: 2px; }
.nav__sub a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--navy); font-weight: 500; font-size: .92rem; }
.nav__sub a:hover { background: var(--bg-soft); color: var(--gold-dark); }

.header__cta { display: flex; align-items: center; gap: 10px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 10px; color: var(--navy); font-weight: 700; }
.header__phone:hover { background: var(--bg-soft); }
.header__phone svg { width: 18px; height: 18px; color: var(--gold-dark); }

.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav, .header__phone { display: none; }
  .hamburger { display: inline-flex; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 16px; max-height: calc(100vh - 100px); overflow: auto;
  }
  .nav.is-open .nav__link { width: 100%; }
  .nav.is-open .nav__sub { position: static; box-shadow: none; padding: 4px 0 4px 16px; border: 0; display: grid; }
  .nav.is-open .nav__has-sub > .nav__link::after { display: none; }
}

/* Küçük mobilde header sıkışmasın: logo + CTA + hamburger daha kompakt */
@media (max-width: 520px) {
  .header__inner { gap: 10px; padding: 10px 0; }
  .brand img { height: 36px; }
  .header__cta { gap: 6px; }
  .header__cta .btn { padding: 9px 12px; font-size: .82rem; }
  .hamburger { width: 40px; height: 40px; }
}
@media (max-width: 360px) {
  .header__cta .btn--primary { display: none; }  /* Çok küçük ekranda CTA gizli, hamburger menüde İletişim'e gidilir */
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(212,162,76,.22), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(212,162,76,.1), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #14253B 50%, var(--navy-soft) 100%);
  color: var(--white);
  padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 6vw, 90px);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,162,76,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,162,76,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .95fr; gap: clamp(28px, 4vw, 56px); align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(212,162,76,.15); color: var(--gold);
  font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 3px rgba(212,162,76,.3); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(212,162,76,.3); } 50% { box-shadow: 0 0 0 6px rgba(212,162,76,.1); } }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  margin: 0 0 18px;
}
.hero h1 .accent { color: var(--gold); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.18rem); color: #CFD8E3; max-width: 540px; margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.hero__trust-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #B7C3D2; }
.hero__trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* Hero form card */
.hero__form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  color: var(--text);
  position: relative;
}
.hero__form-card::before {
  content: ''; position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--gold), transparent 60%);
  border-radius: var(--radius-lg);
  z-index: -1; opacity: .6;
}
.hero__form-title { color: var(--navy); margin-bottom: 6px; font-size: 1.35rem; }
.hero__form-sub { color: var(--text-soft); font-size: .92rem; margin-bottom: 18px; }

/* ============ Form ============ */
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  font-size: .96rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,162,76,.15);
}
.form-field--check { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--text-soft); line-height: 1.5; }
.form-field--check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-field--check label { font-weight: 400; color: var(--text-soft); margin: 0; }
.form-field--check a { color: var(--gold-dark); text-decoration: underline; }
.form-field .error-msg { color: var(--error); font-size: .8rem; margin-top: 4px; display: none; }
.form-field.has-error input { border-color: var(--error); }
.form-field.has-error .error-msg { display: block; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-submit { width: 100%; margin-top: 6px; }
.form-disclaimer { font-size: .75rem; color: var(--text-soft); text-align: center; margin-top: 12px; }

/* ============ Trust bar ============ */
.trustbar { background: var(--navy); color: var(--white); padding: 28px 0; }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
@media (max-width: 720px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.trustbar__item { padding: 4px; }
.trustbar__num { font-family: var(--ff-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.trustbar__label { font-size: .85rem; color: #B7C3D2; }

/* ============ Service grid ============ */
.svc-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 2.5vw, 28px);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.svc-card:hover {
  transform: translateY(-4px); border-color: var(--gold);
  box-shadow: var(--shadow-md); color: inherit;
}
.svc-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-soft); color: var(--gold-dark);
  border-radius: 14px; margin-bottom: 18px;
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--navy); }
.svc-card p { color: var(--text-soft); font-size: .92rem; margin-bottom: 14px; flex: 1; }
.svc-card__more { color: var(--gold-dark); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-card__more::after { content: '→'; transition: transform var(--t); }
.svc-card:hover .svc-card__more::after { transform: translateX(4px); }

/* ============ Process / Timeline ============ */
.process { position: relative; }
.process__steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; counter-reset: step;
  position: relative;
}
.process__steps::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 36px;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  z-index: 0;
}
@media (max-width: 900px) {
  .process__steps { grid-template-columns: 1fr; gap: 28px; }
  .process__steps::before { left: 36px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent); }
}
.process__step { position: relative; padding-top: 96px; text-align: center; counter-increment: step; z-index: 1; }
.process__step::before {
  content: counter(step);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold); color: var(--gold-dark);
  font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.section--navy .process__step::before { background: var(--navy); border-color: var(--gold); color: var(--gold); }
@media (max-width: 900px) {
  .process__step { padding: 8px 0 8px 92px; text-align: left; min-height: 72px; }
  .process__step::before { top: 0; left: 0; transform: none; width: 64px; height: 64px; font-size: 1.35rem; }
}
.process__step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.process__step p { font-size: .9rem; color: var(--text-soft); margin: 0; }
.section--navy .process__step p { color: #B7C3D2; }

/* ============ About snapshot ============ */
.about-snap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 900px) { .about-snap { grid-template-columns: 1fr; } }
.about-snap__img { position: relative; }
.about-snap__img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-snap__img::after {
  content: ''; position: absolute; right: -16px; bottom: -16px; width: 60%; height: 60%;
  border: 3px solid var(--gold); border-radius: var(--radius-lg); z-index: -1;
}
.about-snap__body h2 .accent { color: var(--gold-dark); }
.about-snap__body p { color: var(--text-soft); }
.about-snap__badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 24px; }
.about-snap__badge { padding: 6px 14px; border-radius: 999px; background: var(--gold-soft); color: var(--gold-dark); font-size: .85rem; font-weight: 600; }

/* ============ Gallery preview / slider ============ */
.gallery-preview {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 16px; margin-inline: -20px; padding-inline: 20px;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.gallery-preview::-webkit-scrollbar { height: 6px; }
.gallery-preview::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.gallery-preview__item {
  flex: 0 0 auto; width: clamp(220px, 28vw, 320px); aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden; scroll-snap-align: start;
  position: relative; box-shadow: var(--shadow-sm);
  transition: transform var(--t);
}
.gallery-preview__item:hover { transform: scale(1.02); }
.gallery-preview__item img { width: 100%; height: 100%; object-fit: cover; }

/* Full gallery (yaptigimiz-isler) */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.gallery__item {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-soft); cursor: zoom-in; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.gallery__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery__item:hover img { transform: scale(1.04); }

/* ============ Feature cards (Neden Biz) ============ */
.feat-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: clamp(20px, 2.4vw, 28px); text-align: center;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.feat-card:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(212,162,76,.08); }
.feat-card__icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,162,76,.18); color: var(--gold);
  border-radius: 16px;
}
.feat-card__icon svg { width: 30px; height: 30px; }
.feat-card h3 { color: var(--white); font-size: 1.05rem; }
.feat-card p { color: #B7C3D2; font-size: .9rem; margin: 0; }

/* ============ FAQ accordion ============ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: border-color var(--t), box-shadow var(--t);
  background: var(--white);
}
.faq__item.is-open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; padding: 18px 22px; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: 1.02rem;
}
.faq__q::after {
  content: ''; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A87E2D' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/14px no-repeat;
  transition: transform var(--t);
}
.faq__item.is-open .faq__q::after { transform: rotate(180deg); }
.faq__a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  color: var(--text-soft); transition: max-height var(--t), padding var(--t);
}
.faq__item.is-open .faq__a { max-height: 500px; padding: 0 22px 20px; }

/* ============ CTA strip ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  position: relative; overflow: hidden;
  padding: clamp(40px, 6vw, 70px) 0;
  color: var(--white);
}
.cta-strip::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,162,76,.18), transparent 70%);
}
.cta-strip__inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 820px) { .cta-strip__inner { grid-template-columns: 1fr; text-align: center; } }
.cta-strip h2 { color: var(--white); margin-bottom: 8px; }
.cta-strip p { color: #CFD8E3; margin: 0; }
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 820px) { .cta-strip__actions { justify-content: center; } }

/* ============ Footer ============ */
.footer { background: var(--navy); color: #B7C3D2; padding: 60px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 50px; margin-bottom: 14px; filter: brightness(1.1); }
.footer__brand p { color: #B7C3D2; font-size: .9rem; max-width: 320px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t), transform var(--t);
}
.footer__social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; font-family: var(--ff-head); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #B7C3D2; font-size: .92rem; }
.footer a:hover { color: var(--gold); }
.footer__contact { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .92rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__bar {
  border-top: 1px solid var(--navy-line); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #8C9AAB;
}
.footer__bar a { color: #8C9AAB; }
.footer__bar a:hover { color: var(--gold); }

/* ============ Mobile call button (sticky) ============ */
.mobile-call {
  display: none;
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(212,162,76,.5);
  animation: float 3s ease-in-out infinite;
}
.mobile-call svg { width: 26px; height: 26px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (max-width: 720px) { .mobile-call { display: flex; } }

/* ============ Page hero (alt sayfalar) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white); padding: clamp(80px, 10vw, 140px) 0 clamp(56px, 6vw, 84px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 80% 0%, rgba(212,162,76,.15), transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 920px; }
.page-hero h1 { color: var(--white); margin: 14px 0 18px; }
.page-hero__lead { color: #CFD8E3; font-size: 1.1rem; line-height: 1.6; max-width: 760px; }

/* Breadcrumb */
.breadcrumb { font-size: .85rem; color: #B7C3D2; }
.breadcrumb a { color: #B7C3D2; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--gold); }

/* ============ Content prose ============ */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; margin-bottom: .6em; }
.prose h3 { margin-top: 1.4em; margin-bottom: .5em; color: var(--gold-dark); }
.prose ul { padding-left: 1.4em; }
.prose ul li { margin-bottom: .5em; }
.prose ul li::marker { color: var(--gold); }

/* Two-column content */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Use-case list */
.use-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 520px) { .use-list { grid-template-columns: 1fr; } }
.use-list li {
  padding: 12px 16px 12px 42px; background: var(--bg-soft);
  border-radius: 10px; position: relative; font-weight: 500; color: var(--navy);
}
.use-list li::before {
  content: ''; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%; background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E1A2B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Advantages */
.adv-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .adv-grid { grid-template-columns: 1fr; } }
.adv-card { padding: 22px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); }
.adv-card__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.adv-card__icon svg { width: 22px; height: 22px; }
.adv-card h4 { font-family: var(--ff-head); font-weight: 700; color: var(--navy); margin: 0 0 6px; font-size: 1rem; }
.adv-card p { font-size: .9rem; color: var(--text-soft); margin: 0; }

/* Related services */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .related { grid-template-columns: 1fr; } }

/* ============ Contact page ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--navy); color: #E2E8F0; padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg); }
.contact-info h3 { color: var(--white); margin-top: 0; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info__item:last-child { margin-bottom: 0; }
.contact-info__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(212,162,76,.18); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__label { font-size: .82rem; color: #8C9AAB; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-info__value { color: var(--white); font-weight: 600; font-size: 1.05rem; }
.contact-info__value a { color: var(--white); }
.contact-info__value a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}

/* ============ Thank you / KVKK ============ */
.center-card {
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.center-card__icon {
  width: 84px; height: 84px; margin: 0 auto 22px;
  background: var(--gold-soft); color: var(--gold-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.center-card__icon svg { width: 42px; height: 42px; }
.center-card .btn { margin: 6px 4px; }

/* ============ Utilities ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide-mobile { display: initial; }
@media (max-width: 720px) { .hide-mobile { display: none; } }

/* Print-friendly */
@media print {
  .header, .footer, .mobile-call, .hero__form-card, .cta-strip { display: none; }
}

/* ============ Blog (page-hero / article) iyileştirmeleri ============ */
/* page-hero içinde .eyebrow tek başına kullanıldığında boyut/şekil eksikti */
.page-hero .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 6px;
}

/* Blog meta satırı (📅 ✍ ⏱) — flex-wrap zaten inline; mobilde gap'i daralt */
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: #5B6470; font-size: .92rem; margin-top: 18px; }

/* Article inline callout kutuları için güvenli mobile padding */
@media (max-width: 520px) {
  .article-content > div[style*="border-left"] { padding: 14px 16px !important; }
  .article-content details { padding: 12px 14px !important; }
  .article-content details > summary { font-size: .95rem; }
  /* Çok küçük ekranda hero başlık nefesi */
  .page-hero { padding-top: clamp(56px, 14vw, 90px); padding-bottom: clamp(40px, 8vw, 64px); }
  .page-hero h1 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .page-hero__lead { font-size: .98rem; line-height: 1.55; }
  /* Breadcrumb mobilde küçük ve sarmalı */
  .breadcrumb { font-size: .78rem; line-height: 1.5; }
  /* CTA strip mobilde alt kısım dikey */
  .cta-strip h2 { font-size: clamp(1.35rem, 5.5vw, 1.7rem); }
  .cta-strip__actions .btn { width: 100%; justify-content: center; }
  /* Article gövde paragraflar */
  .article-content p, .article-content li { font-size: .98rem; }
  .article-content h2 { font-size: 1.35rem; }
  .article-content h3 { font-size: 1.12rem; }
}

/* Details — açıkken hafif accent (aria-hint görünür hale gelir) */
.article-content details { transition: border-color var(--t), box-shadow var(--t); }
.article-content details[open] { border-color: var(--gold) !important; box-shadow: var(--shadow-sm); }
.article-content details > summary { list-style: none; outline: none; min-height: 44px; display: flex; align-items: center; }
.article-content details > summary::-webkit-details-marker { display: none; }
.article-content details > summary::after {
  content: '+'; margin-left: auto; font-size: 1.2rem; color: var(--gold-dark);
  width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold-soft); transition: transform var(--t);
  flex-shrink: 0;
}
.article-content details[open] > summary::after { content: '−'; transform: rotate(180deg); }
.article-content details > summary:focus-visible { box-shadow: 0 0 0 3px rgba(212,162,76,.35); border-radius: 6px; }

/* Article içi linkler — daha okunaklı vurgu */
.article-content a:not(.btn) { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.article-content a:not(.btn):hover { color: var(--navy); text-decoration-thickness: 2px; }

/* Tap target güvencesi — küçük metinli butonlar için min height */
.btn--sm { min-height: 40px; }

/* Article içi tablo başlığı — kontrast için */
.article-content table th { background: var(--navy); color: var(--gold-soft); }
.article-content table td, .article-content table th { border: 1px solid var(--border); }

/* Mobilde svc-card meta (tarih + devamını oku) için hizalama güvencesi */
@media (max-width: 380px) {
  .svc-card > div[style*="justify-content:space-between"] { flex-wrap: wrap; gap: 6px; }
}
