:root {
  --bg: #05070c;
  --bg-2: #08101a;
  --panel: rgba(17, 24, 36, 0.88);
  --panel-2: rgba(26, 37, 56, 0.82);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #9aa8bd;
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.14);
  --white-soft: rgba(255, 255, 255, 0.78);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-height: 88px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 122, 26, 0.06), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(90, 120, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #04060a 0%, #070d16 60%, #04060a 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(6, 8, 14, 0.85);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  opacity: 0.98;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 64px 0 96px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.9vw, 68px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(255,255,255,0.04);
}

.hero-text {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.80);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #111;
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 122, 26, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(28, 40, 60, 0.88) 0%, rgba(12, 18, 28, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.10), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}

.panel-kicker {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 10px;
}

.hero-panel h2 {
  position: relative;
  z-index: 2;
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.hero-panel p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 18px 16px;
}

.stat-value {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.hero-panel-note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.orb-1 {
  width: 240px;
  height: 240px;
  top: 80px;
  left: -70px;
  background: rgba(255, 122, 26, 0.14);
  opacity: 0.55;
}

.orb-2 {
  width: 320px;
  height: 320px;
  top: 120px;
  right: -90px;
  background: rgba(76, 116, 255, 0.14);
  opacity: 0.45;
}

/* GENERIC SECTIONS */
.section {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
}

.section-head {
  max-width: 880px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}

.section-head.narrow {
  max-width: 840px;
}

.section-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 122, 26, 0.14);
  color: #ffb27b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: #f5f7fb;
}

.section-head p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 780px;
}

/* CAPABILITIES */
.capabilities-section {
  position: relative;
}

.capabilities-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 122, 26, 0.04), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.03), transparent 28%);
  pointer-events: none;
}

.capabilities-section .section-head {
  margin-bottom: 56px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.cap-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 380px;
  background: #0b1119;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.cap-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.cap-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.38) 42%, rgba(0,0,0,0.90) 100%),
    radial-gradient(circle at bottom, rgba(255,122,26,0.08), transparent 40%);
  z-index: 1;
}

.cap-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 180%;
  height: 260%;
  background: linear-gradient(120deg, transparent, rgba(255,140,0,0.18), transparent);
  transform: rotate(22deg);
  transition: 0.8s ease;
  opacity: 0;
  z-index: 2;
}

.cap-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,140,0,0.35);
  box-shadow: 0 28px 70px rgba(255,140,0,0.14);
}

.cap-card:hover img {
  transform: scale(1.08);
}

.cap-card:hover::before {
  top: 100%;
  opacity: 1;
}

.cap-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
}

.cap-content h3 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.cap-content p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

/* WHY */
.why-section .section-head {
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  transition: 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.18);
}

.why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.18), rgba(255, 122, 26, 0.08));
  border: 1px solid rgba(255, 122, 26, 0.16);
  color: #ffb27b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.why-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.why-highlight {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.why-highlight-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb27b;
}

.why-highlight-copy h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.why-highlight-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
}

.why-highlight-metrics {
  display: grid;
  gap: 14px;
}

.why-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px;
}

.why-metric-value {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-metric-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

/* OPERATIONS */
.operations-section .section-head {
  margin-bottom: 54px;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ops-card {
  position: relative;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px 24px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.ops-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 122, 26, 0.08), transparent 32%);
  pointer-events: none;
}

.ops-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

.ops-step {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.18), rgba(255, 122, 26, 0.08));
  border: 1px solid rgba(255, 122, 26, 0.16);
  color: #ffb27b;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ops-card h3 {
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.ops-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.ops-bar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
}

.ops-bar-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 18px 16px;
}

.ops-bar-value {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.ops-bar-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* LOCATIONS */
.locations-section .section-head {
  margin-bottom: 50px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.location-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 122, 26, 0.08), transparent 30%);
  pointer-events: none;
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.22);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.20);
}

.location-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.location-type {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb27b;
}

.location-code {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.16), rgba(255, 122, 26, 0.08));
  border: 1px solid rgba(255, 122, 26, 0.16);
  color: #ffb27b;
  font-size: 14px;
  font-weight: 800;
}

.location-card h3 {
  position: relative;
  z-index: 2;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.location-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
  max-width: 95%;
}

.locations-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 22px;
}

.locations-badge {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

.locations-mail {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: 0.25s ease;
}

.locations-mail:hover {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .why-highlight,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-grid,
  .ops-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .locations-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .main-nav {
    gap: 16px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 72px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9vw, 54px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-panel {
    padding: 24px;
  }

  .hero-panel h2 {
    font-size: 32px;
  }

  .hero-stats,
  .why-grid,
  .cap-grid,
  .ops-grid,
  .ops-bar,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .section-head p,
  .why-highlight-copy p,
  .location-card p,
  .ops-card p {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-logo {
    height: 32px;
  }

  .section {
    padding: 74px 0;
  }

  .cap-card {
    min-height: 340px;
  }

  .cap-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .cap-content h3 {
    font-size: 24px;
  }

  .hero-panel,
  .why-card,
  .why-highlight,
  .ops-card,
  .ops-bar,
  .location-card,
  .locations-footer {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
/* ===== FOOTER ===== */

.site-footer {
  margin-top: 70px;
  padding: 40px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(6px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer {
  backdrop-filter: blur(6px);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb27b;
}

.footer-mail {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-mail:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.48);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-mail {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-mail:hover {
  color: var(--accent);
}
/* ===== SITE RHYTHM / PROFESSIONAL STRUCTURE ===== */

/* main genel ritim */
main {
  position: relative;
}

/* section aralarına daha güçlü boşluk */
.section {
  position: relative;
  padding: 120px 0;
}

/* section başlıkları daha iyi hizalansın */
.section-head {
  margin-bottom: 56px;
}

/* her büyük bölüm kendi sahnesine sahip olsun */
#capabilities,
#why-rebornics,
#operations,
#locations {
  position: relative;
}

/* capabilities */
#capabilities {
  padding-top: 110px;
  padding-bottom: 120px;
}

#capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 26, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.005) 100%);
  pointer-events: none;
}

/* why rebornics */
#why-rebornics {
  padding-top: 120px;
  padding-bottom: 120px;
}

#why-rebornics::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.03), transparent 24%);
  pointer-events: none;
}

/* operations */
#operations {
  padding-top: 120px;
  padding-bottom: 120px;
}

#operations::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.005) 100%);
  pointer-events: none;
}

/* locations */
#locations {
  padding-top: 120px;
  padding-bottom: 100px;
}

#locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 122, 26, 0.05), transparent 26%);
  pointer-events: none;
}

/* section başlık alanlarını belge gibi değil tasarım bloğu gibi hissettir */
.section-head h2 {
  max-width: 900px;
}

.section-head p {
  max-width: 760px;
}

/* uzun akışı bölmek için bazı bölümlere üst çizgi */
#why-rebornics .container,
#operations .container,
#locations .container {
  position: relative;
}

#why-rebornics .container::before,
#operations .container::before,
#locations .container::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,122,26,0.55), rgba(255,255,255,0));
}

/* tüm kartları ortaklaştır: site dili daha tutarlı olsun */
.cap-card,
.why-card,
.ops-card,
.location-card,
.why-highlight,
.ops-bar,
.locations-footer,
.hero-panel {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

/* hover'lar birbirine yakın hissedilsin */
.cap-card:hover,
.why-card:hover,
.ops-card:hover,
.location-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

/* header biraz daha premium ayrı dursun */
.site-header {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* hero ile alt bölümler arasına daha doğal geçiş */
.hero {
  padding-bottom: 120px;
}

/* footer ile son section arasında net nefes */
.site-footer {
  margin-top: 90px;
}

/* çok uzun beyaz boşluk hissi olmasın diye section içindeki max ritim */
.cap-grid,
.why-grid,
.ops-grid,
.locations-grid {
  align-items: stretch;
}

/* mobilde de belge gibi görünmesin */
@media (max-width: 860px) {
  .section {
    padding: 90px 0;
  }

  #why-rebornics .container::before,
  #operations .container::before,
  #locations .container::before {
    top: -24px;
    width: 54px;
  }

  .hero {
    padding-bottom: 90px;
  }

  .site-footer {
    margin-top: 70px;
  }
}
/* ===== STRONG SECTION SEPARATION ===== */

#capabilities .container,
#why-rebornics .container,
#operations .container,
#locations .container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 42px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#capabilities,
#why-rebornics,
#operations,
#locations {
  padding-top: 70px;
  padding-bottom: 70px;
}

#why-rebornics .container,
#operations .container,
#locations .container {
  margin-top: 10px;
}

#capabilities .section-head,
#why-rebornics .section-head,
#operations .section-head,
#locations .section-head {
  margin-bottom: 42px;
}

#capabilities .container:hover,
#why-rebornics .container:hover,
#operations .container:hover,
#locations .container:hover {
  border-color: rgba(255, 122, 26, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

@media (max-width: 860px) {
  #capabilities .container,
  #why-rebornics .container,
  #operations .container,
  #locations .container {
    padding: 24px;
    border-radius: 24px;
  }

  #capabilities,
  #why-rebornics,
  #operations,
  #locations {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* ===== SECTION COLOR SYSTEM (PRO LEVEL) ===== */

/* HERO zaten koyu kalıyor */

/* Capabilities */
#capabilities {
  background: linear-gradient(180deg, #161a21 0%, #191e26 100%);
}

/* Why Rebornics */
#why-rebornics {
  background: linear-gradient(180deg, #191e26 0%, #1d222b 100%);
}

/* Operations */
#operations {
  background: linear-gradient(180deg, #1d222b 0%, #212730 100%);
}

/* Locations */
#locations {
  background: linear-gradient(180deg, #212730 0%, #252c36 100%);
}

/* Footer en açık */
.site-footer {
  background: linear-gradient(180deg, #252c36 0%, #222831 100%);
}
/* GLOBAL BACKGROUND FIX */
body {
  background: #1b2028 !important;
}
/* SECTION SEPARATION */

section {
  padding: 80px 0;
}

#capabilities {
  background: #1e242d;
}

#why-rebornics {
  background: #212730;
}

#operations {
  background: #242b35;
}

#locations {
  background: #272f3a;
}
/* CARD PREMIUM FIX */

.card,
.feature-card,
.glass-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  transition: all 0.3s ease;
}

/* hover efekti */
.card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,140,0,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
/* TEXT READABILITY */

h1, h2, h3 {
  color: #ffffff;
}

p {
  color: rgba(255,255,255,0.75);
}
/* ===== HEADER LANGUAGE SWITCH ===== */

.nav-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.62);
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.lang:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.lang.active {
  color: #ff7a1a;
  background: rgba(255,122,26,0.12);
}

@media (max-width: 860px) {
  .nav-group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.impact-section {
  padding-top: 60px;
  margin-top: -60px;
  background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
}
/* ===== IMPACT SECTION ===== */

.impact-section {
  padding-top: 60px !important;
  margin-top: -60px;
  position: relative;
}

.impact-section .container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 42px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.impact-section .section-head {
  margin-bottom: 42px;
}

.impact-highlight {
  text-align: center;
  margin: 28px 0 34px;
}

.impact-big {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.impact-number {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: #ff7a1a;
  letter-spacing: -0.03em;
}

.impact-label {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.impact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 24px 20px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,122,26,0.24);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.impact-value {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.impact-unit {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffb27b;
  margin-bottom: 10px;
}

.impact-card p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}

.impact-note {
  margin-top: 22px;
  text-align: center;
}

.impact-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.54);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .impact-section .container {
    padding: 24px;
    border-radius: 24px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-number {
    font-size: 42px;
  }
}
/* ===== IMPACT GRID FIX ===== */

.impact-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.impact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  transition: 0.3s;
}

.impact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,106,0,0.5);
}

.impact-value {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.impact-unit {
  display: block;
  color: #ff6a00;
  margin-bottom: 8px;
}

.impact-card p {
  opacity: 0.7;
  font-size: 14px;
}

/* mobil */
@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== IMPACT HARD OVERRIDE ===== */

section.impact-section {
  display: block !important;
  width: 100% !important;
}

section.impact-section .container {
  display: block !important;
}

section.impact-section .impact-highlight {
  display: block !important;
  text-align: center !important;
  margin: 28px 0 34px !important;
}

section.impact-section .impact-big {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}

section.impact-section .impact-number {
  display: block !important;
  font-size: 56px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  color: #ff7a1a !important;
}

section.impact-section .impact-label {
  display: block !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.72) !important;
}

section.impact-section .impact-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  margin-top: 30px !important;
}

section.impact-section .impact-card {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  padding: 24px !important;
  box-sizing: border-box !important;
}

section.impact-section .impact-value {
  display: block !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

section.impact-section .impact-unit {
  display: block !important;
  color: #ff6a00 !important;
  margin-bottom: 8px !important;
  font-weight: 700 !important;
}

section.impact-section .impact-card p {
  display: block !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  section.impact-section .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  section.impact-section .impact-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ===== IMPACT FINAL FIX (FLEX) ===== */

.impact-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin-top: 30px;
}

.impact-card {
  flex: 1 1 calc(25% - 20px) !important;
  min-width: 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  box-sizing: border-box;
  transition: 0.3s;
}

.impact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,106,0,0.5);
}

.impact-value {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.impact-unit {
  display: block;
  color: #ff6a00;
  margin-bottom: 8px;
  font-weight: 600;
}

.impact-card p {
  opacity: 0.7;
  font-size: 14px;
  line-height: 1.5;
}

/* mobil */
@media (max-width: 900px) {
  .impact-card {
    flex: 1 1 calc(50% - 20px) !important;
  }
}

@media (max-width: 600px) {
  .impact-card {
    flex: 1 1 100% !important;
  }
}
/* ===== IMPACT PREMIUM ===== */

.impact-section {
  padding-top: 60px !important;
  margin-top: -60px;
  position: relative;
}

.impact-section .container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 42px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.impact-section .section-head {
  margin-bottom: 42px;
}

.impact-highlight {
  text-align: center;
  margin: 28px 0 34px;
}

.impact-big {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.impact-number {
  display: block;
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  color: #ff7a1a;
  letter-spacing: -0.04em;
}

.impact-label {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.76);
}

.impact-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin-top: 30px;
}

.impact-card {
  flex: 1 1 calc(25% - 20px) !important;
  min-width: 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 24px;
  box-sizing: border-box;
  transition: 0.3s;
}

.impact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,106,0,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.impact-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.impact-unit {
  display: block;
  color: #ff6a00;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 15px;
}

.impact-card p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.impact-equivalents {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.impact-eq-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 20px;
}

.impact-eq-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.impact-eq-label {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
}

.impact-note {
  margin-top: 22px;
  text-align: center;
}

.impact-note p {
  font-size: 13px;
  color: rgba(255,255,255,0.54);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .impact-card {
    flex: 1 1 calc(50% - 20px) !important;
  }

  .impact-equivalents {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .impact-card {
    flex: 1 1 100% !important;
  }

  .impact-number {
    font-size: 52px;
  }

  .impact-section .container {
    padding: 24px;
    border-radius: 24px;
  }
}
.impact-equivalents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.impact-eq-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px;
}

.impact-eq-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.impact-eq-label {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .impact-equivalents {
    grid-template-columns: 1fr;
  }
}
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 90px;
}
.main-nav a {
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ff7a1a;
  transition: 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}
/* ===== SIMPLE ROADMAP ===== */

.roadmap-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.roadmap-box {
  flex: 1;
  min-width: 180px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 20px;
}

.roadmap-box.highlight {
  border-color: rgba(255,122,26,0.4);
  background: rgba(255,122,26,0.08);
}

.roadmap-box.future {
  border-color: rgba(255,122,26,0.25);
}

.roadmap-year {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 6px;
}

.roadmap-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.roadmap-label {
  font-size: 13px;
  opacity: 0.7;
}

.roadmap-arrow {
  font-size: 22px;
  color: #ff7a1a;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .roadmap-simple {
    flex-direction: column;
  }

  .roadmap-arrow {
    transform: rotate(90deg);
  }
}
.hero-copy h1 {
  max-width: 760px;
}

.hero-panel h2 {
  max-width: 420px;
}
/* ===== FINAL CTA ===== */

.final-cta-section {
  padding-top: 60px;
  padding-bottom: 30px;
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.final-cta-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  color: #ffffff;
}

.final-cta-copy p {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.78;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.final-cta-actions .btn {
  min-width: 240px;
}

@media (max-width: 900px) {
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    align-items: flex-start;
  }

  .final-cta-actions .btn {
    width: 100%;
    min-width: 0;
  }
}
/* ===== PREMIUM HOVER UPGRADE ===== */

.cap-card,
.why-card,
.ops-card,
.location-card,
.impact-card,
.impact-eq-card,
.roadmap-box {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* hover */
.cap-card:hover,
.why-card:hover,
.ops-card:hover,
.location-card:hover,
.impact-card:hover,
.impact-eq-card:hover,
.roadmap-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  border-color: rgba(255,122,26,0.18);
}

/* 🔥 üstten geçen ışık efekti */
.cap-card::before,
.why-card::before,
.ops-card::before,
.location-card::before,
.impact-card::before,
.impact-eq-card::before,
.roadmap-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,122,26,0.08) 40%,
    rgba(255,122,26,0.18) 50%,
    rgba(255,122,26,0.08) 60%,
    transparent 100%
  );
  transition: all 0.6s ease;
}

.cap-card:hover::before,
.why-card:hover::before,
.ops-card:hover::before,
.location-card:hover::before,
.impact-card:hover::before,
.impact-eq-card:hover::before,
.roadmap-box:hover::before {
  left: 120%;
}

/* image zoom daha soft */
.cap-card img {
  transition: transform 0.5s ease;
}

.cap-card:hover img {
  transform: scale(1.04);
}
/* ===== BUTTON PREMIUM EFFECT ===== */

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.2) 40%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0.2) 60%,
    transparent 100%
  );
  transition: all 0.6s ease;
}

.btn:hover::after {
  left: 120%;
}
/* ===== LOGO HOVER ===== */

.brand-logo {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
  opacity: 0.9;
}
/* ===== HERO GLOW ===== */

.hero::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,122,26,0.15), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
html {
  scroll-behavior: smooth;
}
.main-nav a.active {
  color: #ffffff;
}

.main-nav a.active::after {
  width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(10, 14, 20, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header.scrolled {
  background: rgba(10, 14, 20, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
/* ===== HEADER FIXED FINAL OVERRIDE ===== */

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  background: rgba(10, 14, 20, 0.82) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main {
  padding-top: 96px !important;
}

.site-header.scrolled {
  background: rgba(10, 14, 20, 0.95) !important;
  box-shadow: 0 14px 38px rgba(0,0,0,0.28) !important;
}
.lang-switch {
  display: flex;
  gap: 14px;
  align-items: center;
}

.lang {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang:hover {
  color: #fff;
}

.lang.active {
  color: #ff7a1a;
  font-weight: 600;
}
/* ===== MOBILE HEADER CLEANUP ===== */

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0 !important;
  }

  .header-inner {
    min-height: auto !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .brand-logo {
    max-width: 290px;
    height: auto;
  }

  .nav-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    width: 100%;
  }

  .main-nav a {
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .lang-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .lang {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 12px;
  }

  main {
    padding-top: 170px !important;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 9vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
/* ===== MOBILE HEADER PRO CLEAN ===== */

@media (max-width: 768px) {

  .site-header {
    padding: 8px 0 !important;
  }

  .header-inner {
    flex-direction: column;
    gap: 6px;
  }

  /* LOGO KÜÇÜLT */
  .brand-logo {
    max-width: 220px;
  }

  /* MENÜ DAHA KOMPAKT */
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
  }

  .main-nav a {
    font-size: 14px;
    opacity: 0.8;
  }

  /* DİL SEÇİMİNİ KÜÇÜLT */
  .lang-switch {
    gap: 6px;
  }

  .lang {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* HEADER YÜKSEKLİĞİ AZALT */
  main {
    padding-top: 130px !important;
  }

  /* HERO YUKARI ÇEK */
  .hero {
    padding-top: 10px;
  }

  /* BAŞLIK DAHA ŞIK */
  .hero-copy h1 {
    font-size: clamp(38px, 8.5vw, 52px);
    line-height: 1;
  }

  .hero-text {
    font-size: 16px;
  }

}
/* ===== MOBILE HAMBURGER MENU ===== */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.menu-toggle:hover {
  border-color: rgba(255,122,26,0.22);
  background: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0 !important;
  }

  .header-inner {
    min-height: 74px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .brand-logo {
    max-width: 210px;
    height: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-group {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10, 14, 20, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-group.open {
    display: flex;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  .main-nav a {
    font-size: 16px;
    line-height: 1.2;
  }

  .lang-switch {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .lang {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 12px;
  }

  main {
    padding-top: 96px !important;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 8.5vw, 52px);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
/* ===== MOBILE MENU FINAL FIX ===== */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

@media (max-width: 768px) {
  .header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 74px !important;
    position: relative;
  }

  .brand-logo {
    max-width: 210px !important;
    height: auto;
  }

  .menu-toggle {
    display: block !important;
    flex: 0 0 46px;
  }

  .nav-group {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10, 14, 20, 0.97);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 10000;
  }

  .nav-group.open {
    display: flex !important;
  }

  .main-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    width: 100%;
  }

  .main-nav a {
    display: block;
    font-size: 16px;
    line-height: 1.2;
  }

  .lang-switch {
    display: flex !important;
    gap: 8px;
    flex-wrap: wrap;
  }

  .lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 12px;
  }

  main {
    padding-top: 96px !important;
  }
}
/* ===== MOBILE FOOTER FIX ===== */

@media (max-width: 768px) {
  .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: flex-start !important;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-logo {
    max-width: 180px;
    height: auto;
  }

  .footer-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .footer-right {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }

  .footer-links {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
  }

  .footer-links a {
    font-size: 15px;
    line-height: 1.4;
  }

  .footer-mail {
    font-size: 15px;
    word-break: break-word;
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
    align-items: flex-start !important;
  }

  .footer-bottom p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.hero-statement {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #e5e5e5;
  font-weight: 500;
  opacity: 0.9;
}
.lang-de .hero h1 {
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 8ch;
}

.lang-de .hero-text {
  max-width: 52ch;
}

.lang-de .hero-statement {
  max-width: 34ch;
  line-height: 1.45;
}

.lang-de .hero h1 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 1100px) {
  .lang-de .hero h1 {
    max-width: 9ch;
  }
}

@media (max-width: 768px) {
  .lang-de .hero h1 {
    font-size: clamp(40px, 10vw, 58px);
    max-width: 10ch;
  }
}
.cap-content h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.cap-content p {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.85;
  max-width: 26ch;
}
.cap-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.cap-card {
  overflow: hidden;
}

.cap-content {
  max-width: 85%;
}
/* FORM GENEL */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

/* SATIR */
.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-row-full {
  grid-template-columns: 1fr;
}

/* INPUT / SELECT / TEXTAREA */
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 14px;
  outline: none;
}

/* PLACEHOLDER */
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

/* TEXTAREA */
.lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* FOCUS */
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #ff7a18;
  box-shadow: 0 0 0 2px rgba(255,122,24,0.2);
}

/* BUTTON */
.lead-actions {
  margin-top: 8px;
}

.lead-actions .btn {
  min-width: 220px;
}

/* MOBILE */
@media (max-width: 768px) {
  .lead-row {
    grid-template-columns: 1fr;
  }

  .lead-actions .btn {
    width: 100%;
  }
}
/* FORM GENEL */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

/* SENİN CLASS: form-row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* INPUTLAR */
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 14px;
  outline: none;
}

/* TEXTAREA */
.lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* BUTON */
.lead-form button {
  margin-top: 10px;
  width: fit-content;
}

/* MOBILE */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form button {
    width: 100%;
  }
}
/* ===== FINAL LEAD FORM OVERRIDE ===== */
.lead-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  max-width: 760px !important;
  width: 100% !important;
  margin: 24px 0 0 0 !important;
}

.lead-form .form-row,
.lead-form .lead-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  width: 100% !important;
}

.lead-form textarea,
.lead-form .lead-row-full,
.lead-form .form-row-full {
  width: 100% !important;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100% !important;
  min-height: 52px !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  outline: none !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.lead-form textarea {
  min-height: 110px !important;
  resize: vertical !important;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52) !important;
}

.lead-form select {
  color: rgba(255, 255, 255, 0.82) !important;
}

.lead-form option {
  color: #111 !important;
  background: #fff !important;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #ff7a18 !important;
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.18) !important;
}

.lead-form button,
.lead-form .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 240px !important;
  margin-top: 6px !important;
}

@media (max-width: 768px) {
  .lead-form .form-row,
  .lead-form .lead-row {
    grid-template-columns: 1fr !important;
  }

  .lead-form button,
  .lead-form .btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}
.lead-section {
  padding-top: 10px;
}

.lead-form-box {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.lead-form-head {
  margin-bottom: 8px;
}

.lead-form-head h3 {
  margin: 10px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lead-form-head p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .lead-form-box {
    padding: 22px;
    border-radius: 22px;
  }
}
.trust-strip{
padding:34px 0;
border-top:1px solid rgba(255,255,255,.06);
border-bottom:1px solid rgba(255,255,255,.06);
}

.trust-items{
display:flex;
justify-content:center;
align-items:center;
gap:36px;
flex-wrap:wrap;
text-align:center;
}

.trust-items span{
font-size:14px;
letter-spacing:.08em;
text-transform:uppercase;
color:rgba(255,255,255,.62);
font-weight:600;
}

.trust-items span:after{
content:"•";
margin-left:36px;
opacity:.35;
}

.trust-items span:last-child:after{
display:none;
}

@media(max-width:768px){

.trust-items{
gap:18px;
}

.trust-items span:after{
display:none;
}

}
.trust-strip{
background:rgba(255,255,255,.015);
backdrop-filter: blur(8px);
}

/* ===== HERO MOTION VISIBLE UPGRADE ===== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-copy {
  animation: heroIntroLeft 0.9s ease both;
}

.hero-panel {
  animation: heroIntroRight 1s ease both, heroPanelFloat 5s ease-in-out 1.1s infinite;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 120px;
  background: radial-gradient(circle, rgba(255,122,26,0.16), transparent 68%);
  filter: blur(35px);
  opacity: 0.85;
  animation: heroGlowMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroIntroLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroIntroRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroPanelFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroGlowMove {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-40px, 28px, 0) scale(1.08);
  }
}

@media (max-width: 768px) {
  .hero-panel {
    animation: heroIntroRight 1s ease both;
  }

  .hero::before {
    width: 360px;
    height: 360px;
    right: -160px;
    top: 220px;
  }
}
/* COOKIE CONSENT */

.cookie-banner{
position:fixed;
left:24px;
right:24px;
bottom:24px;
z-index:99999;
display:none;
}

.cookie-content{
max-width:1100px;
margin:auto;
background:rgba(10,14,20,.96);
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
padding:18px;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
box-shadow:0 20px 50px rgba(0,0,0,.35);
backdrop-filter:blur(18px);
}

.cookie-content strong{
display:block;
color:#fff;
margin-bottom:6px;
}

.cookie-content p{
margin:0;
font-size:14px;
line-height:1.6;
color:rgba(255,255,255,.72);
}

.cookie-actions{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.cookie-btn{
border:0;
border-radius:999px;
padding:10px 16px;
font-weight:700;
cursor:pointer;
}

.cookie-btn.primary{
background:#ff7a1a;
color:#111;
}

.cookie-btn.secondary{
background:rgba(255,255,255,.05);
color:#fff;
border:1px solid rgba(255,255,255,.08);
}

.cookie-modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.55);
z-index:100000;
align-items:center;
justify-content:center;
padding:24px;
}

.cookie-modal-box{
width:min(460px,100%);
background:#12161d;
border-radius:24px;
padding:28px;
}

.cookie-toggle{
display:flex;
justify-content:space-between;
padding:14px 0;
border-top:1px solid rgba(255,255,255,.07);
color:#fff;
}

.cookie-modal-actions{
margin-top:20px;
display:flex;
gap:10px;
justify-content:flex-end;
}

@media(max-width:768px){

.cookie-content{
flex-direction:column;
align-items:flex-start;
}

.cookie-actions{
width:100%;
}

.cookie-btn{
flex:1;
}

}
.re-dot {
  color: #ff7a1a;
  font-weight: 800;
  letter-spacing: 0.04em;
}
/* TRUST STRIP */

.trust-strip-section{
padding:0 0 30px;
margin-top:-25px;
}

.trust-strip{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
background:rgba(255,255,255,.025);
border:1px solid rgba(255,255,255,.06);
border-radius:999px;
padding:14px 22px;
box-shadow:0 14px 34px rgba(0,0,0,.16);
}

.trust-strip span{
font-size:14px;
font-weight:700;
color:rgba(255,255,255,.78);
}

.trust-strip span::before{
content:"•";
color:#ff7a1a;
margin-right:8px;
}

@media(max-width:768px){

.trust-strip{
border-radius:22px;
padding:16px;
justify-content:flex-start;
}

}
.re-dot{
color:#ff7a1a;
font-weight:800;
}
/* Capability images unified premium tone */

.cap-card img{
filter:
brightness(1.18)
contrast(1.10)
saturate(1.03);
transform:scale(1.01);
}