/* ============================================================
   remaxtuncayada.com — Premium tasarım sistemi
   Tuncay Ada · RE/MAX Enbatı
   ============================================================ */

:root {
  /* Renk paleti: antrasit / kırık beyaz / kontrollü RE/MAX kırmızısı / lacivert detay */
  --ink: #0E1116;
  --ink-2: #151A21;
  --ink-3: #1E252E;
  --ink-4: #2A323D;
  --paper: #F6F3EE;
  --paper-2: #EEE9E1;
  --paper-3: #E4DED4;
  --text: #1A1F26;
  --text-2: #4B535E;
  --muted: #7A828C;
  --line: rgba(14, 17, 22, 0.12);
  --line-dark: rgba(246, 243, 238, 0.12);
  --red: #DC1C2E;
  --red-deep: #B5121F;
  --red-soft: rgba(220, 28, 46, 0.12);
  --navy: #003DA5;
  --wa: #25D366;
  --white: #FFFFFF;

  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 6px;
  --radius-lg: 14px;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 9vw, 128px);
  --header-h: 78px;

  --shadow-sm: 0 1px 2px rgba(14, 17, 22, 0.06), 0 2px 8px rgba(14, 17, 22, 0.06);
  --shadow-md: 0 8px 30px rgba(14, 17, 22, 0.12);
  --shadow-lg: 0 24px 60px rgba(14, 17, 22, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 0;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: inherit; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }
::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding: var(--section) 0; position: relative; }
.section--tight { padding: calc(var(--section) * 0.6) 0; }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-ink-2 { background: var(--ink-2); color: var(--paper); }
.bg-paper { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }

/* Kum/gren dokusu — sinematik his */
.grain::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 1; }

/* ---------- Tipografi ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.bg-ink .eyebrow, .bg-ink-2 .eyebrow { color: #F08A94; }

.h1 { font-size: clamp(2.4rem, 5.2vw, 4.25rem); line-height: 1.06; letter-spacing: -0.02em; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-2); max-width: 60ch; }
.bg-ink .lead, .bg-ink-2 .lead { color: rgba(246, 243, 238, 0.74); }
.italic { font-style: italic; font-weight: 400; }
.accent { color: var(--red); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { margin-top: 18px; margin-bottom: 0; }
.h2 + .lead { margin-top: 16px; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em; line-height: 1;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px rgba(220, 28, 46, 0.28); }
.btn--primary:hover { background: var(--red-deep); box-shadow: 0 14px 34px rgba(220, 28, 46, 0.36); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--outline-light { border-color: rgba(246, 243, 238, 0.35); color: var(--paper); background: transparent; }
.btn--outline-light:hover { border-color: var(--paper); background: rgba(246, 243, 238, 0.06); }
.btn--outline-dark { border-color: rgba(14, 17, 22, 0.28); color: var(--ink); background: transparent; }
.btn--outline-dark:hover { border-color: var(--ink); background: rgba(14, 17, 22, 0.04); }
.btn--wa svg { color: var(--wa); }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: inherit;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: gap .25s var(--ease), color .25s;
}
.text-link:hover { gap: 12px; color: var(--red); }
.text-link svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 60;
  background: rgba(14, 17, 22, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
}
.header__inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: 0.02em;
  flex: none;
}
.brand__mark--img { background: transparent; border-radius: 0; width: auto; height: 44px; }
.brand__mark--img img { height: 44px; width: auto; }
.brand__text { line-height: 1.1; display: flex; flex-direction: column; }
.brand__name { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.brand__sub { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246, 243, 238, 0.62); margin-top: 3px; }
.brand__sub b { color: #fff; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14px; font-weight: 500; white-space: nowrap; color: rgba(246, 243, 238, 0.78); transition: color .2s; position: relative; }
.nav a:hover, .nav a.is-active { color: #fff; }
.nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--red); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__phone { display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: var(--radius); background: var(--red); color: #fff; font-weight: 600; font-size: 14px; transition: background .2s; }
.header__phone:hover { background: var(--red-deep); }
.header__phone svg { width: 16px; height: 16px; }
.header__phone span { white-space: nowrap; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: transparent; color: var(--paper); place-items: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
    background: var(--ink); border-bottom: 1px solid var(--line-dark);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px var(--gutter); font-size: 16px; border-bottom: 1px solid rgba(246,243,238,0.06); }
  .nav a.is-active::after { display: none; }
  .nav-toggle { display: grid; }
  .header__phone span { display: none; }
  .header__phone { padding: 12px; }
  .brand__sub { display: none; }
  .brand__name { font-size: 16px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
  padding: clamp(56px, 7vw, 96px) 0 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 520px at 78% 88%, rgba(220, 28, 46, 0.22), transparent 62%),
    radial-gradient(700px 500px at 8% 0%, rgba(0, 61, 165, 0.16), transparent 60%),
    linear-gradient(180deg, #11151B 0%, var(--ink) 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.35;
  background-image:
    linear-gradient(rgba(246, 243, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 243, 238, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 85%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.hero__content { padding-bottom: clamp(56px, 7vw, 96px); }
.hero__title { margin: 0 0 22px; max-width: 14ch; }
.hero__title em { font-style: italic; font-weight: 400; color: #fff; }
.hero__lead { margin-bottom: 34px; font-size: clamp(1.05rem, 1.35vw, 1.2rem); color: rgba(246, 243, 238, 0.76); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 28px; }
.hero__note { font-size: 13px; color: rgba(246, 243, 238, 0.56); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero__note svg { width: 15px; height: 15px; color: #7ED9A0; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(246, 243, 238, 0.16); background: rgba(246, 243, 238, 0.04);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: rgba(246, 243, 238, 0.82);
}
.badge svg { width: 13px; height: 13px; color: #F08A94; }

.hero__visual { position: relative; align-self: end; display: flex; justify-content: center; }
.portrait-frame {
  position: relative; width: min(100%, 470px); aspect-ratio: 0.78;
  display: flex; align-items: flex-end; justify-content: center;
}
.portrait-frame::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 14%; bottom: 0;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(246,243,238,0.06), rgba(246,243,238,0.02));
  border: 1px solid rgba(246, 243, 238, 0.14);
  border-bottom: none;
}
.portrait-frame::after {
  content: ""; position: absolute; left: 20%; right: 20%; bottom: 0; height: 40%;
  background: radial-gradient(closest-side, rgba(220, 28, 46, 0.35), transparent);
  filter: blur(30px); z-index: 0;
}
.portrait-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 30px 40px rgba(0,0,0,.55)); }
.portrait-card {
  position: absolute; z-index: 2; left: -6%; bottom: 14%;
  background: rgba(21, 26, 33, 0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(246, 243, 238, 0.14); border-radius: var(--radius-lg);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.portrait-card__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--red-soft); color: #F08A94; display: grid; place-items: center; }
.portrait-card__icon svg { width: 20px; height: 20px; }
.portrait-card__t { font-size: 14px; font-weight: 600; line-height: 1.2; }
.portrait-card__s { font-size: 12px; color: rgba(246, 243, 238, 0.6); margin-top: 3px; }

@media (max-width: 960px) {
  .hero { padding-top: 44px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 28px; }
  .hero__title { max-width: none; }
  .hero__visual { order: 2; }
  .portrait-frame { width: min(100%, 380px); }
  .portrait-card { left: 0; bottom: 10%; }
}
@media (max-width: 560px) {
  .eyebrow { font-size: 11px; letter-spacing: 0.14em; }
  .hero__actions .btn { width: 100%; }
  .btn--lg { padding: 16px 18px; font-size: 15px; white-space: normal; text-align: center; }
  .portrait-card { padding: 12px 14px; }
}

/* ---------- İstatistik çubuğu ---------- */
.stats { background: var(--paper); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat__n { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1; color: var(--ink); }
.stat__n small { font-size: 55%; vertical-align: super; color: var(--red); }
.stat__l { font-size: 13px; color: var(--text-2); margin-top: 10px; letter-spacing: 0.02em; }
@media (max-width: 960px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px 20px; border-top: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: none; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
}

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(14,17,22,0.2); }
.card__num { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.2em; color: var(--red); margin-bottom: 22px; }
.card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--paper-2); display: grid; place-items: center; color: var(--ink); margin-bottom: 22px; }
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--text-2); font-size: 15px; margin: 0; }
.card--dark { background: var(--ink-3); border-color: rgba(246, 243, 238, 0.1); color: var(--paper); }
.card--dark:hover { border-color: rgba(246, 243, 238, 0.28); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.card--dark .card__icon { background: rgba(246, 243, 238, 0.06); color: #F08A94; }
.card--dark p { color: rgba(246, 243, 238, 0.68); }
.card--dark .card__num { color: #F08A94; }
.card__link { margin-top: 20px; font-size: 14px; }

/* ---------- Süreç ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; counter-reset: step; }
.steps::before { content: ""; position: absolute; left: 24px; right: 24px; top: 27px; height: 1px; background: var(--line); }
.step { padding: 0 24px 0 0; position: relative; }
.step__dot {
  width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: var(--paper);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 18px; position: relative; z-index: 1;
  margin-bottom: 24px; border: 6px solid var(--paper);
}
.step:first-child .step__dot { background: var(--red); }
.bg-paper-2 .step__dot { border-color: var(--paper-2); }
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-2); margin: 0; }
@media (max-width: 960px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { left: 27px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .step { display: grid; grid-template-columns: 54px 1fr; column-gap: 20px; padding: 0; }
  .step__dot { margin: 0; grid-row: 1 / span 2; }
}

/* ---------- Bölgeler ---------- */
.regions { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 14px; font-weight: 500; color: var(--text); transition: border-color .2s, background .2s; }
.chip:hover { border-color: var(--ink); }
.chip--hot { border-color: var(--red); color: var(--red); background: var(--red-soft); }
.regions__note { margin-top: 26px; padding: 18px 20px; border-left: 3px solid var(--red); background: #fff; border-radius: 0 var(--radius) var(--radius) 0; font-size: 15px; color: var(--text-2); }
@media (max-width: 900px) { .regions { grid-template-columns: 1fr; } }

/* ---------- Hakkımda özeti ---------- */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.about__visual { position: relative; }
.about__img {
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  background: linear-gradient(180deg, var(--ink-3), var(--ink));
  padding: 40px 24px 0; overflow: hidden; aspect-ratio: 0.82;
  display: flex; align-items: flex-end; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about__img picture { width: 92%; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.about__img img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; }
.about .h2 { margin-bottom: 14px; }
.about__stamp {
  position: absolute; right: -10px; bottom: 30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-size: 13px; line-height: 1.25; letter-spacing: 0.04em;
  box-shadow: var(--shadow-md);
}
.about__stamp b { font-size: 26px; display: block; font-weight: 600; }
.creds { margin-top: 28px; display: grid; gap: 12px; }
.creds li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-2); }
.creds li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--red); }
.creds li b { color: var(--text); font-weight: 600; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } .about__visual { max-width: 420px; margin: 0 auto; } }

/* ---------- Form ---------- */
.lead-section { position: relative; overflow: hidden; color: var(--paper); }
.lead-section .lead { color: rgba(246, 243, 238, 0.74); }
.lead-section .eyebrow { color: #F08A94; }
.lead-section::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(800px 500px at 15% 20%, rgba(220, 28, 46, 0.18), transparent 60%), var(--ink);
}
.lead-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.lead-grid__text .h2 { margin-bottom: 18px; }
.lead-points { margin-top: 30px; display: grid; gap: 16px; }
.lead-points li { display: flex; gap: 14px; align-items: flex-start; color: rgba(246, 243, 238, 0.8); font-size: 15px; }
.lead-points li svg { width: 20px; height: 20px; flex: none; color: #F08A94; margin-top: 2px; }
.lead-points b { color: #fff; font-weight: 600; }
.lead-alt { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.lead-alt p { color: rgba(246, 243, 238, 0.62); font-size: 14px; margin-bottom: 14px; }

.form-card {
  background: var(--paper); color: var(--text); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-lg);
}
.form-card__head { margin-bottom: 22px; }
.form-card__head h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card__head p { color: var(--text-2); font-size: 14px; margin: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid rgba(14,17,22,0.18); border-radius: var(--radius);
  background: #fff; font: inherit; font-size: 15px; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(14,17,22,0.08); }
.field textarea { min-height: 96px; resize: vertical; }
.field--error input, .field--error select { border-color: var(--red); }
.field__err { font-size: 12px; color: var(--red); display: none; }
.field--error .field__err { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--text-2); margin: 6px 0 18px; }
.consent input { margin-top: 3px; accent-color: var(--red); }
.consent a { text-decoration: underline; }
.form-foot { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-msg { display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--radius); font-size: 14px; }
.form-msg.is-error { display: block; background: var(--red-soft); color: var(--red-deep); }
.form-msg.is-ok { display: block; background: rgba(37, 211, 102, 0.14); color: #137A3B; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
#kommo-form:empty { display: none; }
@media (max-width: 960px) { .lead-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- SSS ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 20px; height: 20px; flex: none; color: var(--red); transition: transform .3s var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq__a { padding: 20px 26px 24px; color: var(--text-2); font-size: 15px; }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* ---------- İletişim ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.contact__list { display: grid; gap: 22px; margin-top: 30px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__item svg { width: 22px; height: 22px; flex: none; color: var(--red); margin-top: 2px; }
.contact__item b { display: block; font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.contact__item span, .contact__item a { color: var(--text-2); font-size: 15px; }
.contact__item a:hover { color: var(--red); }
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 380px; background: var(--paper-2); box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(0.85) contrast(1.02); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* ---------- CTA bandı ---------- */
.cta-band { background: var(--red); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 44px 0; }
.cta-band .h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.cta-band p { margin: 6px 0 0; color: rgba(255,255,255,0.82); font-size: 15px; }
.cta-band .btn--light { color: var(--red-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(246, 243, 238, 0.7); font-size: 14px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 44px; border-bottom: 1px solid var(--line-dark); }
.footer h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer__brand p { margin-top: 16px; max-width: 34ch; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: rgba(246,243,238,0.7); transition: border-color .2s, color .2s; }
.footer__social a:hover { border-color: #fff; color: #fff; }
.footer__social svg { width: 16px; height: 16px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; font-size: 12.5px; color: rgba(246, 243, 238, 0.48); }
@media (max-width: 960px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Mobil sabit CTA çubuğu ---------- */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(14, 17, 22, 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1.3fr 1fr 1fr; gap: 8px;
}
.mobile-bar a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 8px; border-radius: var(--radius); font-weight: 600; font-size: 13.5px; color: #fff; border: 1px solid rgba(246,243,238,0.18); }
.mobile-bar a svg { width: 17px; height: 17px; }
.mobile-bar .is-call { background: var(--red); border-color: var(--red); }
.mobile-bar .is-wa svg { color: var(--wa); }
@media (max-width: 960px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 74px; }
}

/* ---------- İç sayfa başlığı ---------- */
.page-head { background: var(--ink); color: var(--paper); padding: clamp(56px, 7vw, 96px) 0; position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 90% 100%, rgba(220,28,46,0.18), transparent 60%); }
.page-head .container { position: relative; }
.page-head .lead { margin-top: 16px; color: rgba(246, 243, 238, 0.74); }
.page-head .eyebrow { color: #F08A94; }
.breadcrumb { font-size: 12.5px; letter-spacing: 0.06em; color: rgba(246,243,238,0.55); margin-bottom: 18px; display: flex; gap: 10px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Metin sayfası (KVKK vb.) ---------- */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--text-2); font-size: 15.5px; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 6px; margin-bottom: 1em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0 24px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--paper-2); font-weight: 600; }
.notice { padding: 16px 18px; border-left: 3px solid var(--navy); background: #fff; border-radius: 0 var(--radius) var(--radius) 0; font-size: 14px; color: var(--text-2); margin: 20px 0; }

/* ---------- Hizmet detayları ---------- */
.service { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); padding: clamp(40px, 5vw, 64px) 0; border-top: 1px solid var(--line); align-items: start; }
.service:first-child { border-top: none; padding-top: 0; }
.service__k { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.2em; color: var(--red); margin-bottom: 14px; }
.service h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.service p { color: var(--text-2); }
.service__box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.service__box h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.service__box ul { display: grid; gap: 10px; }
.service__box li { display: flex; gap: 10px; font-size: 15px; color: var(--text-2); }
.service__box li svg { width: 18px; height: 18px; flex: none; color: var(--red); margin-top: 3px; }
@media (max-width: 900px) { .service { grid-template-columns: 1fr; } }

/* ---------- Zaman çizelgesi ---------- */
.timeline { position: relative; padding-left: 28px; display: grid; gap: 28px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -26px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px var(--paper); }
.timeline b { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 4px; }
.timeline span { color: var(--text-2); font-size: 15px; }

/* ---------- Teşekkür sayfası ---------- */
.thanks { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.thanks__icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(37,211,102,0.14); color: #137A3B; display: grid; place-items: center; margin: 0 auto 24px; }
.thanks__icon svg { width: 34px; height: 34px; }

/* ---------- Görünüm animasyonları ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Yardımcılar ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
