:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --soft: #f6f6f6;
  --line: #e8e8e8;
  --text: #111111;
  --muted: #6a6a6a;
  --blue: #36b5c7;
  --orange: #f47c12;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.55
}

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

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

.img-2 {
  max-width: 75%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.navbar {
  height: 96px;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 24px
}

.logo-left img {
  height: 72px;
  width: auto
}

.logo-right {
  display: flex;
  justify-content: flex-end
}

.logo-right img {
  height: 92px;
  width: auto
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  font-weight: 800;
  font-size: 15px
}

.nav-menu>li {
  position: relative
}

.nav-menu a {
  padding: 35px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.nav-menu>li>a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
  transition: .25s
}

.nav-menu>li:hover>a:after {
  width: 100%
}

.dropdown {
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 245px;
  background: var(--white);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transition: .25s
}

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

.dropdown li {
  list-style: none;
  position: relative
}

.dropdown a {
  display: flex;
  padding: 10px 18px;
  font-weight: 800;
  color: #222
}

.dropdown a:hover {
  color: var(--orange)
}

.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 190px;
  background: var(--white);
  border-radius: 0 16px 16px 16px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: .25s
}

.dropdown li:hover>.sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0)
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--black);
  color: #fff;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer
}

.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .45), rgba(0, 0, 0, .18)), url('../img/hero.jpg') center/cover
}

.hero-content {
  max-width: 760px;
  padding: 100px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 24px
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%
}

.hero h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -3px;
  margin-bottom: 28px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .35)
}

.hero p {
  font-size: 18px;
  max-width: 620px;
  font-weight: 700;
  margin-bottom: 30px
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .25s;
  cursor: pointer
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(244, 124, 18, .25)
}

.btn-primary:hover {
  transform: translateY(-3px)
}

.btn-outline {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px
}

.stat {
  min-width: 160px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  padding: 14px 18px
}

.stat strong {
  display: block;
  font-size: 26px;
  line-height: 1
}

.section {
  padding: 90px 0
}

.section-dark {
  background: var(--black);
  color: #fff
}

.section-soft {
  background: var(--soft)
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1px;
  line-height: 1.05
}

.section-head p {
  max-width: 470px;
  color: var(--muted);
  font-weight: 700
}

.section-dark .section-head p {
  color: #c9c9c9
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.home-product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .25s
}

.product-card:hover {
  transform: translateY(-7px)
}

.product-card img {
  height: 210px;
  width: 100%;
  object-fit: cover
}

.product-card .pad {
  padding: 22px
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 8px
}

.product-card p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px
}

.text-link {
  font-weight: 900;
  color: var(--orange)
}

.works-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr .9fr;
  grid-template-rows: 230px 230px;
  gap: 18px
}

.work-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  background: #222;
  color: #fff
}

.work-card:first-child {
  grid-row: span 2
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.58);
  transition: .5s
}

.work-card:hover img {
  transform: scale(1.06);
  filter: brightness(.72)
}

.work-card h3 {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-size: 24px;
  text-shadow: 0 8px 16px rgba(0, 0, 0, .6)
}

.refs-home {
  overflow: hidden
}

.ref-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 24s linear infinite
}

.ref-box {
  width: 210px;
  height: 105px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #333
}

.ref-box:nth-child(even) {
  color: var(--orange)
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center
}

.about-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.about-img img {
  height: 480px;
  width: 100%;
  object-fit: cover
}

.about-text h2 {
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 20px
}

.about-text p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 18px
}

.page-hero {
  padding: 95px 0;
  background: var(--black);
  color: #fff
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 18px
}

.page-hero p {
  max-width: 690px;
  color: #d4d4d4;
  font-weight: 700
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center
}

.detail-grid img {
  border-radius: 26px;
  box-shadow: var(--shadow);
  height: 420px;
  width: 100%;
  object-fit: cover
}

.detail-grid h2 {
  font-size: 42px;
  margin-bottom: 15px
}

.detail-grid p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.reference-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900
}

.reference-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px)
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px
}

.contact-info {
  background: var(--black);
  color: #fff;
  border-radius: 28px;
  padding: 36px
}

.contact-info h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 18px
}

.info-line {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 34px
}

.form-grid {
  display: grid;
  gap: 14px
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  font: inherit;
  font-weight: 700
}

textarea {
  min-height: 150px;
  resize: vertical
}

select option {
  font-weight: 700
}

.footer {
  background: var(--black);
  color: #fff;
  padding: 60px 0 30px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px
}

.footer-logo {
  height: 72px;
  margin-bottom: 15px
}

.footer h4 {
  margin-bottom: 14px
}

.footer a {
  display: block;
  color: #eee;
  margin: 7px 0
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 40px;
  padding-top: 22px;
  color: #ccc
}

.floating {
  display: none !important
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .7s
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:960px) {
  .navbar {
    grid-template-columns: 120px 1fr 120px;
    height: 82px
  }

  .logo-left img {
    height: 56px
  }

  .logo-right img {
    height: 68px
  }

  .mobile-toggle {
    display: block;
    justify-self: center
  }

  .nav-wrap {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    display: none;
    padding: 16px 20px
  }

  .nav-wrap.open {
    display: block
  }

  .nav-menu {
    display: block;
    text-align: center
  }

  .nav-menu a {
    padding: 12px 0
  }

  .nav-menu>li>a:after {
    display: none
  }

  .dropdown,
  .sub-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: 2px solid var(--orange);
    border-radius: 14px;
    display: none;
    opacity: 1;
    visibility: visible;
    margin: 4px 0 10px;
    padding: 8px;
    background: #fafafa
  }

  .has-dropdown.open>.dropdown,
  .dropdown li.open>.sub-dropdown {
    display: block
  }

  .product-grid {
    grid-template-columns: 1fr 1fr
  }

  .works-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .work-card:first-child {
    grid-row: auto
  }

  .work-card {
    height: 270px
  }

  .about-split,
  .detail-grid,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .reference-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero {
    min-height: 720px
  }
}

@media(max-width:620px) {
  .container {
    width: min(100% - 28px, 1180px)
  }

  .navbar {
    grid-template-columns: 1fr 56px 1fr;
    gap: 8px
  }

  .logo-left {
    justify-self: start
  }

  .logo-right {
    justify-self: end
  }

  .logo-left img {
    height: 48px
  }

  .logo-right img {
    height: 56px
  }

  .hero-content {
    padding: 70px 0
  }

  .hero h1 {
    letter-spacing: -1.5px
  }

  .product-grid,
  .reference-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 65px 0
  }

  .section-head {
    display: block
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr
  }
}

@media(max-width:960px) {

  .has-dropdown:hover>.dropdown,
  .dropdown li:hover>.sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-wrap.open {
    display: block;
    max-height: calc(100vh - 82px);
    overflow: auto;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .nav-menu>li {
    width: 100%;
    text-align: center;
  }

  .has-dropdown>.dropdown {
    width: min(360px, 100%);
    margin: 6px auto 14px;
  }

  .dropdown li {
    text-align: center;
  }

  .dropdown a {
    justify-content: center;
  }

  .dropdown li.has-sub>.sub-dropdown {
    width: min(320px, 92%);
    margin: 6px auto 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 2px solid var(--blue);
  }
}

.footer-logo {
  background: #fff;
  padding: 10px 14px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(255, 255, 255, .12);
  object-fit: contain;
  width: 210px;
  height: auto;
}

.nav-menu,
.nav-menu a {
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  /* letter-spacing: -0.15px; */
}

*,
*::before,
*::after {
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.dropdown a {
  font-weight: 700 !important;
}

@media(max-width:960px) {

  .nav-menu,
  .nav-menu a,
  .dropdown a {
    font-weight: 700 !important;
  }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .navbar {
    grid-template-columns: 170px 1fr 170px;
    gap: 16px;
  }

  .nav-menu {
    gap: 18px;
    font-size: 13.5px;
    white-space: nowrap;
  }

  .nav-menu a {
    white-space: nowrap;
  }

  .logo-left img {
    height: 64px;
  }

  .logo-right img {
    height: 76px;
  }
}

/* @media (min-width: 961px) and (max-width: 1060px) {
  .navbar {
    grid-template-columns: 155px 1fr 155px;
    gap: 12px;
  }

  .nav-menu {
    gap: 14px;
    font-size: 12.5px;
  }

  .logo-left img {
    height: 58px;
  }

  .logo-right img {
    height: 66px;
  }
} */


.ref-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marqueeLogos 38s linear infinite
}

.ref-track:hover {
  animation-play-state: paused
}

.ref-logo-box {
  width: 210px;
  height: 105px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px
}

.ref-logo-box img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain
}

@keyframes marqueeLogos {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.about-page-image {
  width: 100%;
  /* height: 430px; */
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 42px
}

.about-long-text {
  max-width: 980px;
  margin: 0 auto;
  font-size: 17px;
  color: #222;
  font-weight: 500;
  line-height: 1.8
}

.about-long-text p {
  margin-bottom: 22px
}

.map-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px
}

.map-card iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block
}

.product-content {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: start
}

.product-copy h2 {
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 18px
}

.product-copy p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0
}

.feature-list li {
  list-style: none;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-weight: 700
}

.feature-list li::before {
  content: '•';
  color: var(--orange);
  font-weight: 900;
  margin-right: 9px
}

.product-side-card {
  position: sticky;
  top: 120px
}

.product-side-card img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover
}

.tech-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px
}

.tech-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid #c91717;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
}

.tech-card h3 {
  font-size: 22px;
  margin-bottom: 18px
}

.tech-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed #d9d9d9;
  padding: 10px 0;
  color: #06152b
}

.tech-row:last-child {
  border-bottom: 0
}

.tech-row strong {
  white-space: nowrap
}

.product-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-top: 24px
}

.product-slider-track {
  display: flex;
  width: 300%;
  animation: slideCars 12s infinite
}

.product-slider img {
  width: 33.333%;
  height: 360px;
  object-fit: cover
}

@keyframes slideCars {

  0%,
  28% {
    transform: translateX(0)
  }

  33%,
  61% {
    transform: translateX(-33.333%)
  }

  66%,
  94% {
    transform: translateX(-66.666%)
  }

  100% {
    transform: translateX(0)
  }
}

.social-review-section {
  padding-top: 0
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px
}

.social-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow)
}

.social-card h3 {
  font-size: 28px;
  margin-bottom: 12px
}

.social-card p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 20px
}

.review-stars {
  color: var(--orange);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 12px
}

.instagram-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center
}

.instagram-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900
}

.work-card .pad,
.work-card p,
.works-grid .product-card p {
  display: none !important
}

@media(max-width:960px) {

  .product-content,
  .social-grid {
    grid-template-columns: 1fr
  }

  .product-side-card {
    position: static
  }

  .tech-card-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:620px) {
  .tech-card-grid {
    grid-template-columns: 1fr
  }

  .about-page-image {
    height: 280px
  }

  .product-slider img {
    height: 260px
  }
}


.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .pad {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .text-link {
  margin-top: auto;
  display: inline-flex;
}

.social-review-section {
  padding-top: 60px;
}

.mini-review-slider {
  margin: 14px 0 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  min-height: 76px;
  position: relative;
  overflow: hidden;
}

.mini-review {
  display: none;
  color: var(--muted);
  font-weight: 700;
}

.mini-review.active {
  display: block;
}

.mini-review strong {
  display: block;
  color: var(--text);
  margin-bottom: 3px;
}

.product-side-card .product-slider {
  margin-top: 0;
}

.product-side-card .product-slider img {
  height: 360px;
  object-fit: cover;
}


.work-card,
.gallery-card,
.product-card {
  overflow: hidden;
}

.work-card img,
.gallery-card img {
  transition: transform .45s ease;
}

.work-card:hover img,
.gallery-card:hover img {
  transform: scale(1.08);
}

.mini-review-slider {
  display: none !important;
}

.calismalar-gallery .product-card,
body:has(.page-hero) .product-card {
  overflow: hidden;
}

.calismalar-gallery .product-card img,
body:has(.page-hero) .product-card img {
  transition: transform .45s ease;
  transform-origin: center;
}

.calismalar-gallery .product-card:hover img,
body:has(.page-hero) .product-card:hover img {
  transform: scale(1.08);
}

.calismalar-gallery .product-card {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.calismalar-gallery .product-card img {
  transition: none !important;
  transform: none !important;
}

.calismalar-gallery .product-card:hover img {
  transform: none !important;
}

.calismalar-gallery .product-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, 72vw);
  height: min(420px, 72vw);
  border-radius: 22px;
  background-image: var(--preview-img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  border: 8px solid #fff;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.78);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 50;
}

.calismalar-gallery .product-card:hover {
  z-index: 100;
}

.calismalar-gallery .product-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media(max-width:768px) {
  .calismalar-gallery .product-card::after {
    display: none;
  }
}

.calismalar-gallery .product-card::after {
  display: none !important;
}

.image-hover-preview {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(620px, 82vw);
  height: min(620px, 82vw);
  transform: translate(-50%, -50%) scale(.94);
  background: #fff;
  border: 10px solid #fff;
  border-radius: 26px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .36);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  overflow: hidden;
}

.image-hover-preview.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.image-hover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media(max-width:768px) {
  .image-hover-preview {
    display: none !important;
  }
}

.image-hover-preview {
  background: #fff !important;
}

.image-hover-preview img {
  object-fit: contain !important;
  background: #fff;
}

.image-hover-preview {
  width: min(520px, 76vw) !important;
  height: min(520px, 76vw) !important;
  border: 6px solid #fff !important;
  border-radius: 22px !important;
  padding: 0 !important;
}

.image-hover-preview img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.ppf-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ppf-video-modal.is-hidden {
  display: none;
}

.ppf-video-box {
  position: relative;
  width: min(760px, 92vw);
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .45);
}

.ppf-video-box video {
  width: 100%;
  max-height: 82vh;
  display: block;
  background: #000;
}

.ppf-video-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.calismalar-gallery .product-card {
  contain: layout paint;
  content-visibility: auto;
  contain-intrinsic-size: 210px 280px;
  will-change: auto;
}

.calismalar-gallery .product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
}

@media (max-width:768px),
(prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .product-card:hover {
    transform: none !important;
  }

  .image-hover-preview {
    display: none !important;
  }
}

.about-page-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: start;
}

.about-page-layout .about-long-text {
  max-width: none;
  margin: 0;
}

.about-page-layout .about-page-image {
  width: 100%;
  /* height: 620px; */
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 0;
  position: sticky;
  top: 120px;
}

@media(max-width:960px) {
  .about-page-layout {
    grid-template-columns: 1fr;
  }

  .about-page-layout .about-page-image {
    object-position: 50% 36%;
    height: 430px;
    position: static;
    order: -1;
  }
}

@media(max-width:620px) {
  .about-page-layout .about-page-image {
    height: 300px;
  }
}

.ppf-video-player {
  display: block;
  background: #000;
  transition: opacity 0.45s ease;
  opacity: 1;
  min-height: 82vh;
}

.ppf-video-player.is-changing {
  opacity: 0;
}

.ppf-video-dots {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ppf-video-dot {
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.ppf-video-dot.is-active {
  background: #fff;
  color: #111;
}