/* ============================================================
   MAKRO DEFENSE — Corporate Style
   Logo: siyah zemin / mavi #2d7dd2 / teal #3db89a
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800&display=swap");

:root {
  --blue:   #1e6bb8;
  --teal:   #2a9d8f;
  --ink:    #0f172a;
  --ink2:   #334155;
  --muted:  #64748b;
  --line:   #e2e8f0;
  --line2:  #cbd5e1;

  --bg:       #f0f2f5;
  --surface:  #ffffff;
  --surface-muted: #e8ecf1;
  --surface-elevated: #fafbfc;

  --white: #ffffff;
  --nav-border: rgba(15, 23, 42, 0.08);
  --nav-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 8px 24px rgba(15,23,42,.06);

  --sh-sm:  0 1px 2px rgba(15,23,42,.05), 0 1px 3px rgba(15,23,42,.06);
  --sh-md:  0 4px 14px rgba(15,23,42,.07), 0 2px 6px rgba(15,23,42,.04);
  --sh-lg:  0 18px 40px rgba(15,23,42,.1);

  /* geriye dönük isimler */
  --dark:   #f0f2f5;
  --dark2:  #e8ecf1;
  --dark3:  #dce2ea;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

/* Ekran okuyucu / SEO — görsel yerle aynı h1 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; height: auto; }
code { font-size: .85em; background: #f1f5f9; border: 1px solid var(--line);
       padding: 2px 6px; border-radius: 4px; }

.shell { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

.site-header .shell {
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
}

/* ─── NAV (açık tema, dar ve şık) ─────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: var(--nav-shadow);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0;
  min-height: 64px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: none;
}

@media (min-width: 901px) {
  .nav-inner  { min-height: 100px; }
  .brand-logo { height: 120px; }
}

@media (max-width: 600px) {
  .nav-inner  { min-height: 56px; }
  .brand-logo { height: 46px; }
}

nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 2px; align-items: center;
}

nav a {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink2);
  padding: 7px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: color 0.15s, background 0.15s;
}
nav a:hover {
  color: var(--ink);
  background: rgba(30, 107, 184, 0.08);
}
nav a[aria-current="page"] {
  color: var(--blue);
  background: rgba(30, 107, 184, 0.12);
}

.nav-cta {
  color: var(--blue) !important;
  font-weight: 700 !important;
}

.lang-switch { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }
.lang-switch a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid var(--line2);
  color: var(--muted);
  background: var(--surface);
  transition: all 0.15s;
}
.lang-switch a:hover {
  color: var(--ink);
  border-color: var(--muted);
}
.lang-switch a.is-active {
  color: var(--blue);
  border-color: rgba(30, 107, 184, 0.45);
  background: rgba(30, 107, 184, 0.08);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line2);
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 12px;
  font: 600 0.8rem Inter, sans-serif;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
  background: var(--surface-elevated);
  border-top: 1px solid var(--line);
  padding: 6px 0 12px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { flex-direction: column; }
.mobile-nav a {
  padding: 10px 14px;
  border-radius: 0;
  color: var(--ink2);
}
.mobile-nav a:hover {
  color: var(--ink);
  background: rgba(30, 107, 184, 0.06);
}

@media (max-width: 900px) {
  nav ul      { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
}

/* ─── HERO SLIDER ────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 72vh, 680px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #eef1f5 0%, #e4e9ef 100%);
}

.hero-section.hero-slider--banners {
  /* Görselin doğal oranına (1920×640 → 3:1) göre yükseklik */
  height: clamp(160px, 33.33vw, 640px);
  min-height: 0;
}
.hero-section.hero-slider--banners .slide img {
  object-fit: cover;
  object-position: center center;
  padding: 0;
  background: #eef1f5;
}
.hero-section.hero-slider--banners .slide::after {
  display: none;
}
.hero-section.hero-slider--banners .slider-arrow,
.hero-section.hero-slider--banners .slider-dots,
.hero-section.hero-slider--banners .slider-progress {
  display: none !important;
}

.hero-section.hero-slider--banners .hero-inner.hero-inner--cta-only {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: none;
  width: 100%;
  padding: clamp(12px, 2.5vw, 22px) clamp(14px, 3vw, 36px) clamp(14px, 3vh, 28px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  pointer-events: none;
}
.hero-section.hero-slider--banners .hero-inner.hero-inner--cta-only .hero-ctas {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--sh-sm);
}

/* slides track */
.slider-track {
  position: absolute; inset: 0;
  z-index: 0;
}

.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
  background-size: cover; background-position: center;
}
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(8,11,16,.91) 0%,
    rgba(8,11,16,.62) 52%,
    rgba(8,11,16,.22) 100%);
}
.slide.is-active { opacity: 1; }

/* Slide içindeki <img> elemanı — CSS background yerine daha güvenilir */
.slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  display: block;
}

/* text content above slides */
.hero-inner {
  position: relative; z-index: 2;
  padding: 88px 0 100px;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: var(--teal); border-radius: 1px;
}

.hero-title {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 20px;
}
/* Gradient metin — tarayıcı destekliyorsa aktif, desteklemiyorsa beyaz kalır */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, #5aabff 10%, #4dd8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
}
.hero-title em {
  font-style: normal;
  color: #5aabff; /* fallback: desteklenmezse açık mavi */
}

.hero-lead {
  font-size: 1.1rem; line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin: 0 0 34px;
  max-width: 54ch;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* arrow buttons */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s;
}
.slider-arrow:hover { background: rgba(255,255,255,.22); }
.slider-arrow svg   { width: 20px; height: 20px; stroke: #fff; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
@media (max-width: 600px) {
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
}

/* dots */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.slider-dot.is-active {
  background: #fff; transform: scale(1.3);
}

/* progress bar */
.slider-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 3;
  transition: width linear;
}

/* ─── PHOTO GALLERY ──────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.photo-grid .pg-item {
  border-radius: 10px; overflow: hidden;
  position: relative;
}
.photo-grid .pg-item:first-child {
  grid-column: span 2; grid-row: span 2;
  border-radius: 14px;
}
.photo-grid .pg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
/* Galeride yerel /img/ görselleri kırpılmasın */
.photo-grid .pg-item img[src^="/img/"] {
  object-fit: contain;
  background: #eef1f5;
  padding: 6px;
  box-sizing: border-box;
}
.photo-grid .pg-item:hover img { transform: scale(1.04); }
.photo-grid .pg-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
@media (max-width: 700px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-grid .pg-item:first-child {
    grid-column: span 2; grid-row: span 1;
    height: 220px;
  }
  .photo-grid .pg-item { height: 160px; }
}

/* Hakkımızda yan sütun: yerel PNG tam görünsün */
.about-visual {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(165deg, #f8fafc 0%, #eef1f5 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual img {
  width: 100%;
  height: clamp(280px, 42vw, 400px);
  object-fit: contain;
  padding: 14px clamp(12px, 3vw, 28px);
  box-sizing: border-box;
  display: block;
}

/* ─── TESİS / SÜREÇ: ikon şeridi + çift slider ───────────── */
.process-showcase {
  padding-top: 56px;
  padding-bottom: 64px;
}
.process-showcase .section-hd {
  margin-bottom: 36px;
}
.process-showcase .section-hd p { max-width: 62ch; }

.process-icon-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .process-icon-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-icon-strip { grid-template-columns: 1fr; }
}

.band-stats {
  padding: 20px 0 28px;
}

.process-icon-item {
  text-align: center;
  padding: 16px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.process-icon-item strong {
  display: block;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.process-icon-item span {
  display: block;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--muted);
}
.process-icon-circle {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45,125,210,.18);
  border: 1px solid rgba(61,184,154,.25);
}
.process-icon-circle svg {
  width: 26px; height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-disclaimer {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 32px;
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
}

.process-banner {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--sh-md);
}
.process-banner img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: #eef1f5;
}

.dual-slider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.5vw, 22px);
}
@media (max-width: 900px) {
  .dual-slider-grid { grid-template-columns: 1fr; }
}

.process-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: clamp(220px, 32vw, 340px);
  background: #eef1f5;
  border: 1px solid var(--line);
}
.process-slider .slide::after { display: none; }
.process-slider .slide img {
  object-fit: contain;
  object-position: center;
  padding: 8px 12px;
  box-sizing: border-box;
  background: #eef1f5;
}

.process-slider .slider-arrow {
  width: 38px;
  height: 38px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--ink);
}
.process-slider .slider-arrow svg {
  stroke: var(--ink);
}
.process-slider .slider-arrow:hover {
  background: #fff;
  border-color: var(--line2);
}
.process-slider .slider-prev { left: 10px; }
.process-slider .slider-next { right: 10px; }
.process-slider .slider-dots {
  bottom: 14px;
  z-index: 4;
}
.process-slider .slider-dot {
  background: rgba(15, 23, 42, 0.25);
}
.process-slider .slider-dot.is-active {
  background: var(--blue);
}
.process-slider .slider-progress {
  z-index: 4;
  height: 2px;
}

/* ─── REFERANSLAR ───────────────────────────────────────── */
.references-section {
  padding-top: 56px;
  padding-bottom: 72px;
}
.references-section .section-hd {
  margin-bottom: 28px;
}
.references-hint {
  color: var(--muted);
  font-size: .92rem;
  max-width: 58ch;
}
.references-hint code {
  font-size: .84em;
  padding: 2px 6px;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .references-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .references-grid { grid-template-columns: 1fr; }
}

.references-grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin-inline: auto;
}
@media (max-width: 700px) {
  .references-grid--three {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
.references-grid--three .ref-logo-slot {
  height: auto;
  min-height: 72px;
  max-width: 100%;
  border-style: solid;
  background: #fff;
}
.references-grid--three .ref-logo-slot img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.ref-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 132px;
  box-shadow: var(--sh-sm);
  transition: border-color .2s, box-shadow .2s;
}
.ref-card:hover {
  border-color: rgba(45,125,210,.35);
  box-shadow: var(--sh-md);
}
.ref-logo-slot {
  width: 100%;
  max-width: 148px;
  height: 52px;
  border-radius: 8px;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: #f8fafc;
}
.ref-logo-slot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 4px;
}
.ref-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.35;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 8px; padding: 13px 22px;
  font: 600 .92rem Inter, sans-serif;
  border: 1px solid transparent; cursor: pointer;
  transition: filter .15s, transform .1s, box-shadow .15s;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--blue); color: #fff;
  border-color: #2570bd;
  box-shadow: 0 4px 18px rgba(45,125,210,.4);
}
.btn-primary:hover { filter: brightness(1.08); }

/* Koyu hero için varsayılan — varyantlar mutlaka bundan sonra gelsin */
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline--on-light {
  border-color: var(--ink2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}
.btn-outline--on-light:hover {
  background: #fff;
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline--dark {
  border-color: var(--line2);
  color: var(--ink);
  background: transparent;
}
.btn-outline--dark:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(30, 107, 184, 0.06);
}

.btn-ghost {
  background: var(--white); color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover { background: #f1f5f9; }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section     { padding: 64px 0; }
.section-alt { background: var(--surface); }

.section-muted,
.section-dark {
  background: var(--surface-muted);
  color: var(--ink);
}

.section-hd  { margin: 0 0 40px; }
.section-hd .eyebrow,
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section-hd .eyebrow::before,
.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: currentColor; border-radius: 1px;
}
.section-hd h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800; letter-spacing: -.025em;
  margin: 0 0 10px;
}
.section-hd p  { color: var(--muted); margin: 0; font-size: 1.02rem; max-width: 60ch; }

/* ─── CARDS ──────────────────────────────────────────────── */
.grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
@media (max-width: 960px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(45,125,210,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none;
                  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.card p  { font-size: .95rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* dark section içi kartlar → açık yüzeyde kart */
.section-dark .card,
.section-muted .card {
  background: var(--surface);
  border-color: var(--line);
}
.section-dark .card:hover,
.section-muted .card:hover {
  background: var(--surface);
}
.section-dark .card h3,
.section-muted .card h3 { color: var(--ink); }
.section-dark .card p,
.section-muted .card p { color: var(--muted); }
.section-dark .card-icon,
.section-muted .card-icon { background: rgba(30, 107, 184, 0.1); }

/* ─── STATS STRIP ────────────────────────────────────────── */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.stat-item {
  flex: 1 1 140px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: none; }
.stat-num  { font-size: 1.65rem; font-weight: 800; color: var(--blue); letter-spacing: -.03em; }
.stat-lbl  { font-size: .8rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 600px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: none; }
}

/* ─── SPLIT (2 col) ──────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ─── FORMS ──────────────────────────────────────────────── */
.form { display: grid; gap: 16px; }

label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--ink2); margin-bottom: 5px;
}

input, textarea, select {
  width: 100%; font: inherit; font-size: .94rem;
  padding: 11px 14px; border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff; color: var(--ink);
  outline: none; transition: border .15s, box-shadow .15s;
}
input:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,125,210,.15);
}
textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ─── CONTACT QUICK ──────────────────────────────────────── */
.contact-quick { display: flex; flex-direction: column; gap: 14px; }
.contact-item  {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(45,125,210,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--blue);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label { font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 2px; }
.contact-item-val { font-weight: 600; color: var(--ink); }
.contact-item-val a { color: var(--blue); }

/* ─── MAP ────────────────────────────────────────────────── */
.map iframe { width: 100%; height: 320px; border: 0; border-radius: 12px; display: block; }
.map-placeholder {
  height: 200px; border-radius: 12px;
  background: #f1f5f9; border: 1px dashed #cbd5e1;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .9rem;
}

/* ─── PROSE ──────────────────────────────────────────────── */
.prose         { color: var(--ink2); line-height: 1.7; max-width: 75ch; }
.prose h2, .prose h3 { color: var(--ink); font-weight: 700; margin-top: 28px; letter-spacing: -.02em; }
.prose p       { margin: 0 0 14px; }
.legal         { max-width: 820px; }
.legal h1      { font-size: clamp(1.5rem,3vw,1.9rem); font-weight: 800;
                  letter-spacing: -.03em; margin: 0 0 8px; }
.note { font-size: .85rem; color: var(--muted); }

/* ─── PAGE HEADER ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
  padding: 44px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 8px;
}
.page-hero p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #e8ecf1;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}
.footer-top    { padding: 44px 0 36px; }
.footer-grid   { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(360px, 100%);
  object-fit: contain;
  margin-bottom: 14px;
  filter: none;
}
@media (max-width: 600px) {
  .footer-logo { height: 48px; max-width: min(300px, 100%); }
}
.footer-desc   { font-size: .88rem; color: var(--muted); line-height: 1.65; max-width: 32ch; }
.footer-col-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink2);
  margin-bottom: 14px;
}
.footer-links  { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--ink2); transition: color .15s; }
.footer-links a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 10px;
}
.footer-bottom span { color: var(--muted); font-size: .82rem; }
.footer-bottom__muted { color: var(--muted) !important; }
.footer-bottom__muted:hover { color: var(--blue) !important; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed; right: 20px; bottom: 20px; z-index: 99;
  padding: 14px 18px; border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  display: none; font-size: .9rem;
  max-width: 320px;
}
.toast.is-on { display: block; }

/* ─── MISC ───────────────────────────────────────────────── */
a.is-disabled { pointer-events: none; opacity: .35; }

.badge {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(45,125,210,.12); color: var(--blue);
}

.divider { border: none; border-top: 1px solid var(--line); margin: 0; }

/* Admin */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 28px 22px 48px; }
.admin-wrap h1 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; }
.admin-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 14px 0 10px; }
.admin-row input { flex: 1; min-width: 220px; }
textarea.mono {
  min-height: 60vh;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px; line-height: 1.5;
}
