/* ============================================================
   Seferihisar Doğalgaz Rehberi — Ana Stil Dosyası
   Poppins · Mobile-first · Deep Green / Cream / Orange accent
   ============================================================ */

/* --- TOKENS ------------------------------------------------ */
:root {
  --orange:       #fe8402;
  --orange-dark:  #d96e00;
  --orange-light: #fff3e0;
  --blue:         #0165b4;
  --blue-dark:    #014a86;
  --blue-light:   #e8f2fc;

  /* deep green replaces the old navy across header/hero/footer */
  --navy:         #14302a;
  --navy-mid:     #1f463c;
  --navy-soft:    #2a5a4c;
  --green:        #2f6b53;
  --green-light:  #e3ece6;

  --cream:        #f6f1e6;
  --cream-card:   #ece3cf;
  --white:        #ffffff;
  --gray-100:     #f1ede6;
  --gray-200:     #e8e1d2;
  --gray-500:     #8a8578;
  --gray-700:     #4b5563;
  --text:         #16241f;
  --text-muted:   #5c6760;

  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  28px;
  --radius-xl:  36px;
  --shadow:     0 2px 16px rgba(20,48,42,.07);
  --shadow-md:  0 10px 36px rgba(20,48,42,.12);
  --shadow-lg:  0 24px 64px rgba(20,48,42,.20);

  --font: 'Poppins', sans-serif;
  --max-w: 1180px;
  --section-py: 72px;
  --ease: cubic-bezier(.16,1,.3,1);
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* --- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4.2vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--text-muted); font-size: 1.02rem; }
strong { color: var(--text); font-weight: 600; }
em.accent {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}
.label--blue { color: var(--blue); }
.label--light { color: rgba(255,255,255,.6); }

.icon-flat {
  width: 26px; height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- LAYOUT ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
section { padding-block: var(--section-py); }

/* --- TOP BAR ------------------------------------------------ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 16px;
  letter-spacing: .01em;
}
.top-bar strong { color: #ffb35c; font-weight: 600; }

/* --- HEADER / NAV ------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,241,230,.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-flame {
  width: 26px;
  height: 26px;
  color: var(--orange);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.logo-text .logo-thin {
  font-weight: 700;
  font-size: 0.86em;
  color: var(--orange-dark);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text .logo-thin { color: var(--orange); }

.nav-links {
  display: none;
  gap: 4px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .18s;
  color: var(--navy-mid);
}
.nav-links a:hover { background: var(--green-light); color: var(--navy); }
.nav-links a.active { background: var(--navy); color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta .btn { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--navy-mid);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .icon-flat { width: 22px; height: 22px; color: var(--orange); }

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 100px;
  transition: all .25s var(--ease);
  white-space: nowrap;
  min-height: 54px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(254,132,2,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(254,132,2,.42); background: var(--orange-dark); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--green-light); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

.btn svg { flex-shrink: 0; }

/* --- HERO -------------------------------------------------- */
.hero {
  background: var(--cream);
  padding-block: 56px 0;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; }
.hero-grid { display: grid; gap: 36px; align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 { color: var(--navy); margin-bottom: 22px; max-width: 680px; }
.hero-sub {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}
.hero-actions .btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.hero-actions .btn-ghost:hover { background: var(--green-light); }

/* Hero bento visual */
.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 1/1;
}
.bento-tile {
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.bento-tile--navy { background: var(--navy); color: var(--white); }
.bento-tile--cream { background: var(--cream-card); color: var(--navy); }
.bento-tile--white { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }
.bento-tile--photo {
  background: repeating-linear-gradient(135deg, var(--green-light), var(--green-light) 10px, var(--cream-card) 10px, var(--cream-card) 20px);
  border: 1.5px dashed var(--green);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
.bento-tile .icon-flat { width: 30px; height: 30px; }
.bento-stat-num { font-size: 1.9rem; font-weight: 800; line-height: 1; }
.bento-stat-label { font-size: 0.78rem; font-weight: 600; opacity: .75; }
.bento-tile--photo .ph-icon { font-size: 1.8rem; }
.bento-tile--photo .ph-title { font-size: 0.74rem; font-weight: 700; color: var(--navy-mid); }
.bento-tile--photo .ph-sub { font-size: 0.66rem; color: var(--gray-500); padding-inline: 8px; line-height: 1.4; }
.bento-tile.has-image {
  border: none;
  background: none;
  padding: 0;
}
.bento-tile.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.banner-photo {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}
.hero-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.hero-stat-value {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-stat-value .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 7px;
  animation: pulse 2s infinite;
}

/* --- PROJE DURUMU bento ------------------------------------- */
.proje-durumu { background: var(--cream); padding-block: var(--section-py); }
.durumu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.durumu-header h2 { color: var(--navy); }
.guncelleme {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}
.pipeline-bento {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.pstep {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  position: relative;
}
.pstep .step-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.pstep.done { background: var(--navy); color: var(--white); }
.pstep.done .step-node { background: rgba(255,255,255,.15); color: var(--white); }
.pstep.active { background: var(--orange); color: var(--white); }
.pstep.active .step-node { background: rgba(255,255,255,.22); color: var(--white); }
.pstep.pending { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }
.pstep.pending .step-node { background: var(--green-light); color: var(--navy); }
.pstep .step-title { font-size: 1.08rem; font-weight: 700; }
.pstep .step-desc { font-size: 0.88rem; opacity: .85; line-height: 1.5; }
.pstep.pending .step-desc { color: var(--text-muted); }
.step-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.18);
}
.pstep.pending .step-badge { background: var(--gray-100); color: var(--gray-500); }

/* --- SORU KARTLARI ----------------------------------------- */
.sorular { background: var(--white); }
.sorular-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 44px;
}
.soru-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.soru-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}
.soru-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.soru-card:hover::before { opacity: 1; }
.soru-card > * { position: relative; z-index: 1; }
.soru-card:hover h3, .soru-card:hover p { color: var(--white); }
.soru-card:hover p { opacity: .8; }
.soru-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--orange-light);
  color: var(--orange-dark);
  transition: transform .3s var(--ease);
}
.soru-card:hover .soru-icon { transform: scale(1.08) rotate(-4deg); }
.soru-icon--blue { background: var(--blue-light); color: var(--blue); }
.soru-card h3 { margin-bottom: 8px; font-size: 1.12rem; color: var(--navy); transition: color .3s; }
.soru-card p { font-size: 0.92rem; line-height: 1.55; transition: color .3s; }
.soru-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: all .2s;
}
.soru-card:hover .soru-arrow { transform: translateX(4px); color: var(--orange); }

/* --- LEAD FORM --------------------------------------------- */
.lead-section {
  background: var(--navy);
  color: var(--white);
}
.lead-inner {
  display: grid;
  gap: 44px;
}
.lead-text h2 { color: var(--white); margin-bottom: 16px; }
.lead-text p  { color: rgba(255,255,255,.7); font-size: 1.08rem; }
.lead-options { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.lead-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
}
.lead-option-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffb35c;
}

.lead-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
}
.lead-form-box h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--text);
}
.lead-form-box .sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin-bottom: 7px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s;
  min-height: 52px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254,132,2,.12);
}
.form-row { display: grid; gap: 12px; }
.form-submit { margin-top: 22px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 0.76rem;
  color: var(--gray-500);
  margin-top: 14px;
  text-align: center;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
}
.form-check input[type="checkbox"] {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}
.form-check label {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check a { color: var(--orange-dark); font-weight: 600; }

/* --- HABERLER (son gelişmeler) ------------------------------ */
.haberler { background: var(--cream); }
.haber-list { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.haber-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: all .25s var(--ease);
}
.haber-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.haber-tarih {
  flex-shrink: 0;
  text-align: center;
  width: 60px;
}
.haber-tarih .gun {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.haber-tarih .ay {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.haber-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.haber-content p { font-size: 0.92rem; }
.haber-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  background: var(--orange-light);
  color: var(--orange-dark);
}

/* --- MARBLE / TEXTURE STAT BANNER ---------------------------- */
.stat-banner {
  background:
    radial-gradient(ellipse 70% 100% at 20% 0%, rgba(255,255,255,.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 100%, rgba(255,255,255,.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0c211c 50%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stat-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 60px);
  pointer-events: none;
}
.stat-banner .container { position: relative; display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }
.stat-banner-nums { display: flex; flex-wrap: wrap; gap: 48px; }
.stat-num { font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 800; }
.stat-num-label { font-size: 0.82rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.stat-banner-title { max-width: 320px; text-align: right; }
.stat-banner-title h2 { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2.1rem); }

/* --- FAQ ACCORDION -------------------------------------------- */
.faq { background: var(--white); }
.faq-grid {
  display: grid;
  gap: 48px;
  margin-top: 40px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.faq-q .faq-plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .25s var(--ease);
}
.faq-q .faq-plus::before, .faq-q .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
}
.faq-q .faq-plus::before { width: 12px; height: 2px; }
.faq-q .faq-plus::after  { width: 2px; height: 12px; transition: opacity .2s; }
.faq-item.open .faq-q .faq-plus { background: var(--orange); }
.faq-item.open .faq-q .faq-plus::before, .faq-item.open .faq-q .faq-plus::after { background: var(--white); }
.faq-item.open .faq-q .faq-plus::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}
.faq-item.open .faq-a { max-height: 1400px; }
.faq-a p { padding: 0 36px 22px 4px; font-size: 0.95rem; line-height: 1.7; }

/* --- BIG CTA -------------------------------------------------- */
.big-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  margin-inline: 24px;
  max-width: calc(var(--max-w) - 48px);
  margin-block: var(--section-py);
  margin-inline: auto;
  padding: 56px 40px;
  display: grid;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 10%, rgba(254,132,2,.18) 0%, transparent 65%);
  pointer-events: none;
}
.big-cta-text { position: relative; }
.big-cta h2 { color: var(--white); margin-bottom: 14px; }
.big-cta p { color: rgba(255,255,255,.7); margin-bottom: 28px; max-width: 420px; }
.big-cta-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(255,255,255,.3);
  background: rgba(255,255,255,.04);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.big-cta-visual.has-image { border: none; background: none; padding: 0; }
.big-cta-visual.has-image img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.big-cta-visual .ph-icon { font-size: 2rem; }
.big-cta-visual .ph-title { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,.75); }
.big-cta-visual .ph-sub { font-size: 0.74rem; color: rgba(255,255,255,.45); max-width: 240px; }

/* --- IMAGE PLACEHOLDER -------------------------------------- */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(135deg, var(--green-light), var(--green-light) 10px, var(--cream-card) 10px, var(--cream-card) 20px);
  border: 1.5px dashed var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 36px 20px;
  color: var(--gray-500);
}
.img-placeholder .ph-icon { font-size: 2.2rem; }
.img-placeholder .ph-title { font-size: 0.92rem; font-weight: 700; color: var(--navy-mid); }
.img-placeholder .ph-sub { font-size: 0.78rem; color: var(--gray-500); max-width: 280px; line-height: 1.5; }

.content-photo {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* --- INNER PAGE HERO --------------------------------------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding-block: 56px;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 2.6rem); }
.page-hero .label { color: #ffb35c; margin-bottom: 12px; }

/* --- CONTENT (inner pages) --------------------------------- */
.content-section { background: var(--white); }
.content-body {
  max-width: 760px;
}
.content-body h2 { margin-block: 40px 18px; color: var(--navy); font-size: 1.5rem; }
.content-body h3 { margin-block: 26px 12px; color: var(--navy); font-size: 1.12rem; }
.content-body p  { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.85; }
.content-body ul, .content-body ol { margin-block: 18px; padding-left: 22px; }
.content-body li { margin-bottom: 9px; font-size: 1rem; color: var(--text-muted); }
.content-body li::marker { color: var(--orange); }

.info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin-block: 26px;
}
.info-box p { color: var(--blue-dark); font-size: 0.94rem; margin: 0; }
.info-box strong { color: var(--blue-dark); }

.warn-box {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin-block: 26px;
}
.warn-box p { color: #7a3f00; font-size: 0.94rem; margin: 0; }

.step-list { margin-block: 26px; }
.step-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-item-content h4 { font-size: 1rem; margin-bottom: 5px; color: var(--navy); }
.step-item-content p  { font-size: 0.92rem; margin: 0; }

/* Related questions */
.ilgili-sorular { background: var(--cream); }
.ilgili-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.ilgili-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  box-shadow: var(--shadow);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--navy-mid);
  transition: all .2s;
}
.ilgili-card:hover { box-shadow: var(--shadow-md); color: var(--orange); transform: translateY(-2px); }
.ilgili-card-left { display: flex; align-items: center; gap: 12px; }
.ilgili-card .icon-flat { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

/* --- FOOTER ------------------------------------------------ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding-block: 64px 28px;
}
.footer-wordmark {
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 40px;
}
.footer-wordmark span { color: rgba(255,255,255,.5); font-weight: 500; }
.footer-inner {
  display: grid;
  gap: 36px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.45);
  max-width: 300px;
  line-height: 1.6;
}
.footer-links-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-links-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,.55);
  padding-block: 6px;
  transition: color .2s;
}
.footer-links-col a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.social-btn:hover { background: var(--orange); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }
.disclaimer {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
  margin-top: 26px;
  line-height: 1.6;
}

/* --- UTILITIES ---------------------------------------------- */
.section-header { margin-bottom: 8px; }
.section-header h2 { margin-top: 10px; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin-block: 32px; }

/* --- RESPONSIVE -------------------------------------------- */
@media (min-width: 560px) {
  .sorular-grid { grid-template-columns: 1fr 1fr; }
  .form-row     { grid-template-columns: 1fr 1fr; }
  .ilgili-grid  { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  :root { --section-py: 96px; }
  .nav-links  { display: flex; }
  .nav-cta .btn { display: inline-flex; padding: 12px 22px; min-height: 44px; font-size: 0.9rem; }
  .hamburger  { display: none; }
  .mobile-menu { display: none !important; }
  .sorular-grid { grid-template-columns: 1fr 1fr 1fr; }
  .lead-inner   { grid-template-columns: 1fr 1fr; align-items: center; }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr; }
  .pipeline-bento { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: 0.9fr 1.4fr; }
  .big-cta { grid-template-columns: 1.1fr 0.9fr; padding: 64px 56px; }
  .stat-banner-title { text-align: left; }
}

@media (min-width: 1024px) {
  .sorular-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* --- SUCCESS MODAL ------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20,48,42,.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  animation: modal-fade-in .25s ease forwards;
}
.modal-overlay.closing { animation: modal-fade-out .2s ease forwards; }
@keyframes modal-fade-in { to { opacity: 1; } }
@keyframes modal-fade-out { to { opacity: 0; } }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(8px) scale(.97);
  animation: modal-pop .3s var(--ease) forwards;
}
@keyframes modal-pop { to { transform: translateY(0) scale(1); } }
.modal-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.modal-icon svg { width: 30px; height: 30px; }
.modal-box h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.modal-box p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 26px; }
.modal-box .btn { width: 100%; justify-content: center; }

/* --- COOKIE CONSENT ------------------------------------------- */
.cookie-bar {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 900;
  width: 100%;
  max-width: 360px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  animation: modal-fade-in .3s ease forwards, cookie-rise .3s ease forwards;
}
@keyframes cookie-rise { to { transform: translateY(0); } }
.cookie-bar.closing { animation: modal-fade-out .2s ease forwards; }
.cookie-bar-icon { font-size: 1.6rem; margin-bottom: 10px; }
.cookie-bar p { font-size: 0.86rem; color: rgba(255,255,255,.75); line-height: 1.55; margin-bottom: 18px; }
.cookie-bar p a { color: #ffb35c; font-weight: 600; }
.cookie-bar-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-bar-actions .btn {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.85rem;
}
.cookie-bar-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.cookie-bar-actions .btn-outline:hover { background: rgba(255,255,255,.1); }

.pref-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.pref-row:last-of-type { border-bottom: none; }
.pref-row-text h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.pref-row-text p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.toggle-switch {
  position: relative;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}
.toggle-switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.toggle-switch .track {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 100px;
  transition: background .2s;
}
.toggle-switch .track::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  transition: transform .2s;
}
.toggle-switch input:checked ~ .track { background: var(--orange); }
.toggle-switch input:checked ~ .track::before { transform: translateX(18px); }
.toggle-switch input:disabled ~ .track { background: var(--green); opacity: .6; cursor: not-allowed; }

.cookie-modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

/* --- REDUCED MOTION ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
