:root {
  --navy-950: #04153f;
  --navy-850: #06255f;
  --turquoise-500: #00aaa7;
  --turquoise-650: #008f90;
  --marigold-500: #e7ae27;
  --mist-100: #f5fbfb;
  --mist-200: #e6f3f2;
  --line: rgba(4, 21, 63, 0.14);
  --ink: #12204c;
  --muted: #5b688a;
  --white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(4, 21, 63, 0.18);
  --radius: 8px;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist-100);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(245, 251, 251, 0.9), #ffffff 28rem),
    var(--mist-100);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(231, 174, 39, 0.9);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-180%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-950);
  padding: 0.75rem 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(11rem, 16rem) 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: 4.5rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px rgba(4, 21, 63, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0.55rem 1rem;
}

.brand img {
  width: 12rem;
}

.brand-animated {
  overflow: visible;
}

.brand-stage {
  position: relative;
  display: block;
  width: 12rem;
  overflow: hidden;
  border-radius: 6px;
  isolation: isolate;
}

.brand-stage .brand-logo {
  width: 100%;
  filter: saturate(1.02) contrast(1.02);
  animation: logo-clarify 6.8s ease-in-out infinite;
}

.clean-bot,
.clean-trail,
.brand-steam {
  pointer-events: none;
}

.clean-bot {
  position: absolute;
  top: 52%;
  left: 0;
  z-index: 4;
  width: 1.65rem;
  height: 1.08rem;
  transform: translate(-150%, -50%);
  animation: bot-sweep 6.8s cubic-bezier(0.62, 0.02, 0.25, 1) infinite;
}

.bot-body {
  position: absolute;
  inset: 0.08rem 0.12rem 0.22rem;
  border: 1px solid rgba(4, 21, 63, 0.22);
  border-radius: 0.34rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(222, 249, 248, 0.94)),
    var(--white);
  box-shadow: 0 5px 12px rgba(4, 21, 63, 0.16);
}

.bot-light {
  position: absolute;
  top: 0.32rem;
  left: 50%;
  width: 0.28rem;
  height: 0.28rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--turquoise-500);
  box-shadow: 0 0 0 0.18rem rgba(0, 170, 167, 0.16);
}

.bot-wheel {
  position: absolute;
  bottom: 0.06rem;
  width: 0.34rem;
  height: 0.34rem;
  border: 0.08rem solid var(--navy-850);
  border-radius: 50%;
  background: var(--white);
}

.bot-wheel-left {
  left: 0.22rem;
}

.bot-wheel-right {
  right: 0.22rem;
}

.clean-bot::after {
  position: absolute;
  right: -0.28rem;
  bottom: 0.1rem;
  width: 0.55rem;
  height: 0.12rem;
  content: "";
  border-radius: 999px;
  background: var(--marigold-500);
  transform: rotate(13deg);
  box-shadow:
    -0.08rem 0.18rem 0 var(--marigold-500),
    -0.12rem -0.16rem 0 rgba(231, 174, 39, 0.82);
}

.clean-trail {
  position: absolute;
  top: 7%;
  bottom: 5%;
  left: 0;
  z-index: 3;
  width: 2.8rem;
  opacity: 0;
  transform: translateX(-130%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82), rgba(125, 243, 239, 0.18));
  mix-blend-mode: screen;
  animation: clean-trail-sweep 6.8s ease-in-out infinite;
}

.brand-steam {
  position: absolute;
  z-index: 5;
  width: 0.62rem;
  height: 1.05rem;
  border: 2px solid rgba(0, 170, 167, 0.34);
  border-right: 0;
  border-bottom: 0;
  border-radius: 50%;
  opacity: 0;
  animation: brand-steam-rise 6.8s ease-in-out infinite;
}

.brand-steam-one {
  top: 13%;
  left: 66%;
}

.brand-steam-two {
  top: 22%;
  left: 76%;
  animation-delay: 0.14s;
}

.brand-steam-three {
  top: 36%;
  left: 84%;
  animation-delay: 0.28s;
}

@keyframes bot-sweep {
  0%,
  12% {
    opacity: 0;
    transform: translate(-150%, -50%) rotate(-3deg);
  }

  18% {
    opacity: 1;
  }

  55% {
    opacity: 1;
    transform: translate(10.6rem, -50%) rotate(2deg);
  }

  66%,
  100% {
    opacity: 0;
    transform: translate(13.6rem, -50%) rotate(2deg);
  }
}

@keyframes clean-trail-sweep {
  0%,
  13% {
    opacity: 0;
    transform: translateX(-130%);
  }

  20% {
    opacity: 0.92;
  }

  55% {
    opacity: 0.78;
    transform: translateX(9.6rem);
  }

  66%,
  100% {
    opacity: 0;
    transform: translateX(13rem);
  }
}

@keyframes brand-steam-rise {
  0%,
  56% {
    opacity: 0;
    transform: translateY(0.3rem) scale(0.72) rotate(-6deg);
  }

  67% {
    opacity: 0.72;
  }

  86%,
  100% {
    opacity: 0;
    transform: translateY(-0.8rem) scale(1.08) rotate(8deg);
  }
}

@keyframes logo-clarify {
  0%,
  18% {
    filter: saturate(0.86) contrast(0.96);
    opacity: 0.88;
  }

  58% {
    filter: saturate(0.98) contrast(1.02);
    opacity: 0.94;
  }

  70%,
  92% {
    filter: saturate(1.15) contrast(1.12) drop-shadow(0 0 0.38rem rgba(0, 170, 167, 0.18));
    opacity: 1;
  }

  100% {
    filter: saturate(1.02) contrast(1.02);
    opacity: 0.96;
  }
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.nav-links a,
.footer-links a {
  border-radius: 999px;
  color: var(--navy-850);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.75rem 0.9rem;
}

.nav-links a:hover,
.footer-links a:hover {
  background: rgba(0, 170, 167, 0.1);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-right: 0.75rem;
  border-radius: 999px;
  background: var(--navy-850);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 0 1.1rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  overflow: hidden;
  padding: 10rem max(1rem, calc((100vw - 1180px) / 2)) 3rem;
  color: var(--white);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("/assets/teknolojik-temizlik-ekipmanlari.webp");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 21, 63, 0.9) 0%, rgba(4, 21, 63, 0.72) 34%, rgba(4, 21, 63, 0.26) 68%),
    linear-gradient(180deg, rgba(4, 21, 63, 0.28), rgba(4, 21, 63, 0.64));
}

.hero::after {
  position: absolute;
  right: -11rem;
  bottom: -7rem;
  z-index: -1;
  width: 35rem;
  height: 35rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 167, 0.3), rgba(0, 170, 167, 0) 65%);
}

.steam-line {
  position: absolute;
  z-index: -1;
  width: 32rem;
  height: 8rem;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.26) transparent transparent transparent;
  border-radius: 50%;
  opacity: 0.76;
}

.steam-line-one {
  top: 18rem;
  left: 10%;
  transform: rotate(-11deg);
}

.steam-line-two {
  bottom: 9rem;
  left: 32%;
  transform: rotate(8deg);
}

.hero-content {
  width: min(660px, 100%);
}

.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--turquoise-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .section-kicker {
  color: #7df3ef;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: 4.9rem;
  line-height: 0.95;
  font-weight: 800;
}

h2 {
  color: var(--navy-950);
  font-size: 2.45rem;
  line-height: 1.05;
  font-weight: 800;
}

h3 {
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero-copy {
  max-width: 40rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  padding: 0 1.25rem;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.button-primary {
  background: var(--turquoise-500);
  color: var(--navy-950);
  box-shadow: 0 18px 45px rgba(0, 170, 167, 0.32);
}

.button-primary:hover {
  background: #13c7c2;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin-top: 5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-service-strip span {
  display: grid;
  place-items: center;
  min-height: 4.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  padding: 0.75rem;
}

.trust-band,
.coverage-band,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -2.5rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-band div {
  min-height: 8.5rem;
  background: var(--white);
  padding: 1.35rem;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--navy-950);
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.08rem;
}

.trust-band span {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.72fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-heading p:not(.section-kicker),
.method-copy p,
.coverage-band p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.photo-section {
  padding-bottom: 3rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.photo-card {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-950);
  box-shadow: 0 16px 44px rgba(4, 21, 63, 0.12);
}

.photo-card-large {
  grid-row: span 3;
  min-height: 38rem;
}

.photo-card img,
.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card img {
  position: absolute;
  inset: 0;
  opacity: 0.86;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 21, 63, 0.02), rgba(4, 21, 63, 0.78));
}

.photo-card div {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  color: var(--white);
}

.photo-card span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(0, 170, 167, 0.92);
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.42rem 0.7rem;
}

.photo-card h3 {
  max-width: 18rem;
  margin-top: 0.7rem;
  color: var(--white);
}

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

.service-card {
  min-height: 15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: 0 14px 36px rgba(4, 21, 63, 0.06);
}

.service-photo {
  aspect-ratio: 16 / 10;
  height: auto;
  margin-bottom: 1.15rem;
  border-radius: calc(var(--radius) - 2px);
}

.service-card:hover {
  border-color: rgba(0, 170, 167, 0.45);
  transform: translateY(-2px);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.service-card-highlight {
  background:
    linear-gradient(140deg, rgba(0, 170, 167, 0.12), rgba(231, 174, 39, 0.1)),
    var(--white);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(0, 170, 167, 0.2);
  border-radius: 50%;
  background: rgba(0, 170, 167, 0.1);
  color: var(--turquoise-650);
  font-size: 1.2rem;
  font-weight: 900;
}

.service-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.tech-section {
  background:
    linear-gradient(120deg, rgba(4, 21, 63, 0.96), rgba(6, 37, 95, 0.92)),
    var(--navy-950);
  color: var(--white);
  padding: 5rem 0;
}

.tech-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 0.72fr);
  gap: 3rem;
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.tech-copy h2 {
  color: var(--white);
}

.tech-copy .section-kicker {
  color: #7df3ef;
}

.tech-copy p {
  max-width: 45rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.tech-stack {
  display: grid;
  gap: 0.85rem;
}

.tech-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 1.15rem;
}

.tech-item strong,
.tech-item span {
  display: block;
}

.tech-item strong {
  color: var(--white);
  font-family: "Sora", Arial, sans-serif;
  font-size: 1rem;
}

.tech-item span {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.78fr);
  gap: 4rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.method-copy {
  position: sticky;
  top: 2rem;
}

.method-copy p {
  margin: 1.2rem 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 1.35rem;
  color: var(--turquoise-650);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  margin-left: 0.5rem;
}

.method-list {
  border-top: 1px solid var(--line);
}

.method-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}

.method-row span {
  color: var(--navy-950);
  font-family: "Sora", Arial, sans-serif;
  font-weight: 800;
}

.method-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.coverage-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.75fr);
  gap: 3rem;
  align-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 170, 167, 0.18), rgba(231, 174, 39, 0.16)),
    var(--navy-950);
  padding: 3rem;
}

.coverage-band h2,
.coverage-band p {
  color: var(--white);
}

.coverage-band .section-kicker {
  color: #7df3ef;
}

.coverage-band p {
  margin: 0;
}

.contact-section {
  padding-bottom: 4rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.quote-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--navy-850);
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid rgba(4, 21, 63, 0.18);
  border-radius: var(--radius);
  background: #fbfefe;
  color: var(--ink);
  padding: 0.8rem 0.95rem;
}

.quote-form textarea {
  resize: vertical;
}

.form-submit {
  grid-column: 1 / -1;
  width: fit-content;
  min-width: 14rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 6rem;
}

.footer-brand {
  padding-left: 0;
}

.footer-brand img {
  width: 10.5rem;
}

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

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: flex;
  gap: 0.6rem;
}

.floating-button {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(4, 21, 63, 0.28);
}

.floating-whatsapp {
  background: var(--turquoise-650);
}

.floating-instagram {
  background: var(--navy-850);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-service-strip,
  .trust-band,
  .photo-grid,
  .service-grid,
  .section-heading,
  .tech-inner,
  .method-section,
  .coverage-band {
    grid-template-columns: 1fr;
  }

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

  .photo-card-large {
    grid-row: auto;
    min-height: 22rem;
  }

  .method-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 0.7rem;
    width: calc(100% - 1rem);
    min-height: 3.7rem;
  }

  .brand {
    padding: 0.4rem 0.7rem;
  }

  .brand img {
    width: 9.3rem;
  }

  .nav-action {
    min-height: 2.7rem;
    margin-right: 0.5rem;
    padding: 0 0.85rem;
  }

  .hero {
    min-height: 720px;
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 21, 63, 0.88), rgba(4, 21, 63, 0.64)),
      linear-gradient(90deg, rgba(4, 21, 63, 0.86), rgba(4, 21, 63, 0.38));
  }

  .hero-bg {
    background-position: 58% center;
  }

  h1 {
    max-width: 9ch;
    font-size: 3rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-action {
    white-space: nowrap;
  }

  .trust-band {
    margin-top: -1.2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .service-grid,
  .photo-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card-large {
    min-height: 17rem;
  }

  .method-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .coverage-band {
    padding: 2rem 1.25rem;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .floating-contact {
    display: none;
  }
}

/* =========================================================
   Temizlik reveal — buğulu cam silme animasyon katmanı
   (yalnızca .js-clean aktifken; içerik aksi halde tam görünür)
   ========================================================= */
.js-clean [data-clean] {
  position: relative;
}

/* Bölüm içi kartların kademeli "yerine oturması".
   transform değil, bağımsız `translate` özelliği kullanıyoruz ki
   kartların kendi :hover transform'larıyla çakışmasın. */
.js-clean .clean-item {
  opacity: 0;
  translate: 0 16px;
  filter: blur(3px);
  transition:
    opacity 0.6s ease,
    translate 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.6s ease;
  transition-delay: calc(var(--i, 0) * 55ms);
}

.js-clean [data-clean].is-clean .clean-item {
  opacity: 1;
  translate: 0 0;
  filter: none;
}

/* --- Buğulu cam katmanı (sağdan sola silinen sis) --- */
.clean-veil {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.74), rgba(226, 243, 242, 0.62) 45%, rgba(255, 255, 255, 0.8)),
    radial-gradient(130% 90% at 72% 28%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 62%);
  -webkit-backdrop-filter: blur(7px) saturate(1.08);
  backdrop-filter: blur(7px) saturate(1.08);
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.95s cubic-bezier(0.62, 0.02, 0.25, 1);
}

/* su izi dokusu — buğunun arkasında kalan ince nem damlaları */
.clean-veil::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(9px 9px at 22% 32%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 70%),
    radial-gradient(12px 12px at 58% 62%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 70%),
    radial-gradient(8px 8px at 82% 42%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 70%);
  opacity: 0.75;
  mix-blend-mode: screen;
}

.js-clean [data-clean].is-clean .clean-veil {
  clip-path: inset(0 100% 0 0);
}

/* squeegee / çektirme kenarı — silme cephesinde süzülen parlak şerit */
.veil-edge {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 104%;
  width: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 243, 239, 0), rgba(255, 255, 255, 0.96) 48%, rgba(125, 243, 239, 0.35));
  filter: blur(1.2px);
  opacity: 0;
}

.js-clean [data-clean].is-clean .veil-edge {
  animation: squeegee-sweep 0.95s cubic-bezier(0.62, 0.02, 0.25, 1) both;
}

@keyframes squeegee-sweep {
  0% {
    left: 104%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: -6%;
    opacity: 0;
  }
}

/* buhar — silme anında yükselip dağılan turkuaz buğu */
.veil-steam {
  position: absolute;
  width: 1.1rem;
  height: 1.9rem;
  border: 3px solid rgba(0, 170, 167, 0.32);
  border-right: 0;
  border-bottom: 0;
  border-radius: 50%;
  opacity: 0;
}

.veil-steam.s1 {
  top: 42%;
  left: 60%;
}

.veil-steam.s2 {
  top: 30%;
  left: 73%;
}

.js-clean [data-clean].is-clean .veil-steam {
  animation: veil-steam-rise 1.1s ease-out both;
}

.js-clean [data-clean].is-clean .veil-steam.s2 {
  animation-delay: 0.16s;
}

@keyframes veil-steam-rise {
  0% {
    opacity: 0;
    transform: translateY(0.6rem) scale(0.7) rotate(-8deg);
  }
  35% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: translateY(-1.7rem) scale(1.15) rotate(10deg);
  }
}

/* --- Parlama / ışıltı katmanı (silme bitince) --- */
.clean-gloss {
  position: absolute;
  inset: 0;
  z-index: 6;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.gloss-shine {
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -30%;
  width: 26%;
  transform: rotate(18deg) translateX(-260%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  opacity: 0;
}

.js-clean [data-clean].is-clean .gloss-shine {
  animation: gloss-sweep 0.75s ease-out 0.5s both;
}

@keyframes gloss-sweep {
  0% {
    transform: rotate(18deg) translateX(-260%);
    opacity: 0;
  }
  30% {
    opacity: 0.85;
  }
  100% {
    transform: rotate(18deg) translateX(520%);
    opacity: 0;
  }
}

/* ışıltı yıldızları — yalnızca cam & hero varyantında */
.gloss-spark {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #ffffff;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  filter: drop-shadow(0 0 5px rgba(125, 243, 239, 0.9));
  opacity: 0;
  display: none;
}

.gloss-spark.k1 {
  top: 24%;
  left: 30%;
}

.gloss-spark.k2 {
  top: 58%;
  left: 64%;
}

.gloss-spark.k3 {
  top: 38%;
  left: 82%;
}

[data-clean="glass"] .gloss-spark,
[data-clean="hero"] .gloss-spark {
  display: block;
}

.js-clean [data-clean].is-clean .gloss-spark {
  animation: spark-pop 0.6s ease-out both;
}

.js-clean [data-clean].is-clean .gloss-spark.k1 {
  animation-delay: 0.62s;
}

.js-clean [data-clean].is-clean .gloss-spark.k2 {
  animation-delay: 0.78s;
}

.js-clean [data-clean].is-clean .gloss-spark.k3 {
  animation-delay: 0.7s;
}

@keyframes spark-pop {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(0deg);
  }
  45% {
    opacity: 1;
    transform: scale(1) rotate(35deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(70deg);
  }
}

/* --- Varyant: süpürge / yer silme bandı (sarı toz şıltısı) --- */
[data-clean="sweep"] .veil-edge {
  width: 30px;
  background: linear-gradient(90deg, rgba(231, 174, 39, 0), rgba(255, 255, 255, 0.9) 50%, rgba(231, 174, 39, 0.28));
  box-shadow: 0 0 18px 4px rgba(231, 174, 39, 0.16);
}

/* --- Varyant: cam silen robot parıltısı --- */
[data-clean="glass"] .veil-edge {
  background: linear-gradient(90deg, rgba(125, 243, 239, 0), rgba(255, 255, 255, 0.98) 50%, rgba(0, 170, 167, 0.4));
  box-shadow: 0 0 16px 3px rgba(0, 170, 167, 0.2);
}

/* --- Hero: açılışta biraz daha yumuşak buğu dağılması --- */
[data-clean="hero"] .clean-veil {
  transition-duration: 1.2s;
  -webkit-backdrop-filter: blur(9px) saturate(1.05);
  backdrop-filter: blur(9px) saturate(1.05);
}

/* Mobilde sade: backdrop-blur ve ağır efektler kapalı */
@media (max-width: 640px) {
  .clean-veil {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.85), rgba(226, 243, 242, 0.72));
    transition-duration: 0.7s;
  }

  .veil-edge {
    width: 14px;
  }

  .veil-steam,
  .gloss-spark {
    display: none !important;
  }

  .js-clean .clean-item {
    filter: none;
    translate: 0 12px;
    transition-duration: 0.5s;
  }
}

/* Hareket azaltma tercihi: tüm efekt katmanı devre dışı, içerik tam görünür */
@media (prefers-reduced-motion: reduce) {
  .clean-veil,
  .clean-gloss {
    display: none !important;
  }

  .js-clean .clean-item {
    opacity: 1 !important;
    translate: none !important;
    filter: none !important;
  }
}
