/* =====================================================
   REHAIR ISTANBUL — SAÇ EKİMİ LANDING PAGE — styles.css
   Palet: logodan türetildi — turkuaz / yeşil / gri / beyaz
   Tasarım: temiz, taze, medikal estetik; sade ve hızlı
   ===================================================== */

/* ---------- Tasarım değişkenleri (logodan) ---------- */
:root {
  --teal: #2a9aa6;          /* marka turkuazı: CTA, vurgu, "Re" tonu */
  --teal-bright: #4bb1ba;   /* logodaki açık turkuaz */
  --teal-dark: #14424a;     /* derin turkuaz: başlıklar, koyu bölüm */
  --green: #74b75e;         /* logodaki yeşil: ikincil vurgu, başarı */
  --green-dark: #5a9a47;
  --gray-brand: #9d9f9e;    /* logodaki "Hair / Istanbul" grisi */
  --mint: #f1f8f7;          /* açık nane zemini (krem yerine) */
  --white: #ffffff;
  --ink: #2c3a3d;           /* gövde metni */
  --ink-muted: #5f7174;     /* ikincil metin */
  --line: #d8e8e6;          /* ince çizgiler, kart kenarı */
  --whatsapp: #25d366;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 66, 74, 0.10);
  --grad: linear-gradient(120deg, var(--teal) 0%, var(--green) 100%); /* logodaki akış */
  --container: 1120px;

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Sıfırlama ve temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

/* [hidden] her zaman gizlensin (display:flex gibi kuralları ezsin) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Tipografi ---------- */
h1, h2, h3 { margin: 0 0 0.6em; color: var(--teal-dark); }

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  text-align: center;
}

h3 { font-size: 1.08rem; font-weight: 700; }

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.section-lead {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--ink-muted);
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn .icon { width: 1.15em; height: 1.15em; }

.btn-gold { background: var(--grad); color: var(--white); }
.btn-gold:hover { filter: brightness(1.06); }

.btn-outline { border-color: var(--teal); color: var(--teal-dark); background: transparent; }
.btn-outline:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* Klavye odağı görünür kalsın */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }

.brand-mark {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px var(--mint);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-brand);
  letter-spacing: -0.01em;
}
/* Logo iki rengi: "Re" turkuaz, "Hair" gri, "Istanbul" küçük gri */
.brand-name .re { color: var(--teal-bright); }
.brand-name .city {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gray-brand);
  margin-top: -2px;
}

.main-nav { margin-left: auto; display: flex; gap: 1.4rem; }

.main-nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.main-nav a:hover { color: var(--teal-dark); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(160deg, var(--white) 0%, var(--mint) 70%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero-sub {
  max-width: 540px;
  font-size: 1.08rem;
  color: var(--ink-muted);
  margin: 0 0 1.8rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-note { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-muted); }

/* Trustpilot-badge in hero */
.hero-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding: 0.6rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
}
.hero-tp-text { font-size: 0.95rem; color: var(--ink); }
.hero-tp-text strong { color: var(--teal-dark); }

/* İmza kart: NL → TR yolculuk grafiği */
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.journey-caption {
  margin: 0 0 0.4rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.journey-arc { width: 100%; height: 90px; display: block; }
.journey-ends {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: -0.2rem;
}
.journey-end { display: flex; flex-direction: column; max-width: 48%; }
.journey-end-right { text-align: right; align-items: flex-end; }
.journey-label { font-weight: 700; font-size: 0.95rem; color: var(--teal-dark); }
.journey-sub { font-size: 0.78rem; color: var(--ink-muted); }

.hero-points {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- Bölümler ---------- */
.section { padding: 4.5rem 0; }
.section-cream { background: var(--mint); }

.section-navy { background: var(--teal-dark); }
.section-navy .section-title,
.section-navy h3 { color: var(--white); }
.section-navy .section-lead { color: #b9c3d6; }

/* ---------- Kart ızgaraları ---------- */
.card-grid { display: grid; gap: 1.2rem; }
.trust-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.card p { margin: 0; color: var(--ink-muted); font-size: 0.95rem; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--line);
  color: var(--teal-dark);
}
.card-icon svg { width: 26px; height: 26px; }

/* Hizmet kartlarında yeşil üst çizgi (yenilenme vurgusu) */
.card-service { border-top: 3px solid var(--green); }

/* ---------- Vergelijking (featured kolom) ---------- */
.vs {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 14px; /* ruimte voor de uitstekende ReHair-kop */
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1.35fr;
  align-items: stretch;
}

.vs-row > div {
  padding: 1.05rem 1.25rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

/* koppen */
.vs-row-head > div { padding-top: 0.9rem; padding-bottom: 0.9rem; font-weight: 700; }
.vs-other-h { color: var(--ink-muted); }
.vs-rehair-h {
  align-items: center;
  color: var(--white);
  background: var(--grad);
  border-radius: 14px 14px 0 0;
  font-size: 1.05rem;
  /* steekt iets boven de rij uit */
  margin-top: -14px;
  box-shadow: 0 -6px 18px rgba(20,66,74,0.12);
}
.vs-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.35);
}

/* criterium-kolom */
.vs-crit {
  font-weight: 700;
  color: var(--teal-dark);
  align-items: center;
}

/* andere klinieken */
.vs-other { color: var(--ink-muted); border-bottom: 1px solid var(--line); }

/* ReHair-kolom: doorlopend getint paneel met rand */
.vs-rehair {
  background: var(--mint);
  border-left: 2px solid var(--teal-bright);
  border-right: 2px solid var(--teal-bright);
  color: var(--ink);
}
.vs-rehair-h {
  border-left: 2px solid var(--teal-bright);
  border-right: 2px solid var(--teal-bright);
  border-top: 2px solid var(--teal-bright);
}
.vs-row:last-child .vs-rehair {
  border-bottom: 2px solid var(--teal-bright);
  border-radius: 0 0 14px 14px;
}
.vs-row:not(:last-child) .vs-crit { border-bottom: 1px solid var(--line); }

/* check / kruis badges */
.vs-check, .vs-x {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  margin-top: 1px;
  background-repeat: no-repeat;
  background-position: center;
}
.vs-check {
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 15px;
}
.vs-x {
  background-color: #eef0f2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%239aa6ad' stroke-width='3' stroke-linecap='round' d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E");
  background-size: 14px;
}

.vs-lbl { display: none; }

/* ---------- Prijskaarten ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}
.price-card-featured {
  border: 2px solid var(--green);
  background: var(--mint);
}

.price-badge {
  position: absolute;
  top: -0.8rem; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.price-name {
  text-align: center;
  font-size: 1.15rem;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-amount {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0;
}
.price-label {
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin: 0.2rem 0 1.4rem;
}

.price-list { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.price-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.9rem;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ---------- Niet inbegrepen ---------- */
.excluded {
  max-width: 760px;
  margin: 2.6rem auto 0;
  text-align: left;
  background: #fbf6f4;
  border: 1px solid #f0ddd6;
  border-radius: var(--radius);
  padding: 1.8rem;
}
.excluded h3 { margin-bottom: 0.6rem; }
.excluded p { margin: 0 0 0.8rem; color: var(--ink-muted); font-size: 0.95rem; }
.excluded-list { margin: 0 0 0.8rem; padding-left: 0; list-style: none; }
.excluded-list li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.8rem;
  font-size: 0.95rem;
}
.excluded-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid #e0726b;
  background-repeat: no-repeat; background-position: center; background-size: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23d9544c' stroke-width='3' stroke-linecap='round' d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E");
}
.excluded-note { margin: 0; font-weight: 600; color: var(--teal-dark); }

/* ---------- Resultaten: galerij ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.result { margin: 0; }

.result-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.result-btn:hover { transform: translateY(-3px); }
.result-btn img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.result-label {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* ---------- Lightbox (vergroting) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(13, 31, 40, 0.88);
}
.lightbox-fig {
  margin: 0;
  max-width: 760px;
  width: 100%;
}
.lightbox-fig img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-fig figcaption {
  margin-top: 0.8rem;
  text-align: center;
  color: #dfe7ea;
  font-size: 0.9rem;
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* ---------- Video-ervaringen ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.video { margin: 0; }

.video-facade,
.video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-facade {
  position: relative;
  padding: 0;
  cursor: pointer;
  /* fallback-achtergrond als de thumbnail ontbreekt */
  background: var(--grad);
  box-shadow: var(--shadow);
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-play svg { width: 26px; height: 26px; margin-left: 3px; }

.video-title {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-dark);
}

/* ---------- Trustpilot-badge ---------- */
.tp-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  max-width: 560px;
  margin: 0 auto 2.4rem;
  padding: 1rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--teal-dark);
}
.tp-label { font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; }
.tp-stars { display: inline-flex; gap: 4px; }
.tp-sq {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #00b67a; color: #fff;
  border-radius: 4px; font-size: 16px; line-height: 1;
}
.tp-score { font-weight: 800; font-size: 1.05rem; }
.tp-name { font-weight: 700; color: var(--ink); }
.tp-name .tp-star { color: #00b67a; }

/* ---------- Beoordelingen: doorlopende slider ---------- */
.reviews-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-viewport::-webkit-scrollbar { display: none; }

.reviews-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  padding: 0.4rem;
  animation: reviewScroll 55s linear infinite;
}
.reviews-viewport:hover .reviews-track,
.reviews-viewport:focus-within .reviews-track { animation-play-state: paused; }

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  width: 330px;
  min-width: 330px;
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  text-decoration: none;
  color: var(--ink);
}
.review-stars { color: #00b67a; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-name { margin: 0 0 0.6rem; font-weight: 700; color: var(--teal-dark); }
.review-text { margin: 0; font-size: 0.95rem; line-height: 1.7; color: var(--ink-muted); }

/* Geen animatie als de bezoeker dat verkiest */
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

/* ---------- VIP-pakket (uitgelicht) ---------- */
.pakket-section {
  background: var(--grad);
  position: relative;
}
.pakket-section .section-title { color: var(--white); }
.pakket-section .section-lead { color: rgba(255,255,255,0.92); }

.vip-eyebrow {
  display: inline-block;
  margin: 0 auto 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.pakket-section .container { text-align: center; }
.pakket-section .card-grid { text-align: left; }

/* VIP-kaarten */
.vip-card {
  position: relative;
}

.pakket-cta { margin-top: 2rem; text-align: center; }
.btn-white { background: var(--white); color: var(--teal-dark); }
.btn-white:hover { background: var(--mint); color: var(--teal-dark); }

/* ---------- Pakketlijst ---------- */
.package-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.6rem;
}

.package-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.96rem;
  color: var(--ink);
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad);
  /* witte check */
  background-image:
    linear-gradient(transparent, transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E");
  background-size: cover;
}

.package-note {
  max-width: 720px;
  margin: 1.6rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ---------- Süreç (zaman çizelgesi) ---------- */
.process {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  position: relative;
}

/* dikey altın hat — hero'daki yolculuk çizgisinin devamı */
.process::before {
  content: "";
  position: absolute;
  left: 21px; top: 8px; bottom: 8px;
  border-left: 2px dashed var(--teal);
  opacity: 0.55;
}

.process li {
  position: relative;
  display: flex;
  gap: 1.3rem;
  padding: 0 0 2rem;
}
.process li:last-child { padding-bottom: 0; }

.step-no {
  position: relative;
  z-index: 1;
  flex: 0 0 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}

.process h3 { margin-bottom: 0.25em; }
.process p { margin: 0; color: #b9c3d6; font-size: 0.95rem; }

/* ---------- Lead formu ---------- */
.form-wrap { max-width: 720px; }

.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { margin-bottom: 1.1rem; }

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #d9d2c2;
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--teal); }

/* JS doğrulamasında hatalı alan işareti */
.form-field .invalid { border-color: #c0392b; }

.form-error {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c0392b;
}

.form-privacy {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
}

/* Başarı mesajı */
.form-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.8rem;
}

.form-success p { margin: 0; font-weight: 600; color: var(--teal-dark); }
.form-success .success-title { font-size: 1.15rem; margin-bottom: 0.15rem; }

.success-icon { color: var(--green-dark); flex: 0 0 auto; }
.success-icon svg { width: 38px; height: 38px; }

/* ---------- SSS ---------- */
.faq-wrap { max-width: 760px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  background: var(--white);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  background: none;
  border: 0;
  font: 600 1rem var(--font-body);
  color: var(--teal-dark);
  text-align: left;
  cursor: pointer;
}

/* + / − göstergesi */
.faq-toggle {
  position: relative;
  flex: 0 0 18px;
  height: 18px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--green-dark);
}
.faq-toggle::before { width: 14px; height: 2px; }
.faq-toggle::after { width: 2px; height: 14px; transition: transform 0.15s ease; }

.faq-item.open .faq-toggle::after { transform: scaleY(0); }

.faq-a { display: none; padding: 0 1.25rem 1.1rem; }
.faq-a p { margin: 0; color: var(--ink-muted); font-size: 0.95rem; }
.faq-item.open .faq-a { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-dark);
  color: #b9c3d6;
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand { color: var(--white); margin: 0 0 0.4rem; }
.footer-tagline { margin: 0; font-size: 0.92rem; }

/* sociale media */
.socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--teal-dark); }
.socials svg { width: 20px; height: 20px; }

.site-footer h3 {
  color: var(--teal);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-list { list-style: none; margin: 0; padding: 0; font-size: 0.92rem; }
.footer-list li { margin-bottom: 0.4rem; }
.footer-list a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.footer-privacy { margin: 0; font-size: 0.84rem; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  font-size: 0.82rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Sabit WhatsApp butonu ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg { width: 24px; height: 24px; }
.whatsapp-float:hover { background: #1ebe5b; }

/* ---------- Hareket azaltma tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; padding-top: 3rem; padding-bottom: 3rem; }
  .trust-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; } /* mobilde menü sade tutulur; CTA görünür kalır */
}

@media (max-width: 600px) {
  .section { padding: 3.2rem 0; }
  .trust-grid, .services-grid { grid-template-columns: 1fr; }
  .ba-grid, .video-grid { grid-template-columns: 1fr; }
  .review-card { width: 280px; min-width: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .package-list { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price-name { min-height: 0; }

  /* Vergelijking stapelt per criterium als kaart */
  .vs { padding-top: 0; }
  .vs-row-head { display: none; }
  .vs-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
  }
  .vs-row > div { padding: 0.85rem 1.1rem; border: 0; }
  .vs-crit {
    background: var(--teal-dark);
    color: var(--white);
    font-size: 1rem;
  }
  .vs-other { border-bottom: 1px solid var(--line); }
  /* op mobiel geen zijranden, alleen de getinte achtergrond */
  .vs-rehair { border: 0; }
  .vs-row:last-child .vs-rehair { border-radius: 0; }
  .vs-lbl {
    display: block;
    width: 100%;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    margin-bottom: 0.15rem;
  }
  .vs-other, .vs-rehair { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .lead-form { padding: 1.4rem; }
  .hero-cta .btn { width: 100%; }

  /* Mobilde WhatsApp butonu sadece ikon — formu kapatmaz */
  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 0.9rem; }
}
