body.mm-mobile-nav-open {
  overflow: hidden;
}

.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;
}

.mm-header-topbar {
  background: linear-gradient(135deg, #275c98, #4b82c3);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.14);
}

.mm-topbar-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.mm-mobile-quote-btn {
  box-shadow: 0 12px 28px rgba(26, 55, 164, 0.22);
}

.mm-mobile-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(20, 54, 90, 0.14);
  background: #f4f7fb;
  color: #14365a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.mm-mobile-icon-button:active {
  transform: scale(0.97);
}

.mm-mobile-icon-button:hover {
  border-color: rgba(26, 55, 164, 0.22);
  background: #eef3ff;
}

.mm-mobile-icon {
  position: relative;
  display: block;
  color: currentColor;
}

.mm-mobile-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  border-radius: 9999px;
  background: currentColor;
}

.mm-mobile-icon--burger {
  width: 1.2rem;
  height: 0.95rem;
}

.mm-mobile-icon--burger span {
  height: 2px;
}

.mm-mobile-icon--burger span:nth-child(1) {
  top: 0;
}

.mm-mobile-icon--burger span:nth-child(2) {
  top: calc(50% - 1px);
}

.mm-mobile-icon--burger span:nth-child(3) {
  bottom: 0;
}

.mm-mobile-icon--close {
  width: 1rem;
  height: 1rem;
}

.mm-mobile-icon--close span {
  top: calc(50% - 1px);
  height: 2px;
}

.mm-mobile-icon--close span:nth-child(1) {
  transform: rotate(45deg);
}

.mm-mobile-icon--close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mm-mobile-drawer {
  transform: translateX(100%);
  transition: transform 180ms ease;
}

[data-mobile-nav-panel].is-open .mm-mobile-drawer {
  transform: translateX(0);
}

[data-products-menu-panel] {
  pointer-events: none;
}

[data-products-menu-panel].visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mm-site-search {
  position: relative;
  z-index: 40;
}

.mm-mobile-search input,
.mm-search-panel input {
  width: 100%;
  border: 1px solid rgba(20, 54, 90, 0.14);
  background: #f7faff;
  color: #14365a;
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.mm-site-search-toggle {
  display: inline-flex;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(20, 54, 90, 0.14);
  background: #f7faff;
  color: rgb(26, 55, 164);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.mm-site-search-toggle:hover,
.mm-site-search.is-open .mm-site-search-toggle {
  border-color: rgba(26, 55, 164, 0.28);
  background: rgb(26, 55, 164);
  color: #fff;
}

.mm-site-search-toggle:active {
  transform: scale(0.97);
}

.mm-site-search-toggle svg {
  width: 1.05rem;
  height: 1.05rem;
}

.mm-site-search-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  width: min(28rem, calc(100vw - 2rem));
  padding: 0.8rem;
  border: 1px solid rgba(20, 54, 90, 0.13);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
}

.mm-site-search.is-open .mm-site-search-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mm-site-search-panel input {
  min-height: 3.15rem;
  min-width: 0;
  border: 1px solid rgba(20, 54, 90, 0.14);
  border-radius: 1rem;
  background: #f7faff;
  padding: 0 1rem;
  color: #14365a;
  outline: none;
}

.mm-site-search-panel button {
  min-height: 3.15rem;
  border-radius: 1rem;
  background: rgb(26, 55, 164);
  padding: 0 1.35rem;
  font-weight: 700;
  color: #fff;
}

.mm-site-search-panel::before {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: -0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  border-left: 1px solid rgba(20, 54, 90, 0.13);
  border-top: 1px solid rgba(20, 54, 90, 0.13);
  background: #fff;
  transform: rotate(45deg);
}

.mm-mobile-search,
.mm-search-panel {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(20, 54, 90, 0.12);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.mm-mobile-search {
  margin-bottom: 1.25rem;
}

.mm-search-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 48rem;
}

.mm-mobile-search input,
.mm-search-panel input {
  min-height: 3.25rem;
  border-radius: 1rem;
  padding: 0 1rem;
  font-size: 1rem;
}

.mm-mobile-search button,
.mm-search-panel button {
  min-height: 3.25rem;
  border-radius: 1rem;
  background: rgb(26, 55, 164);
  padding: 0 1.35rem;
  font-weight: 700;
  color: #fff;
}

.mm-site-search-panel input:focus,
.mm-mobile-search input:focus,
.mm-search-panel input:focus {
  border-color: rgba(26, 55, 164, 0.42);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 55, 164, 0.08);
}

.mm-card-media {
  background-color: #eef3ff;
}

.mm-card-media img {
  object-fit: contain !important;
  object-position: center center;
  padding: 0.75rem;
}

.mm-card-media + div,
.group > a > .mm-card-media + div {
  border-top: 1px solid rgba(20, 54, 90, 0.04);
}

.mm-search-results-grid {
  display: grid;
  gap: 2rem;
}

.mm-search-result-card {
  min-height: 100%;
}

.mm-search-result-media {
  aspect-ratio: 16 / 11;
}

.mm-search-result-body {
  padding: 1.45rem;
}

.mm-search-result-title {
  text-wrap: balance;
}

.mm-search-result-summary {
  max-width: 58ch;
}

@media (min-width: 768px) {
  .mm-search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem;
  }

  .mm-search-result-body {
    padding: 1.65rem;
  }
}

@media (min-width: 1280px) {
  .mm-search-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem;
  }
}

main > section {
  scroll-margin-top: 7.5rem;
}

@media (min-width: 1280px) {
  [data-products-menu] {
    position: relative;
  }

  [data-products-menu-panel] {
    left: 0 !important;
    top: 100% !important;
    width: 18rem !important;
    transform: translateY(0.5rem) !important;
  }

  [data-products-menu-panel].visible {
    transform: translateY(0) !important;
  }
}

.mm-prose p + p {
  margin-top: 1rem;
}

.mm-prose ul {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.mm-prose li {
  color: var(--muted);
  line-height: 1.8;
}

.mm-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(135deg, rgba(26,55,164,0.14), rgba(59,143,213,0.82));
}

.mm-video-play {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
}

/* Teknik özellikler tablosu */
.mm-spec-table {
  border-color: rgba(20, 54, 90, 0.14) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.mm-spec-table .divide-y > * + * {
  border-top: 1px solid rgba(20, 54, 90, 0.16) !important;
}

.mm-spec-table .flex.items-start {
  gap: 0 !important;
  padding: 0 !important;
}

.mm-spec-table .flex.items-start > span:first-child {
  align-self: stretch;
  width: 38% !important;
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(20, 54, 90, 0.16);
  background: rgba(244, 247, 251, 0.78);
  color: #54708e !important;
}

.mm-spec-table .flex.items-start > span:last-child {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.25rem;
  line-height: 1.7;
}

.mm-spec-table table {
  border-color: rgba(20, 54, 90, 0.16) !important;
}

.mm-spec-multi-row {
  display: block;
}

.mm-spec-multi-label {
  padding: 1rem 1.25rem;
  border-right: 0;
  border-bottom: 1px solid rgba(20, 54, 90, 0.16);
  background: rgba(244, 247, 251, 0.78);
  color: #54708e;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.65;
}

.mm-spec-multi-values {
  min-width: 0;
  padding: 1rem 1.25rem 1.25rem;
}

.mm-spec-value-table {
  border-collapse: collapse;
}

.mm-spec-value-table td {
  padding: 0.95rem 0.75rem;
  border-left: 1px solid rgba(20, 54, 90, 0.16);
  border-top: 1px solid rgba(20, 54, 90, 0.16);
  color: #14365a;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  background: #fff;
}

.mm-spec-value-table tr:first-child td {
  border-top: 0;
}

.mm-spec-value-table td:first-child {
  border-left: 0;
}

.mm-spec-value-table td[aria-hidden="true"] {
  background: rgba(244, 247, 251, 0.45);
  color: transparent;
}

.mm-spec-table p + .mt-3 {
  margin-top: 0.85rem !important;
}

@media (max-width: 639px) {
  .mm-spec-table .flex.items-start {
    display: block !important;
  }

  .mm-spec-table .flex.items-start > span:first-child {
    display: block;
    width: 100% !important;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 54, 90, 0.14);
  }

  .mm-spec-table .flex.items-start > span:last-child {
    display: block;
  }

  .mm-spec-multi-values {
    padding: 0.9rem;
    overflow-x: auto;
  }

  .mm-spec-value-table {
    min-width: 34rem;
  }
}

/* Tab butonları */
.mm-tab-btn {
  position: relative;
  flex: none;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(113, 113, 122);
  white-space: nowrap;
  transition: color 160ms ease;
}

.mm-tab-btn:hover {
  color: rgb(39, 39, 42);
}

.mm-tab-btn.mm-tab-active {
  color: rgb(26, 55, 164);
}

.mm-tab-btn.mm-tab-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgb(26, 55, 164);
  border-radius: 1px 1px 0 0;
}

.mm-breadcrumb {
  font-size: 0.95rem;
  line-height: 1.55;
}

.mm-page-intro {
  max-width: 44rem;
}

.mm-detail-actions {
  display: grid;
  gap: 0.75rem;
}

.mm-empty-state {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.mm-hero-stage {
  height: 400px;
  min-height: 400px;
}

[data-hero-slide] {
  height: 100%;
}

[data-hero-slide] > .mm-hero-slide-shell {
  height: 100%;
  min-height: 100% !important;
  box-sizing: border-box;
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.mm-hero-slide-shell {
  align-items: stretch;
}

.mm-hero-copy {
  height: 100%;
  min-height: 0 !important;
  justify-content: flex-start !important;
}

.mm-hero-copy-body {
  display: block;
  min-height: auto !important;
  height: auto;
}

.mm-hero-visual-stage {
  position: absolute;
  inset: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-hero-visual {
  width: 100%;
  height: 24rem;
  min-height: 23rem;
  max-height: 24rem;
  aspect-ratio: auto !important;
}

.mm-hero-title {
  display: block;
  overflow: visible;
  line-height: 1.12 !important;
  padding-bottom: 0.08em;
  text-wrap: balance;
}

.mm-hero-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.mm-hero-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.mm-hero-visual-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(var(--mm-hero-image-x, 0), var(--mm-hero-image-y, 0))
    scale(var(--mm-hero-image-scale, 1));
  transform-origin: center center;
}

section > .mx-auto {
  position: relative;
}

.mm-brand-card {
  min-height: 24rem;
}

.mm-catalog-group {
  scroll-margin-top: 7rem;
}

.mm-catalog-group-nav {
  align-items: center;
}

.mm-catalog-group-heading {
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.mm-catalog-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.mm-catalog-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.5rem !important;
}

.mm-catalog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(26, 55, 164, 0.9), rgba(59, 143, 213, 0.62));
}

.mm-catalog-card-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 100%;
}

.mm-catalog-card-body > div:first-child {
  flex: 1;
  min-width: 0;
}

.mm-catalog-card-tags {
  min-height: 1.75rem;
}

.mm-catalog-card-title {
  font-size: 1.85rem !important;
  line-height: 1.08 !important;
}

.mm-catalog-card-summary {
  max-width: 34ch;
  margin-top: 0 !important;
  color: var(--muted) !important;
  line-height: 1.75 !important;
}

.mm-catalog-card-meta {
  margin-top: auto !important;
  padding-top: 0.25rem;
}

.mm-catalog-card-actions {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.75rem;
  width: 10rem;
  padding-top: 0.25rem;
}

.mm-catalog-card-primary,
.mm-catalog-card-secondary {
  width: 100%;
}

.mm-corporate-values {
  gap: 4rem 8.5rem;
}

@media (min-width: 1024px) {
  .mm-corporate-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mm-corporate-values article {
  min-height: 11rem;
}

.mm-corporate-values h3 {
  line-height: 1.12 !important;
}

.mm-corporate-values p {
  max-width: 42rem;
}

@media (max-width: 639px) {
  .mm-hero-stage {
    height: auto;
    min-height: 0;
  }

  [data-hero-slide] {
    height: auto;
  }

  .mm-header-topbar {
    background: linear-gradient(135deg, #214c83, #3e73b7);
  }

  .mm-header-topbar > div {
    gap: 0.75rem !important;
    justify-content: flex-start !important;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }

  .mm-topbar-contact-group {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .mm-header-topbar .mm-topbar-link {
    font-size: 0.9rem !important;
  }

  .mm-topbar-email {
    flex-basis: 100%;
  }

  .mm-mobile-quote-btn {
    padding: 0.85rem 1.1rem !important;
    font-size: 1rem !important;
  }

  .mm-mobile-drawer {
    margin-left: 2.75rem !important;
  }

  .mm-mobile-drawer nav {
    gap: 0.85rem !important;
  }

  .mm-mobile-drawer nav a {
    border-radius: 1.1rem !important;
    padding: 1.05rem 1.1rem !important;
  }

  .mm-mobile-tight {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mm-card-title-lg {
    font-size: 1.35rem !important;
    line-height: 1.2 !important;
  }

  .mm-hero-slide-shell,
  .mm-hero-copy,
  .mm-hero-copy-body {
    height: auto !important;
    min-height: auto !important;
  }

  .mm-hero-slide-shell {
    display: flex !important;
    flex-direction: column;
    gap: 1.15rem !important;
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .mm-hero-copy {
    order: 2;
    gap: 0.95rem !important;
    justify-content: flex-start !important;
  }

  .mm-hero-copy-body {
    display: grid !important;
    gap: 0.8rem !important;
  }

  .mm-hero-visual {
    order: 1;
    height: 12.5rem;
    min-height: 12.5rem !important;
    max-height: 12.5rem;
    aspect-ratio: auto !important;
    border-radius: 1.35rem !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08) !important;
  }

  .mm-brand-card {
    min-height: 19rem;
  }

  .mm-hero-eyebrow {
    font-size: 0.78rem !important;
    letter-spacing: 0.22em !important;
  }

  .mm-hero-title {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  .mm-hero-description {
    max-width: none !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    -webkit-line-clamp: 2;
  }

  .mm-hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem !important;
    margin-top: 0 !important;
    padding-top: 0.2rem !important;
  }

  .mm-hero-actions > a {
    width: 100%;
    min-height: 3rem;
    padding: 0.78rem 0.8rem !important;
    border-radius: 9999px !important;
    font-size: 0.92rem !important;
  }

  .mm-section-title {
    font-size: 1.85rem !important;
    line-height: 1.08 !important;
  }

  .mm-hero-title {
    font-size: 1.72rem !important;
    line-height: 1.12 !important;
    padding-bottom: 0;
  }

  .mm-breadcrumb {
    font-size: 0.8125rem !important;
    gap: 0.35rem !important;
  }

  .mm-page-intro-title {
    font-size: 1.85rem !important;
    line-height: 1.08 !important;
  }

  .mm-product-detail-title {
    font-size: 1.85rem !important;
    line-height: 1.08 !important;
  }

  .mm-detail-image img {
    padding: 1rem !important;
  }

  .mm-detail-thumb {
    width: 3.5rem !important;
    height: 3.5rem !important;
  }

  .mm-detail-actions {
    gap: 0.6rem !important;
  }

  .mm-hero-visual-stage {
    inset: 0.35rem;
  }

  .mm-hero-visual-image {
    transform: translate(var(--mm-hero-image-mobile-x, 0), var(--mm-hero-image-mobile-y, 0))
      scale(var(--mm-hero-image-mobile-scale, 1)) !important;
  }

  .mm-catalog-group-heading {
    padding: 1.2rem;
  }

  .mm-catalog-card {
    padding: 1.2rem !important;
  }

  .mm-catalog-card-title {
    max-width: none;
    font-size: 1.55rem !important;
  }

  .mm-catalog-card-summary {
    max-width: none;
    line-height: 1.65 !important;
  }
}

@media (max-width: 389px) {
  .mm-hero-title {
    font-size: 1.55rem !important;
  }

  .mm-hero-visual {
    height: 11.5rem;
    min-height: 11.5rem !important;
    max-height: 11.5rem;
  }

}

@media (min-width: 640px) {
  .mm-hero-stage {
    height: 520px;
    min-height: 520px;
  }

  .mm-hero-visual {
    height: 26rem;
    min-height: 26rem;
    max-height: 26rem;
    aspect-ratio: auto !important;
  }

}

@media (max-width: 767px) {
  .mm-brand-card {
    min-height: 18rem !important;
  }
}


@media (max-width: 1023px) {
  [data-hero-slide] .relative.aspect-\[16\/9\] {
    aspect-ratio: 16 / 9;
    border-radius: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .mm-hero-stage {
    height: clamp(500px, 41.7vw, 860px);
    min-height: clamp(500px, 41.7vw, 860px);
  }

  .mm-hero-visual {
    height: 34rem;
    min-height: 34rem !important;
    max-height: 34rem;
    aspect-ratio: auto !important;
  }

  .mm-hero-copy {
    min-height: 0 !important;
  }

  .mm-hero-copy-body {
    min-height: auto !important;
    height: auto;
  }

  .mm-hero-title {
    font-size: clamp(3.5rem, 4.1vw, 5rem) !important;
  }

  .mm-catalog-grid {
    grid-template-columns: 1fr;
  }
}

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

.mm-spec-value-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mm-reference-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

@media (min-width: 768px) {
  .mm-spec-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mm-references-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .mm-spec-value-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mm-references-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============================================================
   Eksik Tailwind sınıfları – app.css'de derlenmemiş
   ============================================================ */

/* gap-7 = 1.75rem */
.gap-7 { gap: 1.75rem; }

/* xl: responsive sınıflar */
@media (min-width: 1280px) {
  .xl\:block          { display: block; }
  .xl\:flex-1         { flex: 1 1 0%; }
  .xl\:items-center   { align-items: center; }
  .xl\:justify-center { justify-content: center; }
  .xl\:gap-1          { gap: 0.25rem; }
}

/* hover:-translate-y-1 */
.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

/* group-hover:scale-[1.04] */
.group:hover .group-hover\:scale-\[1\.04\] {
  transform: scale(1.04);
}

/* group-hover:scale-105 */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

/* hover:shadow-[0_18px_42px_rgba(15,23,42,0.08)] */
.hover\:shadow-\[0_18px_42px_rgba\(15\,23\,42\,0\.08\)\]:hover {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

/* hover:shadow-[0_24px_70px_rgba(15,23,42,0.1)] */
.hover\:shadow-\[0_24px_70px_rgba\(15\,23\,42\,0\.1\)\]:hover {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

/* hover:shadow-[0_24px_70px_rgba(15,23,42,0.12)] */
.hover\:shadow-\[0_24px_70px_rgba\(15\,23\,42\,0\.12\)\]:hover {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

/* ============================================================
   Search page – büyük arama formu
   ============================================================ */

.mm-search-page-form {
  max-width: 52rem;
}

.mm-search-page-form input {
  min-height: 3.6rem !important;
  font-size: 1.0625rem !important;
}

.mm-search-page-btn {
  min-height: 3.6rem !important;
  min-width: 7rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  white-space: nowrap;
  padding: 0 1.5rem !important;
  border-radius: 1rem !important;
  background: rgb(26, 55, 164) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(26, 55, 164, 0.26);
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.mm-search-page-btn:hover {
  background: rgb(20, 44, 135) !important;
  box-shadow: 0 10px 28px rgba(26, 55, 164, 0.32);
}

/* Search panel – mobilde tam genişlik buton */

@media (max-width: 520px) {
  .mm-search-panel {
    grid-template-columns: 1fr;
  }

  .mm-search-panel button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Full-bleed hero slider
   ============================================================ */

.mm-fb-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.mm-fb-slide.block {
  opacity: 1;
  pointer-events: auto;
}

.mm-fb-slide > img {
  object-position: center center;
  transform: none;
}

.mm-fb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.48) 36%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.38) 100%);
}

.mm-fb-valign {
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(5.4rem, 7.2vw, 8rem);
}

.mm-fb-valign > .mx-auto {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.mm-fb-content {
  width: min(100%, 48rem);
  max-width: 48rem !important;
  margin-right: auto;
  margin-left: auto;
  padding: 0 0 0.35rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}

.mm-hero-animate .mm-fb-content > .mm-fb-eyebrow,
.mm-hero-animate .mm-fb-content > .mm-fb-title,
.mm-hero-animate .mm-fb-content > .mm-fb-desc,
.mm-hero-animate .mm-fb-content > .mt-8 {
  opacity: 0;
  transform: translateY(2.25rem);
}

.mm-hero-animate .mm-fb-slide.mm-hero-copy-ready .mm-fb-content > .mm-fb-eyebrow,
.mm-hero-animate .mm-fb-slide.mm-hero-copy-ready .mm-fb-content > .mm-fb-title,
.mm-hero-animate .mm-fb-slide.mm-hero-copy-ready .mm-fb-content > .mm-fb-desc,
.mm-hero-animate .mm-fb-slide.mm-hero-copy-ready .mm-fb-content > .mt-8 {
  animation: mmHeroCopyRise 720ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.mm-hero-animate .mm-fb-slide.mm-hero-copy-ready .mm-fb-content > .mm-fb-title {
  animation-delay: 0ms;
}

.mm-hero-animate .mm-fb-slide.mm-hero-copy-ready .mm-fb-content > .mm-fb-desc {
  animation-delay: 180ms;
}

.mm-hero-animate .mm-fb-slide.mm-hero-copy-ready .mm-fb-content > .mt-8 {
  animation-delay: 360ms;
}

@keyframes mmHeroCopyRise {
  from {
    opacity: 0;
    transform: translateY(2.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mm-hero-animate .mm-fb-content > .mm-fb-eyebrow,
  .mm-hero-animate .mm-fb-content > .mm-fb-title,
  .mm-hero-animate .mm-fb-content > .mm-fb-desc,
  .mm-hero-animate .mm-fb-content > .mt-8 {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.mm-fb-eyebrow {
  display: none !important;
  color: #ffba6a !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: rgba(7, 18, 34, 0.22) !important;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
  backdrop-filter: blur(6px);
}

.mm-fb-title {
  max-width: 24ch;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0 !important;
  font-size: clamp(1.65rem, 2.45vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.78);
}

.mm-fb-desc {
  max-width: 38rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(0.86rem, 0.98vw, 0.98rem) !important;
  font-weight: 600;
  line-height: 1.55 !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.78);
}

.mm-fb-content .mt-8 {
  margin-top: 1.35rem !important;
  justify-content: center;
}

.mm-fb-sec-btn {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #26313f !important;
  backdrop-filter: blur(8px);
}

.mm-fb-sec-btn:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: #111827 !important;
}

.mm-fb-content .mt-8 a {
  min-width: 9.25rem;
  border-radius: 0.2rem !important;
  padding: 0.78rem 1.35rem !important;
  font-size: 0.82rem !important;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.mm-fb-content .mt-8 a:first-child {
  background: #3b8ced !important;
  box-shadow: 0 18px 42px rgba(30, 100, 190, 0.32) !important;
}

.mm-fb-content .mt-8 a:first-child:hover {
  background: #2478d5 !important;
}

.mm-fb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 4.9rem;
  border-radius: 0;
  border: 0;
  background: rgba(5, 13, 24, 0.58);
  color: #fff;
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.mm-fb-arrow:hover {
  background: rgba(5, 13, 24, 0.78);
}

.mm-fb-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.mm-fb-arrow-prev { left: 0; }
.mm-fb-arrow-next { right: 0; }

.mm-fb-dots-bar {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0;
  border-radius: 9999px;
  background: transparent;
  backdrop-filter: none;
}

.mm-fb-dot {
  height: 0.78rem;
  width: 0.78rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  box-shadow: 0 0 0 1px rgba(7, 18, 34, 0.12);
  cursor: pointer;
  transition: background-color 240ms ease, box-shadow 240ms ease;
}

.mm-fb-dot.mm-hero-dot-active {
  width: 0.78rem;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px #fff, 0 6px 18px rgba(2, 6, 23, 0.18);
}

@media (min-width: 1024px) {
  .mm-fb-arrow-prev { left: 0; }
  .mm-fb-arrow-next { right: 0; }
}

@media (max-width: 639px) {
  .mm-hero-stage {
    height: 590px;
    min-height: 590px;
  }

  .mm-fb-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.38) 40%, rgba(0, 0, 0, 0.86) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08));
  }

  .mm-fb-valign {
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5.6rem;
  }

  .mm-fb-content {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mm-fb-eyebrow {
    max-width: 100%;
    font-size: 0.62rem !important;
    letter-spacing: 0.16em !important;
  }

  .mm-fb-title {
    margin-top: 0 !important;
    max-width: 18ch;
    font-size: 1.35rem;
    line-height: 1.12;
  }

  .mm-fb-desc {
    margin-top: 0.65rem !important;
    -webkit-line-clamp: 2;
    font-size: 0.78rem !important;
    line-height: 1.55 !important;
  }

  .mm-fb-content .mt-8 {
    margin-top: 1rem !important;
  }

  .mm-fb-content .mt-8 a {
    flex: 1 1 9rem;
    min-width: 0;
    padding: 0.72rem 0.9rem !important;
    font-size: 0.78rem !important;
  }

  .mm-fb-arrow {
    width: 2.55rem;
    height: 3.8rem;
    top: auto;
    bottom: 1.05rem;
    transform: none;
  }

  .mm-fb-arrow:active {
    transform: scale(0.96);
  }

  .mm-fb-arrow-prev { left: 0; }
  .mm-fb-arrow-next { right: 0; }

  .mm-fb-dots-bar {
    bottom: 2.35rem;
  }
}
