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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #e5e7eb;
}

.body-no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  background-color: #000;
  color: #e5e7eb;
}

/* LOADER */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #111 0, #000 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-overlay.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.06), 0 30px 80px rgba(0, 0, 0, 0.9);
}

.loader-logo {
  width: 200px;
  max-width: 60vw;
  animation: loader-bounce 1.4s ease-in-out infinite;
}

@keyframes loader-bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(248, 113, 113, 0.0));
  }
  40% {
    transform: translateY(-8px) scale(1.03);
    filter: drop-shadow(0 0 22px rgba(248, 113, 113, 0.7));
  }
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR (sabit değil — topbar’dan sonra akışta, slider üstünde binmez) */
.navbar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
  padding: 1.5rem 0;
  transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  background: #000;
}

.navbar-scrolled {
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(10px);
  border-color: rgba(248, 250, 252, 0.12);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* TOP BAR */
.topbar {
  position: relative;
  z-index: 55;
  background: #020617;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.35rem 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.68rem;
  color: #e5e7eb;
}

.topbar-phone {
  font-weight: 500;
  color: #f9fafb;
}

.topbar-phone:hover {
  color: #f97373;
}

.topbar-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.6);
  background: rgba(6, 78, 59, 0.5);
  color: #bbf7d0;
  font-size: 0.7rem;
  font-weight: 600;
}

.topbar-whatsapp-icon {
  font-size: 0.95rem;
  color: #25d366;
}

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 0.75rem;
}

.topbar-market-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.topbar-market-btn:hover {
  background: #b91c1c;
  color: #fff;
  transform: scale(1.03);
}

.topbar-market-icon {
  margin-right: 0.4rem;
  font-size: 0.85em;
  vertical-align: -0.05em;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 7rem;
  height: 3rem;
  background-image: url("logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.logo-mark.small {
  width: 5rem;
  height: 2rem;
}

.logo-mark span {
  display: none;
}

.logo-text {
  display: none;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo-subtitle {
  margin-top: 0.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ef4444;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.nav-links a {
  color: #9ca3af;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #f9fafb;
}

/* Makineler dropdown */
.nav-item-dropdown {
  position: relative;
}
.nav-link-with-caret {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-caret {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}
.nav-item-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 60;
}
/* Tetikleyici ile menü arasında boşluk yok; fare geçişinde dropdown kapanmaz */
.nav-item-dropdown:hover .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  padding: 0.6rem 1rem;
  color: #d1d5db;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0.05em;
}
.nav-dropdown-menu a:hover {
  background: rgba(248, 250, 252, 0.08);
  color: #f9fafb;
}

/* Mobil menü Makineler grubu */
.mobile-menu-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}
.mobile-menu-sublink {
  padding-left: 1rem;
  font-size: 0.95rem;
  color: #d1d5db;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  border: none;
  padding: 0.6rem 1.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-pill:hover {
  background: #b91c1c;
  transform: scale(1.03);
}

.btn-pill:active {
  transform: scale(0.97);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.5rem;
  background: #f9fafb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  inset: 100% 0 auto 0;
  background: #000;
  border-bottom: 1px solid rgba(248, 250, 252, 0.1);
  display: none;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
  gap: 0.75rem;
}

.mobile-menu a {
  font-size: 1rem;
  color: #e5e7eb;
}

.mobile-menu .mobile-menu-market {
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.mobile-menu.open {
  display: flex;
}

.w-full {
  width: 100%;
}

.page-hero {
  padding: 3.5rem 0 3rem;
  background: #000;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 5.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* —— Tam genişlik anasayfa slider (tam ekran değil, geniş hero bandı) —— */
.hero-slider {
  padding-top: 0;
  min-height: unset;
  height: clamp(30rem, 72vh, 54rem);
  max-height: min(90vh, 960px);
  align-items: stretch;
}

.hero-slides {
  position: absolute;
  inset: 0;
  padding-top: 1.75rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s;
  display: flex;
  align-items: center;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 38%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}

.hero-slide-grid {
  z-index: 2;
  opacity: 0.06;
}

.hero-slide-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 3.25rem;
}

.hero-slide-content {
  max-width: 40rem;
}

.hero-slide-title:empty {
  display: none;
}

.hero-slider .hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  margin-bottom: 1.35rem;
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #f9fafb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.hero-slider-nav:hover {
  background: rgba(220, 38, 38, 0.5);
  border-color: rgba(248, 113, 113, 0.5);
}

.hero-slider-prev {
  left: 1rem;
}

.hero-slider-next {
  right: 1rem;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 3.25rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.35);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-slider-dot.is-active {
  background: #dc2626;
  border-color: #dc2626;
  transform: scale(1.2);
}

.hero-slider-scroll {
  z-index: 4;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero-slider-scroll:hover span {
  color: #f97373;
}

@media (max-width: 768px) {
  .hero-slider-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-slider-prev {
    left: 0.5rem;
  }

  .hero-slider-next {
    right: 0.5rem;
  }

  .hero-slider-dots {
    bottom: 2.75rem;
  }
}

.hero-bg-text {
  position: absolute;
  bottom: -20%;
  left: -5%;
  font-size: 24vw;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: rgba(249, 250, 251, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 0.9;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(#333 1px, transparent 1px),
    linear-gradient(90deg, #333 1px, transparent 1px);
  background-size: 100px 100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.hero-content {
  padding-top: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.eyebrow-line {
  width: 3rem;
  height: 1px;
  background: #dc2626;
}

.eyebrow span {
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #f97373;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  color: #f9fafb;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-title-gradient {
  background: linear-gradient(to right, #fff, #9ca3af, #4b5563);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #9ca3af;
  max-width: 30rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-subtitle-strong {
  color: #f9fafb;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  position: relative;
  border: none;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  padding: 1rem 2.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 250, 251, 0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateY(0%);
}

.hero-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.hero-ghost-link:hover {
  color: #f97373;
}

.hero-ghost-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  border-left: 1px solid rgba(248, 113, 113, 0.4);
  padding-left: 2rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.stat-value span {
  color: #dc2626;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #64748b;
  font-weight: 700;
}

.hero-media {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.08);
}

.hero-ring-1 {
  width: 120%;
  height: 120%;
}

.hero-ring-2 {
  width: 90%;
  height: 90%;
  border-style: dashed;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.12);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.hero-scanline {
  position: absolute;
  inset: -200% 0 auto 0;
  height: 20%;
  background: linear-gradient(to bottom, transparent, rgba(220, 38, 38, 0.18), transparent);
  animation: scan 4s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(1000%);
  }
}

.hero-tag {
  position: absolute;
  padding: 0.6rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.hero-tag span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.hero-tag .dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #dc2626;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.4);
}

.hero-tag-top {
  top: 1.75rem;
  left: 1.75rem;
}

.hero-tag-bottom {
  right: 1.75rem;
  bottom: 1.75rem;
}

.hero-tag .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.25);
  font-size: 0.7rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.24), transparent 60%);
  filter: blur(48px);
  z-index: -1;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.scroll-indicator span {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #6b7280;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, #dc2626, transparent);
}

/* GENERIC SECTIONS */
.section {
  padding: 6rem 0;
  background: #020617;
}

.section-alt {
  background: #050505;
  border-top: 1px solid rgba(249, 250, 251, 0.06);
  border-bottom: 1px solid rgba(249, 250, 251, 0.06);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.eyebrow-small {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #ef4444;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}

.section-text {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-body,
.about-body p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.max-320 {
  max-width: 20rem;
}

.max-640 {
  max-width: 40rem;
}

/* Yasal sayfalar (Gizlilik, Kullanım Şartları, KVKK) */
.legal-date {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 1rem;
}

.legal-content {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f9fafb;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.5rem 0 1.25rem 1.25rem;
  padding: 0;
  list-style: disc;
}

.legal-content li {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.legal-content .contact-link {
  color: #f97373;
  text-decoration: none;
}

.legal-content .contact-link:hover {
  color: #fca5a5;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-header.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header.center .section-title {
  margin-bottom: 1rem;
}

.section-header.center .section-text {
  margin-bottom: 0;
}

.section-header.center .section-text.center {
  text-align: center;
}

/* Kategori sekmeleri (makineler sayfası) */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.category-tab {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #9ca3af;
  background: rgba(248, 250, 252, 0.06);
  border: 1px solid rgba(248, 250, 252, 0.1);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.category-tab:hover {
  color: #f9fafb;
  background: rgba(248, 250, 252, 0.1);
  border-color: rgba(248, 250, 252, 0.18);
}
.category-tab.active {
  color: #fff;
  background: #dc2626;
  border-color: #dc2626;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.card {
  background: #09090b;
  border-radius: 1.25rem;
  border: 1px solid rgba(249, 250, 251, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  border-color: rgba(248, 113, 113, 0.5);
}

.card-image-wrapper {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-category {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #f97373;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.card-link {
  border: none;
  background: none;
  color: #f9fafb;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.card-link::after {
  content: "›";
  font-size: 0.9rem;
}

.card-link-wrap {
  text-decoration: none;
  color: inherit;
}

.card-link-wrap .card-link {
  cursor: inherit;
  pointer-events: none;
}

.card-link-wrap .card-link::after {
  content: "→";
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: #f97373;
}

.breadcrumb-sep {
  color: #4b5563;
  user-select: none;
}

/* MACHINE DETAIL — üst banner (FB kapak benzeri) */
.machine-detail-cover-wrap {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  background: #09090b;
}

.machine-detail-cover {
  width: 100%;
  max-height: min(42vw, 480px);
  aspect-ratio: 2.65 / 1;
  overflow: hidden;
}

@media (max-width: 768px) {
  .machine-detail-cover {
    max-height: min(52vw, 280px);
    aspect-ratio: 2 / 1;
  }
}

.machine-detail-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* MACHINE DETAIL — tek sütun: görseller + içerik üstte, form altta */
.machine-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
}

.machine-detail-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Ürün detay görsel slider */
.machine-detail-slider {
  position: relative;
  width: 100%;
}

.machine-detail-slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(249, 250, 251, 0.12);
  aspect-ratio: 16/10;
  background: #09090b;
}

.machine-detail-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.machine-detail-slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
}

button.machine-detail-image-wrapper.machine-zoom-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
  border-radius: 0;
}

.machine-detail-image-wrapper {
  border-radius: 1.25rem;
  overflow: hidden;
  border: none;
  background: #09090b;
}

.machine-detail-slider-slide .machine-detail-image-wrapper {
  border-radius: 0;
}

.machine-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-detail-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.65);
  color: #f9fafb;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.machine-detail-slider-nav:hover {
  background: rgba(249, 115, 115, 0.95);
  color: #fff;
}

.machine-detail-slider-prev {
  left: 0.65rem;
}

.machine-detail-slider-next {
  right: 0.65rem;
}

.machine-detail-slider-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.machine-detail-slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(249, 250, 251, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.machine-detail-slider-dot:hover {
  background: rgba(249, 250, 251, 0.45);
}

.machine-detail-slider-dot.is-active {
  background: #f97373;
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .machine-detail-slider-nav {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.25rem;
  }

  .machine-detail-slider-prev {
    left: 0.35rem;
  }

  .machine-detail-slider-next {
    right: 0.35rem;
  }
}

body.machine-lightbox-open {
  overflow: hidden;
}

.machine-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem 1rem;
  box-sizing: border-box;
}

.machine-lightbox.is-open {
  display: flex;
}

.machine-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.92);
  cursor: pointer;
}

.machine-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1400px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.machine-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f9fafb;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.machine-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.machine-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f9fafb;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.machine-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.machine-lightbox-prev {
  left: 0.75rem;
}

.machine-lightbox-next {
  right: 0.75rem;
}

@media (max-width: 640px) {
  .machine-lightbox-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.35rem;
  }

  .machine-lightbox-prev {
    left: 0.35rem;
  }

  .machine-lightbox-next {
    right: 0.35rem;
  }
}

.machine-detail-content .section-text {
  margin-bottom: 1rem;
}

.machine-description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.machine-description p {
  margin-bottom: 1rem;
}

.machine-description p:last-child {
  margin-bottom: 0;
}

.machine-description ul,
.machine-description ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.machine-description a {
  color: #f97373;
  text-decoration: underline;
}

.machine-description iframe {
  max-width: 100%;
  display: block;
  margin: 1.25rem 0;
  border: 0;
  border-radius: 0.5rem;
}

.machine-description table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.machine-description th,
.machine-description td {
  border: 1px solid rgba(249, 250, 251, 0.15);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.machine-specs {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(249, 250, 251, 0.1);
  background: rgba(15, 23, 42, 0.5);
}

.machine-specs-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f97373;
  margin-bottom: 1rem;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
}

.spec-row dt {
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 500;
  margin: 0;
}

.spec-row dd {
  font-size: 0.9rem;
  color: #f9fafb;
  font-weight: 600;
  margin: 0;
}

.machine-detail-form-wrap {
  position: static;
  width: 100%;
}

.machine-inquiry-form {
  padding: 2rem;
}

.machine-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

/* ABOUT */
.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(249, 250, 251, 0.12);
  background: rgba(15, 23, 42, 0.4);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(248, 113, 113, 0.6);
  background: rgba(15, 23, 42, 0.7);
}

.feature-icon {
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.6;
}

.about-media {
  position: relative;
}

.about-image-wrapper {
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.12);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  background: #dc2626;
  padding: 1.75rem 2.25rem;
  border-radius: 1.5rem;
  color: #f9fafb;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.about-badge-value {
  font-size: 2.25rem;
  font-weight: 900;
  font-style: italic;
}

.about-badge-label {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* REPRESENTATIVES */
.rep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.rep-card {
  padding: 0;
  border-radius: 1.25rem;
  border: 1px solid rgba(249, 250, 251, 0.12);
  background: rgba(15, 23, 42, 0.6);
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.rep-card:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-4px);
}

a.rep-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.rep-all-link {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
}
.rep-all-link:hover {
  color: #f9fafb;
}

.rep-logo-wrap {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.rep-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rep-back-link {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.rep-back-link:hover {
  color: #f97373;
}

.rep-detail-hero {
  text-align: left;
}

.rep-detail-logo-wrap {
  margin-bottom: 1.25rem;
}

.rep-detail-logo {
  max-height: 4.5rem;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.rep-detail-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ca3af;
  margin-top: 0.5rem;
}

.rep-detail-container {
  max-width: 720px;
}

.rep-detail-block {
  margin-bottom: 2.5rem;
}

.rep-detail-heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.rep-detail-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #e5e7eb;
}

.rep-detail-info {
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(249, 250, 251, 0.1);
  background: rgba(15, 23, 42, 0.5);
}

.rep-detail-gallery-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rep-detail-gallery-block {
  margin-bottom: 2.5rem;
}

.rep-gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.rep-gallery-stack-link {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.12);
  background: rgba(15, 23, 42, 0.65);
}

.rep-gallery-stack-frame {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.rep-gallery-stack-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.rep-detail-contact-card .rep-website-wrap {
  margin-top: 1rem;
}

.rep-website-btn {
  display: inline-block;
  font-weight: 600;
}

/* Temsilcilikler listesi: daha geniş sütunlar */
.rep-grid-page {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Anasayfa + liste: kart yalnızca görsel (kart genişliği = görsel genişliği) */
.rep-grid a.rep-card-link > .rep-logo-wrap-page {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rep-grid .rep-logo-wrap-page .rep-logo-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.rep-grid .rep-index-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(15, 23, 42, 0.85);
  font-size: 2.5rem;
  line-height: 1;
}

.rep-address {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.rep-contact {
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
}

.rep-contact-link {
  color: #f97373;
  transition: color 0.2s ease;
}

.rep-contact-link:hover {
  color: #fca5a5;
}

/* BLOG */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-all-link {
  border: none;
  background: none;
  color: #f97373;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.blog-card {
  cursor: pointer;
}

.blog-image-wrapper {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.12);
  margin-bottom: 1.1rem;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-date {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f97373;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f9fafb;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link .blog-title {
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.blog-card-link .card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f97373;
}

/* Blog yazı detay sayfası */
.blog-article-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-article-image-wrapper {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(249, 250, 251, 0.12);
}

.blog-article-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.blog-article-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-article-excerpt {
  font-size: 1.05rem;
  color: #d1d5db;
  line-height: 1.6;
  font-weight: 500;
}

.blog-article-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #e5e7eb;
}

.blog-article-body p {
  margin-bottom: 1rem;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f97373;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.blog-back-link:hover {
  color: #fca5a5;
}

.btn-ghost {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.contact-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.18);
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-icon-whatsapp {
  color: #25d366;
}

.contact-icon-whatsapp i {
  font-size: 1.5rem;
}

.contact-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-item p {
  font-size: 0.85rem;
  color: #9ca3af;
}

.contact-page-subtitle {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.contact-link {
  color: #f97373;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #fca5a5;
}

.contact-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-form-intro {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

/* Teklif Al sayfası — bilgi üstte, form altta */
.quote-page-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
}

.quote-page-info {
  position: static;
}

.quote-benefits {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #d1d5db;
}

.quote-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.quote-form-wrapper {
  max-width: 100%;
}

.form-select {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(249, 250, 251, 0.12);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  color: #f9fafb;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

.form-select:focus {
  border-color: #dc2626;
}

.form-select option {
  background: #0f172a;
  color: #f9fafb;
}

.contact-form-wrapper {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 1.75rem;
  border: 1px solid rgba(249, 250, 251, 0.12);
  padding: 2.25rem;
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #bbf7d0;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: #6b7280;
}

.form-field input,
.form-field textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(249, 250, 251, 0.12);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  color: #f9fafb;
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b7280;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #dc2626;
}

.full-width {
  width: 100%;
  margin-top: 0.75rem;
}

.form-field-captcha input {
  max-width: 8rem;
}

.captcha-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: #dc2626;
}

/* FOOTER */
.footer {
  background: #020617;
  border-top: 1px solid rgba(249, 250, 251, 0.12);
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.footer-text {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-contact {
  margin-top: 0.75rem;
}
.footer-contact-line {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.35rem;
}
.footer-contact-line:hover {
  color: #9ca3af;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.12);
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  color: #f9fafb;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: #6b7280;
}

.newsletter-form {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.newsletter-form input {
  flex: 1;
  border-radius: 0.6rem;
  border: 1px solid rgba(249, 250, 251, 0.12);
  background: rgba(15, 23, 42, 0.7);
  padding: 0.5rem 0.7rem;
  font-size: 0.8rem;
  color: #f9fafb;
}

.newsletter-form button {
  border-radius: 0.6rem;
  border: none;
  padding: 0.5rem 0.85rem;
  background: #dc2626;
  color: #f9fafb;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-message {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.newsletter-success { color: #86efac; }
.newsletter-notice { color: #fcd34d; }
.newsletter-error { color: #f87171; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(249, 250, 251, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.7rem;
  color: #4b5563;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #4b5563;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-tag {
    display: inline-flex;
  }

  .about-badge {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .hero-inner,
  .section-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
    margin-bottom: 2rem;
  }

  .hero-stats {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(248, 113, 113, 0.4);
    padding-top: 1.5rem;
  }

  .about-badge {
    right: 1rem;
    bottom: -2rem;
  }

}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 4rem 0;
  }

  .section-header,
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-wrapper {
    padding: 1.75rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Form başarı modalı */
body.site-modal-open {
  overflow: hidden;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: site-modal-in 0.28s ease-out;
}

.site-modal.site-modal-closing {
  animation: site-modal-out 0.22s ease-in forwards;
}

@keyframes site-modal-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes site-modal-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.site-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(165deg, rgba(17, 24, 39, 0.98) 0%, rgba(15, 23, 42, 0.99) 100%);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  text-align: center;
}

.site-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-modal-close:hover {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.site-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.site-modal-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 0 1.5rem;
}

.site-modal-btn {
  min-width: 8rem;
}

