/* ==========================================================
   STILWAX CAR CARE
   Premium Automotive Website
   style.css
========================================================== */


/* ==========================================================
   1. ROOT / TASARIM SİSTEMİ
========================================================== */

:root {
  --color-black: #050708;
  --color-black-soft: #080b0d;
  --color-black-card: #0c1012;
  --color-black-card-2: #111618;
  --color-dark-gray: #171c1e;

  --color-white: #f7f8f6;
  --color-white-soft: #dfe3df;
  --color-gray: #969d9a;
  --color-gray-dark: #626966;

  --color-red: #d92332;
  --color-red-light: #f14450;
  --color-red-dark: #94121c;

  --color-green: #249447;
  --color-green-light: #3fc766;
  --color-green-dark: #12652d;

  --color-gold: #c9aa72;
  --color-whatsapp: #25d366;

  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-strong: rgba(255, 255, 255, 0.18);

  --background-glass: rgba(10, 14, 16, 0.68);
  --background-glass-strong: rgba(7, 10, 12, 0.88);

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Manrope", sans-serif;

  --container-width: 1320px;
  --header-height: 92px;

  --section-space: clamp(100px, 10vw, 180px);

  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 28px;
  --radius-pill: 999px;

  --shadow-small:
    0 10px 30px rgba(0, 0, 0, 0.28);

  --shadow-medium:
    0 24px 70px rgba(0, 0, 0, 0.38);

  --shadow-large:
    0 40px 120px rgba(0, 0, 0, 0.5);

  --transition-fast: 180ms ease;
  --transition-normal: 350ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 700ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* ==========================================================
   2. RESET
========================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;

  color: var(--color-white-soft);
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(217, 35, 50, 0.04),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 25%,
      rgba(36, 148, 71, 0.035),
      transparent 30%
    ),
    var(--color-black);

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open,
body.is-loading {
  overflow: hidden;
}

body.is-loading {
  height: 100vh;
}

main {
  display: block;
  overflow: hidden;
}

section {
  position: relative;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

img {
  user-select: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  padding: 0;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--color-white);
  background: var(--color-red);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080a0b;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #080a0b;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(
      180deg,
      var(--color-red),
      var(--color-green)
    );
}


/* ==========================================================
   3. GENEL YARDIMCI SINIFLAR
========================================================== */

.container {
  width: min(
    calc(100% - 48px),
    var(--container-width)
  );
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section-glow {
  position: absolute;
  width: 520px;
  height: 520px;

  border-radius: 50%;
  opacity: 0.12;
  filter: blur(130px);
  pointer-events: none;
}

.section-glow--red {
  top: 4%;
  left: -300px;
  background: var(--color-red);
}

.section-glow--green {
  right: -320px;
  bottom: 5%;
  background: var(--color-green);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="hero"] {
  transform: translateY(60px);
}

[data-reveal="hero"].is-visible {
  transform: translateY(0);
}


/* ==========================================================
   4. TYPOGRAPHY / SECTION HEADING
========================================================== */

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(54px, 6vw, 90px);
}

.section-heading--center {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 60px;
  align-items: end;
}

.section-heading--split .section-description {
  margin-bottom: 10px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin-bottom: 20px;

  color: var(--color-white-soft);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker > span {
  width: 32px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      var(--color-green),
      var(--color-red)
    );
}

.section-kicker--left {
  justify-content: flex-start;
  color: var(--color-red-light);
}

.section-kicker--left::before {
  width: 34px;
  height: 1px;
  margin-right: 12px;

  background:
    linear-gradient(
      90deg,
      var(--color-green),
      var(--color-red)
    );

  content: "";
}

.section-title {
  max-width: 980px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(40px, 5.3vw, 76px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-title strong {
  display: block;

  color: transparent;
  background:
    linear-gradient(
      100deg,
      var(--color-white) 0%,
      #bbc0bd 48%,
      var(--color-white) 100%
    );

  font-weight: 800;

  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading--center .section-title {
  margin-inline: auto;
}

.section-description {
  max-width: 690px;
  margin-top: 26px;

  color: var(--color-gray);

  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.85;
}

.section-heading--center .section-description {
  margin-inline: auto;
}


/* ==========================================================
   5. BUTONLAR
========================================================== */

.button {
  position: relative;

  display: inline-flex;
  min-height: 52px;
  padding: 14px 24px;
  overflow: hidden;

  align-items: center;
  justify-content: center;
  gap: 11px;

  border: 1px solid transparent;
  border-radius: var(--radius-pill);

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  white-space: nowrap;

  transition:
    color var(--transition-normal),
    border-color var(--transition-normal),
    background var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-normal);
}

.button::before {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      115deg,
      transparent 20%,
      rgba(255, 255, 255, 0.22) 48%,
      transparent 75%
    );

  transform: translateX(-130%);
  transition: transform 800ms ease;
  content: "";
}

.button:hover::before {
  transform: translateX(130%);
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button__arrow {
  position: relative;
  z-index: 1;

  display: inline-flex;
  transition: transform var(--transition-normal);
}

.button:hover .button__arrow {
  transform: translate(3px, -3px);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 12px;
}

.button--large {
  min-height: 62px;
  padding: 18px 30px;
  font-size: 13px;
}

.button--primary {
  color: var(--color-white);
  background:
    linear-gradient(
      105deg,
      var(--color-red-dark),
      var(--color-red) 45%,
      #e63643
    );

  box-shadow:
    0 15px 40px rgba(217, 35, 50, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.22);
}

.button--primary:hover {
  box-shadow:
    0 20px 50px rgba(217, 35, 50, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.26);
}

.button--outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost {
  color: var(--color-white-soft);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.button--ghost:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.button--light {
  color: var(--color-black);
  background: var(--color-white);
}

.button--light:hover {
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.15);
}

.button--light-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.button--light-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--color-white);

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform var(--transition-normal);
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

.round-link {
  display: inline-flex;
  width: 56px;
  height: 56px;

  align-items: center;
  justify-content: center;

  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);

  font-size: 23px;

  transition:
    border-color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.round-link:hover {
  border-color: var(--color-red);
  background: var(--color-red);
  transform: rotate(45deg);
}

.round-link--large {
  width: 76px;
  height: 76px;
  font-size: 28px;
}


/* ==========================================================
   6. PRELOADER
========================================================== */

.preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;

  display: grid;
  overflow: hidden;
  place-items: center;

  background:
    radial-gradient(
      circle at center,
      #151a1c 0%,
      #080a0b 42%,
      #030404 100%
    );

  transition:
    opacity 750ms ease,
    visibility 750ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__glow {
  position: absolute;
  width: min(80vw, 800px);
  height: min(80vw, 800px);

  border-radius: 50%;
  background:
    conic-gradient(
      from 90deg,
      rgba(36, 148, 71, 0.07),
      transparent 30%,
      rgba(217, 35, 50, 0.1),
      transparent 70%,
      rgba(36, 148, 71, 0.07)
    );

  filter: blur(50px);
  animation: preloaderRotate 8s linear infinite;
}

.preloader__content {
  position: relative;
  z-index: 2;

  display: flex;
  width: min(380px, calc(100vw - 48px));

  flex-direction: column;
  align-items: center;

  text-align: center;
}

.preloader__logo-frame {
  position: relative;

  display: grid;
  width: 118px;
  height: 118px;
  margin-bottom: 24px;
  overflow: hidden;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);

  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.018),
    0 30px 80px rgba(0, 0, 0, 0.55);
}

.preloader__logo-frame::before {
  position: absolute;
  inset: -1px;

  border-radius: inherit;
  background:
    conic-gradient(
      from 0deg,
      var(--color-green),
      transparent 28%,
      var(--color-red),
      transparent 72%,
      var(--color-green)
    );

  opacity: 0.55;
  animation: preloaderRotate 4s linear infinite;
  content: "";
}

.preloader__logo-frame::after {
  position: absolute;
  inset: 2px;

  border-radius: inherit;
  background: #090c0d;
  content: "";
}

.preloader__logo {
  position: relative;
  z-index: 2;

  width: 78px;
  height: 78px;
  object-fit: contain;

  animation: logoPulse 2s ease-in-out infinite;
}

.preloader__brand {
  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

.preloader__brand span {
  display: block;
  margin-top: 6px;

  color: var(--color-gray);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.52em;
}

.preloader__line {
  display: flex;
  width: 130px;
  height: 2px;
  margin: 25px 0 19px;
  overflow: hidden;
}

.preloader__line span {
  width: 50%;
  transform: scaleX(0);
  animation: preloaderLine 1.4s ease forwards 0.3s;
}

.preloader__line-red {
  background: var(--color-red);
  transform-origin: right;
}

.preloader__line-green {
  background: var(--color-green);
  transform-origin: left;
}

.preloader__status {
  color: var(--color-gray);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preloader__progress {
  width: 100%;
  height: 2px;
  margin-top: 26px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.08);
}

.preloader__progress span {
  display: block;
  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--color-green),
      var(--color-white),
      var(--color-red)
    );

  box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
}

.preloader__percentage {
  margin-top: 11px;
  align-self: flex-end;

  color: var(--color-gray);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

@keyframes preloaderRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloaderLine {
  to {
    transform: scaleX(1);
  }
}


/* ==========================================================
   7. SCROLL PROGRESS
========================================================== */

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--color-green),
      var(--color-white),
      var(--color-red)
    );

  box-shadow: 0 0 14px rgba(217, 35, 50, 0.55);
}


/* ==========================================================
   8. BRAND / HEADER
========================================================== */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  width: 100%;

  border-bottom: 1px solid transparent;

  transition:
    background var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-normal);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 9, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);

  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;

  align-items: center;
  gap: 13px;
}

.brand__logo-wrap {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
}

.brand__text small {
  margin-top: 6px;

  color: var(--color-gray);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.48em;
  line-height: 1;
}

.desktop-nav {
  display: flex;

  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 32px);
}

.nav-link {
  position: relative;

  padding: 12px 0;

  color: rgba(255, 255, 255, 0.66);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  transition: color var(--transition-fast);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--color-green),
      var(--color-red)
    );

  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
  content: "";
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  flex-shrink: 0;

  align-items: center;
  gap: 10px;
}

.header-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  width: 19px;
  height: 1px;
  background: var(--color-white);
  transition: transform var(--transition-normal);
}


/* ==========================================================
   9. MOBİL MENÜ
========================================================== */

.mobile-menu {
  position: fixed;
  z-index: 3000;
  inset: 0;

  visibility: hidden;
  pointer-events: none;
}

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

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;

  opacity: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(8px);

  transition: opacity var(--transition-normal);
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;

  display: flex;
  width: min(460px, 100%);
  height: 100%;
  padding: 28px;
  overflow-y: auto;

  flex-direction: column;

  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(217, 35, 50, 0.1),
      transparent 35%
    ),
    #090c0d;

  transform: translateX(105%);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.mobile-menu__close {
  position: relative;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.mobile-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 19px;
  height: 1px;
  background: var(--color-white);
}

.mobile-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
  display: flex;
  margin-top: 70px;

  flex-direction: column;
}

.mobile-menu__nav a {
  display: flex;
  padding: 18px 0;

  align-items: center;
  gap: 18px;

  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);

  font-family: var(--font-heading);
  font-size: clamp(20px, 6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.035em;

  transition:
    color var(--transition-fast),
    padding-left var(--transition-normal);
}

.mobile-menu__nav a span {
  color: var(--color-red-light);

  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mobile-menu__nav a:hover {
  padding-left: 10px;
  color: var(--color-red-light);
}

.mobile-menu__contact {
  margin-top: auto;
  padding-top: 50px;
}

.mobile-menu__contact p {
  color: var(--color-gray);
  font-size: 12px;
}

.mobile-menu__contact > a {
  display: inline-block;
  margin-top: 8px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}

.mobile-menu__buttons {
  display: grid;
  margin-top: 24px;
  gap: 10px;
}


/* ==========================================================
   10. HERO
========================================================== */

.hero {
  position: relative;

  display: flex;
  min-height: max(760px, 100svh);
  overflow: hidden;

  align-items: center;

  background: var(--color-black);
}

.hero__media,
.hero__overlay,
.hero__gradient,
.hero__noise,
.hero__spotlight {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  filter:
    contrast(1.06)
    saturate(0.88)
    brightness(0.78);

  transform: scale(1.02);
  animation: heroVideoScale 18s ease-in-out infinite alternate;
}

.hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 6, 0.94) 0%,
      rgba(3, 5, 6, 0.76) 38%,
      rgba(3, 5, 6, 0.28) 70%,
      rgba(3, 5, 6, 0.42) 100%
    );
}

.hero__gradient {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.6) 0%,
      transparent 24%,
      transparent 62%,
      rgba(5, 7, 8, 0.98) 100%
    );
}

.hero__noise {
  opacity: 0.055;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__spotlight {
  background:
    radial-gradient(
      circle at 72% 48%,
      rgba(255, 255, 255, 0.12),
      transparent 20%
    );
  mix-blend-mode: soft-light;
}

.hero__decor {
  position: absolute;
  z-index: 2;

  width: 1px;
  height: 44%;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent
    );
}

.hero__decor--left {
  left: 30px;
  bottom: 16%;
}

.hero__decor--right {
  right: 30px;
  top: 18%;
}

.hero__container {
  position: relative;
  z-index: 4;

  display: flex;
  padding-top: calc(var(--header-height) + 55px);
  padding-bottom: 100px;

  align-items: center;
}

.hero__content {
  max-width: 920px;
}

.hero__eyebrow {
  display: inline-flex;
  margin-bottom: 28px;

  align-items: center;
  gap: 11px;

  color: rgba(255, 255, 255, 0.74);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow svg {
  width: 16px;
  height: 16px;

  fill: none;
  stroke: var(--color-red-light);
  stroke-width: 1.7;
}

.hero__eyebrow-line {
  width: 42px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      var(--color-green),
      var(--color-red)
    );
}

.hero__title {
  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(48px, 6.7vw, 104px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.89;
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  position: relative;

  width: max-content;
  max-width: 100%;

  color: transparent;
  background:
    linear-gradient(
      100deg,
      var(--color-white) 0%,
      #adb3b0 45%,
      var(--color-white) 72%
    );

  -webkit-background-clip: text;
  background-clip: text;
}

.hero__title-line--accent::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      var(--color-green) 0 32%,
      rgba(255, 255, 255, 0.5) 32% 66%,
      var(--color-red) 66% 100%
    );

  transform: scaleX(0);
  transform-origin: left;
  animation: heroAccentLine 1.2s ease forwards 2.3s;
  content: "";
}

.hero__description {
  max-width: 680px;
  margin-top: 34px;

  color: rgba(255, 255, 255, 0.72);

  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  margin-top: 38px;

  flex-wrap: wrap;
  gap: 12px;
}

.hero__meta {
  display: flex;
  margin-top: 48px;

  flex-wrap: wrap;
  gap: 28px;
}

.hero__meta-item {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__meta-icon {
  display: grid;
  width: 30px;
  height: 30px;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hero__meta-icon svg {
  width: 14px;
  height: 14px;

  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 32px;
  left: 50%;

  display: flex;

  align-items: center;
  flex-direction: column;
  gap: 12px;

  color: rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
}

.hero__scroll-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__scroll-line {
  position: relative;

  width: 1px;
  height: 44px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.12);
}

.hero__scroll-line span {
  position: absolute;
  top: -100%;
  left: 0;

  width: 100%;
  height: 70%;

  background: var(--color-white);
  animation: scrollLine 2s ease-in-out infinite;
}

.hero__sound {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 34px;

  display: flex;

  align-items: center;
  gap: 11px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__sound-bars {
  display: flex;
  height: 16px;

  align-items: center;
  gap: 2px;
}

.hero__sound-bars i {
  display: block;
  width: 2px;
  height: 4px;

  border-radius: 2px;
  background: var(--color-white);

  transition: height var(--transition-fast);
}

.hero__sound.is-active .hero__sound-bars i {
  animation: soundBar 0.7s ease-in-out infinite alternate;
}

.hero__sound.is-active .hero__sound-bars i:nth-child(2) {
  animation-delay: 0.15s;
}

.hero__sound.is-active .hero__sound-bars i:nth-child(3) {
  animation-delay: 0.3s;
}

.hero__sound.is-active .hero__sound-bars i:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes heroVideoScale {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes heroAccentLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(280%);
  }
}

@keyframes soundBar {
  from {
    height: 4px;
  }

  to {
    height: 15px;
  }
}


/* ==========================================================
   11. TRUST STRIP
========================================================== */

.trust-strip {
  position: relative;
  z-index: 4;

  overflow: hidden;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #080b0c;
}

.trust-strip__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  padding: 22px 34px;

  align-items: center;
  justify-content: space-around;
  gap: 42px;
}

.trust-strip__item {
  display: inline-flex;

  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-strip__item span {
  color: var(--color-red-light);
  font-size: 8px;
}

.trust-strip__dot {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;

  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 12px rgba(63, 199, 102, 0.75);
}


/* ==========================================================
   12. SERVICES
========================================================== */

.services {
  background:
    linear-gradient(
      180deg,
      #07090a,
      #090c0d 45%,
      #060809
    );
}

.services__featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;

  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  background: var(--color-black-card);

  box-shadow: var(--shadow-small);
}

.service-card--featured {
  min-height: 590px;
}

.service-card__media,
.service-card__overlay {
  position: absolute;
  inset: 0;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter:
    saturate(0.88)
    contrast(1.04)
    brightness(0.72);

  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s ease;
}

.service-card:hover .service-card__media img {
  filter:
    saturate(1)
    contrast(1.08)
    brightness(0.82);

  transform: scale(1.065);
}

.service-card__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 8, 0.08) 0%,
      rgba(5, 7, 8, 0.4) 40%,
      rgba(5, 7, 8, 0.96) 100%
    );
}

.service-card__number {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 30px;

  color: rgba(255, 255, 255, 0.45);

  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card__content {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;

  padding: clamp(28px, 4vw, 48px);
}

.service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 23px;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);

  transition:
    border-color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.service-card:hover .service-card__icon {
  border-color: rgba(217, 35, 50, 0.7);
  background: rgba(217, 35, 50, 0.15);
  transform: rotate(5deg) translateY(-3px);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__label {
  display: block;
  margin-bottom: 10px;

  color: var(--color-red-light);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 550px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.service-card p {
  max-width: 590px;
  margin-top: 15px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 14px;
  line-height: 1.8;
}

.service-card__link {
  display: inline-flex;
  margin-top: 25px;

  align-items: center;
  gap: 12px;

  color: var(--color-white);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__link span {
  transition: transform var(--transition-normal);
}

.service-card__link:hover span {
  transform: translate(4px, -4px);
}

.services__grid {
  display: grid;
  margin-top: 22px;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card--compact {
  min-height: 500px;
}

.service-card__compact-image {
  height: 220px;
  overflow: hidden;
}

.service-card__compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter:
    saturate(0.8)
    contrast(1.05)
    brightness(0.8);

  transition:
    filter var(--transition-slow),
    transform var(--transition-slow);
}

.service-card--compact:hover .service-card__compact-image img {
  filter:
    saturate(1)
    contrast(1.06)
    brightness(0.93);

  transform: scale(1.07);
}

.service-card__compact-content {
  position: relative;
  padding: 28px;
}

.service-card__compact-index {
  position: absolute;
  top: 30px;
  right: 29px;

  color: rgba(255, 255, 255, 0.28);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card--compact h3 {
  padding-right: 30px;

  font-size: clamp(23px, 2.3vw, 31px);
}

.service-card--compact p {
  min-height: 100px;
}

.service-card--compact a {
  display: inline-flex;
  margin-top: 24px;

  align-items: center;
  gap: 10px;

  color: var(--color-white);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card--compact a span {
  transition: transform var(--transition-normal);
}

.service-card--compact a:hover span {
  transform: translate(4px, -4px);
}

.service-card--text {
  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 95% 0,
      rgba(36, 148, 71, 0.12),
      transparent 42%
    ),
    radial-gradient(
      circle at 0 100%,
      rgba(217, 35, 50, 0.12),
      transparent 40%
    ),
    var(--color-black-card);
}

.additional-services {
  display: grid;
  margin-top: 80px;
  padding-top: 65px;

  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;

  border-top: 1px solid var(--border-color);
}

.additional-services__intro h3 {
  max-width: 430px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.additional-services__intro p {
  max-width: 430px;
  margin-top: 19px;

  color: var(--color-gray);
  font-size: 14px;
}

.additional-services__list {
  display: flex;
  flex-direction: column;
}

.additional-services__list a {
  display: grid;
  padding: 21px 4px;

  grid-template-columns: 45px 1fr 30px;
  align-items: center;

  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border-color);

  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 650;
  letter-spacing: -0.025em;

  transition:
    color var(--transition-fast),
    padding-left var(--transition-normal);
}

.additional-services__list a:first-child {
  border-top: 1px solid var(--border-color);
}

.additional-services__list a span {
  color: var(--color-red-light);

  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
}

.additional-services__list a i {
  font-style: normal;
  transition: transform var(--transition-normal);
}

.additional-services__list a:hover {
  padding-left: 12px;
  color: var(--color-white);
}

.additional-services__list a:hover i {
  transform: translate(4px, -4px);
}


/* ==========================================================
   13. BEFORE / AFTER
========================================================== */

.comparison-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 255, 255, 0.035),
      transparent 40%
    ),
    #050708;
}

.comparison-section__background {
  position: absolute;
  top: 10%;
  right: -3%;
  left: -3%;

  display: flex;
  justify-content: space-between;

  opacity: 0.025;
  pointer-events: none;
}

.comparison-section__background span {
  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(100px, 17vw, 290px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}

.comparison-showcase {
  position: relative;
  z-index: 2;
}

.comparison-slider {
  position: relative;

  height: clamp(470px, 62vw, 760px);
  overflow: hidden;

  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-large);
  background: var(--color-black-card);
  box-shadow: var(--shadow-large);
}

.comparison-slider__image {
  position: absolute;
  inset: 0;

  overflow: hidden;
}

.comparison-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider__image--after {
  width: var(--comparison-position);
  z-index: 2;

  border-right: 1px solid rgba(255, 255, 255, 0.8);
}

.comparison-slider__image--after img {
  width: 100vw;
  max-width: var(--container-width);
}

.comparison-slider figcaption {
  position: absolute;
  z-index: 4;
  top: 28px;

  padding: 10px 15px;

  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(3, 5, 6, 0.55);
  backdrop-filter: blur(12px);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-slider__image--before figcaption {
  right: 28px;
}

.comparison-slider__image--after figcaption {
  left: 28px;
}

.comparison-slider__range {
  position: absolute;
  z-index: 6;
  inset: 0;

  width: 100%;
  height: 100%;
  margin: 0;

  opacity: 0;
  cursor: ew-resize;
}

.comparison-slider__divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);

  width: 1px;

  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-slider__handle {
  position: absolute;
  top: 50%;
  left: 50%;

  display: grid;
  width: 62px;
  height: 62px;

  place-items: center;

  color: var(--color-black);
  border: 5px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.42);

  transform: translate(-50%, -50%);
}

.comparison-slider__handle svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-thumbnails {
  display: grid;
  margin-top: 20px;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.comparison-thumbnail {
  position: relative;

  display: grid;
  min-height: 115px;
  padding: 12px;
  overflow: hidden;

  grid-template-columns: 115px 1fr;
  align-items: center;
  gap: 18px;

  color: var(--color-white-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  background: var(--color-black-card);

  text-align: left;

  transition:
    border-color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.comparison-thumbnail::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--color-green),
      var(--color-red)
    );

  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
  content: "";
}

.comparison-thumbnail:hover,
.comparison-thumbnail.is-active {
  border-color: rgba(255, 255, 255, 0.25);
  background: #111617;
  transform: translateY(-3px);
}

.comparison-thumbnail.is-active::after {
  transform: scaleX(1);
}

.comparison-thumbnail img {
  width: 115px;
  height: 86px;
  object-fit: cover;

  border-radius: 9px;
  filter: brightness(0.78);
}

.comparison-thumbnail.is-active img {
  filter: brightness(0.95);
}

.comparison-thumbnail span {
  display: flex;
  flex-direction: column;
  gap: 4px;

  font-size: 13px;
  font-weight: 650;
}

.comparison-thumbnail strong {
  color: var(--color-red-light);

  font-size: 9px;
  letter-spacing: 0.16em;
}


/* ==========================================================
   14. ADVANTAGES
========================================================== */

.advantages {
  background:
    linear-gradient(
      180deg,
      #080b0c,
      #060809
    );
}

.advantages__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.advantage-card {
  position: relative;

  min-height: 330px;
  padding: 34px;
  overflow: hidden;

  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      transparent 55%
    ),
    var(--color-black-card);

  transition:
    border-color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.advantage-card::before {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  bottom: -110px;

  border-radius: 50%;
  background: var(--color-red);
  opacity: 0;
  filter: blur(65px);

  transition: opacity var(--transition-normal);
  content: "";
}

.advantage-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      transparent 58%
    ),
    #101416;

  transform: translateY(-7px);
}

.advantage-card:hover::before {
  opacity: 0.12;
}

.advantage-card__number {
  position: absolute;
  top: 29px;
  right: 30px;

  color: rgba(255, 255, 255, 0.24);

  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.advantage-card__icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 55px;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);

  transition:
    border-color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.advantage-card:hover .advantage-card__icon {
  border-color: rgba(217, 35, 50, 0.55);
  background: rgba(217, 35, 50, 0.12);
  transform: rotate(-6deg);
}

.advantage-card__icon svg {
  width: 24px;
  height: 24px;

  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage-card h3 {
  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.advantage-card p {
  margin-top: 15px;

  color: var(--color-gray);

  font-size: 13px;
  line-height: 1.75;
}

.advantage-card--cta {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;

  background:
    radial-gradient(
      circle at 20% 100%,
      rgba(217, 35, 50, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0,
      rgba(36, 148, 71, 0.16),
      transparent 48%
    ),
    #111516;
}

.advantage-card__eyebrow {
  display: block;
  margin-bottom: 13px;

  color: var(--color-red-light);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.advantage-card--cta h3 {
  max-width: 330px;
  font-size: clamp(24px, 2.6vw, 35px);
}


/* ==========================================================
   15. PROCESS
========================================================== */

.process {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(217, 35, 50, 0.06),
      transparent 26%
    ),
    #050708;
}

.process__layout {
  display: grid;

  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
}

.process__sticky {
  position: sticky;
  top: calc(var(--header-height) + 60px);
}

.process__sticky .section-description {
  margin-bottom: 34px;
}

.process__steps {
  position: relative;
}

.process__steps::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34px;

  width: 1px;

  background:
    linear-gradient(
      180deg,
      var(--color-red),
      rgba(255, 255, 255, 0.14),
      var(--color-green)
    );

  content: "";
}

.process-step {
  position: relative;

  display: grid;
  min-height: 205px;
  padding-bottom: 55px;

  grid-template-columns: 70px 1fr;
  gap: 30px;
}

.process-step:last-child {
  min-height: 0;
  padding-bottom: 0;
}

.process-step__number {
  position: relative;
  z-index: 2;

  display: grid;
  width: 68px;
  height: 68px;

  place-items: center;

  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #0e1213;
  box-shadow: 0 0 0 10px #050708;

  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;

  transition:
    border-color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.process-step:hover .process-step__number {
  border-color: var(--color-red);
  background: var(--color-red);
  transform: scale(1.06);
}

.process-step__content {
  padding-top: 5px;
}

.process-step__content > span {
  display: block;
  margin-bottom: 8px;

  color: var(--color-red-light);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.process-step h3 {
  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(25px, 2.5vw, 35px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.process-step p {
  max-width: 590px;
  margin-top: 14px;

  color: var(--color-gray);

  font-size: 14px;
  line-height: 1.8;
}


/* ==========================================================
   16. GALLERY
========================================================== */

.gallery {
  background:
    linear-gradient(
      180deg,
      #080b0c,
      #050708
    );
}

.gallery__filters {
  display: flex;
  margin-bottom: 34px;
  padding-bottom: 12px;
  overflow-x: auto;

  gap: 9px;

  scrollbar-width: none;
}

.gallery__filters::-webkit-scrollbar {
  display: none;
}

.gallery-filter {
  flex: 0 0 auto;
  padding: 12px 20px;

  color: var(--color-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.02);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition:
    color var(--transition-normal),
    border-color var(--transition-normal),
    background var(--transition-normal);
}

.gallery-filter:hover,
.gallery-filter.is-active {
  color: var(--color-white);
  border-color: var(--color-red);
  background: rgba(217, 35, 50, 0.12);
}

.gallery__grid {
  display: grid;

  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;

  display: block;
  overflow: hidden;

  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  background: var(--color-black-card);

  text-align: left;

  transition:
    opacity var(--transition-normal),
    transform var(--transition-normal);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item--large {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter:
    saturate(0.8)
    contrast(1.04)
    brightness(0.82);

  transition:
    filter 800ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  filter:
    saturate(1)
    contrast(1.08)
    brightness(0.92);

  transform: scale(1.07);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 25%,
      rgba(3, 5, 6, 0.24) 52%,
      rgba(3, 5, 6, 0.92) 100%
    );

  transition: background var(--transition-normal);
}

.gallery-item:hover .gallery-item__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(3, 5, 6, 0.04),
      rgba(3, 5, 6, 0.22) 45%,
      rgba(3, 5, 6, 0.94) 100%
    );
}

.gallery-item__content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  transform: translateY(8px);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-item__content {
  transform: translateY(0);
}

.gallery-item__content small {
  color: var(--color-red-light);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-item__content strong {
  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.gallery-item__open {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;

  display: grid;
  width: 44px;
  height: 44px;

  place-items: center;

  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(5, 7, 8, 0.38);
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity var(--transition-normal),
    transform var(--transition-normal),
    background var(--transition-normal);
}

.gallery-item:hover .gallery-item__open {
  opacity: 1;
  transform: translateY(0);
}

.gallery__cta {
  display: flex;
  margin-top: 38px;
  padding: 30px;

  align-items: center;
  justify-content: space-between;
  gap: 25px;

  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.025);
}

.gallery__cta p {
  color: var(--color-white-soft);
  font-size: 15px;
}


/* ==========================================================
   17. ABOUT
========================================================== */

.about {
  min-height: 850px;
  padding: 0;
  overflow: hidden;

  background: var(--color-black);
}

.about__media,
.about__media-overlay {
  position: absolute;
  inset: 0;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter:
    saturate(0.75)
    contrast(1.08)
    brightness(0.72);
}

.about__media-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(4, 6, 7, 0.98) 0%,
      rgba(4, 6, 7, 0.9) 37%,
      rgba(4, 6, 7, 0.48) 68%,
      rgba(4, 6, 7, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 6, 7, 0.2),
      rgba(4, 6, 7, 0.7)
    );
}

.about__container {
  position: relative;
  z-index: 2;

  display: flex;
  min-height: 850px;
  padding-block: 120px;

  align-items: center;
}

.about__content {
  max-width: 690px;
}

.about__lead {
  margin-top: 31px;

  color: var(--color-white-soft);

  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
  line-height: 1.8;
}

.about__content > p:not(.about__lead) {
  margin-top: 21px;

  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.about__features {
  display: grid;
  margin-top: 38px;

  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about__features div {
  display: flex;
  padding: 15px;

  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);

  font-size: 12px;
  font-weight: 650;
}

.about__features span {
  color: var(--color-red-light);
  font-size: 8px;
  font-weight: 800;
}

.about__actions {
  display: flex;
  margin-top: 38px;

  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}


/* ==========================================================
   18. REVIEWS CTA
========================================================== */

.reviews-preview {
  background: #080b0c;
}

.reviews-preview__card {
  position: relative;

  display: grid;
  min-height: 430px;
  padding: clamp(35px, 6vw, 78px);
  overflow: hidden;

  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.5fr);
  align-items: center;
  gap: 50px;

  border-radius: var(--radius-large);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(36, 148, 71, 0.24),
      transparent 38%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(217, 35, 50, 0.32),
      transparent 44%
    ),
    #101415;

  box-shadow: var(--shadow-large);
}

.reviews-preview__pattern {
  position: absolute;
  inset: 0;

  opacity: 0.08;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 1px,
      transparent 1px
    );

  background-size: 48px 48px;
  mask-image:
    linear-gradient(
      to right,
      black,
      transparent 85%
    );
}

.reviews-preview__content,
.reviews-preview__visual {
  position: relative;
  z-index: 2;
}

.reviews-preview__eyebrow {
  display: block;
  margin-bottom: 18px;

  color: var(--color-red-light);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.reviews-preview h2 {
  max-width: 800px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(35px, 4.5vw, 62px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

.reviews-preview h2 strong {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.reviews-preview p {
  max-width: 630px;
  margin: 24px 0 31px;

  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.reviews-preview__visual {
  display: flex;
  min-height: 240px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);

  aspect-ratio: 1;
}

.reviews-preview__stars {
  display: flex;
  gap: 7px;

  color: #f3c850;
  font-size: 25px;
}

.reviews-preview__quote {
  margin-top: 25px;
}

.reviews-preview__quote svg {
  width: 75px;
  height: 75px;

  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.5;
}


/* ==========================================================
   19. FAQ
========================================================== */

.faq {
  background: #050708;
}

.faq__layout {
  display: grid;

  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 60px);
}

.faq__intro .section-description {
  margin-bottom: 32px;
}

.faq__list {
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item__question {
  display: flex;
  width: 100%;
  padding: 26px 0;

  align-items: center;
  justify-content: space-between;
  gap: 30px;

  color: var(--color-white-soft);
  text-align: left;

  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;

  transition: color var(--transition-fast);
}

.faq-item__question:hover,
.faq-item.is-open .faq-item__question {
  color: var(--color-white);
}

.faq-item__question i {
  position: relative;

  width: 38px;
  height: 38px;
  flex: 0 0 38px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;

  transition:
    border-color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.faq-item__question i::before,
.faq-item__question i::after {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 13px;
  height: 1px;

  background: var(--color-white);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-normal);
  content: "";
}

.faq-item__question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__question i {
  border-color: var(--color-red);
  background: var(--color-red);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__question i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
  display: grid;

  grid-template-rows: 0fr;
  transition: grid-template-rows 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer p {
  max-width: 780px;
  padding: 0 60px 27px 0;

  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.85;
}


/* ==========================================================
   20. CONTACT
========================================================== */

.contact {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(255, 255, 255, 0.035),
      transparent 35%
    ),
    #080b0c;
}

.contact__background {
  position: absolute;
  top: 5%;
  right: 0;
  left: 0;

  text-align: center;
  pointer-events: none;
}

.contact__background span {
  color: rgba(255, 255, 255, 0.015);

  font-family: var(--font-heading);
  font-size: clamp(110px, 22vw, 330px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}

.contact__grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact__information,
.contact__hours {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  background: var(--color-black-card);
}

.contact__information {
  padding: 22px;
}

.contact__top-card {
  display: grid;
  padding: 28px;

  grid-template-columns: 55px 1fr 56px;
  align-items: center;
  gap: 22px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-medium);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(37, 211, 102, 0.15),
      transparent 48%
    ),
    rgba(255, 255, 255, 0.025);
}

.contact__top-card-icon {
  display: grid;
  width: 55px;
  height: 55px;

  place-items: center;

  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
}

.contact__top-card-icon svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: var(--color-whatsapp);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__top-card span {
  color: var(--color-whatsapp);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact__top-card h3 {
  margin-top: 6px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.contact__details {
  display: flex;
  margin-top: 18px;

  flex-direction: column;
}

.contact-detail {
  display: grid;
  padding: 21px 7px;

  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 17px;

  border-bottom: 1px solid var(--border-color);

  transition:
    padding-left var(--transition-normal),
    background var(--transition-normal);
}

.contact-detail:hover {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.022);
}

.contact-detail__icon {
  display: grid;
  width: 45px;
  height: 45px;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
}

.contact-detail__icon svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__icon--whatsapp svg {
  fill: var(--color-whatsapp);
  stroke: none;
}

.contact-detail > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.contact-detail small {
  margin-bottom: 3px;

  color: var(--color-gray);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--color-white-soft);

  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.contact-detail > i {
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;

  transition: transform var(--transition-normal);
}

.contact-detail:hover > i {
  transform: translate(4px, -4px);
}

.contact__hours {
  padding: clamp(28px, 4vw, 43px);
}

.contact__hours-heading {
  display: flex;
  padding-bottom: 27px;

  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--border-color);
}

.contact__hours-heading span:first-child {
  color: var(--color-red-light);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact__hours-heading h3 {
  margin-top: 7px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.open-status {
  padding: 9px 13px;

  color: var(--color-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.025);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.open-status.is-open {
  color: var(--color-green-light);
  border-color: rgba(63, 199, 102, 0.35);
  background: rgba(63, 199, 102, 0.07);
}

.open-status.is-closed {
  color: var(--color-red-light);
  border-color: rgba(241, 68, 80, 0.35);
  background: rgba(241, 68, 80, 0.07);
}

.hours-list {
  margin-top: 13px;
}

.hours-row {
  display: flex;
  padding: 15px 4px;

  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: var(--color-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);

  font-size: 13px;
}

.hours-row strong {
  color: var(--color-white-soft);
  font-size: 12px;
  font-weight: 700;
}

.hours-row.is-today {
  padding-inline: 13px;

  color: var(--color-white);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hours-row.is-today strong {
  color: var(--color-green-light);
}

.hours-row--closed strong {
  color: var(--color-red-light);
}

.contact__hours-actions {
  display: flex;
  margin-top: 30px;

  flex-wrap: wrap;
  gap: 10px;
}

.contact__map {
  position: relative;
  z-index: 2;

  display: grid;
  min-height: 390px;
  margin-top: 22px;
  overflow: hidden;

  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);

  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  background: var(--color-black-card);
}

.contact__map-image {
  position: relative;
  min-height: 390px;
}

.contact__map-image img,
.contact__map-image-overlay {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}

.contact__map-image img {
  object-fit: cover;
  filter:
    saturate(0.7)
    brightness(0.78)
    contrast(1.08);
}

.contact__map-image-overlay {
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(10, 14, 15, 0.35)
    );
}

.contact__map-content {
  display: flex;
  padding: clamp(32px, 5vw, 62px);

  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact__map-label {
  display: block;
  margin-bottom: 13px;

  color: var(--color-red-light);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact__map h3 {
  max-width: 480px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
}


/* ==========================================================
   21. FINAL CTA
========================================================== */

.final-cta {
  position: relative;

  display: flex;
  min-height: 680px;
  overflow: hidden;

  align-items: center;

  background: var(--color-black);
}

.final-cta__media,
.final-cta__overlay {
  position: absolute;
  inset: 0;
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter:
    saturate(0.78)
    contrast(1.08)
    brightness(0.68);

  transform: scale(1.02);
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(4, 6, 7, 0.95),
      rgba(4, 6, 7, 0.58) 55%,
      rgba(4, 6, 7, 0.35)
    ),
    linear-gradient(
      180deg,
      rgba(4, 6, 7, 0.15),
      rgba(4, 6, 7, 0.84)
    );
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__eyebrow {
  display: block;
  margin-bottom: 22px;

  color: var(--color-red-light);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 1050px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.final-cta h2 strong {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.final-cta__actions {
  display: flex;
  margin-top: 42px;

  flex-wrap: wrap;
  gap: 12px;
}


/* ==========================================================
   22. FOOTER
========================================================== */

.site-footer {
  padding-top: 90px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #040506;
}

.site-footer__top {
  display: grid;
  padding-bottom: 72px;

  grid-template-columns: 1.5fr repeat(3, minmax(150px, 0.65fr));
  gap: clamp(35px, 6vw, 80px);
}

.site-footer__brand > p {
  max-width: 400px;
  margin-top: 25px;

  color: var(--color-gray);

  font-size: 13px;
  line-height: 1.8;
}

.site-footer__socials {
  display: flex;
  margin-top: 29px;
  gap: 10px;
}

.site-footer__socials a {
  display: grid;
  width: 43px;
  height: 43px;

  place-items: center;

  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);

  transition:
    border-color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.site-footer__socials a:hover {
  border-color: var(--color-red);
  background: var(--color-red);
  transform: translateY(-4px);
}

.site-footer__socials svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__socials a:nth-child(2) svg {
  fill: var(--color-white);
  stroke: none;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer__column h3 {
  margin-bottom: 10px;

  color: var(--color-white);

  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-footer__column a,
.site-footer__column p {
  width: max-content;
  max-width: 100%;

  color: var(--color-gray);

  font-size: 12px;
  line-height: 1.75;

  transition: color var(--transition-fast);
}

.site-footer__column a:hover {
  color: var(--color-white);
}

.footer-location {
  display: inline-flex;
  margin-top: 6px;

  align-items: center;
  gap: 10px;

  color: var(--color-white) !important;

  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-location span {
  transition: transform var(--transition-normal);
}

.footer-location:hover span {
  transform: translate(4px, -4px);
}

.site-footer__bottom {
  display: flex;
  min-height: 84px;

  align-items: center;
  justify-content: space-between;
  gap: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer__bottom p,
.site-footer__bottom a,
.back-to-top {
  color: rgba(255, 255, 255, 0.38);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom > div {
  display: flex;
  gap: 24px;
}

.site-footer__bottom a:hover,
.back-to-top:hover {
  color: var(--color-white);
}

.back-to-top {
  display: inline-flex;

  align-items: center;
  gap: 11px;
}


/* ==========================================================
   23. LIGHTBOX
========================================================== */

.lightbox {
  position: fixed;
  z-index: 5000;
  inset: 0;

  display: grid;

  visibility: hidden;
  place-items: center;
  pointer-events: none;
}

.lightbox.is-open {
  visibility: visible;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;

  opacity: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);

  transition: opacity var(--transition-normal);
}

.lightbox.is-open .lightbox__backdrop {
  opacity: 1;
}

.lightbox__content {
  position: relative;
  z-index: 2;

  width: min(1180px, calc(100% - 48px));
  max-height: calc(100svh - 70px);

  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity var(--transition-normal),
    transform var(--transition-normal);
}

.lightbox.is-open .lightbox__content {
  opacity: 1;
  transform: scale(1);
}

.lightbox__content figure {
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-medium);
  background: #080a0b;
  box-shadow: var(--shadow-large);
}

.lightbox__content img {
  width: 100%;
  max-height: calc(100svh - 145px);
  object-fit: contain;
}

.lightbox__content figcaption {
  padding: 16px 20px;

  color: var(--color-white-soft);

  font-size: 12px;
  font-weight: 700;
}

.lightbox__close {
  position: absolute;
  z-index: 3;
  top: -54px;
  right: 0;

  width: 43px;
  height: 43px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.lightbox__close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 17px;
  height: 1px;
  background: var(--color-white);
}

.lightbox__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/* ==========================================================
   24. FLOATING WHATSAPP
========================================================== */

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 25px;
  bottom: 25px;

  display: flex;

  align-items: center;
  gap: 12px;
}

.floating-whatsapp__message {
  padding: 11px 15px;

  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-pill);
  background: rgba(5, 8, 9, 0.82);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(15px);

  font-size: 10px;
  font-weight: 700;

  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity var(--transition-normal),
    transform var(--transition-normal);
}

.floating-whatsapp:hover .floating-whatsapp__message {
  opacity: 1;
  transform: translateX(0);
}

.floating-whatsapp__icon {
  display: grid;
  width: 60px;
  height: 60px;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: var(--color-whatsapp);
  box-shadow:
    0 15px 40px rgba(37, 211, 102, 0.32);

  transition: transform var(--transition-normal);
}

.floating-whatsapp:hover .floating-whatsapp__icon {
  transform: translateY(-5px) rotate(4deg);
}

.floating-whatsapp__icon svg {
  width: 27px;
  height: 27px;
  fill: var(--color-white);
}

.mobile-contact-bar {
  display: none;
}


/* ==========================================================
   25. TABLET
========================================================== */

@media (max-width: 1180px) {
  :root {
    --header-height: 82px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-call {
    display: none;
  }

  .hero__title {
    font-size: clamp(52px, 8vw, 92px);
  }

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

  .service-card--text {
    grid-column: span 2;
    min-height: 380px;
  }

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

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

  .gallery-item--large {
    grid-column: span 2;
  }

  .site-footer__top {
    grid-template-columns: 1.25fr repeat(3, minmax(130px, 0.6fr));
    gap: 35px;
  }
}


/* ==========================================================
   26. TABLET / MOBİL BÜYÜK
========================================================== */

@media (max-width: 900px) {
  :root {
    --section-space: 105px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container-width));
  }

  .section-heading--split,
  .process__layout,
  .faq__layout,
  .additional-services {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .process__sticky,
  .faq__intro {
    position: static;
  }

  .services__featured {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    min-height: 540px;
  }

  .comparison-thumbnails {
    grid-template-columns: 1fr;
  }

  .comparison-thumbnail {
    grid-template-columns: 100px 1fr;
  }

  .comparison-thumbnail img {
    width: 100px;
  }

  .reviews-preview__card {
    grid-template-columns: 1fr;
  }

  .reviews-preview__visual {
    width: min(300px, 100%);
    justify-self: center;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__map {
    grid-template-columns: 1fr;
  }

  .contact__map-image {
    min-height: 330px;
  }

  .contact__map-content {
    min-height: 290px;
  }

  .about__media-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 6, 7, 0.96),
        rgba(4, 6, 7, 0.72)
      ),
      linear-gradient(
        180deg,
        rgba(4, 6, 7, 0.25),
        rgba(4, 6, 7, 0.9)
      );
  }

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

  .site-footer__brand {
    grid-column: span 2;
  }
}


/* ==========================================================
   27. MOBİL
========================================================== */

@media (max-width: 680px) {
  :root {
    --header-height: 74px;
    --section-space: 88px;
  }

  body {
    padding-bottom: 67px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand__logo-wrap {
    width: 42px;
    height: 42px;
  }

  .brand__logo {
    width: 35px;
    height: 35px;
  }

  .brand__text strong {
    font-size: 14px;
  }

  .brand__text small {
    font-size: 7px;
  }

  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero__video {
    object-position: 58% center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(3, 5, 6, 0.9),
        rgba(3, 5, 6, 0.54)
      );
  }

  .hero__gradient {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.68),
        rgba(0, 0, 0, 0.1) 30%,
        rgba(5, 7, 8, 0.94) 100%
      );
  }

  .hero__container {
    padding-top: calc(var(--header-height) + 75px);
    padding-bottom: 120px;
  }

  .hero__eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .hero__eyebrow-line {
    width: 28px;
  }

  .hero__title {
    font-size: clamp(41px, 13vw, 63px);
    line-height: 0.94;
  }

  .hero__title-line--accent {
    width: auto;
  }

  .hero__description {
    margin-top: 25px;

    font-size: 14px;
    line-height: 1.75;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    margin-top: 30px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__meta {
    margin-top: 32px;
    gap: 13px 19px;
  }

  .hero__meta-item {
    font-size: 8px;
  }

  .hero__meta-icon {
    width: 27px;
    height: 27px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__sound {
    right: 16px;
    bottom: 21px;
  }

  .hero__decor {
    display: none;
  }

  .trust-strip__track {
    justify-content: flex-start;
    animation: trustMarquee 24s linear infinite;
  }

  @keyframes trustMarquee {
    to {
      transform: translateX(-45%);
    }
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: clamp(35px, 10vw, 49px);
  }

  .section-description {
    margin-top: 19px;
    font-size: 14px;
  }

  .section-kicker {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .section-heading--split {
    gap: 18px;
  }

  .services__featured,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    min-height: 500px;
  }

  .service-card__content {
    padding: 25px;
  }

  .service-card h3 {
    font-size: 27px;
  }

  .service-card--compact,
  .service-card--text {
    min-height: 0;
    grid-column: auto;
  }

  .service-card__compact-image {
    height: 215px;
  }

  .service-card--compact p {
    min-height: 0;
  }

  .additional-services {
    margin-top: 58px;
    padding-top: 48px;
  }

  .additional-services__list a {
    grid-template-columns: 35px 1fr 22px;
    font-size: 17px;
  }

  .comparison-slider {
    height: 520px;
  }

  .comparison-slider__image img {
    object-position: center;
  }

  .comparison-slider__image--after img {
    width: calc(100vw - 28px);
  }

  .comparison-slider figcaption {
    top: 16px;
  }

  .comparison-slider__image--before figcaption {
    right: 16px;
  }

  .comparison-slider__image--after figcaption {
    left: 16px;
  }

  .comparison-slider__handle {
    width: 52px;
    height: 52px;
    border-width: 4px;
  }

  .comparison-thumbnail {
    min-height: 100px;
    padding: 9px;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 290px;
  }

  .process__steps::before {
    left: 26px;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    gap: 22px;
  }

  .process-step__number {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 7px #050708;
  }

  .gallery__grid {
    grid-auto-rows: 240px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item--large,
  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery__cta .button {
    width: 100%;
  }

  .about,
  .about__container {
    min-height: 820px;
  }

  .about__container {
    padding-block: 90px;
    align-items: flex-end;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .reviews-preview__card {
    padding: 32px 24px;
  }

  .reviews-preview h2 {
    font-size: 36px;
  }

  .reviews-preview__visual {
    min-height: auto;
  }

  .faq-item__question {
    padding: 23px 0;
    gap: 18px;
    font-size: 17px;
  }

  .faq-item__answer p {
    padding-right: 10px;
  }

  .contact__information {
    padding: 14px;
  }

  .contact__top-card {
    padding: 22px;

    grid-template-columns: 47px 1fr;
    gap: 16px;
  }

  .contact__top-card-icon {
    width: 47px;
    height: 47px;
  }

  .contact__top-card .round-link {
    display: none;
  }

  .contact-detail {
    grid-template-columns: 43px 1fr 18px;
    gap: 13px;
  }

  .contact__hours {
    padding: 25px 20px;
  }

  .contact__hours-heading {
    flex-direction: column;
  }

  .contact__hours-actions {
    display: grid;
  }

  .contact__map-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .round-link--large {
    width: 60px;
    height: 60px;
  }

  .final-cta {
    min-height: 680px;
  }

  .final-cta h2 {
    font-size: clamp(40px, 12vw, 61px);
  }

  .final-cta__actions {
    display: grid;
    width: 100%;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 70px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    padding: 25px 0 28px;

    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;

    display: grid;
    min-height: 67px;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 8, 9, 0.94);
    box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
  }

  .mobile-contact-bar a {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;

    color: var(--color-white-soft);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-contact-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-contact-bar svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-contact-bar__whatsapp {
    color: var(--color-white) !important;
    background:
      linear-gradient(
        135deg,
        #178b41,
        #25b85a
      );
  }

  .mobile-contact-bar__whatsapp svg {
    fill: currentColor;
    stroke: none;
  }

  .lightbox__content {
    width: calc(100% - 24px);
  }
}


/* ==========================================================
   28. KÜÇÜK MOBİL
========================================================== */

@media (max-width: 430px) {
  .brand__text {
    display: none;
  }

  .mobile-menu__brand .brand__text {
    display: flex;
  }

  .hero__title {
    font-size: clamp(38px, 13vw, 55px);
  }

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

  .gallery__grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-item {
    min-height: 285px;
  }

  .gallery-item--large {
    min-height: 430px;
  }

  .gallery-item--tall {
    min-height: 410px;
  }

  .comparison-slider {
    height: 460px;
  }

  .reviews-preview__stars {
    font-size: 21px;
  }

  .preloader__logo-frame {
    width: 105px;
    height: 105px;
  }
}


/* ==========================================================
   29. ACCESSIBILITY / REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__video {
    animation: none;
  }
}


/* ==========================================================
   30. HOVER OLMAYAN DOKUNMATİK CİHAZLAR
========================================================== */

@media (hover: none) {
  .gallery-item__open {
    opacity: 1;
    transform: none;
  }

  .floating-whatsapp__message {
    display: none;
  }

  .service-card__media img,
  .gallery-item img {
    transform: none !important;
  }
}