@font-face {
  font-family: 'monument_extendedregular';
  src: local('Space Grotesk'),
       url('../../fonts/space-grotesk/space-grotesk-variable.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #000000;
  --secondary: #515151;
  --white: #ffffff;
  --hz-header-offset: 88px;
}

.services-title-effect {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100svh;
  margin-top: calc(-1 * var(--hz-header-offset));
  padding-top: var(--hz-header-offset);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}

.services-title-effect__fluid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.services-title-effect--mobile-static .services-title-effect__fluid {
  display: none;
}

.services-title-effect__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 20px);
  padding: clamp(40px, 7vw, 110px) clamp(16px, 4vw, 42px);
}

.services-title-effect__title {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(40px, 11vw, 165px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.04em;
  opacity: 0;
  filter: blur(0);
  transform: none;
  perspective: 900px;
}

.services-title-effect__title.is-animated {
  opacity: 1;
}

.services-title-effect__char {
  display: inline-block;
  transform-origin: 50% 100%;
  will-change: transform, filter, opacity;
}

.services-title-effect__title.is-animated .services-title-effect__char {
  animation: services-title-char-fallback 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--char-index, 0) * 34ms);
}

@keyframes services-title-char-fallback {
  0% {
    opacity: 0;
    transform: translate3d(0, 60%, 0) rotateX(-85deg) scaleY(1.28);
    filter: blur(8px);
  }
  65% {
    opacity: 1;
    transform: translate3d(0, -8%, 0) rotateX(10deg) scaleY(0.97);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg) scaleY(1);
    filter: blur(0);
  }
}

.services-title-effect::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32vh;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    #000000 100%
  );
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .services-title-effect {
    min-height: 100dvh;
  }

  .services-title-effect__inner {
    padding-inline: clamp(10px, 4vw, 16px);
  }

  .services-title-effect__title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    font-size: clamp(26px, 12vw, 64px);
    line-height: 0.94;
    letter-spacing: 0.01em;
    max-width: calc(100vw - 20px);
    white-space: nowrap;
  }

  .services-title-effect__title.is-animated {
    transform: none;
  }

}

.hizmetlerimiz-page {
  padding-top: var(--hz-header-offset);
  position: relative;
}

.hizmetlerimiz-page .navbar,
.hizmetlerimiz-page .navbar.scrolled {
  padding: 18px 0 !important;
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
}

.hizmetlerimiz-page .navbar .logo-img,
.hizmetlerimiz-page .navbar.scrolled .logo-img {
  height: 46px !important;
}

body.hizmetlerimiz-page.is-hero-transparent #navbar.navbar,
body.hizmetlerimiz-page.is-hero-transparent #navbar.navbar.scrolled,
body.hizmetlerimiz-page.is-hero-transparent #navbar.navbar.navbar--transparent,
body.hizmetlerimiz-page.is-hero-transparent #navbar.navbar.navbar--solid {
  background-color: transparent !important;
  background-image: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
}

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

html,
body {
  overflow-x: hidden;
}

body {
  background-color: var(--primary);
  min-height: 100%;
  color: var(--white);
}

body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track {
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

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

.parallax-showcase {
  --outline-safe: clamp(10px, 2.8vw, 36px);
  position: relative;
  min-height: 100vh;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 60px);
}

.parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}

.parallax-layer--back {
  z-index: 1;
}

.parallax-layer--front {
  z-index: 3;
}

.parallax-text {
  display: block;
}

.parallax-text--outline {
  position: absolute;
  font-family: "monument_extendedregular", sans-serif;
  font-size: clamp(30px, 8vw, 150px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  text-stroke: 1px rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 0.9;
  max-width: calc(100% - (var(--outline-safe) * 2));
}

.parallax-text--outline:first-child {
  top: 12%;
  left: var(--outline-safe);
}

.parallax-text--right {
  bottom: 15%;
  right: var(--outline-safe);
  text-align: right;
}

@media (max-width: 768px) {
  .parallax-text--outline {
    font-size: clamp(22px, 7vw, 64px);
    white-space: nowrap;
    max-width: calc(100% - (var(--outline-safe) * 2));
  }
}

.floating-shape {
  position: absolute;
}

.shape--circle {
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  border: 2px solid #FFE600;
  border-radius: 50%;
  top: 22%;
  right: 18%;
}

.shape--square {
  width: clamp(45px, 6vw, 75px);
  height: clamp(45px, 6vw, 75px);
  border: 2px solid #7C4DFF;
  transform: rotate(45deg);
  bottom: 28%;
  left: 18%;
}

.shape--line {
  width: clamp(80px, 10vw, 140px);
  top: 65%;
  right: 22%;
  transform: rotate(-25deg);
}

.shape--dots {
  width: 6px;
  height: 6px;
  background: #EC407A;
  border-radius: 50%;
  top: 35%;
  left: 28%;
  box-shadow:
    20px 0 0 #EC407A,
    40px 0 0 #EC407A,
    0 20px 0 rgba(236, 64, 122, 0.6),
    20px 20px 0 rgba(236, 64, 122, 0.6),
    40px 20px 0 rgba(236, 64, 122, 0.3);
}

@keyframes float-circle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float-square {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-15px); }
}

@keyframes float-line {
  0%, 100% { transform: rotate(-25deg) translateX(0); opacity: 0.5; }
  50% { transform: rotate(-25deg) translateX(10px); opacity: 0.8; }
}

@keyframes float-dots {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-12px); opacity: 0.7; }
}

.parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  width: 100%;
}

.parallax-title {
  font-family: "monument_extendedregular", sans-serif;
  font-size: clamp(36px, 7vw, 80px);
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: clamp(20px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.title-line--accent {
  color: #FFE600;
  position: relative;
}

.title-line--accent::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFE600, transparent);
  opacity: 0.4;
}

.parallax-desc {
  font-family: "monument_extendedregular", sans-serif;
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 550px;
  margin: 0 auto clamp(30px, 4vw, 50px);
}

.parallax-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: clamp(14px, 2vw, 18px) clamp(28px, 4vw, 42px);
  background: #FFE600;
  color: #000000;
  font-family: "monument_extendedregular", sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: 0;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(255, 230, 0, 0.25);
}

.parallax-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.parallax-cta:hover::before {
  width: 300px;
  height: 300px;
}

.parallax-cta span,
.parallax-cta svg {
  position: relative;
  z-index: 1;
  color: #000000;
}

.parallax-cta svg {
  transition: transform 0.4s ease;
}

.parallax-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 230, 0, 0.35);
}

.parallax-cta:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .parallax-showcase {
    min-height: 90vh;
    padding: 80px 30px;
  }

  .parallax-text--outline {
    font-size: clamp(26px, 7.2vw, 96px);
  }
}

@media (max-width: 768px) {
  .parallax-showcase {
    min-height: 100vh;
    padding: 34px 16px 42px;
    overflow-x: hidden !important;
    background: #000000;
  }

  .parallax-text--outline {
    font-size: clamp(22px, 7vw, 64px) !important;
    -webkit-text-stroke-width: 1px;
    white-space: nowrap;
    max-width: calc(100% - (var(--outline-safe) * 2));
    text-shadow: none !important;
    transition: none !important;
  }

  .parallax-title {
    font-size: clamp(30px, 9.5vw, 46px) !important;
    margin-bottom: 10px;
  }

  .parallax-text--outline:first-child {
    top: 25%;
    left: var(--outline-safe);
  }

  .parallax-text--right {
    bottom: 25%;
    right: var(--outline-safe);
  }

  .floating-shape {
    opacity: 0.3;
  }

  .shape--circle {
    width: 50px;
    height: 50px;
    top: 15%;
    right: 10%;
  }

  .shape--square {
    width: 35px;
    height: 35px;
    bottom: 18%;
    left: 8%;
  }

  .shape--line {
    width: 60px;
    top: 70%;
    right: 15%;
  }

  .shape--dots {
    top: 25%;
    left: 15%;
    box-shadow:
      15px 0 0 #EC407A,
      30px 0 0 #EC407A;
  }

  .parallax-cta {
    padding: 14px 28px;
    font-size: 11px;
  }

  .parallax-content {
    margin-top: 8px;
    max-width: 92vw;
    will-change: auto;
  }

  .parallax-desc {
    margin: 0 auto 18px;
    font-size: clamp(12px, 2.8vw, 14px);
    line-height: 1.5;
    will-change: auto;
  }

  .parallax-layer,
  .services-title-effect__char {
    will-change: auto !important;
  }
}

@media (max-width: 480px) {
  .parallax-showcase {
    min-height: 100vh;
    padding: 28px 12px 34px;
    overflow-x: hidden !important;
  }

  .parallax-text--outline {
    font-size: clamp(18px, 7.2vw, 42px) !important;
    -webkit-text-stroke-width: 1px;
    max-width: calc(100% - (var(--outline-safe) * 2));
  }

  .parallax-text--outline:first-child {
    top: 30%;
    left: var(--outline-safe);
  }

  .parallax-text--right {
    bottom: 25%;
    right: var(--outline-safe);
  }

  .parallax-title {
    font-size: clamp(28px, 9.8vw, 40px) !important;
    line-height: 1.08;
  }

  .parallax-desc {
    font-size: 11px;
    margin: 0 auto 14px;
  }

  .floating-shape {
    display: none;
  }
}

.parallax-text--outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2) !important;
  text-stroke: 2px rgba(255, 255, 255, 0.2) !important;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
}

.parallax-text--outline:hover {
  color: rgba(255, 255, 255, 0.08);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.35);
  text-shadow: 0 0 100px rgba(255, 255, 255, 0.15);
}

.floating-shape {
  opacity: 0.65 !important;
  transition: opacity 0.4s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.floating-shape:hover {
  opacity: 1 !important;
}

.shape--circle {
  animation: float-circle 6s ease-in-out infinite, pulse-glow-yellow 3s ease-in-out infinite !important;
}

.shape--square {
  animation: float-square 8s ease-in-out infinite, spin-slow 25s linear infinite !important;
}

.shape--line {
  animation: float-line 5s ease-in-out infinite !important;
  height: 3px !important;
  background: linear-gradient(90deg, #FF6B35 0%, #FFE600 50%, transparent 100%) !important;
}

.shape--dots {
  animation: float-dots 6s ease-in-out infinite, pulse-dots 2s ease-in-out infinite !important;
}

@keyframes pulse-glow-yellow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.2), inset 0 0 10px rgba(255, 230, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 230, 0, 0.5), inset 0 0 20px rgba(255, 230, 0, 0.2);
  }
}

@keyframes spin-slow {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

@keyframes pulse-dots {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.etki-section {
  position: relative;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  overflow: hidden;
}

.etki-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(40px, 8vw, 120px) clamp(16px, 4vw, 40px);
  width: 100%;
}

.etki-word-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.etki-word {
  display: block;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
  will-change: transform, opacity;
  transform-origin: center center;
}

.etki-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  will-change: transform;
}

.etki-cta {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(13px, 1.12vw, 18px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (max-width: 768px) {
  .etki-section {
    min-height: 70vh;
  }

  .etki-word {
    font-size: clamp(64px, 22vw, 160px);
    letter-spacing: 0.04em;
    will-change: auto;
  }

  .etki-texts {
    will-change: auto;
  }

  .etki-texts > * {
    filter: none !important;
  }

  .floating-shape,
  .shape--circle,
  .shape--square,
  .shape--line,
  .shape--dots {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .etki-word {
    color: rgba(255, 255, 255, 0.85);
  }

  .etki-texts > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
*, *::before, *::after { box-sizing: border-box; }

.t4-page {
    background: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.t4-accordion {
    width: 100%;
    padding: 0;
    margin: 0;
}

.t4-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid transparent;
    transition: border-left-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.t4-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.07);
}

.t4-item.t4-item--active {
    border-left-color: var(--t4-accent, #FFE600);
}

.t4-item__header {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 48px;
    align-items: center;
    gap: 24px;
    padding: clamp(20px, 3vw, 36px) clamp(24px, 6vw, 100px);
    cursor: pointer;
    user-select: none;
    transition: background 0.25s ease;
    position: relative;
    z-index: 2;
}

.t4-item__header:hover {
    background: rgba(255,255,255,0.02);
}

.t4-item__number {
    font-family: 'Exo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-variant-numeric: lining-nums tabular-nums;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.18);
    transition: color 0.35s ease, -webkit-text-stroke-color 0.35s ease;
    pointer-events: none;
}

.t4-item--active .t4-item__number,
.t4-item__header:hover .t4-item__number {
    color: var(--t4-accent, #FFE600);
    -webkit-text-stroke-color: transparent;
}

.t4-item__title {
    font-size: clamp(20px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    pointer-events: none;
    color: #fff;
    transition: color 0.35s ease;
}

.t4-item--active .t4-item__title,
.t4-item__header:hover .t4-item__title {
    color: var(--t4-accent, #FFE600);
}

.t4-item__desc {
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    max-width: 380px;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.t4-item--active .t4-item__desc {
    opacity: 0;
    pointer-events: none;
}

.t4-item__toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    flex-shrink: 0;
    justify-self: end;
}

.t4-item__toggle::before,
.t4-item__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.t4-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.t4-item--active .t4-item__toggle {
    border-color: var(--t4-accent, #FFE600);
    color: var(--t4-accent, #FFE600);
    transform: rotate(45deg);
}

.t4-item__header:hover .t4-item__toggle {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.t4-item--active .t4-item__header:hover .t4-item__toggle {
    border-color: var(--t4-accent, #FFE600);
    color: var(--t4-accent, #FFE600);
}

.t4-item__body {
    overflow: hidden;
    height: 0;
    will-change: height;
}

.t4-item__body-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 clamp(24px, 6vw, 100px) clamp(40px, 5vw, 72px);
    padding-left: calc(clamp(24px, 6vw, 100px) + 120px + 24px);
}

.t4-item__images {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 40px;
}

.t4-item__img {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
}

.t4-item__img:first-child {
    aspect-ratio: 16/9;
}

.t4-item__img:last-child {
    aspect-ratio: 3/2;
}

.t4-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    transform: scale(1.04);
}

.t4-item--active .t4-item__img img {
    transform: scale(1);
}

.t4-item__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding-left: 40px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.t4-item__content h2 {
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.t4-item__intro {
    font-size: clamp(14px, 1.2vw, 16px);
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
}

.t4-item__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.t4-item__work-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    width: fit-content;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid var(--t4-accent, #FFE600);
    background: var(--t4-accent, #FFE600);
    color: var(--t4-btn-color, var(--t4-accent-ink, #0f172a)) !important;
    -webkit-text-fill-color: currentColor;
    font-family: "monument_extendedregular", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: none;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.t4-item__work-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
    transition: width 0.55s ease, height 0.55s ease;
    z-index: 0;
}

.t4-item__work-btn span,
.t4-item__work-btn svg {
    position: relative;
    z-index: 1;
    color: inherit !important;
    stroke: currentColor;
}

.t4-item__work-btn svg {
    transition: transform 0.35s ease;
}

.t4-item__work-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    color: #0a0a0a !important;
    -webkit-text-fill-color: #0a0a0a;
}

.t4-item__work-btn:hover::before {
    width: 280px;
    height: 280px;
}

.t4-item__work-btn:hover svg {
    transform: translateX(4px);
}

.t4-item__work-btn:hover span,
.t4-item__work-btn:hover svg {
    color: #0a0a0a !important;
    stroke: currentColor;
}

.t4-item__work-btn:focus-visible {
    outline: 2px solid var(--t4-accent, #FFE600);
    outline-offset: 2px;
}

.t4-item__detail-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.t4-item__detail-block h3 {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
}

.t4-item__detail-block h3::before {
    content: '';
    width: 11px;
    height: 11px;
    background: var(--t4-accent, #FFE600);
    flex-shrink: 0;
    clip-path: polygon(
        50% 0,
        61% 39%,
        100% 50%,
        61% 61%,
        50% 100%,
        39% 61%,
        0 50%,
        39% 39%
    );
}

.t4-item__detail-block p {
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
    padding-left: 23px;
}

.t4-item__video {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    aspect-ratio: 16/9;
}

.t4-item__video:last-child {
    aspect-ratio: 3/2;
}

.t4-item__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.t4-item__header:focus-visible {
    outline: 2px solid var(--t4-accent, #FFE600);
    outline-offset: -2px;
}

@media (max-width: 1024px) {
    .t4-item__header {
        grid-template-columns: 80px 1fr 48px;
        gap: 16px;
    }

    .t4-item__desc {
        display: none;
    }

    .t4-item__body-inner {
        padding-left: clamp(24px, 6vw, 60px);
    }
}

@media (max-width: 768px) {
    .t4-item__header {
        grid-template-columns: 56px 1fr 40px;
        gap: 12px;
        padding: 20px clamp(16px, 5vw, 28px);
    }

    .t4-item__number {
        font-size: 32px;
    }

    .t4-item__toggle {
        width: 34px;
        height: 34px;
    }

    .t4-item__body-inner {
        grid-template-columns: 1fr;
        padding: 0 clamp(16px, 5vw, 28px) 36px;
        gap: 28px;
    }

    .t4-item__images {
        padding-right: 0;
        flex-direction: row;
        gap: 8px;
    }

    .t4-item__img {
        flex: 1;
    }

    .t4-item__img:first-child,
    .t4-item__img:last-child {
        aspect-ratio: 4/3;
    }

    .t4-item__content {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 24px;
        gap: 20px;
    }

    .t4-item__details {
        gap: 16px;
    }

    .t4-item__work-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .t4-item__detail-block p {
        padding-left: 23px;
    }

    .t4-item__video {
        flex: 1;
    }

    .t4-item__video:first-child,
    .t4-item__video:last-child {
        aspect-ratio: 4/3;
    }

}

@media (max-width: 480px) {
    .t4-item__images {
        flex-direction: column;
    }

    .t4-item__img:first-child,
    .t4-item__img:last-child {
        aspect-ratio: 16/9;
    }

    .t4-item__video:first-child,
    .t4-item__video:last-child {
        aspect-ratio: 16/9;
    }

    .t4-item__detail-block h3 {
        font-size: 14px;
    }

    .t4-item__detail-block p {
        font-size: 13px;
        padding-left: 23px;
    }

    .t4-item__details {
        gap: 14px;
    }

}
.t4-item__images .t4-item__img { aspect-ratio: auto; align-self: flex-start; }
.t4-item__images .t4-item__img img { position: static; width: 100%; height: auto; object-fit: contain; transform: none; }
.t4-item__images.t4-item__images--qr { flex-direction: row; justify-content: center; align-items: flex-start; gap: clamp(12px, 2vw, 32px); }
.t4-item__images--qr .t4-item__img,
.t4-item__images--qr .t4-item__img:first-child,
.t4-item__images--qr .t4-item__img:last-child { flex: 0 1 auto; width: auto; aspect-ratio: auto; background: none; border-radius: 0; }
.t4-item__images--qr .t4-item__img img { width: auto; height: clamp(300px, 34vw, 480px); max-width: 100%; padding: 0; background: none; }
@media (max-width: 480px) {
    .t4-item__images--qr .t4-item__img img { height: min(72vw, 340px); }
}
.t4-item__video video { object-fit: contain; }
