*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #000;
  --mid: #444;
  --light: #888;
  --border: #E5E5E5;
}

/* ─────────────────────────────────────────────
   DESKTOP: full 100vh, no scroll
───────────────────────────────────────────── */
html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
  background: #fff;
}

.page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* ── HERO ── */
.hero {
  flex: 1 1 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  padding: 44px 60px 36px 280px;
  background: #fff;
  overflow: hidden;
}

/* ── TOP HEADER ── */
.top-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 280px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--dark);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lang-switch a {
  color: var(--light);
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 3px;
  transition: color .15s, background .15s;
}
.lang-switch a:hover { color: var(--dark); }
.lang-switch a.active {
  color: #fff;
  background: var(--dark);
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 16px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--dark);
  display: block;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(1.6rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 400px;
}

/* stats */
.stats {
  display: flex;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  gap: 0;
}
.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-icon { width: 30px; height: 30px; color: var(--dark); flex-shrink: 0; }
.stat-num { font-size: 1.35rem; font-weight: 800; line-height: 1; }
.stat-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 3px;
}

/* building */
.hero-right {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-right img {
  display: block;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* ── COMPANIES ── */
.companies {
  flex: 0 0 auto;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 13px 280px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 11px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 26px; height: 2px;
  background: var(--dark);
  display: block;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: visible;
}
.company-card {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 18px;
  min-height: 160px;
  position: relative;
  text-decoration: none;
  transition: background .15s;
}
.company-card:hover { background: #f0f0f0; }
.company-card img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  transition: opacity .25s, filter .25s;
}
.company-card:hover img {
  opacity: 0.15;
  filter: blur(4px);
}
.company-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3C/svg%3E") center/32px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3C/svg%3E") center/32px no-repeat;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.company-card:hover::after {
  opacity: 1;
}

.sectors {
  flex: 0 0 auto;
  background: #F8F8F8;
  border-top: 1px solid var(--border);
  padding: 0 280px;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.sector-card {
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background .15s;
}
.sector-card:last-child { border-right: none; }
.sector-icon { width: 28px; height: 28px; color: var(--dark); }
.sector-name { font-weight: 700; font-size: 0.8rem; }
.sector-desc { font-size: 0.7rem; color: var(--light); line-height: 1.35; }

/* ── FOOTER ── */
footer {
  flex: 0 0 auto;
  background: #fff;
  border-top: 1px solid var(--border);
  height: 64px;
  padding: 0 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex; align-items: center;
}
.footer-contact {
  display: flex; align-items: center; gap: 20px;
  font-size: 0.76rem;
}
.footer-contact a {
  display: flex; align-items: center; gap: 6px;
  color: var(--mid); text-decoration: none; transition: color .15s;
}
.footer-contact a:hover { color: var(--dark); }
.footer-copy { font-size: 0.7rem; color: var(--light); }

/* ─────────────────────────────────────────────
   TABLET  ≤ 1024px
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-left { padding: 36px 60px 28px 160px; }
  .top-header { padding: 14px 160px; }
  .companies { padding: 12px 160px; }
  .sectors { padding: 0 160px; }
  footer { padding: 0 160px; }

  .hero-title { font-size: clamp(1.5rem, 2.8vw, 2.4rem); }
}

/* ─────────────────────────────────────────────
   MOBILE  ≤ 768px
───────────────────────────────────────────── */
@media (max-width: 768px) {
  html, body { height: auto; overflow: auto; }

  .page {
    height: auto;
    overflow: visible;
    min-height: 100vh;
  }

  .hero {
    flex: none;
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: visible;
  }
  .hero-right { display: none; }

  .hero-left {
    padding: 28px 20px 24px;
    gap: 0;
    min-height: auto;
    justify-content: flex-start;
  }
  .top-header { padding: 12px 20px; }

  .hero-body { padding: 20px 0 16px; }

  .hero-title { font-size: 1.85rem; }
  .hero-desc { font-size: 0.9rem; max-width: 100%; }

  .stats { padding-top: 18px; }
  .stat { padding-right: 18px; margin-right: 18px; }
  .stat-num { font-size: 1.2rem; }
  .stat-icon { width: 26px; height: 26px; }

  .companies { padding: 16px 20px; }
  .sectors { padding: 0 20px; }
  .company-grid { grid-template-columns: repeat(3, 1fr); }
  .company-card { min-height: 120px; }
  .company-card img {
    max-width: 80%;
    max-height: 80%;
  }

  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sector-card:nth-child(3) { border-right: none; }
  .sector-card:nth-child(4),
  .sector-card:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .sector-card:nth-child(5) { border-right: none; }

  footer {
    height: auto;
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-contact { gap: 14px; flex-wrap: wrap; width: 100%; }
  .footer-contact a:last-child {
    margin-left: auto;
  }
}

/* ─────────────────────────────────────────────
   SMALL MOBILE  ≤ 480px
───────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.55rem; }
  .hero-desc { font-size: 0.85rem; }

  .stats {
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }
  .stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
  }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }

  .company-grid { grid-template-columns: repeat(2, 1fr); }
  .company-card { min-height: 100px; }
  .company-card:nth-child(7) {
    grid-column: 1 / -1;
    min-height: 100px;
  }
  .company-card:nth-child(7) img {
    max-height: 65px;
  }
  .company-card img {
    max-width: 70%;
    max-height: 70%;
  }
  .hero-title { font-size: 1.4rem; }
  .hero-desc { font-size: 0.8rem; }

  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-card { border-right: none; border-bottom: 1px solid var(--border); }
  .sector-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .sector-card:nth-child(4) { border-right: none; }
  .sector-card:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
    border-top: none;
  }
  .sector-card:nth-child(3) { border-right: 1px solid var(--border); }

  .footer-copy { font-size: 0.68rem; }
}

/* ── SADECE BU İKİ BAŞLIK KIRMIZI ── */
.eyebrow,
.section-label {
  color: #D72B2B;
}
.eyebrow::before,
.section-label::before,
.section-label::after,
.lang-switch a.active {
  background: #D72B2B;
}
