/* ==========================================================================
   SİNAN OTO — Özel Servis · Design System
   Premium "performance workshop" aesthetic
   Archivo (display) · Manrope (body) · JetBrains Mono (technical labels)
   ========================================================================== */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* surfaces */
  --ink:        #0c0d10;
  --ink-2:      #121419;
  --ink-3:      #181b21;
  --ink-4:      #1f232b;
  --line:       #272b33;
  --line-soft:  rgba(255, 255, 255, .08);

  --bone:       #f5f2ea;
  --bone-2:     #ece6da;
  --paper:      #ffffff;

  /* ink text */
  --fg:         #f4f1e8;   /* on dark */
  --fg-ink:     #15171c;   /* on light */
  --ash:        #9aa0aa;   /* muted on dark */
  --ash-2:      #5c616b;   /* muted on light */

  /* brand */
  --accent:     #e15c27;
  --accent-2:   #ef8a55;
  --accent-deep:#bd4718;
  --steel:      #26324f;   /* indigo from brand imagery */
  --gold:       #e7c38a;

  /* type */
  --display: "Archivo", "Arial Narrow", sans-serif;
  --body:    "Manrope", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* metrics */
  --container: 1240px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 30px 60px -25px rgba(0, 0, 0, .55);
  --shadow-soft: 0 22px 50px -30px rgba(12, 13, 16, .35);
  --ease:      cubic-bezier(.2, .7, .2, 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(--body);
  background: var(--ink);
  color: var(--fg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

::selection { background: var(--accent); color: #fff; }

/* multilingual safety — keep long DE/FR/RU words from overflowing */
body { overflow-wrap: break-word; }
h1, h2, h3, h4, h5, h6, p, .lead, a, li, .display { overflow-wrap: break-word; }
h1, h2, .display, .hero h1, .page-hero h1 { hyphens: auto; -webkit-hyphens: auto; }
.eyebrow { flex-wrap: wrap; }

/* ----------------------------------------------------------------- Type */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.02em;
  font-size: clamp(1.9rem, 6vw, 5rem);
}

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ash);
  line-height: 1.7;
  max-width: 60ch;
}
.section--light .lead { color: var(--ash-2); }

.text-accent { color: var(--accent); }

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

.section { padding: clamp(38px, 5.5vw, 88px) 0; position: relative; }
/* Light/cream theme — every content section renders on a light surface.
   The dark surface/line/text tokens are re-mapped to light values *locally*
   on each section, so all nested components inherit correct light-mode
   contrast with no per-component rules. The frame (topbar, header, hero,
   page-hero, footer) keeps the global dark tokens. */
.section--ink,
.section--dark,
.section--light,
.section--bone,
.section--bone2 {
  color: var(--fg-ink);
  --fg:        var(--fg-ink);
  --ash:       var(--ash-2);
  --ink-2:     var(--paper);
  --ink-3:     var(--paper);
  --ink-4:     var(--bone-2);
  --line:      rgba(0, 0, 0, .10);
  --line-soft: rgba(0, 0, 0, .05);
}
.section--ink   { background: var(--bone-2); }
.section--dark  { background: var(--bone); }
.section--light { background: var(--paper); }
.section--bone  { background: var(--bone-2); }
.section--bone2 { background: var(--bone-2); }

.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4, .section--ink h5, .section--ink h6,
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6,
.section--light h1, .section--light h2, .section--light h3, .section--light h4, .section--light h5, .section--light h6,
.section--bone h1, .section--bone h2, .section--bone h3, .section--bone h4, .section--bone h5, .section--bone h6,
.section--bone2 h1, .section--bone2 h2, .section--bone2 h3, .section--bone2 h4, .section--bone2 h5, .section--bone2 h6 { color: var(--fg-ink); }

/* soft elevation for cards on the light content sections */
.section--ink .card, .section--dark .card, .section--light .card, .section--bone2 .card,
.section--ink .quote-card, .section--dark .quote-card, .section--light .quote-card, .section--bone2 .quote-card { box-shadow: var(--shadow-soft); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(1.5rem, 3.8vw, 3.1rem);
  margin: 18px 0 0;
}
.section-head .lead { margin-top: 20px; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-split { grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(32px, 5vw, 72px); }

.divider { height: 1px; background: var(--line); border: 0; }

/* watermark monogram */
.watermark {
  position: absolute;
  font-family: var(--display);
  font-weight: 900;
  font-size: 34vw;
  line-height: 1;
  color: var(--line-soft);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -.05em;
}

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .35s;
  border: 1px solid transparent;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  line-height: 1.2;
}
.btn svg, .btn i { font-style: normal; }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(255, 106, 35, .6);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-3px); }
.btn--ghost {
  border-color: var(--line);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.section--light .btn--ghost { border-color: rgba(0,0,0,.16); color: var(--fg-ink); }
.section--light .btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 12px 26px; font-size: .78rem; }
.btn--block { width: 100%; }

/* arrow link */
.arrow-link {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
}
.arrow-link span { transition: transform .3s var(--ease); }
.arrow-link:hover span { transform: translateX(6px); }

/* ----------------------------------------------------------------- Topbar */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
  color: var(--ash);
  position: relative;
  z-index: 60;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 44px; }
.topbar a:hover { color: var(--fg); }
.topbar-list { display: flex; align-items: center; gap: 22px; }
.topbar-list li { display: inline-flex; align-items: center; gap: .5rem; }
.topbar-list i { color: var(--accent); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { display: inline-flex; }
.topbar-social a:hover { color: var(--accent); }

/* ----------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 13, 16, .72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s, border-color .3s;
}
.site-header.is-scrolled { background: rgba(12, 13, 16, .95); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.nav-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-size: .9rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--fg);
  position: relative;
  transition: color .25s, background .25s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a:hover::after,
.nav-menu a.is-active::after { transform: scaleX(1); }
.nav-menu a.is-active { color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
}
.nav-phone i { color: var(--accent); }
.nav-phone { white-space: nowrap; }
.nav-phone small { display: block; font-family: var(--body); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ash); white-space: normal; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 30px; justify-content: center; }
.nav-toggle span { height: 2px; width: 24px; background: var(--fg); transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: var(--ink-2);
  border-left: 1px solid var(--line);
  z-index: 70;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--accent); }
.mobile-menu .btn { margin-top: 24px; }
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 65;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: clamp(580px, 90vh, 880px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink);
}
.hero > .container { flex: 1 1 auto; display: flex; align-items: center; width: 100%; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hero-bg .slide.is-active { opacity: 1; transform: scale(1); }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,9,11,.94) 0%, rgba(8,9,11,.72) 42%, rgba(8,9,11,.28) 78%, rgba(8,9,11,.5) 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 30% 50%, #000 0%, transparent 70%);
  opacity: .5;
}
.hero-inner { position: relative; z-index: 2; padding: clamp(40px, 7vh, 84px) 0; max-width: 820px; }
.hero h1 {
  font-size: clamp(2rem, 6.4vw, 5.1rem);
  margin: 26px 0 24px;
  line-height: .98;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { color: #cfd2d8; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-soft);
  margin-top: 60px;
}
.hero-stats .container { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hero-stat { padding: 28px 8px 28px 0; }
.hero-stat .num { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--fg); }
.hero-stat .num span { color: inherit; }
.hero-stat .label { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); margin-top: 4px; }

/* slider dots */
.hero-dots { z-index: 3; display: flex; gap: 10px; margin-top: 38px; }
.hero-dots button { width: 32px; height: 3px; background: rgba(255,255,255,.28); border-radius: 2px; transition: background .3s; padding: 0; }
.hero-dots button.is-active { background: var(--accent); }

/* ----------------------------------------------------------------- Breadcrumb hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0 clamp(56px, 7vw, 90px);
  background: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center;
  opacity: .28;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,13,16,.7), var(--ink));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.85rem, 5.4vw, 4.2rem); margin-top: 18px; }
.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ash); margin-top: 26px;
}
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { color: var(--line); }
.crumbs .current { color: var(--accent); }

/* ----------------------------------------------------------------- Cards */
.card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,106,35,.5); }
.section--light .card, .section--bone2 .card {
  background: var(--paper);
  border-color: rgba(0,0,0,.08);
  box-shadow: var(--shadow-soft);
}

.service-card .idx {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .14em;
  color: var(--ash);
}
.section--light .service-card .idx { color: var(--ash-2); }
.service-card .ico {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 1.5rem;
  margin: 22px 0 22px;
  box-shadow: 0 12px 24px -10px rgba(255,106,35,.6);
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-card p { color: var(--ash); font-size: .98rem; }
.section--light .service-card p, .section--bone2 .service-card p { color: var(--ash-2); }
.service-card .corner-num {
  position: absolute;
  top: -18px; right: 14px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 6rem;
  color: var(--line-soft);
  line-height: 1;
  z-index: 0;
}
.section--light .service-card .corner-num { color: rgba(0,0,0,.04); }
.service-card > * { position: relative; z-index: 1; }

/* compact feature (icon + label) */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature .ico {
  flex: none;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 1.3rem;
  transition: background .3s, color .3s, border-color .3s;
}
.section--light .feature .ico { border-color: rgba(0,0,0,.1); }
.feature:hover .ico { background: var(--accent); color: #fff; border-color: var(--accent); }
.feature h4 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { color: var(--ash); font-size: .95rem; }
.section--light .feature p, .section--bone2 .feature p { color: var(--ash-2); }

/* service tiles — photo cards with a bottom gradient + icon/label overlay */
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  min-height: 164px;
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-3);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.tile::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--tile-img, none);
  background-size: cover; background-position: center;
  transition: transform .7s var(--ease);
}
.tile::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(175deg, rgba(8,9,11,.22) 0%, rgba(8,9,11,.5) 45%, rgba(8,9,11,.9) 100%);
}
.tile:hover { transform: translateY(-6px); box-shadow: 0 26px 52px -24px rgba(0,0,0,.55); }
.tile:hover::before { transform: scale(1.07); }
.tile .ico {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 1.25rem; color: #fff;
  margin-bottom: 14px; line-height: 1;
}
.tile h5 { font-size: 1.06rem; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.6); }

/* ----------------------------------------------------------------- Stats band */
.stat-band { background: var(--steel); color: #fff; position: relative; overflow: hidden; }
.stat-band .container { position: relative; z-index: 1; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; text-align: center; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; }
.stat .num span { color: var(--accent-2); }
.stat .label { font-family: var(--mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 10px; }

/* ----------------------------------------------------------------- Split media */
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame .tag {
  position: absolute;
  left: 22px; bottom: 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 8px;
}
.media-badge {
  position: absolute;
  right: 22px; top: 22px;
  background: rgba(12,13,16,.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  color: #f4f1e8;
}
.media-badge .big { font-family: var(--display); font-weight: 800; font-size: 1.8rem; color: var(--accent-2); }
.media-badge .small { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; }

.check-list { display: grid; gap: 14px; margin-top: 28px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ash); }
.section--light .check-list li, .section--bone2 .check-list li { color: var(--ash-2); }
.check-list li::before {
  content: "✓";
  flex: none;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,106,35,.14);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ----------------------------------------------------------------- Steps */
.steps { display: grid; gap: 26px; counter-reset: step; }
.steps.grid-3, .steps.grid-4 { gap: 26px; }
.step {
  position: relative;
  padding: 36px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-3);
}
.section--light .step { background: var(--paper); border-color: rgba(0,0,0,.08); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
}
.step h4 { font-size: 1.2rem; margin: 14px 0 10px; }
.step p { color: var(--ash); font-size: .96rem; }
.section--light .step p { color: var(--ash-2); }

/* ----------------------------------------------------------------- Brand strip */
.brand-strip { overflow: hidden; }
.brand-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.brand-strip:hover .brand-track { animation-play-state: paused; }
.brand-track img {
  height: 46px;
  width: auto;
  opacity: .62;
  filter: grayscale(1);
  transition: opacity .3s, filter .3s;
}
.brand-track img:hover { opacity: 1; filter: grayscale(0); }
.section--light .brand-track img { filter: grayscale(1) contrast(.9); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------- TÜV / trust ticker strip */
.trust-strip {
  background: var(--steel);
  color: #fff;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.trust-track { display: flex; align-items: center; width: max-content; animation: marquee 40s linear infinite; }
.trust-strip:hover .trust-track { animation-play-state: paused; }
.trust-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 30px;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap; color: rgba(255,255,255,.88);
}
.trust-item i { color: var(--accent-2); font-size: 1rem; }
.trust-item .tuv-tag { font-family: var(--display); font-weight: 800; letter-spacing: .02em; color: #7fb4e8; }
.trust-sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.28); flex: none; }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ----------------------------------------------------------------- Testimonials */
.quote-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  position: relative;
}
.section--light .quote-card { background: var(--paper); border-color: rgba(0,0,0,.08); box-shadow: var(--shadow-soft); }
.quote-card .mark { font-family: var(--display); font-size: 4rem; line-height: .6; color: var(--accent); opacity: .25; }
.quote-card p { font-size: 1.08rem; margin: 6px 0 22px; }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; border: 1px solid var(--line); }
.quote-author .av img { width: 100%; height: 100%; object-fit: cover; }
.quote-author .nm { font-family: var(--display); font-weight: 700; font-size: 1rem; }
.quote-author .role { font-size: .82rem; color: var(--ash); }
.section--light .quote-author .role { color: var(--ash-2); }
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; }

/* ----------------------------------------------------------------- CTA band */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, #1e2840 0%, #2f3d60 100%);
  overflow: hidden;
  color: #fff;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.8rem); max-width: 18ch; }
.cta-inner .btn--primary { background: var(--accent); box-shadow: none; }
.cta-inner .btn--primary:hover { background: var(--accent-deep); }
.cta-watermark { position: absolute; right: -2%; top: 50%; transform: translateY(-50%); font-family: var(--display); font-weight: 900; font-size: 18rem; color: rgba(255,255,255,.1); line-height: 1; pointer-events: none; }

/* emergency call band */
.emergency {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--accent);
}
.emergency .pulse {
  width: 64px; height: 64px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff; font-size: 1.6rem;
  position: relative;
}
.emergency .pulse::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { from { transform: scale(1); opacity: .8; } to { transform: scale(1.8); opacity: 0; } }
.emergency .phone-big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg);
  letter-spacing: .01em;
}
.emergency .phone-big a:hover { color: var(--accent); }

/* ----------------------------------------------------------------- Forms */
.form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 9px; }
.field label {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
}
.section--light .field label { color: var(--ash-2); }
.field input, .field select, .field textarea {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  color: var(--fg);
  transition: border-color .25s, background .25s;
  width: 100%;
}
.section--light .field input, .section--light .field select, .section--light .field textarea {
  background: var(--paper);
  border-color: rgba(0,0,0,.14);
  color: var(--fg-ink);
}
.field input::placeholder, .field textarea::placeholder { color: #6a6f78; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,106,35,.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff6a23' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
/* time-slot chips (randevu) */
.time-slots { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.time-slots .slot {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 13px 8px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  font-family: var(--mono); font-size: .8rem; color: var(--fg);
  transition: border-color .2s, background .2s, color .2s; user-select: none; text-align: center;
}
.section--light .time-slots .slot, .section--bone2 .time-slots .slot { border-color: rgba(0,0,0,.14); color: var(--fg-ink); }
.time-slots .slot input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.time-slots .slot:hover { border-color: var(--accent); }
.time-slots .slot:has(input:checked) { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (max-width: 560px) { .time-slots { grid-template-columns: repeat(2, 1fr); } }

.form-note { font-size: .85rem; color: var(--ash); }
.form-status { font-size: .9rem; padding: 14px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.is-ok { display: block; background: rgba(46,160,90,.14); border: 1px solid rgba(46,160,90,.4); color: #7fdca0; }
.section--light .form-status.is-ok { color: #1d8a4d; }
.form-status.is-err { display: block; background: rgba(200,60,60,.12); border: 1px solid rgba(200,60,60,.42); color: #e0736f; }
.section--light .form-status.is-err { color: #c0332e; }

/* ----------------------------------------------------------------- Info cards (contact) */
.info-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-3);
}
.section--light .info-card { background: var(--paper); border-color: rgba(0,0,0,.08); }
.info-card .ico {
  flex: none; width: 50px; height: 50px;
  display: grid; place-items: center; border-radius: 12px;
  background: rgba(255,106,35,.12); color: var(--accent); font-size: 1.3rem;
}
.info-card .lbl { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); }
.section--light .info-card .lbl { color: var(--ash-2); }
.info-card .val { font-weight: 700; font-size: 1.05rem; margin-top: 4px; }
.info-card .val a:hover { color: var(--accent); }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* hours table */
.hours-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.section--light .hours-list li { border-color: rgba(0,0,0,.08); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--ash); }
.section--light .hours-list .day { color: var(--ash-2); }
.hours-list .time { font-family: var(--mono); font-size: .85rem; }
.hours-list .closed { color: var(--accent); }

/* ----------------------------------------------------------------- Accordion */
.accordion { display: grid; gap: 14px; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--ink-3); }
.section--light .acc-item { background: var(--paper); border-color: rgba(0,0,0,.08); }
.acc-head {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 24px;
  font-family: var(--display); font-weight: 700; font-size: 1.08rem;
}
.acc-head .pm { color: var(--accent); font-size: 1.4rem; transition: transform .3s; flex: none; }
.acc-item.is-open .acc-head .pm { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-body p { padding: 0 24px 24px; color: var(--ash); }
.section--light .acc-body p { color: var(--ash-2); }

/* ----------------------------------------------------------------- Footer */
.site-footer { background: var(--ink); color: var(--ash); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.footer-top { padding: clamp(60px, 8vw, 96px) 0 60px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.footer-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); }
.footer-col h5 { font-family: var(--mono); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fg); margin-bottom: 22px; font-weight: 500; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a:hover { color: var(--accent); }
.footer-col li { font-size: .95rem; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .95rem; }
.footer-contact i { color: #fff; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; position: relative; z-index: 1; }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; font-size: .85rem; }
.footer-bottom a:hover { color: var(--fg); }
.footer-watermark {
  position: absolute; left: 0; right: 0; bottom: -7vw; text-align: center;
  font-family: var(--display); font-weight: 900; font-size: 22vw; line-height: 1;
  color: rgba(255,255,255,.025); pointer-events: none; z-index: 0; letter-spacing: -.04em;
}

/* ----------------------------------------------------------------- Floating call */
.float-call {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -12px rgba(255,106,35,.7);
  font-family: var(--mono); font-weight: 600; font-size: .82rem; letter-spacing: .06em;
  transition: transform .3s, background .3s;
}
.float-call:hover { transform: translateY(-3px); background: var(--accent-deep); }
.float-call .ring {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: grid; place-items: center; font-size: 1.1rem;
}
.float-call small { display: block; font-family: var(--body); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }

/* floating WhatsApp button (above the call button) */
.float-wa {
  position: fixed;
  right: 22px; bottom: 110px;
  z-index: 81;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .6);
  transition: transform .3s var(--ease), background .3s;
}
.float-wa::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2.4s ease-out infinite;
}
.float-wa:hover { transform: translateY(-3px); background: #1ebe5b; }
@media (max-width: 560px) { .float-wa { bottom: 100px; } }

/* ----------------------------------------------------------------- Insurers (Anlaşmalı Sigortalar) */
.insurer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 14px; }
.insurer {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: 20px 16px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--ink-3);
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.section--light .insurer { background: var(--paper); border-color: rgba(0,0,0,.08); }
.insurer:hover { border-color: var(--accent); transform: translateY(-3px); }
.insurer i { color: var(--accent); font-size: 1.1rem; }

/* ----------------------------------------------------------------- Logo marquee (Anlaşmalı Sigortalar) */
/* static, always-visible grid — all insurers shown, wraps on any screen */
.logo-marquee { overflow: visible; }
.logo-track { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; width: auto; }
.logo-track .logo-chip:nth-child(n+14) { display: none; } /* hide the duplicated second set */
.logo-chip {
  flex: none; height: 86px; min-width: 176px; padding: 0 26px;
  background: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.5);
}
.logo-chip img { max-height: 44px; max-width: 132px; width: auto; object-fit: contain; }
.logo-chip .nm { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: #1a1d24; white-space: nowrap; letter-spacing: -.01em; }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; flex-wrap: wrap; justify-content: center; } }

.tuv-logo { height: 64px; width: auto; border-radius: 12px; }

/* ----------------------------------------------------------------- TÜV certification badge */
.cert-badge {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--ink-3);
}
.section--light .cert-badge { background: var(--paper); border-color: rgba(0,0,0,.1); }
.cert-badge .seal {
  width: 50px; height: 50px; flex: none; border-radius: 10px;
  background: linear-gradient(145deg, #2a73c2, #0e3f78); color: #fff;
  display: grid; place-items: center; font-size: 1.45rem;
}
.cert-badge .ct-title { font-family: var(--display); font-weight: 800; font-size: 1.05rem; line-height: 1.2; }
.cert-badge .ct-sub { font-size: .82rem; color: var(--ash); margin-top: 2px; }
.section--light .cert-badge .ct-sub { color: var(--ash-2); }
.cert-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
.cert-pill .tuv { color: #4f9be0; font-weight: 600; }

/* ----------------------------------------------------------------- Gallery + Lightbox */
.gallery { columns: 3; column-gap: 18px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 18px; display: block;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line); position: relative; cursor: zoom-in;
}
.gallery-item img { width: 100%; display: block; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .zoom {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 1.4rem; opacity: 0; background: rgba(12,13,16,0); transition: opacity .3s, background .3s;
}
.gallery-item:hover .zoom { opacity: 1; background: rgba(12,13,16,.4); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px 12px;
  background: linear-gradient(transparent, rgba(8,9,11,.85)); color: #fff;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
@media (max-width: 880px) { .gallery { columns: 2; } }
@media (max-width: 560px) { .gallery { columns: 1; } }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(8,9,11,.93); display: none; place-items: center; padding: 30px; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox .lb-close { position: absolute; top: 20px; right: 26px; font-size: 2rem; color: #fff; line-height: 1; }
.lightbox .lb-close:hover { color: var(--accent); }

/* ----------------------------------------------------------------- Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--fg);
  transition: border-color .25s, color .25s;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn .chev { font-size: .7rem; transition: transform .25s; }
.lang-switch.is-open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px; padding: 8px;
  display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s, visibility .25s, transform .25s; z-index: 60;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px;
  font-size: .88rem; font-weight: 600; color: var(--fg);
}
.lang-menu a:hover { background: var(--ink-4); color: var(--accent); }
.lang-menu a.is-active { color: var(--accent); }
.lang-menu .flag { font-size: 1.05rem; }
@media (max-width: 880px) { .nav-cta .lang-switch { display: none; } }
.mobile-lang { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.mobile-lang a { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--mono); font-size: .76rem; font-weight: 600; }
.mobile-lang a.is-active { border-color: var(--accent); color: var(--accent); }

/* ----------------------------------------------------------------- Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-inner { display: grid; gap: 28px; justify-items: center; }
.preloader-mark {
  position: relative;
  width: 70px; height: 70px;
  display: grid; place-items: center;
}
.preloader-mark .ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: var(--accent);
  animation: pl-spin 1s linear infinite;
}
.preloader-mark .mono {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--fg);
  letter-spacing: -.02em;
  animation: pl-pulse 1.8s ease-in-out infinite;
}
.preloader-logo { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.preloader-bar { width: 190px; height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; position: relative; }
.preloader-bar span { position: absolute; top: 0; bottom: 0; width: 42%; background: var(--accent); border-radius: 2px; animation: pl-load 1.25s var(--ease) infinite; }
@keyframes pl-spin { to { transform: rotate(360deg); } }
@keyframes pl-pulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes pl-load { 0% { left: -42%; } 100% { left: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .preloader-mark .ring, .preloader-mark img, .preloader-bar span { animation: none; }
  .preloader-bar span { left: 0; width: 100%; }
}

/* ----------------------------------------------------------------- Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-bg .slide, .brand-track { transition: none; animation: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------------------------------------------------- Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 14px; }
.mt-2 { margin-top: 28px; }
.mt-3 { margin-top: 44px; }
.mb-2 { margin-bottom: 28px; }
.maxw-prose { max-width: 64ch; }
.muted { color: var(--ash); }
.section--light .muted { color: var(--ash-2); }
.stack { display: grid; gap: 18px; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 16px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--ash);
}
.section--light .pill { border-color: rgba(0,0,0,.12); color: var(--ash-2); }
.pill i { color: var(--accent); }

/* ----------------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 880px) {
  .tb-landline { display: none; }
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-split { grid-template-columns: 1fr; }
  .grid-split { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-list li:nth-child(2) { display: none; }
  .cta-watermark { display: none; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats .container { grid-template-columns: 1fr 1fr; }
  .topbar .container { justify-content: center; }
  .topbar-left { display: none; }
  .float-call small { display: none; }
  .container { padding-inline: 18px; }
  /* mobilde sadeleştirme — dekoratif öğeleri gizle */
  .watermark, .footer-watermark, .cta-watermark, .hero-grid-overlay { display: none; }
  .section-head { margin-bottom: 34px; }
  .lead { font-size: .98rem; }
  .hero-stat .num { font-size: 1.7rem; }
  .hero-stat .label { font-size: .62rem; letter-spacing: .08em; }
  .eyebrow { font-size: .66rem; letter-spacing: .2em; }
}

/* ===================== Müşteri geri bildirim düzenlemeleri ===================== */
/* arka plandaki dev transparan monogram yazılarını tamamen kaldır */
.watermark, .cta-watermark, .footer-watermark { display: none !important; }

/* hero eyebrow (Denizli · Özel Servis · TÜV…) turuncu yerine beyaz */
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: #fff; }

/* hero alt satırı: sadece araç markaları, teknik etiket görünümü */
.hero-brands { font-family: var(--mono); letter-spacing: .05em; color: #e9e5da; font-weight: 600; font-size: clamp(.92rem, 1.4vw, 1.12rem); }

/* üst bar yazıları beyaz + kalın */
.topbar { color: #f4f1e8; font-weight: 600; }
.topbar-list li, .topbar a, .cert-pill span[data-i18n] { color: #f4f1e8; }

/* anlaşmalı sigorta logoları — statik ızgarada tüm şirketler görünür, kompakt */
.logo-chip { height: 92px; min-width: 156px; }
.logo-chip img { max-height: 50px; max-width: 128px; }

/* mobilde media-frame görseli metni ezmesin — kontrollü en-boy oranı */
@media (max-width: 880px) {
  .media-frame { aspect-ratio: 16 / 10; }
}
