/* ==========================================================================
   Reis Kenet Teknolojileri — kenetmakinesi.com
   Endüstriyel / mühendislik odaklı, sade tasarım dili
   ========================================================================== */

:root {
  /* Renk paleti */
  --bg:            #F7F7F5;   /* kırık beyaz ana zemin */
  --bg-alt:        #EFEFEC;   /* alternatif bölüm zemini */
  --surface:       #FFFFFF;
  --ink:           #1A2333;   /* koyu antrasit / lacivert */
  --ink-soft:      #2C374B;
  --accent:        #9B2321;   /* Reis marka kırmızısı */
  --accent-dark:   #7C1B19;
  --accent-tint:   rgba(155, 35, 33, .08);
  --gray:          #5E6675;   /* nötr metal tonu — açık zeminlerde WCAG AA */
  --gray-light:    #8A919E;
  --line:          #DFDFDA;
  --line-dark:     rgba(255, 255, 255, .14);

  /* Tipografi */
  --font-head: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Ölçü */
  --wrap: 1200px;
  --radius: 5px;
  --radius-lg: 8px;
  --section-y: 112px;
  --header-h: 76px;

  --shadow-sm: 0 1px 2px rgba(26, 35, 51, .06), 0 1px 3px rgba(26, 35, 51, .04);
  --shadow-md: 0 4px 12px rgba(26, 35, 51, .07), 0 2px 4px rgba(26, 35, 51, .04);
  --shadow-lg: 0 12px 32px rgba(26, 35, 51, .10), 0 4px 8px rgba(26, 35, 51, .05);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

/* Teknik rakamlar için tabular hizalama */
table, .stat-num, .spec-mini strong, .step-no {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.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;
}

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: var(--radius); transition: top .2s;
}
.skip-link:focus { top: 8px; color: #fff; }

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

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap-narrow { max-width: 840px; }

.section { padding-block: var(--section-y); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--ink); }

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: .4em; }
.section-intro { color: var(--gray); font-size: 1.05rem; }

.section-head-light h2 { color: #fff; }
.section-head-light .section-tag { color: #E8A9A7; }

.section-tag {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  flex: none;
}

.note {
  color: var(--gray);
  font-size: .97rem;
  border-left: 3px solid var(--line);
  padding-left: 18px;
  margin-top: 40px;
}
.note-center {
  border-left: 0;
  padding-left: 0;
  text-align: center;
  margin-top: 28px;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 10px 18px; font-size: .88rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .16); border-color: #fff; color: #fff; }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-outline-light svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.9; }

.btn-whatsapp {
  background: #1F8B4C;
  color: #fff;
  padding: 14px 26px;
  margin-top: 26px;
}
.btn-whatsapp:hover { background: #186B3B; color: #fff; }
.wa-icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 245, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
}

.brand { flex: none; display: block; }
.brand-logo { width: 168px; height: auto; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-block: 6px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .22s ease;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; flex: none; }

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.header-tel:hover { color: var(--accent); }
.header-tel svg {
  width: 17px; height: 17px;
  fill: none; stroke: var(--accent);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 19px; height: 2px;
  background: var(--ink);
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  padding-block: 96px;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(16, 22, 34, .93) 0%, rgba(20, 27, 41, .84) 42%, rgba(26, 35, 51, .58) 100%);
}
/* Hero metni, header ve diğer bölümlerle aynı ızgaraya hizalanır;
   satır uzunluğu .wrap'i daraltarak değil, içerideki öğeleri sınırlayarak korunur. */
.hero-inner { max-width: var(--wrap); }

.eyebrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px 7px 14px;
  background: rgba(155, 35, 33, .92);
  border-radius: 3px;
}

.hero h1 { color: #fff; margin-bottom: .5em; max-width: 820px; text-wrap: balance; }

.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  color: rgba(255, 255, 255, .85);
  max-width: 660px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  max-width: 820px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.badge-strip li {
  font-family: var(--font-head);
  font-size: .87rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: .01em;
}
.badge-strip li::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: none;
}

/* ---------- İstatistik şeridi ---------- */
.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 48px;
}
.stat {
  text-align: center;
  padding-inline: 20px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: .87rem;
  color: var(--gray);
  letter-spacing: .01em;
}

/* ---------- Zikzak bölümler ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-reverse .split-media { order: 2; }

.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}
.split-body h2 { margin-bottom: .55em; }

/* ---------- Check list ---------- */
.check-list { margin-top: 30px; display: grid; gap: 16px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .98rem;
}
.check-list svg {
  width: 22px; height: 22px;
  flex: none;
  margin-top: 2px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.check-list strong { color: var(--ink); font-weight: 600; }

/* ---------- Adımlar ---------- */
.steps { display: grid; gap: 28px; margin-top: 56px; }
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.steps-5 { grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 0; }

.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.steps li:hover {
  border-color: var(--gray-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: var(--accent-tint);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.steps h3 { margin-bottom: .5em; }
.steps p { font-size: .95rem; color: var(--gray); }

/* ---------- Model kartları ---------- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.model-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.model-card:hover {
  border-color: var(--gray-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.model-card-featured { border-color: var(--accent); }
.model-card-featured:hover { border-color: var(--accent); }

.model-flag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 3px;
}

.model-media {
  background: linear-gradient(170deg, #FBFBFA 0%, #F1F1EE 100%);
  border-bottom: 1px solid var(--line);
  padding: 22px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.model-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.model-body h3 {
  margin-bottom: .2em;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
}
.model-role {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1em;
}
.model-body > p:not(.model-role) {
  font-size: .93rem;
  color: var(--gray);
}

.spec-mini {
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  gap: 9px;
}
.spec-mini li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: .87rem;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.spec-mini span { color: var(--gray); }
.spec-mini strong { color: var(--ink); font-weight: 600; }

.model-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent);
}
.model-cta svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease;
}
.model-cta:hover svg { transform: translateX(4px); }

/* ---------- Karşılaştırma tablosu ---------- */
.table-block { margin-top: 72px; }
.table-title {
  font-size: 1.15rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  display: inline-block;
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  min-width: 760px;
}
.spec-table thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .02em;
  text-align: center;
  padding: 16px 18px;
  white-space: nowrap;
}
.spec-table thead th:first-child { text-align: left; }

.spec-table tbody th {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: .9rem;
  padding: 14px 18px;
  background: #FCFCFB;
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.spec-table td {
  padding: 14px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
}
.spec-table td:last-child, .spec-table th:last-child { border-right: 0; }
.spec-table tbody tr { border-top: 1px solid var(--line); }
.spec-table tbody tr:hover td,
.spec-table tbody tr:hover th { background: var(--accent-tint); }

.spec-table .yes { color: #1F8B4C; font-weight: 700; font-size: 1.05rem; }
.spec-table .no  { color: var(--gray-light); }

/* ---------- Pill list ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-list li {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
}

/* ---------- Referanslar ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  margin: 0;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  width: 34px; height: 34px;
  fill: none; stroke: var(--accent);
  stroke-width: 1.6; stroke-linejoin: round;
  margin-bottom: 18px;
  opacity: .9;
}
.quote-card blockquote { margin: 0; flex: 1; }
.quote-card blockquote p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.02rem;
  line-height: 1.65;
}
.quote-card figcaption {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
}

/* ---------- SSS ---------- */
.faq {
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-size: inherit; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  padding: 24px 4px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color .18s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-q svg {
  width: 22px; height: 22px;
  flex: none;
  fill: none; stroke: var(--accent);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s ease;
}
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] { color: var(--accent); }

.faq-a { padding: 0 4px 26px; max-width: 90%; }
.faq-a p { color: var(--gray); margin: 0; }

/* ---------- İletişim ---------- */
.section-contact { background: var(--bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}
.contact-intro h2 { margin-bottom: .5em; }
.contact-intro > p { color: var(--gray); }

.contact-card {
  font-style: normal;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin-top: 32px;
}
.contact-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: .94rem;
  margin-bottom: 14px;
}
.contact-line:last-child { margin-bottom: 0; }
.contact-line svg {
  width: 19px; height: 19px;
  flex: none; margin-top: 3px;
  fill: none; stroke: var(--accent);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.contact-line a { color: var(--ink); font-weight: 500; }
.contact-line a:hover { color: var(--accent); }

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field label {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.field label span { color: var(--accent); }

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--ink);
  background: #FCFCFB;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--gray-light); }

.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--accent); background: #FEF7F7; }

.field-error {
  margin: 7px 0 0;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 500;
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--gray);
  text-align: center;
}
.form-status {
  margin: 14px 0 0;
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.4em;
}
.form-status.ok { color: #1F8B4C; }
.form-status.err { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  font-size: .93rem;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand img { width: 160px; margin-bottom: 22px; }
.footer-brand p { max-width: 340px; line-height: 1.7; }

.footer-title {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgba(255, 255, 255, .68); }
.footer-col a:hover { color: #fff; }

.footer-col address { font-style: normal; }
.footer-col address p { margin-bottom: .7em; line-height: 1.6; }
.footer-col address strong { color: #fff; font-weight: 600; }

.footer-sitelink {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-size: .88rem;
  line-height: 1.65;
}
.footer-sitelink a { color: #E8A9A7; text-decoration: underline; text-underline-offset: 3px; }
.footer-sitelink a:hover { color: #fff; }

.footer-col ul.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .75);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.social svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-block: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: .86rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #E8A9A7; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Mobil sabit CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(26, 35, 51, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  transform: translateY(110%);
  transition: transform .28s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding-block: 14px; }
.sticky-cta .btn-outline-light { flex: 0 0 100px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  :root { --section-y: 88px; }
  .split { gap: 48px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 8px 24px 24px;
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a { display: block; padding: 15px 4px; font-size: 1rem; }
  .site-nav a::after { display: none; }

  .nav-toggle { display: flex; }
  .header-tel span { display: none; }
  .header-tel { padding: 10px; }
  .header-tel svg { width: 20px; height: 20px; }
  .header-actions .btn-accent { display: none; }
  .site-header .header-inner { gap: 12px; }
  .brand-logo { width: 142px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-grid { grid-template-columns: 1fr; }
  .steps-3 { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --section-y: 68px; }
  body { font-size: 16px; }

  .wrap { padding-inline: 20px; }

  .hero { min-height: auto; padding-block: 68px 60px; }
  .hero-bg { object-position: center 45%; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(16, 22, 34, .90) 0%, rgba(20, 27, 41, .88) 60%, rgba(20, 27, 41, .92) 100%);
  }
  .eyebrow { font-size: .68rem; letter-spacing: .12em; padding: 6px 12px; }
  .hero-cta { flex-direction: column; align-items: stretch; margin-bottom: 36px; }
  .hero-cta .btn { width: 100%; }
  .badge-strip { gap: 10px 20px; }
  .badge-strip li { font-size: .82rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding-block: 38px; }
  .stat { padding-inline: 12px; }
  .stat:nth-child(2n) { border-right: 0; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-reverse .split-media { order: 0; }

  .model-grid { grid-template-columns: 1fr; gap: 18px; }
  .steps-5 { grid-template-columns: 1fr; }
  .steps li { padding: 24px 22px; }

  .contact-form-wrap { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .faq-q { font-size: 1rem; padding: 20px 2px; gap: 14px; }
  .faq-a { max-width: 100%; padding-bottom: 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { justify-content: flex-start; }

  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 76px; }

  /* Dokunma alanlarını büyüt */
  .model-cta { padding-block: 10px; }
  .contact-line a,
  .footer-bottom a { display: inline-block; padding-block: 9px; }
  .footer-col ul:not(.social) a { display: block; padding-block: 7px; }
  .footer-col address a { display: inline-block; padding-block: 8px; }
  .footer-col ul.social a { width: 44px; height: 44px; }

  /* Tablo → kart görünümü */
  .table-scroll { border: 0; background: none; overflow: visible; }
  .spec-table { min-width: 0; display: block; }
  .spec-table thead { display: none; }
  .spec-table tbody { display: grid; gap: 14px; }
  .spec-table tbody tr {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 6px 18px 14px;
    overflow: hidden;
  }
  .spec-table tbody tr:hover td,
  .spec-table tbody tr:hover th { background: transparent; }
  .spec-table tbody th {
    display: block;
    background: transparent;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 0 10px;
    margin-bottom: 4px;
    font-family: var(--font-head);
    font-size: .95rem;
    color: var(--ink);
    white-space: normal;
  }
  .spec-table td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    text-align: right;
    border-right: 0;
    padding: 9px 0;
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink);
  }
  .spec-table td + td { border-top: 1px dashed var(--line); }
  .spec-table td::before {
    content: attr(data-label);
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray);
    text-align: left;
    letter-spacing: .02em;
  }
}

@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
}

/* ---------- Hareket tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Yazdırma ---------- */
@media print {
  .site-header, .sticky-cta, .hero-cta, .contact-form-wrap { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 20pt; }
}
