/* RumiSoft — koyu kozmik tema, cam efektleri, camgöbeği vurgular */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --void: #050508;
  --space: #0a0e14;
  --nebula: #0d1520;
  --glass: rgba(15, 23, 42, 0.55);
  --glass-border: rgba(34, 211, 238, 0.22);
  --cyan: #22d3ee;
  --cyan-dim: #06b6d4;
  --cyan-glow: rgba(34, 211, 238, 0.45);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --header-h: 72px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background-color: var(--void);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(6, 182, 212, 0.16), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(34, 211, 238, 0.06), transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(6, 182, 212, 0.08), transparent 40%),
    linear-gradient(180deg, var(--void) 0%, var(--space) 100%);
  background-attachment: fixed;
}

h1, h2, h3, .logo {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: var(--void);
  padding: 8px 16px;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.38);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(251, 191, 36, 0.08);
}

.site-nav.container { position: relative; }

nav.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--header-h);
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fbbf24;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.4));
}

.logo:hover {
  color: #fcd34d;
}

.logo:hover .logo__mark {
  filter: drop-shadow(0 0 14px rgba(251, 191, 36, 0.5));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}
.nav-toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fcd34d;
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.35);
}

.nav-links .nav-lang {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-size: 0.8rem;
  font-weight: 600;
}
.nav-links .nav-lang[aria-current="true"] {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.12);
}
.nav-links .nav-lang--muted {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.nav-lang-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-lang-sep {
  opacity: 0.45;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Hero (ana sayfa) */
.hero-cosmic {
  position: relative;
  padding: clamp(40px, 7vw, 80px) 0 clamp(20px, 3.5vw, 36px);
  overflow: hidden;
}

.hero-cosmic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 70% 30%, rgba(34, 211, 238, 0.12), transparent 55%);
  pointer-events: none;
}

/* Tek geniş panel: SVG tam genişlik, metin içerde solda */
.hero-cosmic__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 46vw, 460px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.4);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 72px rgba(251, 191, 36, 0.14);
}

.hero-cosmic__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--nebula);
}

.hero-cosmic__bg .hero-cosmic__svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.12));
}

.hero-cosmic__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(5, 6, 10, 0.97) 0%,
    rgba(5, 8, 14, 0.82) 36%,
    rgba(5, 8, 14, 0.38) 58%,
    rgba(5, 8, 14, 0.08) 78%,
    transparent 100%
  );
}

.hero-cosmic__copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.75rem, 4.5vw, 3rem) clamp(1.5rem, 4vw, 3.25rem);
  max-width: min(34rem, 52%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

@media (max-width: 720px) {
  .hero-cosmic__panel {
    min-height: clamp(340px, 88vw, 420px);
    align-items: flex-end;
  }

  .hero-cosmic__scrim {
    background: linear-gradient(
      180deg,
      rgba(5, 6, 10, 0.97) 0%,
      rgba(5, 8, 14, 0.78) 42%,
      rgba(5, 8, 14, 0.35) 100%
    );
  }

  .hero-cosmic__copy {
    max-width: none;
    width: 100%;
    padding-bottom: clamp(1.75rem, 5vw, 2.5rem);
  }
}

.hero-cosmic__copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(34, 211, 238, 0.25);
}

.hero-cosmic__tagline {
  font-size: 1.05rem;
  color: rgba(226, 232, 240, 0.88);
  margin-bottom: 28px;
  max-width: 36rem;
}

.hero-cosmic__copy .btn {
  align-self: flex-start;
}

.hero-cosmic__copy .btn--primary {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: var(--void);
  border-color: rgba(120, 53, 15, 0.5);
  box-shadow: 0 4px 28px rgba(251, 191, 36, 0.42), 0 0 28px rgba(217, 119, 6, 0.2);
}

.hero-cosmic__copy .btn--primary:hover {
  border-color: rgba(252, 211, 77, 0.75);
  box-shadow: 0 8px 36px rgba(251, 191, 36, 0.52), 0 0 24px rgba(217, 119, 6, 0.22);
}

.hero-cosmic__copy .btn:focus-visible {
  outline-color: #f59e0b;
}

/* Hero ile Urunler arasi: ~1cm bosluk + ince amber cizgi */
.hero-products-gap {
  padding: calc(0.5cm - 0.5px) 0;
}

.hero-amber-rule {
  height: 1px;
  border-radius: 1px;
  background: rgba(251, 191, 36, 0.88);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}

/* Bölüm başlıkları */
.section-cosmic {
  position: relative;
  padding: 72px 0;
}

#hizmetler .section-cosmic__head--center .section-intro,
#teknolojiler .section-cosmic__head--center .section-intro {
  max-width: 42rem;
  margin-bottom: 28px;
}

#teknolojiler.section-cosmic {
  padding-bottom: 0;
}

.cta-band--after-tech {
  padding-top: clamp(18px, 3vw, 28px);
  border-top: none;
}

.section-cosmic--alt {
  background: linear-gradient(180deg, transparent, rgba(13, 21, 32, 0.5), transparent);
}

.section-cosmic h2 {
  font-size: clamp(1.65rem, 3vw, 2rem);
  margin-bottom: 12px;
  color: var(--text);
}

.section-cosmic .section-intro {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  font-size: 1.02rem;
}

.section-cosmic__head--center {
  text-align: center;
}

.section-cosmic__head--center h2 {
  margin-bottom: 10px;
}

.section-cosmic__head--center .section-intro {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

/* Ürün şeridi: 4 sütun görünür, fazlası yatay kaydırma */
.apps-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 0.7rem) / 4);
  gap: 0.7rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 6px 2px 12px;
  margin: 0 -2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 211, 238, 0.4) rgba(8, 12, 18, 0.5);
}

.apps-track::-webkit-scrollbar {
  height: 7px;
}

.apps-track::-webkit-scrollbar-track {
  background: rgba(8, 12, 18, 0.45);
  border-radius: 99px;
}

.apps-track::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.35);
  border-radius: 99px;
}

/* Dar ekran: yatay şerit yerine hizmetler bölümü gibi kutu grid */
@media (max-width: 900px) {
  .apps-track {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
  }
}

@media (max-width: 520px) {
  .apps-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .apps-track .app-card {
    padding: 20px 22px;
  }

  .apps-track .app-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .apps-track .app-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    -webkit-line-clamp: 8;
    margin-bottom: 14px;
  }

  .apps-track .app-card__visual {
    margin: 0 0 14px;
  }

  .apps-track .app-card__visual--product {
    height: clamp(148px, 48vw, 220px);
  }
}

.app-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  scroll-snap-align: start;
  min-width: 0;
}

.apps-track .app-card {
  padding: 12px 13px;
  border-radius: var(--radius-sm);
}

a.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(34, 211, 238, 0.15);
}

.apps-track a.app-card:hover {
  transform: translateY(-3px);
}

.app-card__icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.35));
}

/* Ürün kartı görselleri (images/products/*.svg) */
.app-card__visual {
  width: 100%;
  margin: 0 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 28px rgba(0, 0, 0, 0.35);
  background-color: rgba(6, 10, 16, 0.92);
  overflow: hidden;
}

.apps-track .app-card__visual {
  margin: 0 0 10px;
}

.app-card__visual--product {
  padding: 0;
  line-height: 0;
}

.app-card__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.apps-track .app-card__visual--product {
  height: clamp(96px, 15vw, 136px);
}

a.app-card:hover .app-card__visual--product {
  box-shadow:
    inset 0 0 0 1px rgba(34, 211, 238, 0.22),
    0 12px 36px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(34, 211, 238, 0.12);
}

.app-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.apps-track .app-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.25;
}

.app-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
}

.apps-track .app-card p {
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-card .btn {
  align-self: flex-start;
  pointer-events: none;
}

a.app-card .btn {
  pointer-events: none;
}

/* Urunler (#uygulamalar): amber accent on cards only */
#uygulamalar .apps-track {
  scrollbar-color: rgba(251, 191, 36, 0.45) rgba(8, 12, 18, 0.5);
}

#uygulamalar .apps-track::-webkit-scrollbar-thumb {
  background: rgba(251, 191, 36, 0.4);
}

#uygulamalar a.app-card:hover {
  border-color: rgba(251, 191, 36, 0.52);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(251, 191, 36, 0.18);
}

#uygulamalar a.app-card:hover .app-card__visual--product {
  box-shadow:
    inset 0 0 0 1px rgba(251, 191, 36, 0.26),
    0 12px 36px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(217, 119, 6, 0.14);
}

#uygulamalar.section-cosmic {
  padding-top: 18px;
  padding-bottom: 0;
}

#hizmetler.section-cosmic {
  padding-top: 0;
}

#uygulamalar .btn:focus-visible {
  outline-color: #f59e0b;
}

#uygulamalar .btn--primary {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: var(--void);
  border-color: rgba(120, 53, 15, 0.45);
  box-shadow: 0 4px 24px rgba(251, 191, 36, 0.38), 0 0 24px rgba(217, 119, 6, 0.2);
}

#uygulamalar .btn--primary:hover {
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.48);
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid rgba(251, 191, 36, 0.52);
  font-family: var(--font-body);
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dim) 100%);
  color: var(--void);
  border-color: rgba(251, 191, 36, 0.58);
  box-shadow: 0 4px 24px rgba(34, 211, 238, 0.35), 0 0 24px rgba(34, 211, 238, 0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 211, 77, 0.75);
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.45), 0 0 20px rgba(251, 191, 36, 0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(251, 191, 36, 0.48);
}

.btn--ghost:hover {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(252, 211, 77, 0.65);
  color: var(--text);
}

.btn--compact {
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Eski proje / özellik grid (iç sayfalar) */
.section.page-section {
  padding: 56px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.project-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.project-card__body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}

.project-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex: 1;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.feature-pills span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-grid--six {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .feature-grid--six {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .feature-grid--six {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 24px;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-left: 3px solid #d97706;
  box-shadow: inset 0 1px 0 rgba(251, 191, 36, 0.06);
}

.feature-card:hover {
  border-color: rgba(251, 191, 36, 0.38);
  border-left-color: #fbbf24;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.feature-card .icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

/* Teknoloji logosu seridi (16 logo, tek satir, yatay kaydirma yok) */
.tech-logo-strip {
  overflow: visible;
  margin: 0;
  padding: 6px 0 2px;
}

.tech-logo-strip__track {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: center;
  gap: clamp(3px, 1vw, 10px);
  width: 100%;
  max-width: 100%;
  padding: 8px 0 10px;
  margin: 0;
  list-style: none;
}

.tech-logo-strip__track li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.tech-logo-strip__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: clamp(18px, 3.8vw, 28px);
  object-fit: contain;
  object-position: center;
  opacity: 0.94;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tech-logo-strip__img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Proje detay — ekran blokları */
.project-page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 8px;
}

.project-page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--text);
  margin-bottom: 12px;
}

.project-page-hero .tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
}

.project-page-hero .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.screenshot-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--glass-border);
}

.screenshot-block:last-of-type {
  border-bottom: none;
}

.screenshot-block--reverse .shot-wrap { order: 2; }
.screenshot-block--reverse .screenshot-block__text { order: 1; }

@media (max-width: 900px) {
  .screenshot-block { grid-template-columns: 1fr; }
  .screenshot-block--reverse .shot-wrap,
  .screenshot-block--reverse .screenshot-block__text { order: unset; }
}

.shot-wrap {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: var(--nebula);
}

.shot-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-block__text h2 {
  font-size: 1.45rem;
  color: var(--text);
  margin-bottom: 12px;
}

.screenshot-block__text p,
.screenshot-block__text ul {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.screenshot-block__text ul {
  margin: 12px 0 0 1.1rem;
}

.screenshot-block__text li { margin-bottom: 6px; }

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.shot {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

.shot figcaption {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--text-dim);
  background: rgba(5, 5, 8, 0.65);
}

.spec-list {
  list-style: none;
  margin: 24px 0;
}

.spec-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
  position: relative;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}

.cta-band {
  background: linear-gradient(135deg, var(--nebula) 0%, var(--void) 100%);
  color: var(--text-muted);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.cta-band h2 {
  font-size: 1.65rem;
  margin-bottom: 10px;
  color: var(--text);
}

.cta-band p {
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn--ghost {
  color: var(--text);
  border-color: rgba(251, 191, 36, 0.48);
}

.cta-band .btn--ghost:hover {
  border-color: rgba(252, 211, 77, 0.65);
}

/* Footer */
footer.site-footer {
  background: var(--void);
  color: var(--text-dim);
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--cyan);
}

.copyright {
  font-size: 0.88rem;
  margin-top: 16px;
  opacity: 0.9;
}

.footer-note {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Yasal / içerik */
main.legal {
  padding: 32px 0 72px;
}

.legal h1 {
  font-size: 2rem;
  margin: 24px 0 12px;
  color: var(--text);
}

.legal .updated {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.legal h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--cyan);
}

.legal h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--text);
}

.legal p {
  margin-bottom: 14px;
  color: var(--text-muted);
}

.legal ul {
  margin: 0 0 14px 22px;
  color: var(--text-muted);
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--cyan);
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

.legal hr {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin: 28px 0;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.92rem;
}

.legal th,
.legal td {
  border: 1px solid var(--glass-border);
  padding: 10px 12px;
  text-align: left;
}

.legal th {
  background: rgba(34, 211, 238, 0.08);
  color: var(--text);
}

.legal td {
  color: var(--text-muted);
}

.legal .disclaimer {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 32px;
}

/* Uygulama hub */
.app-hub {
  padding: 40px 0 72px;
}

.app-hub__intro {
  max-width: 640px;
  margin-bottom: 32px;
}

.app-hub__intro h1 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin-bottom: 12px;
  color: var(--text);
}

.app-hub__intro p {
  color: var(--text-muted);
}

.app-hub__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 20px 0 0;
}

.breadcrumb a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Masthead legacy — kaldırıldı ana sayfadan; varsa koyu uyum */
.masthead {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.masthead__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 200px;
  max-height: min(38vh, 320px);
}

@media (max-width: 768px) {
  .masthead__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }
}

.masthead__cell {
  position: relative;
  overflow: hidden;
}

.masthead__cell img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.masthead__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    105deg,
    rgba(5, 8, 12, 0.94) 0%,
    rgba(5, 8, 12, 0.75) 45%,
    rgba(6, 182, 212, 0.2) 100%
  );
  padding: clamp(24px, 4vw, 3rem) 0;
}

.masthead__inner { max-width: 560px; }
.masthead__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.masthead h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.masthead__lead {
  font-size: 0.98rem;
  color: rgba(241, 245, 249, 0.92);
  margin-bottom: 14px;
}

.masthead__features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(241, 245, 249, 0.95);
}

.masthead__features li {
  position: relative;
  padding-left: 1.25rem;
}

.masthead__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.masthead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.masthead__btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.masthead__btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero {
  padding: 64px 0;
  background: transparent;
}

.hero::before {
  display: none;
}

.hero h1 {
  color: var(--text);
}

.hero h1 span {
  color: var(--cyan);
}

.hero .lead {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(10, 14, 20, 0.96);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
    gap: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
