:root {
  --header-height: 64px;
  --footer-bg: #0369a1;
  --footer-text: #e6f7ff;
  --footer-highlight: #ffffff;
  --footer-heading: #ffffff;
  --divider-color: rgba(255, 255, 255, 0.35);
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #f8fafc;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

main {
  display: block;
  margin: 0;
  flex: 1;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
  background-color: #ffffff;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  justify-self: start;
}

.brand img {
  display: block;
  max-height: 96px;
  width: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  justify-self: center;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  position: relative;
}

.nav-link-dropdown::after {
  content: "▼";
  font-size: 0.7rem;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-link-dropdown::after {
  transform: rotate(180deg);
}

.nav-item-dropdown.active .nav-link-dropdown {
  color: #2563eb;
}

.nav-item-dropdown.active .nav-link-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  border-radius: 999px;
  background-color: #2563eb;
  margin-left: 0;
  transform: none;
  width: 100%;
}

.nav-item-dropdown.active .nav-link-dropdown {
  padding-right: 20px;
}

.nav-item-dropdown.active .nav-link-dropdown::before {
  content: "▼";
  font-size: 0.7rem;
  margin-left: 6px;
  display: inline-block;
  position: absolute;
  right: 0;
  transition: transform 0.2s ease;
}

.nav-item-dropdown.active:hover .nav-link-dropdown::before {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #1e293b;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #2563eb;
}

.nav-link.active {
  color: #2563eb;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  border-radius: 999px;
  background-color: #2563eb;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  justify-self: end;
  margin-left: 24px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
}

.icon-button img {
  height: 100%;
  width: auto;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background-color: transparent;
  color: #1e293b;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.search-button svg {
  width: 20px;
  height: 20px;
}

.search-button:hover {
  background-color: #f1f5f9;
  color: #2563eb;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 10px;
  border: none;
  background-color: transparent;
  color: #0f172a;
  font-size: 0;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-text {
  display: none;
  white-space: nowrap;
}

.contact-button::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.95 21q-3.125 0-6.162-1.325T8.275 16.05q-2.475-2.475-3.8-5.5T3.15 4.4q0-.55.363-.975t.912-.475l2.4-.3q.525-.075.95.2t.575.75l1.1 3.65q.125.45.025.825t-.4.675l-1.85 1.85q.45.825.975 1.613T9.45 13.75q.55.55 1.212 1.05t1.388.9l1.75-1.75q.3-.3.725-.425t.825-.025l3.55 1.2q.475.15.75.55t.2.925l-.25 2.35q-.05.55-.475.913T19.95 21Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.95 21q-3.125 0-6.162-1.325T8.275 16.05q-2.475-2.475-3.8-5.5T3.15 4.4q0-.55.363-.975t.912-.475l2.4-.3q.525-.075.95.2t.575.75l1.1 3.65q.125.45.025.825t-.4.675l-1.85 1.85q.45.825.975 1.613T9.45 13.75q.55.55 1.212 1.05t1.388.9l1.75-1.75q.3-.3.725-.425t.825-.025l3.55 1.2q.475.15.75.55t.2.925l-.25 2.35q-.05.55-.475.913T19.95 21Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-button:hover,
.contact-button:focus-visible {
  color: #2563eb;
  outline: none;
}

.hero {
  position: relative;
  width: 100%;
  /* Sadece gerekirse uzasın; hero içinde ayrı scroll alanı oluşmasın */
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  height: auto;
  margin-top: 0;
  padding: clamp(24px, 5vh, 48px) clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* İçerik ekranı taşsa bile, hero kendi içinde scroll bar açmasın */
  overflow: visible;
  background: #0369a1;
  box-sizing: border-box;
}

.hero-inner {
  width: min(1600px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
  /* İçeriğe göre uzasın; sabit yükseklik yok */
  min-height: auto;
  height: auto;
  overflow-x: hidden;
  max-width: 100vw;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 36px);
  justify-content: center;
  animation: slideInFromLeft 0.8s ease-out;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-slogan {
  display: grid;
  gap: 12px;
  color: #e2e8f0;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-slogan::before {
  display: none;
}

.hero-slogan-line {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-transform: none;
  color: rgba(226, 232, 240, 0.9);
}

.hero-slogan-line:not(.hero-slogan-line-primary) {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

.hero-slogan-line-primary {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0.01em;
  color: #3b82f6;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-slogan--left {
  grid-column: 1;
  justify-items: start;
  text-align: left;
}

.hero-slogan--right {
  grid-column: 3;
  justify-items: end;
  text-align: right;
}

.hero-tabs {
  display: flex;
  flex-direction: column; /* Masaüstü ve geniş ekranlarda kategoriler alt alta */
  align-items: stretch;
  gap: 12px;
  padding: 0;
  margin-bottom: clamp(16px, 3vh, 24px);
  overflow: visible; /* Masaüstünde yatay scroll olmasın */
}

.hero-tabs::-webkit-scrollbar {
  height: 6px;
  display: none; /* Masaüstünde scrollbar gösterme; mobilde media query ile açılacak */
}

.hero-tabs::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 10px;
}

.hero-tabs::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.5);
  border-radius: 10px;
}

.hero-tabs::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.7);
}

.hero-tabs-hint {
  margin: 0;
  margin-top: 4px;
  margin-bottom: 0; /* Yeşil buton ve boyut alanına daha fazla yaklaşsın */
  text-align: center;
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.8);
  letter-spacing: 0.03em;
  display: none;
}

.hero-tabs-hint + .hero-sizes {
  margin-top: clamp(4px, 0.8vh, 10px); /* “Daha fazla bilgi al” ve boyutlara iyice yaklaştır */
}

.hero-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;        /* Masaüstünde tüm butonlar aynı genişlikte */
  min-width: 0;
  flex-shrink: 1;
  padding: 14px 20px;
  border-radius: 16px;
  border: 2px solid rgba(148, 163, 184, 0.15);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  color: #e2e8f0;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 500;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  overflow: visible;
}

.hero-tab-text {
  display: block;
  width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
}

.hero-tab-tag {
  position: absolute;
  top: -4px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: #ffffff;
  font-size: 9px;
  font-weight: 600;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  z-index: 5;
  white-space: nowrap;
}

.hero-tab:hover,
.hero-tab:focus-visible {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(37, 99, 235, 0.25);
  color: #f8fafc;
  outline: none;
}

.hero-tab.is-active {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  border-color: rgba(96, 165, 250, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(96, 165, 250, 0.2);
}

.hero-tab.is-active .hero-tab-tag {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vh, 32px);
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border: none;
  overflow: hidden; /* Hero içindeki dikey scroll'u engelle */
  box-sizing: border-box;
  height: 100%;
  animation: slideInFromRight 0.8s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden; /* Video kolonunda iç scroll bar oluşmasını engelle */
}

.hero-media-stage {
  width: min(680px, 60vw);
  aspect-ratio: 3 / 4;
  max-height: min(700px, calc(100vh - var(--header-height) - clamp(100px, 8vh, 160px)));
  max-height: min(700px, calc(100svh - var(--header-height) - clamp(100px, 8vh, 160px)));
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  margin: 0;
  margin-left: 0;
}

.hero-media-stage img,
.hero-media-stage video,
.hero-media-stage iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

.hero-media-stage video {
  background-color: #000000;
  object-fit: contain;
}

.hero-media-stage iframe {
  border: 0;
  background-color: #000000;
}

.hero-media-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%);
}

.hero-media-nav--prev {
  left: calc((100% - min(680px, 60vw)) / 2 - 44px - 12px);
}

.hero-media-nav--next {
  right: calc((100% - min(680px, 60vw)) / 2 - 44px - 12px);
}

@media (max-width: 1200px) {
  .hero-media-nav--prev {
    left: 12px;
  }
  
  .hero-media-nav--next {
    right: 12px;
  }
}

.hero-media-nav::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(135deg);
  transition: all 0.3s ease;
}

.hero-media-nav--next::after {
  transform: rotate(-45deg);
}

.hero-media-nav:hover,
.hero-media-nav:focus-visible {
  background: rgba(37, 99, 235, 0.95);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
  outline: none;
}

.hero-media-nav:hover::after {
  border-color: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.hero-media-nav.is-hidden {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  display: flex !important;
}

.hero-media-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-media-dots.is-hidden {
  display: none;
}

.hero-media-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: rgba(148, 163, 184, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-media-dot.is-active {
  width: 24px;
  background-color: #60a5fa;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.5);
}

.hero-sizes {
  display: grid;
  gap: clamp(8px, 1vh, 12px);
  justify-items: stretch;
  text-align: left;
  margin-top: 0;
}

.hero-sizes-label {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(203, 213, 225, 0.95);
}

.hero-sizes-grid {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: clamp(4px, 0.8vw, 8px);
  overflow: hidden;
  padding-bottom: 0;
  scrollbar-width: none;
}

.hero-sizes-grid::-webkit-scrollbar {
  display: none;
}

.hero-sizes-grid.is-contact {
  flex-wrap: wrap;
  overflow-x: visible;
  scroll-snap-type: none;
  justify-content: center;
}

.hero-size--contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  max-width: 600px;
  width: auto;
  flex: 0 1 auto;
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  transition: opacity 0.2s ease;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.hero-size--contact:hover,
.hero-size--contact:focus-visible {
  opacity: 0.9;
  outline: none;
}

.hero-size--degirmen {
  background: linear-gradient(145deg, #10b981 0%, #059669 100%);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.hero-size--degirmen:hover,
.hero-size--degirmen:focus-visible {
  opacity: 0.9;
}

.hero-size--ozel {
  background: linear-gradient(145deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.hero-size--ozel:hover,
.hero-size--ozel:focus-visible {
  opacity: 0.9;
}

.hero-size--contact img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-size--contact span,
.hero-size--contact div {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-size--contact > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  width: 100%;
}

.hero-size--contact > div span {
  display: block;
  line-height: 1.3;
}

.hero-sizes-label.is-contact {
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  line-height: 1.6;
}

.hero-sizes-label.is-hidden {
  display: none;
}

.hero-size--whatsapp {
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
}

.hero-size--instagram {
  background: linear-gradient(145deg, #f97316 0%, #db2777 100%);
  color: #ffffff;
}

.hero-size--youtube {
  background: linear-gradient(145deg, #ef4444 0%, #b91c1c 100%);
  color: #ffffff;
}

.hero-size--sahibinden {
  background: linear-gradient(145deg, #fde047 0%, #facc15 100%);
  color: #0f172a;
}

.hero-size--phone {
  background: linear-gradient(145deg, #38bdf8 0%, #2563eb 100%);
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.references-page-hero {
  position: relative;
  padding: clamp(80px, 18vh, 140px) 16px;
  background: url("assets/hero-gorseller/referanslarimiz-hero.jpg") center/cover no-repeat,
    linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 100%);
  color: #ffffff;
  text-align: center;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.references-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.45) 100%);
  pointer-events: none;
}

.references-page-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.references-page-hero-inner.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.references-page-hero-inner h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.references-page-hero-inner p {
  margin: 0;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.references-hero-breadcrumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.references-hero-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.references-hero-breadcrumb a:hover,
.references-hero-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.references-hero-back {
  position: absolute;
  left: clamp(16px, 6vw, 48px);
  top: clamp(24px, 5vh, 48px);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.references-hero-back:hover,
.references-hero-back:focus-visible {
  text-decoration: underline;
}

/* About Content Section */
.about-content {
  padding: clamp(60px, 10vh, 100px) 16px;
  background-color: #fafafa;
}

.about-content-inner {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-content-inner.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about-content h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 clamp(30px, 5vh, 50px);
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.about-intro {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: #475569;
  margin: 0 0 clamp(50px, 8vh, 70px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.about-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-card {
    padding: 24px;
  }

  .about-content h2 {
    margin-bottom: 30px;
  }

  .about-intro {
    margin-bottom: 40px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: clamp(60px, 10vh, 100px) 16px;
  background-color: #ffffff;
}

.why-choose-us-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 clamp(50px, 8vh, 70px);
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-choose-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.why-choose-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.why-choose-number {
  display: inline-block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.why-choose-plus {
  display: inline-block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.why-choose-text {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.why-choose-card--blue .why-choose-number-wrapper .why-choose-number,
.why-choose-card--blue .why-choose-number-wrapper .why-choose-plus {
  color: #2563eb;
}

.why-choose-card--green .why-choose-number-wrapper .why-choose-number,
.why-choose-card--green .why-choose-number-wrapper .why-choose-plus {
  color: #10b981;
}

.why-choose-card--purple .why-choose-text {
  color: #8b5cf6;
}

.why-choose-card--orange .why-choose-text {
  color: #f59e0b;
}

.why-choose-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
  margin: 12px 0 8px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.why-choose-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-choose-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card {
    padding: 28px 20px;
  }

  .why-choose-us h2 {
    margin-bottom: 40px;
  }
}

.references-gallery {
  padding: clamp(60px, 10vw, 120px) 0;
}

.references-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 6vw, 32px);
}

.references-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.references-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 24px);
}

.references-grid-item img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: clamp(16px, 4vh, 40px) clamp(16px, 5vw, 24px);
  }

  .hero-inner {
    grid-column: 1;
  }

  .hero-slogan {
    display: none;
  }
}

.hero-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  scroll-snap-align: center;
  text-decoration: none;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-size:hover,
.hero-size:focus-visible {
  box-shadow: 0 8px 22px -14px rgba(15, 23, 42, 0.35);
  outline: none;
}

.hero-size--sky {
  background: linear-gradient(145deg, #38bdf8 0%, #2563eb 100%);
  color: #ffffff;
}

.hero-size--green {
  background: linear-gradient(145deg, #34d399 0%, #059669 100%);
}

.hero-size--pink {
  background: linear-gradient(145deg, #f472b6 0%, #db2777 100%);
  color: #ffffff;
}

.hero-size--violet {
  background: linear-gradient(145deg, #a855f7 0%, #7c3aed 100%);
  color: #ffffff;
}

.hero-size--amber {
  background: linear-gradient(145deg, #fb923c 0%, #f97316 100%);
  color: #0f172a;
}

@media (max-width: 768px) {
  .hero-inner {
    gap: 20px;
  }

  .hero {
    /* Hero'yu ekran yüksekliğine hapsetme, içeriğin doğal yüksekliğine göre uzasın */
    min-height: auto;
    height: auto;
    /* Header ile hero arasındaki boşluğu azalt */
    padding: calc(env(safe-area-inset-top, 0px) + clamp(8px, 2vh, 16px)) clamp(12px, 5vw, 24px);
  }

  .hero-left {
    /* Üst–alt elemanlar arasındaki boşluğu daha da sıkılaştır */
    gap: 14px;
    overflow-x: visible; /* Mobilde kategori kaydırma tam görünsün */
  }

  .hero-tabs {
    display: flex;
    flex-direction: row;       /* Mobilde yan yana */
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 8px;
    margin: 0;                 /* Kenarlardan dışarı taşmasın */
    padding-left: 12px;
    padding-right: 12px;
    overflow-x: auto;          /* Yatay kaydırma */
    overflow-y: visible;       /* Etiketlerin yukarı taşmasına izin ver */
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.3) transparent;
    -webkit-overflow-scrolling: touch;
  }

  /* Mobilde kategori satırının scrollbar çizgisini gizle */
  .hero-tabs::-webkit-scrollbar {
    height: 0;
    display: none;
  }

  .hero-tabs::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 10px;
  }

  .hero-tabs::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.5);
    border-radius: 10px;
  }

  .hero-tabs::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.7);
  }

  .hero-tab {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
    flex-shrink: 0;
    padding: 12px 20px;
    font-size: 0.92rem;
  }

  .hero-tabs-hint {
    display: block;
    margin-top: 0;    /* Yazıyı bir tık yukarı al */
    margin-bottom: 0; /* Hemen altında yeşil buton görünsün */
  }

  .hero-card {
    padding: 0 12px;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 24px;
  }

  .hero-media {
    display: grid;
    grid-template-columns: minmax(auto, 40px) minmax(0, 1fr) minmax(auto, 40px);
    gap: 12px;
    position: static;
    align-items: center;
  }

  .hero-media-stage {
    grid-column: 2;
    order: 2;
    height: min(560px, 78vh);
    min-height: 380px;
    max-height: none;
    aspect-ratio: 3 / 5;
    box-shadow: none;
  }

  .hero-media-nav {
    position: relative;
    top: auto;
    left: auto !important;
    right: auto !important;
    transform: none;
  }

  .hero-media-nav--prev {
    grid-column: 1;
    order: 1;
    justify-self: start;
  }

  .hero-media-nav--next {
    grid-column: 3;
    order: 3;
    justify-self: end;
  }

  .hero-sizes {
    justify-items: start;
    text-align: left;
    gap: 4px;          /* “Boyut seçenekleri” ve buton/iletişim alanlarını daha da yaklaştır */
    margin-top: -14px; /* Sağa kaydırın yazısına iyice yaklaştır */
  }

  .hero-sizes-grid {
    gap: 6px;
  }

  .hero-size {
    padding: 8px 8px;
    font-size: 0.8rem;
  }

  .hero-sizes-grid.is-contact {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .hero-size--contact {
    min-width: 100%;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: clamp(16px, 4vh, 32px) clamp(16px, 4vw, 28px);
  }

  .hero-inner {
    grid-column: 1;
    width: min(1080px, 92%);
    margin: 0 auto;
  }

  .hero-slogan {
    display: none;
  }
}

@media (max-width: 540px) {
  .hero-tab {
    width: calc(50% - 4px);
    min-width: calc(50% - 4px);
    padding: 10px 18px;
    font-size: 14px;
  }

  .hero-tabs {
    flex-direction: row;     /* Küçük ekranlarda da yatay */
    gap: 8px;
    margin: 0;               /* Sol tarafa kayıp header altına girmesin */
    padding-left: 16px;
    padding-right: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .hero-tabs-hint {
    font-size: 0.85rem;
    margin-top: 0;
    margin-bottom: 0; /* Küçük ekranlarda yeşil butona tamamen yaklaşsın */
  }

  .hero-media {
    grid-template-columns: minmax(auto, 36px) minmax(0, 1fr) minmax(auto, 36px);
    gap: 8px;
  }

  .hero-sizes-grid {
    gap: 4px;
  }

  .hero-size {
    padding: 8px 6px;
    font-size: 0.75rem;
  }

  .hero-media-nav {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .hero-tab {
    min-width: 180px;
  }

  .hero-media-stage {
    height: min(520px, 76vh);
    min-height: 350px;
    max-height: none;
    aspect-ratio: 3 / 5;
    box-shadow: none;
  }

  .hero-sizes-label {
    letter-spacing: 0.12em;
  }

  .hero-sizes-label {
    text-align: left;
  }
}

@media (min-width: 769px) {
  .hero-sizes {
    justify-items: center;
    text-align: center;
  }

  .hero-sizes-grid {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}

.references {
  background-color: #0369a1;
  color: #e2e8f0;
  padding: 96px 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.references-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 56px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  width: 100%;
  box-sizing: border-box;
}

.references-inner.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.references-header {
  text-align: center;
  display: grid;
  gap: 12px;
}

.references-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
}

.references-subtitle {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.references-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.references-window {
  flex: 1 1 auto;
  max-width: 900px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.references-track {
  --cards-per-view: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  transition: transform 0.45s ease;
  will-change: transform;
  box-sizing: border-box;
}

.reference-card {
  flex: 0 0 calc(100% / var(--cards-per-view));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  color: inherit;
}

.reference-card img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(8, 145, 178, 0.15));
}

.references-nav {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.75));
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s;
}

.references-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-right: 3px solid #38bdf8;
  border-bottom: 3px solid #38bdf8;
  transform: rotate(135deg);
  transition: border-color 0.2s ease;
}

.references-nav[data-direction="next"]::after {
  transform: rotate(-45deg);
}

.references-nav:hover,
.references-nav:focus-visible {
  border-color: rgba(56, 189, 248, 0.6);
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.85), rgba(37, 99, 235, 0.4));
  outline: none;
}

.references-nav:hover::after,
.references-nav:focus-visible::after {
  border-color: #bae6fd;
}

.references-nav.is-disabled,
.references-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.55));
  border-color: rgba(148, 163, 184, 0.15);
}

.references-nav.is-disabled::after,
.references-nav:disabled::after {
  border-color: rgba(148, 163, 184, 0.35);
}

.references-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.references-dots.is-hidden {
  display: none;
}

.references-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background-color: rgba(148, 163, 184, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.references-dot.is-active {
  width: 22px;
  background-color: #38bdf8;
  transform: scale(1.05);
}

.references-dot:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
}

.cta-band {
  background: #ffffff;
  padding: clamp(40px, 6vh, 60px) 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.cta-band-inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  display: grid;
  gap: 18px;
  color: #0f172a;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-band-inner.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.cta-band-inner h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cta-band-inner p {
  margin: 0 auto;
  max-width: 520px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.78);
}

.cta-band-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 12px 24px;
  border-radius: 8px;
  background: #16a34a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-band-button:hover,
.cta-band-button:focus-visible {
  background: #15803d;
  outline: none;
}

.cta-band-button:active {
  background: #166534;
}

.location-map-section {
  background: #ffffff;
  padding: clamp(24px, 5vh, 44px) 16px clamp(44px, 7vh, 64px);
  border-top: 1px solid #e2e8f0;
}

.location-map-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.location-map-inner h2 {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  color: #64748b;
}

.location-map-inner p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.location-map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.35);
}

.location-map-frame iframe {
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .cta-band-inner h2 {
    white-space: normal;
    font-size: clamp(1.3rem, 5.2vw, 1.6rem);
  }

  .cta-band-inner p {
    font-size: clamp(0.95rem, 4vw, 1.05rem);
  }

  .cta-band-button {
    width: 100%;
    max-width: 260px;
    justify-self: center;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .cta-band {
    padding: clamp(28px, 6vh, 36px) 12px;
  }

  .cta-band-inner {
    gap: 14px;
  }

  .cta-band-inner h2 {
    font-size: clamp(1.15rem, 5vw, 1.35rem);
  }

  .cta-band-inner p {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cta-band-button {
    max-width: 100%;
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .references {
    padding: 72px 0;
  }

  .references-inner {
    gap: 40px;
  }

  .references-carousel {
    gap: 16px;
  }

  .references-window {
    max-width: none;
  }

  .reference-card {
    min-height: 120px;
  }
}

@media (max-width: 540px) {
  .references-carousel {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  .references-window {
    max-width: calc(100% - 120px);
  }

  .references-nav {
    width: 40px;
    height: 40px;
  }

  .references-track {
    gap: 20px;
  }

  .references-dots {
    margin-top: 12px;
  }
}

@media (min-width: 640px) {
  .references-track {
    --cards-per-view: 2;
  }
}

@media (min-width: 960px) {
  .references-track {
    --cards-per-view: 3;
  }
}

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 24px 48px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-col h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  color: var(--footer-heading);
}

.footer-about p {
  margin: 0;
  line-height: 1.7;
}

.footer-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-models-col {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.footer-models-col li {
  font-size: 15px;
  color: var(--footer-text);
}

.footer-models-col a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-models-col a:hover {
  color: var(--footer-heading);
  text-decoration: underline;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.footer-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.footer-highlight h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  color: var(--footer-heading);
  line-height: 1.5;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--footer-highlight);
  text-decoration: none;
  font-weight: 600;
}

.footer-link::after {
  content: "→";
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-location {
  margin: 14px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--footer-text);
  line-height: 1.6;
  font-size: 0.92rem;
  max-width: 360px;
}

.footer-location i {
  margin-top: 3px;
  color: var(--footer-heading);
  flex-shrink: 0;
}

.footer-divider {
  max-width: 1200px;
  margin: 48px auto 32px;
  height: 1px;
  background: var(--divider-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.footer-credit {
  opacity: 0.8;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-models {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-models-col {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-location {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: left;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.45);
}

.scroll-to-top:active {
  transform: translateY(0);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background-color: #2563eb;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height, 64px);
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  height: 0;
  max-height: calc(100vh - var(--header-height, 64px));
  visibility: hidden;
  pointer-events: none;
  transition: height 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav.is-visible {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list > li {
  border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-list > li:last-child {
  border-bottom: none;
}

.mobile-nav-item-dropdown {
  position: relative;
}

.mobile-nav-link-dropdown {
  position: relative;
  padding-right: 40px;
}

.mobile-nav-link-dropdown::after {
  content: "▼";
  font-size: 0.7rem;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  color: #64748b;
}

.mobile-nav-item-dropdown.active .mobile-nav-link-dropdown::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background-color: #f8fafc;
  transition: max-height 0.3s ease;
}

.mobile-nav-item-dropdown.active .mobile-dropdown-menu {
  max-height: 500px;
}

.mobile-dropdown-menu li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 12px 16px 12px 32px;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease;
  font-family: "Roboto", "Segoe UI", system-ui, sans-serif;
}

.mobile-dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

.mobile-nav-link {
  display: block;
  color: #1e293b;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: "Roboto", "Segoe UI", system-ui, sans-serif;
}

.mobile-nav-link:hover {
  background-color: #f8fafc;
  color: #2563eb;
}

.mobile-nav-link.active {
  color: #2563eb;
  font-weight: 600;
}

.mobile-dropdown-menu a.active {
  color: #2563eb;
  font-weight: 500;
}

.hero-tabs-hint {
  text-align: left;
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: calc(100vh - var(--header-height));
    height: calc(100vh - var(--header-height));
    padding: calc(env(safe-area-inset-top, 0px) + clamp(16px, 4vh, 28px)) clamp(16px, 6vw, 32px);
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(16px, 4vw, 28px);
  }

  .hero-left {
    order: 1;
    gap: clamp(18px, 4vw, 24px);
  }

  .hero-card {
    order: 2;
    height: auto;
  }

  .hero-media {
    height: auto;
  }

  .hero-media-stage {
    width: min(100%, 480px);
    max-height: min(680px, 78vh);
  }
  .hero-tab {
    align-items: center;
    text-align: center;
  }

  .hero-sizes {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .header-inner {
    padding: 0 20px;
    gap: 20px;
  }

  .nav-list {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    max-width: none;
    padding: 0;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }

  .header-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
  }

  .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .brand img {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 5;
    justify-content: space-between;
    height: 64px;
  }

  .icon-button,
  .contact-button,
  .menu-toggle {
    flex: 1;
    width: 100%;
    height: 64px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .icon-button img {
    height: 24px;
    width: auto;
  }

  .icon-button[href*="youtube"] img {
    transform: scale(1);
  }

  .search-button {
    display: none;
  }

  .contact-button {
    padding: 0;
    border: none;
    border-radius: 0;
  }

  .menu-toggle {
    gap: 3px;
    background-color: transparent !important;
    border: none !important;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background-color: #1e293b !important;
  }

  .mobile-nav-list {
    padding: 16px;
  }
}

@media (max-width: 540px) {
  .header-inner {
    padding: 0;
    gap: 0;
  }

  .brand img {
    max-height: 36px;
  }

  .icon-button img {
    height: 20px;
  }

  .icon-button[href*="youtube"] img {
    transform: scale(1);
  }

  .contact-button::before {
    width: 18px;
    height: 18px;
  }

  .menu-toggle span {
    width: 16px;
    height: 2px;
  }
}


.gallery-page {
  padding: clamp(60px, 8vw, 100px) 0;
}

.gallery-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 32px);
  display: grid;
  gap: clamp(20px, 4vw, 36px);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.gallery-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background-color: #ffffff;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter-button:hover,
.gallery-filter-button:focus-visible {
  border-color: rgba(56, 189, 248, 0.6);
  background-color: rgba(56, 189, 248, 0.1);
  outline: none;
}

.gallery-filter-button.is-active {
  border-color: transparent;
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px -12px rgba(37, 99, 235, 0.4);
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.gallery-card {
  position: relative;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 60px -40px rgba(15, 23, 42, 0.55);
  background-color: #ffffff;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gallery-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-card-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 30%, rgba(15, 23, 42, 0.98) 100%);
}

.gallery-card-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #38bdf8;
}

.gallery-empty {
  padding: clamp(60px, 12vw, 120px) 16px;
  text-align: center;
  color: rgba(15, 23, 42, 0.6);
  font-weight: 600;
}

.gallery-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background-color: #f8fafc;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 3px 10px -8px rgba(15, 23, 42, 0.25);
  width: fit-content;
  min-width: 110px;
  justify-content: center;
}

.gallery-filter-trigger:hover,
.gallery-filter-trigger:focus-visible {
  border-color: rgba(37, 99, 235, 0.45);
  background-color: #ffffff;
  outline: none;
}

.gallery-filter-trigger__icon {
  font-size: 0.95rem;
  color: #2563eb;
  line-height: 1;
}

.gallery-filter-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.gallery-filter-modal.is-open {
  display: flex;
}

.gallery-filter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.gallery-filter-modal__panel {
  position: relative;
  width: min(360px, 88vw);
  border-radius: 24px;
  background-color: #ffffff;
  padding: clamp(18px, 5vw, 28px);
  box-shadow: 0 32px 90px -48px rgba(15, 23, 42, 0.4);
  display: grid;
  gap: 18px;
  z-index: 1;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.gallery-filter-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-filter-modal__header h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.gallery-filter-modal__close {
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.45);
}

.gallery-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background-color: #ffffff;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter-option:hover,
.gallery-filter-option:focus-within {
  border-color: rgba(37, 99, 235, 0.45);
  background-color: rgba(37, 99, 235, 0.06);
}

.gallery-filter-option input {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
}

.gallery-filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.gallery-filter-button--ghost,
.gallery-filter-button--primary {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.gallery-filter-button--ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.45);
  color: #475569;
}

.gallery-filter-button--ghost:hover,
.gallery-filter-button--ghost:focus-visible {
  border-color: rgba(56, 189, 248, 0.6);
  outline: none;
}

.gallery-filter-button--primary {
  background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px -18px rgba(14, 165, 233, 0.4);
}

.gallery-filter-button--primary:hover,
.gallery-filter-button--primary:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.gallery-filter-form {
  display: grid;
  gap: 18px;
}

.gallery-filter-list {
  max-height: min(360px, 60vh);
  overflow-y: auto;
  padding-right: 4px;
  display: grid;
  gap: 6px;
}

.detail-page {
  background: #f3f6fb;
}

.detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 36px) clamp(16px, 5vw, 28px) clamp(56px, 8vw, 80px);
  display: grid;
  gap: clamp(24px, 4.5vw, 40px);
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  align-items: start;
}

.detail-media-column {
  display: grid;
  gap: clamp(20px, 4vw, 28px);
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #2563eb;
}

.detail-back:hover,
.detail-back:focus-visible {
  text-decoration: underline;
}

.detail-media-player {
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 32px 80px -48px rgba(15, 23, 42, 0.55);
  max-height: min(520px, 60vh);
  display: flex;
}

.detail-media-player video,
.detail-media-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-media-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}

.detail-thumb {
  border: 2px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 20px -16px rgba(15, 23, 42, 0.4);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.detail-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-thumb--active {
  border-color: #2563eb;
}

.detail-thumb__icon {
  font-size: 1.4rem;
  color: #2563eb;
}

.detail-media-caption {
  display: grid;
  gap: 4px;
  text-align: center;
}

.detail-media-caption h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.detail-media-caption p {
  margin: 0;
  color: rgba(15, 23, 42, 0.6);
}

.detail-content-column {
  display: grid;
  gap: clamp(24px, 4vw, 32px);
}

.detail-header h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}

.detail-header p {
  margin: 0;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.7;
  font-size: 1.05rem;
}

.detail-benefits,
.detail-specs,
.detail-usecases,
.detail-contact {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(20px, 4vw, 28px);
  box-shadow: 0 28px 72px -48px rgba(15, 23, 42, 0.45);
  display: grid;
  gap: 16px;
}

.detail-benefits h2,
.detail-specs h2,
.detail-usecases h2,
.detail-contact h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.detail-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.detail-benefits li {
  padding: 12px;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.08);
  color: #0f172a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-benefits li::before {
  content: "✔";
  color: #2563eb;
  font-size: 1rem;
}

.detail-specs dl {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.detail-specs dl div {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(148, 163, 184, 0.12);
  color: #0f172a;
  font-weight: 600;
}

.detail-usecases ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-usecases li {
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-weight: 600;
}

.detail-contact p {
  margin: 0;
  color: rgba(15, 23, 42, 0.68);
  line-height: 1.6;
}

.detail-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-contact-button:hover,
.detail-contact-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.detail-contact-button--whatsapp {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 16px 32px -18px rgba(34, 197, 94, 0.4);
}

.detail-contact-button--phone {
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 16px 32px -18px rgba(37, 99, 235, 0.4);
}

@media (max-width: 1024px) {
  .detail-container {
    grid-template-columns: 1fr;
  }

  .detail-media-column {
    order: -1;
  }

  .detail-media-player {
    max-height: min(520px, 55vh);
  }
}

@media (max-width: 640px) {
  .detail-contact-actions {
    flex-direction: column;
  }

  .detail-thumb {
    padding: 10px;
  }
}

/* Sectors Showcase */
.sectors-showcase {
  padding: clamp(50px, 8vh, 80px) 16px;
  background-color: #ffffff;
}

.sectors-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sectors-showcase-inner.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sectors-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vh, 45px);
}

.sectors-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.sectors-grid.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-height: 130px;
  position: relative;
  text-decoration: none;
}

.sector-card:hover {
  border-color: #2563eb;
  background: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.sector-card:hover .sector-icon {
  color: #ffffff;
}

.sector-card:hover h3 {
  color: #ffffff;
}

.sector-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: #2563eb;
  transition: color 0.3s ease;
}

.sector-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.sector-icon i {
  font-size: 40px;
  line-height: 1;
}

.sector-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.sectors-cta {
  text-align: center;
  margin-top: 50px;
}

.sectors-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 16px;
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.sectors-button:hover,
.sectors-button:focus-visible {
  opacity: 0.9;
  outline: none;
}

@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sector-card {
    padding: 20px 12px;
    min-height: 120px;
  }

  .sector-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .sector-card h3 {
    font-size: 0.85rem;
  }

  .sectors-header {
    margin-bottom: 30px;
  }
}

/* New Detail Page Design */
.detail-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(80px, 12vh, 120px) 16px clamp(40px, 6vh, 60px);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.detail-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.detail-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  transition: color 0.2s ease;
}

.detail-hero-back:hover {
  color: #ffffff;
  text-decoration: underline;
}

.detail-hero-content {
  text-align: center;
}

.detail-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 24px;
}

.detail-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 20px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.detail-hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

.detail-content-section {
  padding: clamp(40px, 6vh, 60px) 16px;
  background: #ffffff;
}

.detail-content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.detail-content-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.detail-back-link {
  grid-column: 1 / -1;
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: "Roboto", "Segoe UI", system-ui, sans-serif;
  text-decoration: none;
  color: #2563eb;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.detail-breadcrumb {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  justify-self: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  color: #64748b;
}

.detail-back-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.detail-gallery-column {
  position: sticky;
  top: 100px;
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.detail-gallery-column.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.detail-main-media {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.detail-gallery-column .detail-media-player {
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  width: 100%;
  height: calc((100vh - 120px) * 0.65);
  min-height: 350px;
  display: flex;
}

.detail-gallery-column .detail-media-player video,
.detail-gallery-column .detail-media-player img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.detail-gallery-column .detail-media-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  flex: 0 0 auto;
  height: auto;
}

.detail-gallery-column .detail-thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  aspect-ratio: 1;
  width: 100%;
  height: auto;
}

.detail-gallery-column .detail-thumb:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.detail-gallery-column .detail-thumb--active {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.detail-gallery-column .detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-thumb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  color: #2563eb;
}

.detail-info-column {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vh, 60px);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.detail-info-column.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.detail-intro {
  margin-bottom: 20px;
}

.detail-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  line-height: 1.3;
}

.detail-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.detail-specs-table {
  margin-bottom: 40px;
}

.detail-specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.detail-specs-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.detail-specs-table tr:last-child {
  border-bottom: none;
}

.detail-specs-table td {
  padding: 16px 0;
  font-size: 0.95rem;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.detail-specs-table td:first-child {
  color: #64748b;
  font-weight: 500;
  width: 50%;
}

.detail-specs-table td:last-child {
  color: #1e293b;
  font-weight: 600;
  text-align: right;
}


.detail-features {
  margin-bottom: 40px;
}

.detail-features h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 20px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.detail-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-features-list li {
  padding: 12px 0;
  font-size: 0.95rem;
  color: #475569;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  border-bottom: 1px solid #f1f5f9;
}

.detail-features-list li:last-child {
  border-bottom: none;
}

.detail-features-list li::before {
  content: "•";
  color: #2563eb;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 8px;
}


.detail-usecases h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 20px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.detail-usecases-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.detail-usecases-list li {
  padding: 16px;
  font-size: 0.95rem;
  color: #475569;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.detail-usecases-list li:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.detail-price-cta {
  margin-top: 40px;
  padding: 32px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.detail-price-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 20px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.detail-price-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #2563eb;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.detail-price-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.detail-cta-section {
  padding: clamp(60px, 8vh, 80px) 16px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
}

.detail-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.detail-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 16px;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.detail-cta-section p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px;
}

.detail-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.detail-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.detail-cta-button--whatsapp {
  background: #25d366;
  color: #ffffff;
}

.detail-cta-button--whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.detail-cta-button--phone {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.detail-cta-button--phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .detail-content-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-gallery-column {
    position: static;
    height: auto;
  }

  .detail-gallery-column .detail-media-player {
    max-height: 500px;
  }

  .detail-usecases-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    padding: clamp(60px, 10vh, 100px) 16px clamp(30px, 5vh, 50px);
  }

  .detail-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .detail-spec-card {
    padding: 24px 16px;
  }

  .detail-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .detail-feature-item {
    padding: 20px;
  }

  .detail-cta-buttons {
    flex-direction: column;
  }

  .detail-cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .detail-specs-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery-column .detail-media-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-title {
    font-size: 1.5rem;
  }

  .detail-description {
    font-size: 0.95rem;
  }

  .detail-specs-table td {
    padding: 12px 0;
    font-size: 0.9rem;
  }

  .detail-features h2,
  .detail-usecases h2 {
    font-size: 1.1rem;
  }

  .detail-price-cta {
    padding: 24px 16px;
  }

  .detail-price-button {
    width: 100%;
    padding: 14px 20px;
  }
}

/* Mobil uyumluluk iyileştirmeleri */
@media (max-width: 768px) {
  /* Header iyileştirmeleri */
  .brand img {
    max-height: 60px;
  }

  /* Hero section mobil */
  .hero-slogan-line-primary {
    white-space: normal;
  }

  /* Sectors showcase mobil */
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sector-card {
    padding: 20px 12px;
    min-height: 120px;
  }

  .sector-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .sector-card h3 {
    font-size: 0.85rem;
  }

  /* References mobil */
  .references-carousel {
    gap: 12px;
  }

  .reference-card {
    min-width: 140px;
  }

  /* CTA band mobil */
  .cta-band-inner {
    padding: 0 16px;
  }

  .cta-band-button {
    width: 100%;
    max-width: 100%;
  }

  /* Footer mobil */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-models {
    grid-template-columns: 1fr;
  }

  /* About page mobil */
  .about-content {
    padding: 40px 16px;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-card {
    padding: 24px;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card {
    padding: 24px;
  }

  /* Detail pages mobil */
  .detail-content-section {
    padding: 30px 12px;
  }

  .detail-content-container {
    gap: 30px;
  }

  .detail-gallery-column .detail-media-player {
    height: auto;
    min-height: 250px;
    max-height: 400px;
  }

  .detail-gallery-column .detail-media-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .detail-info-column {
    gap: 30px;
  }

  /* Gallery page mobil */
  .gallery-page {
    padding: 40px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* References page mobil */
  .references-page-hero {
    padding: 60px 16px 40px;
  }

  .references-page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  /* Header çok küçük ekranlar */
  .header-inner {
    padding: 0 12px;
    gap: 12px;
  }

  .brand img {
    max-height: 50px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .contact-button {
    width: 36px;
    height: 36px;
  }

  /* Hero mobil */
  .hero {
    padding: 20px 12px;
  }

  .hero-slogan-line-primary {
    font-size: 1.3rem;
  }

  .hero-slogan-line:not(.hero-slogan-line-primary) {
    font-size: 1.1rem;
  }

  /* Sectors showcase çok küçük */
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sector-card {
    padding: 16px 12px;
    min-height: 100px;
  }

  .sector-icon {
    width: 32px;
    height: 32px;
  }

  .sector-card h3 {
    font-size: 0.8rem;
  }

  /* References çok küçük */
  .reference-card {
    min-width: 120px;
  }

  /* CTA band çok küçük */
  .cta-band {
    padding: 40px 12px;
  }

  .cta-band-inner h2 {
    font-size: 1.3rem;
  }

  .cta-band-inner p {
    font-size: 0.95rem;
  }

  /* Footer çok küçük */
  .site-footer {
    padding: 48px 16px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* About page çok küçük */
  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-intro {
    font-size: 0.95rem;
  }

  .about-card h3 {
    font-size: 1.2rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }

  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .why-choose-number {
    font-size: 2.5rem;
  }

  /* Detail pages çok küçük */
  .detail-title {
    font-size: 1.4rem;
  }

  .detail-description {
    font-size: 0.9rem;
  }

  .detail-specs-table td {
    padding: 10px 0;
    font-size: 0.85rem;
  }

  .detail-features-list li,
  .detail-usecases-list li {
    padding: 12px;
    font-size: 0.9rem;
  }

  .detail-price-question {
    font-size: 1.1rem;
  }

  /* Gallery page çok küçük */
  .gallery-page {
    padding: 30px 12px;
  }

  /* References page çok küçük */
  .references-page-hero h1 {
    font-size: 1.8rem;
  }

  .references-page-hero p {
    font-size: 0.95rem;
  }

  /* Scroll to top butonu çok küçük */
  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  /* Çok küçük ekranlar için ekstra ayarlar */
  .hero-slogan-line-primary {
    font-size: 1.2rem;
  }

  .sector-card {
    padding: 14px 10px;
  }

  .detail-title {
    font-size: 1.3rem;
  }

  .about-content h2,
  .why-choose-us h2 {
    font-size: 1.6rem;
  }
}

/* Tablet ve mobilde tutarlı hero/header davranisi */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-right: 6px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    gap: 12px;
  }

  .header-left {
    flex: 0 0 auto;
  }

  .brand img {
    max-height: 48px;
  }

  .header-actions {
    margin-left: 0;
    gap: 8px;
    flex: 0 0 auto;
  }

  .icon-button {
    height: 30px;
  }

  .contact-button {
    width: 36px;
    height: 36px;
    padding: 0;
  }

  .hero {
    overflow: hidden;
  }

  .hero-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 0 6px 6px;
  }

  .hero-tab {
    width: auto;
    min-width: 210px;
    flex-shrink: 0;
  }

  .hero-media-stage {
    max-height: min(62vh, 560px);
    max-height: min(62svh, 560px);
    box-shadow: none;
  }
}

/* Kisa ekranlarda (iPhone SE vb.) hero icerigini ekrana sigdir */
@media (max-width: 768px) and (max-height: 760px) {
  .hero {
    padding-top: calc(env(safe-area-inset-top, 0px) + 8px);
    padding-bottom: 8px;
  }

  .hero-left {
    gap: 8px;
  }

  .hero-tabs {
    gap: 8px;
    padding-bottom: 4px;
  }

  .hero-tab {
    min-width: 170px;
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .hero-tabs-hint {
    font-size: 0.8rem;
  }

  .hero-card {
    gap: 10px;
  }

  .hero-media-stage {
    height: min(45vh, 360px);
    height: min(45svh, 360px);
    min-height: 250px;
  }
}

/* Cookie consent */
.cookie-ui-root {
  position: relative;
  z-index: 3000;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 16px;
  width: min(1120px, calc(100% - 24px));
  padding: 12px 16px;
  background: #f4f4f5;
  border: 1px solid #d4d4d8;
  border-radius: 14px;
  box-shadow: 0 16px 34px -24px rgba(15, 23, 42, 0.6);
  transform: translate(-50%, 130%);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner p {
  margin: 0;
  color: #27272a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: #166534;
  font-weight: 700;
}

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

.cookie-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn--reject {
  background: #b91c1c;
  color: #ffffff;
}

.cookie-btn--settings {
  background: #71717a;
  color: #ffffff;
}

.cookie-btn--accept {
  background: #15803d;
  color: #ffffff;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  background: rgba(15, 23, 42, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.cookie-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(940px, 96vw);
  background: #f4f4f5;
  border: 1px solid #d4d4d8;
  border-radius: 12px;
  transform: translateY(110%);
  transition: transform 0.32s ease;
  max-height: min(90vh, 760px);
  overflow: auto;
}

.cookie-modal.is-visible .cookie-modal__panel {
  transform: translateY(0);
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #d4d4d8;
}

.cookie-modal__header h2 {
  margin: 0;
  font-size: 1.1rem;
}

.cookie-modal__close {
  border: none;
  background: transparent;
  color: #3f3f46;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid #d4d4d8;
}

.cookie-modal__row h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #18181b;
}

.cookie-modal__row p {
  margin: 0;
  color: #52525b;
}

.cookie-status {
  color: #52525b;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-switch {
  display: inline-flex;
  align-items: center;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch span {
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: #d4d4d8;
  position: relative;
  transition: background-color 0.2s ease;
}

.cookie-switch span::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-switch input:checked + span {
  background: #16a34a;
}

.cookie-switch input:checked + span::after {
  transform: translateX(24px);
}

.cookie-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 18px;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 16px);
    padding: 12px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1 1 150px;
  }

  .cookie-modal__row {
    align-items: flex-start;
  }

  .cookie-modal__footer {
    flex-direction: column;
  }
}

/* KVKK plain content */
.kvkk-content-section {
  background: #ffffff;
  padding: clamp(40px, 6vw, 64px) 16px;
}

.kvkk-content-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  color: #1e293b;
  line-height: 1.75;
  font-family: "Poppins", "Roboto", "Segoe UI", system-ui, sans-serif;
}

.kvkk-content-inner h2 {
  margin: 0 0 4px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.kvkk-content-inner h3 {
  margin: 14px 0 2px;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
}

.kvkk-content-inner p {
  margin: 0;
  color: #475569;
}

/* Mobilde tarayici toolbar degisiminde hero videonun olcusu sabit kalsin */
@media (max-width: 768px) {
  .hero {
    height: var(--hero-stable-height, calc(100svh - var(--header-height))) !important;
    min-height: var(--hero-stable-height, calc(100svh - var(--header-height))) !important;
    max-height: var(--hero-stable-height, calc(100svh - var(--header-height))) !important;
    overflow: hidden !important;
  }

  .hero-media-stage {
    height: var(--hero-stable-media-height, clamp(340px, 62svh, 560px)) !important;
    min-height: var(--hero-stable-media-height, clamp(340px, 62svh, 560px)) !important;
    max-height: var(--hero-stable-media-height, clamp(340px, 62svh, 560px)) !important;
    aspect-ratio: 9 / 16 !important;
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-media-stage video,
  .hero-media-stage iframe {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background-color: transparent !important;
  }
}