/* Güney Cambalkon — kurumsal arayüz */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --text: #334155;
  --line: #e2e8f0;
  --brand: #0ea5e9;
  --brand-deep: #0284c7;
  --night: #0b1220;
  --night-2: #111827;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --ok: #059669;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 22px 50px rgba(15, 23, 42, 0.14);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 84px;
  --logo-h: 62px;
  --logo-pad: 0;
  --logo-bg: #eceae6;
  --logo-ink: #1a2744;
  --logo-bronze: #9a6b3f;
  --section-y: 4rem;
  --wrap-pad: 1.25rem;
  --hero-min: min(72vh, 640px);
  --text-base: 16px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
}

/* Mobil cihaz algısı (JS + media) — tüm ölçek buradan */
html.is-mobile {
  --header-h: 68px;
  --logo-h: 48px;
  --logo-pad: 0;
  --section-y: 2.5rem;
  --wrap-pad: 1rem;
  --hero-min: min(68vh, 520px);
  --text-base: 15px;
  --radius: 12px;
}
html.is-mobile.is-phone {
  --logo-h: 42px;
  --header-h: 62px;
  --text-base: 15px;
}
@media (max-width: 980px) {
  :root {
    --header-h: 68px;
    --logo-h: 48px;
    --section-y: 2.5rem;
    --wrap-pad: 1rem;
    --hero-min: min(68vh, 520px);
  }
}
@media (max-width: 480px) {
  :root {
    --logo-h: 42px;
    --header-h: 62px;
    --wrap-pad: 0.85rem;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: var(--text-base);
  padding-bottom: 0;
}
html.is-mobile body {
  padding-bottom: calc(72px + var(--safe-b));
}
@media (max-width: 980px) {
  body { padding-bottom: calc(72px + var(--safe-b)); }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { color: var(--brand); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 0.75rem; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; }

.wrap { width: min(1140px, calc(100% - (var(--wrap-pad) * 2))); margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 46px; padding: 0.7rem 1.25rem;
  border-radius: 12px; border: 0; cursor: pointer;
  font-weight: 700; font-size: 0.95rem; font-family: inherit;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #38bdf8, var(--brand-deep));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover { background: var(--brand-deep); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline {
  background: #fff;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: #94a3b8; }
.btn-wa { background: var(--wa); color: #fff !important; }

/* ——— Header ——— */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(26, 39, 68, 0.1);
  padding-top: var(--safe-t);
}
.site-header .wrap { position: relative; }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 0.85rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--logo-ink) !important; text-decoration: none !important;
  margin-right: auto;
  flex: 0 1 auto;
  min-width: 0;
}
.brand-logo {
  height: var(--logo-h);
  width: auto;
  max-width: min(110px, 28vw);
  object-fit: contain;
  object-position: center;
  background: var(--logo-bg);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
  image-rendering: auto;
  -webkit-user-drag: none;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.brand-copy .brand-word,
.brand-copy strong {
  display: block;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--logo-ink);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
.brand-copy small {
  display: block;
  font-size: clamp(0.62rem, 1.4vw, 0.78rem);
  font-weight: 700;
  color: #3d4f6f;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(260px, 42vw);
}
.brand-mark { display: none; }
.brand-footer {
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.brand-footer .brand-logo {
  height: clamp(64px, 16vw, 88px);
  max-width: 140px;
  background: var(--logo-bg);
  border-radius: 10px;
  mix-blend-mode: normal;
  filter: none;
  box-shadow: none;
}
.brand-footer .brand-copy .brand-word,
.brand-footer .brand-copy strong {
  color: #fff;
  font-size: 1.15rem;
}
.brand-footer .brand-copy small {
  color: rgba(226,232,240,0.72);
  white-space: normal;
  max-width: 220px;
}
.main-nav {
  display: flex; align-items: center; gap: 0.1rem;
}
.main-nav a {
  color: rgba(26, 39, 68, 0.72);
  font-size: 0.88rem; font-weight: 600;
  padding: 0.5rem 0.7rem; border-radius: 10px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.is-active {
  color: var(--logo-ink);
  background: rgba(26, 39, 68, 0.08);
}
.header-actions {
  display: flex; align-items: center; gap: 0.55rem; margin-left: 0.35rem;
}
.header-call {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--logo-ink) !important;
  text-decoration: none !important;
  padding: 0.45rem;
  border-radius: 999px;
  min-width: 42px; min-height: 42px;
}
.header-call:hover { color: var(--logo-bronze) !important; background: rgba(26, 39, 68, 0.08); }

.phone-call-icon,
.phone-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.phone-call-inline {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}
.phone-icon-anim {
  display: block;
  transform-origin: 70% 70%;
  animation: phone-ring 1.6s ease-in-out infinite;
}
@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  8% { transform: rotate(14deg); }
  16% { transform: rotate(-12deg); }
  24% { transform: rotate(10deg); }
  32% { transform: rotate(-8deg); }
  40% { transform: rotate(4deg); }
  48%, 100% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .phone-icon-anim { animation: none; }
}
.header-cta { min-height: 42px; padding: 0.55rem 1.05rem; font-size: 0.88rem; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px; border: 1px solid rgba(26, 39, 68, 0.16);
  background: rgba(255,255,255,0.45); cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--logo-ink); border-radius: 2px;
}

/* ——— Home hero ——— */
.home-hero {
  position: relative;
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  min-height: var(--hero-min);
  display: flex;
  align-items: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 7s ease-out;
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 14, 26, 0.88) 0%, rgba(8, 14, 26, 0.62) 48%, rgba(8, 14, 26, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 14, 26, 0.35) 0%, rgba(8, 14, 26, 0.55) 100%);
  pointer-events: none;
}
.home-hero .wrap { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.8rem; border-radius: 999px;
  background: rgba(14,165,233,0.16);
  border: 1px solid rgba(56,189,248,0.28);
  color: #7dd3fc; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 1.1rem;
  backdrop-filter: blur(6px);
}
.home-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.home-hero p {
  color: rgba(226,232,240,0.9);
  font-size: 1.1rem; max-width: 540px; margin-bottom: 1.75rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.hero-dots button.is-active {
  background: #38bdf8;
  width: 22px;
  border-radius: 999px;
}
.hero-dots button:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
}

/* ——— Sections ——— */
.section { padding: var(--section-y) 0; }
.section-soft { background: #fff; border-block: 1px solid var(--line); }
.section h2 { font-size: clamp(1.55rem, 3vw, 2rem); }
.section-lead { color: var(--muted); max-width: 560px; margin-bottom: 1.75rem; }

.page-hero {
  background: linear-gradient(180deg, #0b1220, #111827);
  color: #fff; padding: 2.75rem 0 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.page-hero p { color: rgba(226,232,240,0.75); margin: 0; max-width: 620px; }
.breadcrumb { font-size: 0.85rem; color: rgba(148,163,184,0.9); margin-bottom: 0.55rem; }
.breadcrumb a { color: rgba(148,163,184,0.9); }
.breadcrumb a:hover { color: #fff; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.5rem; align-items: start; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #cbd5e1; }
.card-body { padding: 1.2rem 1.25rem 1.35rem; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.9rem; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }
.feature-num {
  flex: 0 0 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #38bdf8, #0284c7);
  color: #fff; font-weight: 800; font-size: 0.85rem;
}

.cta-box {
  background: linear-gradient(135deg, #0b1220, #0f2744 55%, #0c4a6e);
  color: #fff; border-radius: 20px; padding: 2rem 2.1rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.cta-box h2, .cta-box p { color: #fff; margin: 0; }
.cta-box p { opacity: 0.8; margin-top: 0.4rem; }
.cta-box .btn { background: #fff; color: var(--ink) !important; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem;
}
.gallery-grid a {
  display: block; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: #cbd5e1;
  box-shadow: var(--shadow);
}
.gallery-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid a:hover img { transform: scale(1.05); }

/* Forms / calc */
.form-box {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%; min-height: 46px;
  border: 1px solid var(--line); border-radius: 12px;
  padding: 0.7rem 0.9rem; font: inherit; background: #f8fafc; color: var(--ink);
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.15); background: #fff;
}
.dims { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.choice {
  border: 1px solid var(--line); background: #f8fafc; border-radius: 12px;
  padding: 0.7rem 0.8rem; text-align: left; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; color: var(--text); min-height: 46px;
}
.choice.selected { border-color: var(--brand); background: #e0f2fe; color: #075985; }
.swatches { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 0 0 1px #cbd5e1; cursor: pointer;
}
.swatch.selected { box-shadow: 0 0 0 2px var(--brand); }
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.preview-stage {
  aspect-ratio: 4/3; border-radius: 14px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #64748b, #334155); border: 1px solid var(--line);
}
.preview-frame {
  position: absolute; inset: 10% 12% 14%;
  border: 8px solid #1e293b; background: linear-gradient(#7ba3c4, #e8e4dc);
  transition: border-color .25s;
}
.preview-glass {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; padding: 2px;
}
.preview-pane { border: 1px solid rgba(255,255,255,0.25); }
.price-big { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 0.35rem 0; letter-spacing: -0.02em; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin: 0.9rem 0 1.1rem; }
.mini-stat {
  background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; padding: 0.7rem 0.8rem;
}
.mini-stat > span { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.mini-stat > strong { font-size: 0.95rem; color: var(--ink); }
.mini-stat-fx .rate-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.15rem;
}
.fx-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1;
}
.fx-ico {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.fx-ico svg {
  width: 10px;
  height: 10px;
  display: block;
}
.fx-usd { background: #16a34a; }
.fx-eur { background: #2563eb; }

.compare-toolbar { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.compare-check { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; margin-right: 0.7rem; }
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { border-bottom: 1px solid var(--line); padding: 0.85rem 1rem; text-align: left; vertical-align: top; font-size: 0.92rem; }
.compare-table th { background: #f8fafc; }
.compare-table .feat-label { font-weight: 700; color: var(--muted); background: #fafafa; width: 180px; }
.score-bar { height: 6px; background: #e2e8f0; border-radius: 3px; margin-top: 0.3rem; overflow: hidden; }
.score-bar > i { display: block; height: 100%; background: var(--brand); }
.diff-on .diff-better { background: #ecfdf5; }
.diff-on .diff-worse { background: #fef2f2; }
.diff-on .diff-same { opacity: 0.5; }
.compare-hint { display: none; font-size: 0.85rem; color: var(--muted); }
.map-embed { width: 100%; min-height: 320px; border: 1px solid var(--line); border-radius: 14px; }
.alert { padding: 0.85rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-size: 0.92rem; }
.alert-ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Hakkımızda — özet + Google yorumları */
.about-highlight {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.35rem 1rem;
}
.about-highlight-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.about-highlight-row:last-child { border-bottom: 0; }
.about-highlight-row strong { color: var(--muted); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.about-highlight-row span { color: var(--ink); font-weight: 700; text-align: right; }

.g-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.g-reviews-brand { display: flex; align-items: center; gap: 0.85rem; }
.g-reviews-brand h2 { margin: 0 0 0.25rem; }
.g-score-card {
  display: flex; align-items: center; gap: 0.75rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0.75rem 1rem; box-shadow: var(--shadow);
}
.g-score-num {
  font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1;
  letter-spacing: -0.03em;
}
.g-score-meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }
.g-stars { display: inline-flex; gap: 1px; color: #fbbc04; letter-spacing: 0; }
.g-star { color: #dadce0; font-size: 1.05rem; line-height: 1; }
.g-star-on { color: #fbbc04; }
.g-stars-sm .g-star { font-size: 0.95rem; }
.g-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.g-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.g-review-top {
  display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.45rem;
}
.g-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
}
.g-avatar-img {
  object-fit: cover;
  display: block;
  padding: 0;
  border: 0;
  background: #e8eaed;
}
.g-review-who { flex: 1; min-width: 0; }
.g-review-who strong { display: block; color: var(--ink); font-size: 0.92rem; }
.g-review-who span { font-size: 0.75rem; color: var(--muted); }
.g-review-who em { font-style: normal; color: #5f6368; }
.g-mini { flex-shrink: 0; opacity: 0.9; }
.g-review p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: #3c4043;
  line-height: 1.55;
}
.g-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.g-photo {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8eaed;
  background: #f1f3f4;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.g-photo:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}
.g-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 980px) {
  .g-reviews-grid { grid-template-columns: 1fr 1fr; }
  .g-photo { width: 64px; height: 64px; }
}
@media (max-width: 640px) {
  .g-reviews-grid { grid-template-columns: 1fr; }
  .g-reviews-head { align-items: stretch; }
}

/* Çalışma süreci */
.process-section { overflow: hidden; }
.process-head { max-width: 560px; margin-bottom: 2rem; }
.process-eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.process-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  counter-reset: none;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #bae6fd, #0ea5e9, #bae6fd);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: #bae6fd;
}
.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e0f2fe, #f0f9ff);
  color: #0284c7;
  margin-bottom: 1rem;
  border: 1px solid #bae6fd;
}
.process-icon svg { width: 24px; height: 24px; }
.process-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0ea5e9;
  margin-bottom: 0.35rem;
}
.process-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}
.process-step > p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.process-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.process-points li {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0c4a6e;
  background: #e0f2fe;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}
.process-cta {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.15rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(120deg, #0b1220 0%, #1e293b 55%, #0c4a6e 100%);
  color: #fff;
}
.process-cta strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.process-cta span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.9rem;
}
.process-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.process-cta .btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.28);
}
.process-cta .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .process-track::before {
    top: 0;
    bottom: 0;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #bae6fd, #0ea5e9, #bae6fd);
  }
  .process-step { padding-left: 1.15rem; }
}

/* Footer */
.site-footer {
  background: var(--night);
  color: rgba(226,232,240,0.7);
  padding: 3.5rem 0 1.5rem;
  margin-top: 0.5rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.brand-footer { margin-bottom: 1rem; }
.footer-text { font-size: 0.95rem; max-width: 360px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; font-size: 0.92rem; }
.site-footer a { color: rgba(226,232,240,0.75); }
.site-footer a:hover { color: #fff; }
.footer-contact-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1.1rem; margin-top: 1rem; }
.footer-contact-row a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; color: #fff;
}
.wa-link { color: var(--wa) !important; }
.footer-bottom {
  margin-top: 2.25rem; padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-legal {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin-bottom: 0.85rem;
}
.footer-legal-links a {
  color: rgba(148, 163, 184, 0.55) !important;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: rgba(148, 163, 184, 0.95) !important;
}
.footer-legal-dot {
  color: rgba(148, 163, 184, 0.25);
  font-size: 0.65rem;
  user-select: none;
}
.footer-legal-copy {
  color: rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
}

/* Yasal sayfa */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}
.legal-side nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.legal-side a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.legal-side a:hover,
.legal-side a.is-active {
  background: #e0f2fe;
  color: #0369a1;
}
.legal-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
}
.legal-content h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.6rem;
  color: #0284c7;
}
.legal-content p,
.legal-content li {
  color: var(--text);
  line-height: 1.75;
  font-size: 0.95rem;
}
.legal-content ul,
.legal-content ol { padding-left: 1.2rem; }
.legal-box {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  font-size: 0.92rem;
  line-height: 1.7;
}
.legal-back { margin-top: 2rem; }
@media (max-width: 800px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-side nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 0.35rem; }
  .legal-side a { font-size: 0.8rem; padding: 0.45rem 0.65rem; }
}

/* Mobile dock */
.mobile-dock {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 0.5rem 0.75rem calc(0.5rem + var(--safe-b));
  grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.mobile-dock a {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 46px; border-radius: 12px; font-weight: 700;
  border: 1px solid var(--line); color: var(--ink); background: #fff;
}
.mobile-dock .dock-wa {
  background: var(--wa); color: #fff; border-color: var(--wa);
}

/* ——— WhatsApp widget (Bengu tarzı) ——— */
.wa-widget {
  position: fixed;
  right: max(1.1rem, var(--safe-r));
  bottom: calc(5rem + var(--safe-b));
  z-index: 110;
}
.wa-fab {
  width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--wa);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-fab:hover { transform: scale(1.05); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55); }
.wa-panel {
  position: absolute; right: 0; bottom: 74px;
  width: min(340px, calc(100vw - 1.5rem));
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  animation: waIn .22s ease;
}
.wa-panel[hidden] { display: none !important; }
@keyframes waIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-panel-head {
  background: #075e54; color: #fff;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1rem;
}
.wa-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--wa); display: grid; place-items: center; flex-shrink: 0;
}
.wa-panel-head strong { display: block; font-size: 0.95rem; }
.wa-panel-head span { display: block; font-size: 0.75rem; opacity: 0.85; }
.wa-close {
  margin-left: auto; border: 0; background: transparent; color: #fff;
  font-size: 1.4rem; cursor: pointer; line-height: 1; width: 32px; height: 32px;
}
.wa-panel-body { background: #ece5dd; padding: 1rem; min-height: 120px; }
.wa-bubble {
  background: #fff; border-radius: 10px 10px 10px 4px;
  padding: 0.75rem 0.9rem; font-size: 0.9rem; max-width: 92%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-panel-foot {
  display: flex; gap: 0.45rem; padding: 0.65rem 0.75rem; background: #fff;
  border-top: 1px solid var(--line);
}
.wa-panel-foot input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.65rem 0.95rem; font: inherit; background: #f8fafc;
}
.wa-panel-foot button {
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: var(--wa); color: #fff; cursor: pointer;
  display: grid; place-items: center;
}

@media (max-width: 980px) {
  .menu-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--logo-bg);
    border-bottom: 1px solid rgba(26, 39, 68, 0.12);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    flex-direction: column; align-items: stretch; padding: 0.6rem;
    max-height: min(70vh, 520px); overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 0.95rem 1rem; font-size: 1rem; color: var(--logo-ink); }
  .header-actions { display: none; }
  .grid-3, .grid-2, .footer-grid, .calc-layout, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .mobile-dock { display: grid; }
  .compare-hint { display: block; }
  .choice-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: var(--hero-min); }
  .wa-widget { bottom: calc(5.2rem + var(--safe-b)); }
  .section { padding: var(--section-y) 0; }
  .btn { min-height: 44px; }
  .price-big { font-size: clamp(1.55rem, 7vw, 2rem); }
  .page-hero { padding: 2rem 0 1.6rem; }
  .page-hero h1 { font-size: clamp(1.45rem, 6vw, 2rem); }
}

@media (max-width: 480px) {
  .dims { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .brand-logo { max-width: min(78px, 24vw); }
  .brand-copy small { max-width: min(150px, 40vw); font-size: 0.58rem; }
  .brand-copy strong { font-size: 0.92rem; }
}

/* JS mobil sınıfı — ekstra sıkı oran */
html.is-mobile .section { padding: var(--section-y) 0; }
html.is-mobile .home-hero h1 { font-size: clamp(1.55rem, 7.2vw, 2.35rem); }
html.is-mobile .home-hero p { font-size: 0.98rem; }
html.is-mobile .card { padding: 0.95rem; }
html.is-mobile .mini-stats { gap: 0.45rem; }
html.is-phone .brand-logo { max-width: min(72px, 22vw); }

/* ——— Katalog ——— */
.catalog-filters {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1rem;
  align-items: end; margin-bottom: 0.5rem;
  padding: 1rem; border-radius: 16px;
  background: rgba(26, 39, 68, 0.04); border: 1px solid rgba(26, 39, 68, 0.08);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
}
.catalog-card {
  background: #fff; border: 1px solid rgba(26, 39, 68, 0.1);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.catalog-card-media {
  display: block; aspect-ratio: 4/3; background: #eef1f6; overflow: hidden;
}
.catalog-card-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; background: #f7f8fa;
}
.catalog-card-body { padding: 0.95rem 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.catalog-card-body h3 { margin: 0.15rem 0; font-size: 1.02rem; line-height: 1.3; }
.catalog-card-body h3 a { color: inherit; text-decoration: none; }
.catalog-card-body h3 a:hover { color: var(--logo-bronze); }
.catalog-code {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.04em; color: #3b82f6; text-transform: uppercase;
}
.catalog-spec { font-size: 0.86rem; margin: 0.2rem 0 0.55rem; color: #334155; }
.catalog-card .btn { margin-top: auto; align-self: flex-start; }
.catalog-detail {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.5rem; align-items: start;
}
.catalog-detail-media {
  background: #fff; border: 1px solid rgba(26,39,68,.1); border-radius: 18px;
  padding: 1rem; min-height: 280px; display: grid; place-items: center;
}
.catalog-detail-media img { max-width: 100%; max-height: 420px; object-fit: contain; }
@media (max-width: 900px) {
  .catalog-detail { grid-template-columns: 1fr; }
}
