/* Bilgi ve Teknoloji — genel anasayfa (SOM teması ile uyumlu) */

.landing-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--som-font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.landing-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.landing-skip:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  z-index: 3000;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.landing-nav.is-scrolled {
  box-shadow: var(--shadow-md);
}

.landing-nav__inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-nav .landing-logo {
  flex-shrink: 0;
}

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

/* <img class="landing-logo__icon"> — font-size kuralı görseli şişiriyordu */
.landing-logo__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transition: transform 0.26s ease;
}

.landing-logo__text {
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-logo__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: min-content;
}

.landing-logo__text--wordmark {
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1e1b4b;
  background: linear-gradient(90deg, #1e3a8a 0%, #4338ca 45%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(0.82rem, 1.35vw, 1.08rem);
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(30, 58, 138, 0.35), 0 2px 10px rgba(67, 56, 202, 0.18);
}

.landing-logo__text--wordmark::before,
.landing-logo__text--wordmark::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(29, 78, 216, 0) 0%,
    rgba(37, 99, 235, 0.28) 22%,
    rgba(56, 189, 248, 0.55) 50%,
    rgba(37, 99, 235, 0.28) 78%,
    rgba(29, 78, 216, 0) 100%
  );
  opacity: 0.72;
  box-shadow: 0 0 3px rgba(56, 189, 248, 0.16);
  transition: width var(--transition-base, 0.25s ease), opacity 0.28s ease, box-shadow 0.28s ease;
}

.landing-logo__text--wordmark::before {
  top: 0;
}

.landing-logo__text--wordmark::after {
  bottom: 0;
}

.landing-logo:hover .landing-logo__icon {
  transform: scale(1.12);
}

.landing-logo:hover .landing-logo__text--wordmark::before,
.landing-logo:hover .landing-logo__text--wordmark::after {
  width: 100%;
  opacity: 1;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.24);
}

.landing-logo__tagline {
  margin-top: 3px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #94a3b8;
  font-weight: 600;
  white-space: nowrap;
}

.landing-menu__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 2;
}

.landing-menu__dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  margin-top: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.22s;
  z-index: 1200;
}

.landing-menu__dropdown-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: #0f172a;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
}

.landing-menu__dropdown-panel a::after {
  display: none;
}

.landing-menu__dropdown-panel a:hover {
  background: #f1f5f9;
  color: #1d4ed8;
}

.landing-menu__dropdown:hover .landing-menu__dropdown-panel,
.landing-menu__dropdown:focus-within .landing-menu__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.landing-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.landing-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
}

.landing-menu a:hover {
  color: var(--primary);
}

.landing-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #7c3aed);
  transition: width var(--transition-base);
}

.landing-menu a:hover::after {
  width: 100%;
}

.landing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.landing-btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border-strong);
}

.landing-btn--ghost:hover {
  border-color: var(--primary);
  background: var(--primary-muted);
}

.landing-btn--primary {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.landing-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.landing-user {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: min(160px, 28vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-self: center;
}

/* İstatistik şeridi — ekran görüntüsü ile uyumlu (gradient metin + overflow çakışması yok) */
.landing-stats {
  margin-top: 64px;
  padding: 56px clamp(16px, 4vw, 32px) 64px;
  position: relative;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.landing-stats__inner {
  max-width: min(1200px, var(--wrap-max, 1200px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.landing-stats__scroll {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.landing-stat-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid #eef2f7;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  /* overflow: hidden KULLANMA — background-clip:text sayıları görünmez yapar */
  overflow: visible;
}

.landing-stat-card:hover {
  transform: translateY(-4px);
  border-color: #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.landing-stat-card .stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.14);
}

.landing-stat-card .stat-icon svg {
  width: 26px;
  height: 26px;
  color: #2563eb;
  flex-shrink: 0;
}

/* Düz koyu sayı (ilk 3 kart) — gradient yok */
.landing-stat-card__value {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
  transition: transform 0.2s ease;
}

.landing-stat-card__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 8px;
}

.landing-stat-card__sub {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.45;
}

.landing-stat-card--accent {
  background: #fff;
  border-color: #eef2f7;
}

/* Yalnızca 4. kart: indigo → mor gradient sayı */
.landing-stat-card--accent .landing-stat-card__value {
  background: linear-gradient(90deg, #4f46e5 0%, #9333ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.landing-stat-card--accent .stat-icon {
  background: rgba(147, 51, 234, 0.12);
}

.landing-stat-card--accent .stat-icon svg {
  color: #7c3aed;
}

@media (max-width: 1024px) {
  .landing-stats__scroll {
    flex-wrap: wrap;
  }
  .landing-stat-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .landing-stats {
    padding: 44px 16px 48px;
  }
  .landing-stat-card {
    padding: 28px 18px;
  }
  .landing-stat-card__value {
    font-size: 2.25rem;
  }
}

@media (max-width: 520px) {
  .landing-stat-card {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: none;
  }
}

.landing-slider {
  margin-top: 0;
  position: relative;
  height: min(420px, 70vh);
  overflow: hidden;
}

.landing-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.landing-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.landing-slide:nth-child(1) {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.landing-slide:nth-child(2) {
  background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 100%);
}

.landing-slide:nth-child(3) {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
}

.landing-slide__inner {
  max-width: 900px;
  color: #f8fafc;
}

.landing-slide__inner h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}

.landing-slide__inner p {
  font-size: 1rem;
  opacity: 0.92;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.landing-slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), gap var(--transition-fast);
}

.landing-slide__btn:hover {
  transform: translateY(-2px);
  gap: 12px;
}

button.landing-slide__btn {
  font: inherit;
  cursor: pointer;
  border: none;
}

.landing-chip {
  display: inline-block;
  margin: 2px 4px 2px 0;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.landing-chip--ok {
  background: var(--success-light);
  color: var(--success);
}

.landing-chip--warn {
  background: var(--warning-light);
  color: var(--warning);
}

.landing-chip--bad {
  background: var(--danger-light);
  color: var(--danger);
}

.landing-chip--muted {
  background: var(--bg-secondary);
  color: var(--muted);
}

.landing-chip--info {
  background: var(--info-light);
  color: var(--info);
}

/* Auth modals */
.landing-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.landing-modal.is-open {
  display: flex;
}

.landing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.landing-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 24px 24px 20px;
}

.landing-modal__box--wide {
  max-width: 460px;
}

.landing-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.landing-modal__close:hover {
  background: var(--border);
}

.landing-modal__box h2 {
  font-size: 1.2rem;
  margin: 0 32px 16px 0;
  color: var(--text);
}

.landing-modal__err {
  background: var(--danger-light);
  color: var(--danger);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.landing-modal__ok {
  background: var(--success-light);
  color: var(--success);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.landing-modal .landing-field {
  margin-bottom: 12px;
}

.landing-modal label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}

.landing-modal input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.landing-modal input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-muted);
}

.landing-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
  flex-wrap: wrap;
}

.landing-modal__foot {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.landing-modal__foot a {
  font-weight: 600;
}

.landing-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.landing-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.landing-slider__dot.is-active {
  width: 26px;
  background: #fff;
}

.landing-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.landing-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.landing-slider__arrow--prev {
  left: 16px;
}

.landing-slider__arrow--next {
  right: 16px;
}

.landing-section {
  padding: clamp(48px, 8vw, 88px) clamp(16px, 4vw, 32px);
}

.landing-section--white {
  background: var(--bg-elevated);
}

.landing-section--muted {
  background: var(--bg);
}

.landing-wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
}

.landing-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.landing-section__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.landing-section__head p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.landing-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.landing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.landing-card__head {
  padding: 14px 20px;
  background: var(--header-bg);
  color: var(--header-text);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.landing-card__body {
  padding: 0;
}

.landing-table-wrap {
  overflow-x: auto;
}

.landing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.landing-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--bg-secondary);
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}

.landing-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.landing-table code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  word-break: break-all;
}

.landing-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
}

.landing-badge--bad {
  background: var(--danger-light);
  color: var(--danger);
}

.landing-badge--warn {
  background: var(--warning-light);
  color: var(--warning);
}

.landing-badge--ok {
  background: var(--success-light);
  color: var(--success);
}

.landing-badge--muted {
  background: var(--bg-secondary);
  color: var(--muted);
}

.landing-search-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.landing-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.landing-search-row input[type="text"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
}

.landing-search-row input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-muted);
}

.landing-search-row select {
  padding: 12px 18px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  font-size: 0.9rem;
  cursor: pointer;
}

.landing-map {
  height: 320px;
  width: 100%;
}

.landing-map-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.landing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.landing-feature {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.landing-feature h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.landing-feature p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Anasayfa — Ürünler bölümü CTA şeridi ve kutuları */
.landing-urun-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.landing-urun-cta-strip__main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.landing-urun-cta-strip__hint {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 36rem;
  text-align: center;
  line-height: 1.45;
}

.landing-urun-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
}

.landing-urun-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 22px 20px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.landing-urun-cta h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.landing-urun-cta h3 i,
.landing-urun-cta h3 svg {
  flex-shrink: 0;
  color: var(--primary);
}

.landing-urun-cta p {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.landing-urun-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.landing-urun-cta__actions .landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.landing-urun-cta__note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  flex: 1 1 100%;
}

.landing-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.landing-news article {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--bg-elevated);
}

.landing-news h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.landing-news p {
  font-size: 0.85rem;
  color: var(--muted);
}

.landing-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 48px clamp(16px, 4vw, 32px) 24px;
}

.landing-footer a {
  color: #94a3b8;
}

.landing-footer a:hover {
  color: #fff;
}

.landing-footer__linkbtn {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
  padding: 0;
  border: none;
  background: none;
  color: #94a3b8;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.landing-footer__linkbtn:hover {
  color: #fff;
}

.landing-footer .landing-logo {
  color: #f8fafc;
  text-decoration: none;
}

.landing-footer .landing-logo__text {
  background: none;
  -webkit-text-fill-color: #f8fafc;
  color: #f8fafc;
}

.landing-footer .landing-logo__text--wordmark {
  background: none;
  -webkit-text-fill-color: #7dd3fc;
  color: #7dd3fc;
  text-shadow: none;
}

.landing-footer .landing-logo__text--wordmark::before,
.landing-footer .landing-logo__text--wordmark::after {
  content: none;
  display: none;
}

.landing-footer .landing-logo__tagline {
  color: #cbd5e1;
}

.landing-footer__grid {
  max-width: var(--wrap-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.landing-footer__bottom {
  max-width: var(--wrap-max);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #334155;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
}

.landing-burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 960px) {
  .landing-grid-2 {
    grid-template-columns: 1fr;
  }

  .landing-features,
  .landing-urun-cta-grid,
  .landing-news,
  .landing-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .landing-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 12px;
  }

  .landing-menu.is-open {
    display: flex;
  }

  .landing-burger {
    display: block;
  }

  /* Açık mobil menüde alt menü taşmasın */
  .landing-menu.is-open .landing-menu__dropdown {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .landing-menu.is-open .landing-menu__dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
    width: 100%;
    transition: none;
  }

  .landing-slider__arrow {
    display: none;
  }
}
